diff --git a/2026R1/motion_post_lib_doc-26-r1/changelog_operation_api.md b/2026R1/motion_post_lib_doc-26-r1/changelog_operation_api.md index e9bc39e623..784a803e8b 100644 --- a/2026R1/motion_post_lib_doc-26-r1/changelog_operation_api.md +++ b/2026R1/motion_post_lib_doc-26-r1/changelog_operation_api.md @@ -1,14 +1,23 @@ # Operation API -## Common setting -Import the OperationAPI.py file from the "Ansys installed path/Motion/Document/Postprocessor API for Python.zip" file. +## Common Settings ## Added -- Support for reading RPC file formats has been added to the Import feature. +- Introduced fatigue durability analysis functionality. +- Added the **ResultName** property to the **DurabilityAnalysisParameter** class. +- Added the **ExportContourResultToFile** method to the **Export** class. +- Added functions to **IOperationsAnimation** that allow changing the state of entities to Fit, Hide, or Show. ## Changed -- The Following Camera has been changed. -- The UI for NumericImport has been changed. +- Changed the namespace from **VM.Post.API.Fatigue.Models** to **VM.Operation.Post**. +- Renamed **IOperationAnalysisResultViewModel** to **IOperationAnalysisResult**. +- Renamed **IOperationsFEBodyViewModel** to **IOperationsFEBody**. +- Renamed the **FilePath** property in the **DurabilityAnalysisParameter** class to **DocumentFilePath**. The **FilePath** property will be removed in the future. +- Renamed the **UpperValue** property in the **DurabilityAnalysisParameter** class to **End**. The **UpperValue** property will be removed in the future. +- Renamed the **LowValue** property in the **DurabilityAnalysisParameter** class to **Start**. The **LowValue** property will be removed in the future. +- Changed the result item name from **Max Principal** to **Max Abs Principal**. +- Changed the result item name from **Max Shear Stress** to **Max Shear**. ## Deprecated -- **ApplicationHandler.ImportNumeric()** is deprecated and will be removed soon; it is recommended to transition to **IOperationsChartViewModel.ImportNumeric()**. \ No newline at end of file +- Removed the **VM.Post.API.Fatigue** DLL. +- The **FatigueParameter** class will be removed in the future. It will be replaced by a property in **FEBody**. \ No newline at end of file diff --git a/2026R1/motion_post_lib_doc-26-r1/example_Import_for_operation_api.md b/2026R1/motion_post_lib_doc-26-r1/example_Import_for_operation_api.md new file mode 100644 index 0000000000..776131afb9 --- /dev/null +++ b/2026R1/motion_post_lib_doc-26-r1/example_Import_for_operation_api.md @@ -0,0 +1,100 @@ +# Example +The following sample code illustrates how to create a simple example. +* The examples provided below can be found within the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' compressed file. + +## Numeric Import +Here is an example of importing curve results from a file. +```python +# OperationAPI_NumericImport.py +import sys + +# Get the current file's path and set the path for external modules. +current_dir = __file__.rsplit('\\', 1)[0] +external_modules_path = current_dir + '\\..\\..\\Modules' +sys.path.append(external_modules_path) + +# Import necessary modules +from OperationAPI import * + +# Start the headless application interface +applicationHandler = ApplicationHandler() + +# Import result file +result_file_path = get_result_file_path() + +# Set array about result file +filepaths = List[str]() +filepaths.Add(result_file_path) + +# Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. +applicationHandler.AddDocument(filepaths) + +# Get Active Page +# This retrieves the currently active page in the application. +page = applicationHandler.GetActivePage() + +# Creating a Chart +# Create a new Chart View on the page +# This will create a new chart view with the specified name. +chartView = page.CreateChart("Chart") + +# Set array about combination of characteristic and component +curvePaths = List[str]() +curvePaths.Add(r'Displacement/Magnitude') +curvePaths.Add(r'Displacement/Z') + +# Create a PlotParameters object to specify the parameters for the plot. +# Set the Entity to Plot. +# The Target is the name of the target for which you want to retrieve the curves. +# Set the paths for the curves you want to retrieve. +# This is where you specify the characteristics and components you want to plot. +parameters = PlotParameters() +parameters.Paths = curvePaths +parameters.Target = "Crank" + +# Add Curves (FilePath, Curve Parameter) +# FilePath - The path of the result to access. +# parameters - The class used as a parameter of the AddCurve function. +# The instance of the curve. +curves = chartView.AddCurves(result_file_path, parameters) + +index = 0 +for curve in curves : + curve.SeriesName = "NameChange_{0}".format(index) + index = index + 1 + +# File Dialog Open +# chart1.ExportAllDataSeries() + +# use not file dialog +output_dir = get_output_directory() +file_path = combine_path(output_dir, r'curvedata.txt') +chartView.ExportAllCurves(export_filepath) + +# Importing Numeric Data +parameters = List[INumericParameter](2) + +# To create a curve from a file, create a NumericParameter. +# Name - The name of the curve to be created. +# TargetX - The name of the X-axis data. +# TargetY - The name of the Y-axis data. +# In this example, a curve named 'OrderTrackingCurve' is created, and data corresponding to the X and Y headers is retrieved from the file. +parameter = NumericParameter() +parameter.Name = r'NameChange_10' +parameter.TargetX = r'Time(sec)' +parameter.TargetY = r'NameChange_1' +parameters.Add(parameter) + +# file_path - The path to the file containing the numeric data. +# parameters - The list of numeric parameters that define how to interpret the data in the file. +chartView.ImportNumeric(file_path, parameters) + +# Close the Pages +page.Close() + +# Close the Document +applicationHandler.CloseDocument(result_file_path) + +``` \ No newline at end of file diff --git a/2026R1/motion_post_lib_doc-26-r1/example_analysis_for_operation_api.md b/2026R1/motion_post_lib_doc-26-r1/example_analysis_for_operation_api.md index 43d5a74ee9..856d694231 100644 --- a/2026R1/motion_post_lib_doc-26-r1/example_analysis_for_operation_api.md +++ b/2026R1/motion_post_lib_doc-26-r1/example_analysis_for_operation_api.md @@ -2,6 +2,172 @@ The following sample code illustrates how to create a simple example. * The examples provided below can be found within the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' compressed file. +## Fatigue Analysis +This example demonstrates Fatigue Analysis. +**The example assumes that the material has already been defined.** If you are running it for the first time, you need to create the material in advance. +```python +# DurabilityAnalysis.py +# -*- coding: utf-8 -*- +import sys + +# Get the current file's path and set the path for external modules. +current_dir = __file__.rsplit('\\', 1)[0] +external_modules_path = current_dir + '\\..\\..\\Modules' +sys.path.append(external_modules_path) + +# Import necessary modules +from OperationAPI import * + +# Start the headless application interface +applicationHandler = ApplicationHandler() + +# Import result file +result_file_path = get_result_file_path() + +# Set array about result file +filepaths = List[str]() +filepaths.Add(result_file_path) + +# Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. +applicationHandler.AddDocument(filepaths) + +# Get Active Page +# This retrieves the currently active page in the application. +page = applicationHandler.GetActivePage() + +# Get Active View +# This retrieves the currently active view in the page. +activeView = page.GetActiveView() + +# Loading Animation - Use this only when the current Active View is an Animation View. +# This method is used to load the animation in the active view. +applicationHandler.LoadingAnimation() + +# Get the FEBody instance +# The GetViewModelByName method retrieves the target by its name. +febody = activeView.GetViewModelByName("FEBody_01") + +# Get the Material instance +# The GetViewModelByName method retrieves the material by its name. +material = activeView.GetViewModelByName("2014_HV_O") + +# Check if the FEBody and Material are found +if febody is None or material is None: + sys.exit(1) + +# Set the febody and material properties +febody.Material = material + +# Set Analysis Type +# FatigueAnalysisType can be one of the following: +# - FatigueAnalysisType.SN - SN Curve +# - FatigueAnalysisType.EN - EN Curve +febody.AnalysisType = FatigueAnalysisType.SN + +# Set Stress-Strain Combination +# StressStrainCombinationType can be one of the following: +# - StressStrainCombinationType.VonMises - VonMises +# - StressStrainCombinationType.Signed_VonMises - Signed VonMises +# - StressStrainCombinationType.Max_Principal - 1st Principal +# - StressStrainCombinationType.Min_Principal - 3rd Principal +# - StressStrainCombinationType.Max_ABS_Principal - Max Abs Principal +# - StressStrainCombinationType.Max_Shear - Max Shear +# - StressStrainCombinationType.Signed_Max_Shear - Signed Max Shear +# - StressStrainCombinationType.Average_Principal - Average Principal +febody.StressStrainCombination = StressStrainCombinationType.VonMises + +# Set Mean Stress Correction +# - MeanStressCorrection.Neglect - Neglect +# - MeanStressCorrection.ModifiedGerber - Modified Gerber +# - MeanStressCorrection.GerberLocus - GerberLocus +# - MeanStressCorrection.Sodeberg - Sodeberg +# - MeanStressCorrection.DEelliptic - DEelliptic +febody.MeanStressCorrection = MeanStressCorrection.Neglect + +# Fatigue analysis parameters +# DocumentFilePath - The path to the result file. +# ResultName - Name of the fatigue result. The result will be saved in the Fatigue folder under the result file directory. +# NoOfRepeatedLoad - Number of repeated loads +# Start - Start time +# End - End time +# AddTarget - Adds a target. The target value is the ID of the FEBody. +durabilityParameter = DurabilityAnalysisParameter() +durabilityParameter.DocumentFilePath = result_file_path +durabilityParameter.ResultName = "FEBbody_01_Fatigue" +durabilityParameter.NoOfRepeatedLoad = 1 +durabilityParameter.Start = 1 +durabilityParameter.End = 10 +durabilityParameter.AddTarget(febody.ID) + +# Run the fatigue analysis +DurabilityAnalysis.RunFatigueAnalysis(durabilityParameter) + +# Run the fatigue analysis with contour +# DurabilityAnalysis.RunFatigueAnalysisAndGenerateContours(durabilityParameter) + +# Output Path +life_cycle_path = combine_path(get_output_directory(), "Fatigue_Life_Cycle.txt") + +# Set the febody fullname as the target for export +targetNames = List[str]() +targetNames.Add(febody.FullName) + +# A boolean indicating whether to export the full frame or not. +# If True, the full frame will be exported; if False, only the current frame will be exported. +is_full_frame = True + +# Set Contour Mapping Type +# ContourMappingType can be one of the following: +# - ContourMappingType.None - None +# - ContourMappingType.FENode - Node (Averaged across body) +# - ContourMappingType.FEElement - Element (Unaveraged) +# - ContourMappingType.FEElementNode - Node (Unaveraged) +# - ContourMappingType.FEMaterial - Node (Averaged within material) +# - ContourMappingType.BeamGroup - Beam Group +# - ContourMappingType.Contact - Contact +# - ContourMappingType.ChainedSystem - Chained System +# - ContourMappingType.Usersubroutine - Usersubroutine +contour_mapping_type = ContourMappingType.FEElement + +# Set Characteristic Path +characteristic_path = "Fatigue" + +# Set Component Path +component_path = "Life Cycle" + +# Combine Characteristic and Component Path +characteristic_component_path = characteristic_path + "/" + component_path + +# Set the fatigue path +# - DocumentFilePath: The path to the result file. +# - FatiguePath: The fatigue results are saved in the Fatigue folder under the result file directory. Specify the name of the result file inside this Fatigue folder. +DurabilityAnalysis.SetFatiguePath(result_file_path, "FEBbody_01_Fatigue") + +# Export Contour Result to File +# result_file_path - The path to the result file. +# life_cycle_path - The path to the output file where the life cycle data will be saved. +# targetNames - The list of target names for which the contour results will be exported. +# is_full_frame - A boolean indicating whether to export the full frame or not. +# contour_mapping_type - The type of contour mapping to be used. +# characteristic_component_path - The path to the characteristic and component for which the contour results will be exported. +# AnalysisType - The default value is AnalysisResultType.Dynamics. If you want to change it, please set the AnalysisType. +# FileFormatType - The format of the output file. The default is FileFormatType.Text. The format type can be set to TXT or BINARY. +Export.ExportContourResultToFile(result_file_path, life_cycle_path, targetNames, is_full_frame, contour_mapping_type, characteristic_component_path) + +# Close all open pages. +# Get all created pages. +# This retrieves all pages created in the application. +pages = applicationHandler.GetPages() +for page in pages : + page.Close() + +# Close Document +applicationHandler.CloseDocument(result_file_path) + +``` + ## Sound Pressure Sound pressure analysis (SPA) can be used to analyze the sound pressure generated by the vibration of the system surface based on "Rayleigh Integral". this example describes how to create the Sound Pressure. * Before the analysis, the bodies that are the source of sound pressure must be defined as FE or EasyFlex bodies in the preprocessor. @@ -10,10 +176,12 @@ Sound pressure analysis (SPA) can be used to analyze the sound pressure generate # OperationAPI_CreatingASoundPressure.py import sys +# Get the current file's path and set the path for external modules. current_dir = __file__.rsplit('\\', 1)[0] external_modules_path = current_dir + '\\..\\..\\Modules' - sys.path.append(external_modules_path) + +# Import necessary modules from OperationAPI import * # Start the headless application interface @@ -27,9 +195,12 @@ filepaths = List[str]() filepaths.Add(result_file_path) # Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. applicationHandler.AddDocument(filepaths) -# Find Page +# Get all created pages. +# This retrieves all pages created in the application. pages = applicationHandler.GetPages() findViews = list() @@ -43,8 +214,14 @@ for page in pages : viewCount = len(findViews) if viewCount > 0 : animationview = findViews[0] + + # Create a Coordinate System + # Name - Set the name of instance. + # ParentInfo - Specifies The path of an parent entity. animationview.CreateCoordinateSystem("Microphone", "Ground") + # Get instance of entity + # The GetViewModelByName method retrieves the target by its name. microphone = animationview.GetViewModelByName("Microphone") microphone.TransformationOffsetPosition = Vector(0,300,0) @@ -67,7 +244,8 @@ if viewCount > 0 : # isDeicbelScale - The decibel scale. animationview.CreateSoundPressure(bodynames, microphoneNames, 10.0, 100.0, 3.0, 1.21E-09, 343000.0, 2000.0, 1, 10, False) -# Close the Pages +# Get all created pages. +# This retrieves all pages created in the application. pages = applicationHandler.GetPages() for page in pages : page.Close() diff --git a/2026R1/motion_post_lib_doc-26-r1/example_animation_for_operation_api.md b/2026R1/motion_post_lib_doc-26-r1/example_animation_for_operation_api.md index 5ce50d020b..483a700083 100644 --- a/2026R1/motion_post_lib_doc-26-r1/example_animation_for_operation_api.md +++ b/2026R1/motion_post_lib_doc-26-r1/example_animation_for_operation_api.md @@ -8,10 +8,12 @@ This example demonstrates how to create an animation view suitable for the analy # OperationAPI_CreatingAnimationViewBasedonType.py import sys +# Get the current file's path and set the path for external modules. current_dir = __file__.rsplit('\\', 1)[0] external_modules_path = current_dir + '\\..\\..\\Modules' - sys.path.append(external_modules_path) + +# Import necessary modules from OperationAPI import * # Start the headless application interface @@ -25,9 +27,12 @@ filepaths = List[str]() filepaths.Add(result_file_path) # Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. applicationHandler.AddDocument(filepaths) -# Find Page +# Get all created pages. +# This retrieves all pages created in the application. pages = applicationHandler.GetPages() findViews = list() @@ -39,7 +44,14 @@ for page in pages : findViews.append(animationView) +# result_file_path - Get the document from the result file path. document = applicationHandler.GetDocument(result_file_path) + +# This retrieves the analysis result from the document. + # Types of Analysis Results + # - Dynamics + # - Eigenvalue + # - Statics dynamic_analysis = document.GetAnalysisResultViewModel(AnalysisResultType.Dynamics) dynamic_analysis.SetAnimationFrame(50) @@ -47,19 +59,36 @@ viewCount = len(findViews) if viewCount > 0 : page1 = applicationHandler.GetPage(findViews[0].GroupID) - # Types of Analyis Results + # This retrieves the analysis result from the document. + # Types of Analysis Results + # - Dynamics + # - Eigenvalue + # - Statics eigenval_analysis = document.GetAnalysisResultViewModel(AnalysisResultType.Eigenvalue) + + # Create an Animation View on the active page + # This will create an animation view based on the eigenvalue analysis. eigenvalue_animation = page1.CreateAnimation(eigenval_analysis, "EigenvalueAnimation") eigenval_analysis.Frame = 100 + # Get Sampling Times + # This retrieves the sampling times from the eigenvalue analysis. times = eigenval_analysis.GetSamplingTimes() convertedtimes = list(times) + + # Set the target sampling time. eigenval_analysis.TargetSamplingTime = convertedtimes[0] + + # Get all instances of frequencies. frequencies = eigenval_analysis.GetFrequencies() + + # Get the frequency instance for the specified sampling time index. frequency = eigenval_analysis.GetFrequency(0) frequency.Enable = False # Close the Pages +# Get all created pages. +# This retrieves all pages created in the application. pages = applicationHandler.GetPages() for page in pages : page.Close() @@ -69,17 +98,24 @@ applicationHandler.CloseDocument(result_file_path) ``` -## Contour -This example demonstrates how to create a contour. -Contour is a good tool for analyzing a simulation result. Since scalar data, such as stress, is displayed with color corresponding to value, you can easily estimate where a problem is during an animation. +## Create a Coordinate System +This example demonstrates how to create a coordinate system. +The Coordinate system can be created from various entities in the result as below, and this example describes how to create the Coordinate System. +* Rigid Body +* FE Node +* Marker + ```python -# OperationAPI_CreatingContour.py +# -*- coding: utf-8 -*- +# OperationAPI_CreateACoordinateSystem.py import sys +# Get the current file's path and set the path for external modules. current_dir = __file__.rsplit('\\', 1)[0] external_modules_path = current_dir + '\\..\\..\\Modules' - sys.path.append(external_modules_path) + +# Import necessary modules from OperationAPI import * # Start the headless application interface @@ -93,9 +129,12 @@ filepaths = List[str]() filepaths.Add(result_file_path) # Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. applicationHandler.AddDocument(filepaths) -# Find Page +# Get all created pages. +# This retrieves all pages created in the application. pages = applicationHandler.GetPages() findViews = list() @@ -106,32 +145,47 @@ for page in pages : if animationView.DocumentFilePath == result_file_path and animationView.AnalysisResultType == AnalysisResultType.Dynamics : findViews.append(animationView) +viewCount = len(findViews) +if viewCount > 0 : + animationview = findViews[0] + # Create a Coordinate System + # Name - Set the name of instance. + # ParentInfo - Specifies The path of an parent entity. + animationview.CreateCoordinateSystem("Crank_CSYS", "Crank") -document = applicationHandler.GetDocument(result_file_path) -dynamic_analysis = document.GetAnalysisResultViewModel(AnalysisResultType.Dynamics) -dynamic_analysis.SetAnimationFrame(10) - -# It returns the objects available for contouring that correspond to the MappingType. -targetentities = dynamic_analysis.GetContourables(ContourMappingType.FENode) + # Get instance of entity + # The GetViewModelByName method retrieves the target by its name. + csys = animationview.GetViewModelByName("Crank_CSYS") -# Create Contour -contour = dynamic_analysis.CreateContour(targetentities, ContourMappingType.FENode, "Displacement", "X") -contour.LegendColorScheme = ColorSchemeType.BLACK_TO_WHITE -contour.AutoRange = False -if contour.AutoRange == False: - contour.Max = 4 - contour.Min = 1 + # Set the transformation offset position and angle for the coordinate system. + csys.TransformationOffsetPosition = Vector(0,10,0) + csys.TransformationOffsetAngle = Vector(1,0,0) + csys.TransformationOffsetRotationType = RotationTypes.FixedAngle + csys.TransformationOffsetRotationAxis = RotationAxes.XYX + csys.MarkerSize = 10 -contour.LegendFontColor = Colors.Red -contour.LogScale = True -contour.LegendVisibility = False -contour.Continuous = True -contour.Component = "Z" -contour.FullName = "FEBody_01_Contour_Z" -contour.MinMaxTargetType = ExtremalValueType.Part -contour.IsEnabled = False + # The CurrentCoordinateSystemType property indicates Type attribute as displayed in the user interface. + # Accepted input values are defined by the GeneralMarkerType enumeration. + # The GeneralMarkerType ρ property must be one of the following: CARTESIAN, CYLINDRICAL, SPHERICAL + csys.CurrentCoordinateSystemType = GeneralMarkerType.CYLINDRICAL + if csys.CurrentCoordinateSystemType == GeneralMarkerType.SPHERICAL: + # The SphericalAxis1 property indicates Axis ρ. Accepted input values are defined by the CoordinateType enumeration. + # The Axis ρ property must be one of the following: X, Y, Z + csys.SphericalAxis1 = CoordinateType.X + # The SphericalAxis2 property indicates Axis Ø. Accepted input values are defined by the CoordinateType enumeration. + # The Axis Ø property must be one of the following: X, Y, Z + csys.SphericalAxis2 = CoordinateType.Y + elif csys.CurrentCoordinateSystemType == GeneralMarkerType.CYLINDRICAL: + # The CylindricalAxisR property indicates Axis R. Accepted input values are defined by the CoordinateType enumeration. + # The Axis R property must be one of the following: X, Y, Z + csys.CylindricalAxisR = CoordinateType.Z + # The CylindricalAxisZ property indicates Axis Z. Accepted input values are defined by the CoordinateType enumeration. + # The Axis Z property must be one of the following: X, Y, Z + csys.CylindricalAxisZ = CoordinateType.X # Close the Pages +# Get all created pages. +# This retrieves all pages created in the application. pages = applicationHandler.GetPages() for page in pages : page.Close() @@ -141,22 +195,18 @@ applicationHandler.CloseDocument(result_file_path) ``` -## Create a Coordinate System -This example demonstrates how to create a coordinate system. -The Coordinate system can be created from various entities in the result as below, and this example describes how to create the Coordinate System. -* Rigid Body -* FE Node -* Marker - +## Create Node & Element +This example demonstrates how to create nodes and elements within a flexible body. ```python -# -*- coding: utf-8 -*- -# OperationAPI_CreateACoordinateSystem.py +# OperationAPI_CreatingANodeAndElement.py import sys +# Get the current file's path and set the path for external modules. current_dir = __file__.rsplit('\\', 1)[0] external_modules_path = current_dir + '\\..\\..\\Modules' - sys.path.append(external_modules_path) + +# Import necessary modules from OperationAPI import * # Start the headless application interface @@ -170,9 +220,12 @@ filepaths = List[str]() filepaths.Add(result_file_path) # Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. applicationHandler.AddDocument(filepaths) -# Find Page +# Get all created pages. +# This retrieves all pages created in the application. pages = applicationHandler.GetPages() findViews = list() @@ -185,39 +238,29 @@ for page in pages : viewCount = len(findViews) if viewCount > 0 : - animationview = findViews[0] - # Name - Set the name of instance. - # ParentInfo - Specifies The path of an parent entity. - animationview.CreateCoordinateSystem("Crank_CSYS", "Crank") + # result_file_path - Get the document from the result file path. + document = applicationHandler.GetDocument(result_file_path) - # Get instance of entity view model - csys = animationview.GetViewModelByName("Crank_CSYS") - csys.TransformationOffsetPosition = Vector(0,10,0) - csys.TransformationOffsetAngle = Vector(1,0,0) - csys.TransformationOffsetRotationType = RotationTypes.FixedAngle - csys.TransformationOffsetRotationAxis = RotationAxes.XYX - csys.MarkerSize = 10 + # This retrieves the analysis result from the document. + # Types of Analysis Results + # - Dynamics + # - Eigenvalue + # - Statics + analysis = document.GetAnalysisResultViewModel(AnalysisResultType.Dynamics) - # The CurrentCoordinateSystemType property indicates Type attribute as displayed in the user interface. - # Accepted input values are defined by the GeneralMarkerType enumeration. - # The GeneralMarkerType ρ property must be one of the following: CARTESIAN, CYLINDRICAL, SPHERICAL - csys.CurrentCoordinateSystemType = GeneralMarkerType.CYLINDRICAL - if csys.CurrentCoordinateSystemType == GeneralMarkerType.SPHERICAL: - # The SphericalAxis1 property indicates Axis ρ. Accepted input values are defined by the CoordinateType enumeration. - # The Axis ρ property must be one of the following: X, Y, Z - csys.SphericalAxis1 = CoordinateType.X - # The SphericalAxis2 property indicates Axis Ø. Accepted input values are defined by the CoordinateType enumeration. - # The Axis Ø property must be one of the following: X, Y, Z - csys.SphericalAxis2 = CoordinateType.Y - elif csys.CurrentCoordinateSystemType == GeneralMarkerType.CYLINDRICAL: - # The CylindricalAxisR property indicates Axis R. Accepted input values are defined by the CoordinateType enumeration. - # The Axis R property must be one of the following: X, Y, Z - csys.CylindricalAxisR = CoordinateType.Z - # The CylindricalAxisZ property indicates Axis Z. Accepted input values are defined by the CoordinateType enumeration. - # The Axis Z property must be one of the following: X, Y, Z - csys.CylindricalAxisZ = CoordinateType.X + # Get a febody + febody = analysis.GetViewModel("FEBody_01") -# Close the Pages + # Create Node + node = febody.CreateNode(754) + node.ChangeID(755) + + # Create Element + element = febody.CreateElement(2343) + element.ChangeID(2601) + +# Get all created pages. +# This retrieves all pages created in the application. pages = applicationHandler.GetPages() for page in pages : page.Close() @@ -227,17 +270,119 @@ applicationHandler.CloseDocument(result_file_path) ``` -## Vector Display -This example demonstrates how to create a vector display. -Vector display is used to display the force vector in animation view. It is a useful tool for analyzing the magnitude or direction of a force. The force and torque of joint, force, and contact are available in the vector display. +## Contour +This example demonstrates how to create a contour. +Contour is a good tool for analyzing a simulation result. Since scalar data, such as stress, is displayed with color corresponding to value, you can easily estimate where a problem is during an animation. ```python -# OperationAPI_CreatingAVectorDisplay.py +# IOperationsContourViewModel.py import sys +# Get the current file's path and set the path for external modules. current_dir = __file__.rsplit('\\', 1)[0] external_modules_path = current_dir + '\\..\\..\\Modules' +sys.path.append(external_modules_path) + +# Import necessary modules +from OperationAPI import * + +# Start the headless application interface +applicationHandler = ApplicationHandler() + +# Import result file +result_file_path = get_result_file_path() + +# Set array about result file +filepaths = List[str]() +filepaths.Add(result_file_path) + +# Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. +applicationHandler.AddDocument(filepaths) + +# Get all created pages. +# This retrieves all pages created in the application. +pages = applicationHandler.GetPages() + +findViews = list() +for page in pages : + views = page.GetViews() + animationViews = [view for view in views if view.ViewType == ViewType.Animation] + for animationView in animationViews : + if animationView.DocumentFilePath == result_file_path and animationView.AnalysisResultType == AnalysisResultType.Dynamics : + findViews.append(animationView) + +# result_file_path - Get the document from the result file path. +document = applicationHandler.GetDocument(result_file_path) + +# This retrieves the analysis result from the document. +# Types of Analysis Results +# - Dynamics +# - Eigenvalue +# - Statics +dynamic_analysis = document.GetAnalysisResultViewModel(AnalysisResultType.Dynamics) +dynamic_analysis.SetAnimationFrame(10) + +# It returns the objects available for contouring that correspond to the MappingType. +targetentities = dynamic_analysis.GetContourables(ContourMappingType.FENode) + +# Create Contour +# targetentities - Set the entity as the target for export +# Set Contour Mapping Type +# ContourMappingType can be one of the following: +# - ContourMappingType.None - None +# - ContourMappingType.FENode - Node (Averaged across body) +# - ContourMappingType.FEElement - Element (Unaveraged) +# - ContourMappingType.FEElementNode - Node (Unaveraged) +# - ContourMappingType.FEMaterial - Node (Averaged within material) +# - ContourMappingType.BeamGroup - Beam Group +# - ContourMappingType.Contact - Contact +# - ContourMappingType.ChainedSystem - Chained System +# - ContourMappingType.Usersubroutine - Usersubroutine +# characteristic_path - The path to the characteristic for which the contour will be created. +# component_path - The path to the component for which the contour will be created. +contour = dynamic_analysis.CreateContour(targetentities, ContourMappingType.FENode, "Displacement", "X") + +# Set properties for the contour +contour.LegendColorScheme = ColorSchemeType.BLACK_TO_WHITE +contour.AutoRange = False +if contour.AutoRange == False: + contour.Max = 4 + contour.Min = 1 + +contour.LegendFontColor = Colors.Red +contour.LogScale = True +contour.LegendVisibility = False +contour.Continuous = True +contour.Component = "Z" +contour.FullName = "FEBody_01_Contour_Z" +contour.MinMaxTargetType = ExtremalValueType.Part +contour.IsEnabled = False + +# Get all created pages. +# This retrieves all pages created in the application. +pages = applicationHandler.GetPages() +for page in pages : + page.Close() +# Close Document +applicationHandler.CloseDocument(result_file_path) + +``` + +## Expression +This example demonstrates how to create a expression. +A Postprocessor Expression is similar to a Function Expression in the Motion Preprocessor. It represents a formula that can be written as a combination of functions of displacement, velocity, and acceleration between specified markers, and it also supports basic mathematical functions. +```python +# OperationAPI_CreatingAExpression.py +import sys + +# Get the current file's path and set the path for external modules. +current_dir = __file__.rsplit('\\', 1)[0] +external_modules_path = current_dir + '\\..\\..\\Modules' sys.path.append(external_modules_path) + +# Import necessary modules from OperationAPI import * # Start the headless application interface @@ -251,9 +396,12 @@ filepaths = List[str]() filepaths.Add(result_file_path) # Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. applicationHandler.AddDocument(filepaths) -# Find Page +# Get all created pages. +# This retrieves all pages created in the application. pages = applicationHandler.GetPages() findViews = list() @@ -266,28 +414,22 @@ for page in pages : viewCount = len(findViews) if viewCount > 0 : + # result_file_path - Get the document from the result file path. document = applicationHandler.GetDocument(result_file_path) + + # This retrieves the analysis result from the document. + # Types of Analysis Results + # - Dynamics + # - Eigenvalue + # - Statics analysis = document.GetAnalysisResultViewModel(AnalysisResultType.Dynamics) - entity = "TJ_01" - base_force_characteristic = "Base Force" - base_torque_characteristic = "Base Torque" - # Create Vector Display - vector = analysis.CreateVectorDisplay(entity, base_force_characteristic) - vector.IsLabel = True - vector.IsVisible = True - vector.LabelBackgroundColor = OperationAPIService.GetColorFrameRGB(255,255,255) - vector.LabelTextColor = OperationAPIService.GetColorFrameRGB(0,0,0) - vector.FullName = "TJ_VectorDisplay" - vector.IsLog = False - vector.Scale = 1000 - vector.SetCharacteristic(base_torque_characteristic) - vector.Color = Colors.Blue + # Creating a Expression + expression = analysis.CreateExpression("expression") + expression.Expression = "DM(\"Crank/CM\")" -# Close the Pages -pages = applicationHandler.GetPages() -for page in pages : - page.Close() +# Close the Page +page.Close() # Close the Document applicationHandler.CloseDocument(result_file_path) @@ -300,10 +442,12 @@ This example demonstrates how to capture the content on the screen as an image. # OperationAPI_ImageCapture.py import sys +# Get the current file's path and set the path for external modules. current_dir = __file__.rsplit('\\', 1)[0] external_modules_path = current_dir + '\\..\\..\\Modules' - sys.path.append(external_modules_path) + +# Import necessary modules from OperationAPI import * # Start the headless application interface @@ -317,9 +461,12 @@ filepaths = List[str]() filepaths.Add(result_file_path) # Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. applicationHandler.AddDocument(filepaths) -# Find Page +# Get all created pages. +# This retrieves all pages created in the application. pages = applicationHandler.GetPages() findViews = list() @@ -332,7 +479,14 @@ for page in pages : viewCount = len(findViews) if viewCount > 0 : + # result_file_path - Get the document from the result file path. document = applicationHandler.GetDocument(result_file_path) + + # This retrieves the analysis result from the document. + # Types of Analysis Results + # - Dynamics + # - Eigenvalue + # - Statics analysis = document.GetAnalysisResultViewModel(AnalysisResultType.Dynamics) animationview = findViews[0] @@ -346,7 +500,8 @@ if viewCount > 0 : # Image Caputre animationview.ExportImage(export_filepath, ImageFormat.Png, 1920, 1080) -# Close the Pages +# Get all created pages. +# This retrieves all pages created in the application. pages = applicationHandler.GetPages() for page in pages : page.Close() @@ -362,10 +517,12 @@ This example demonstrates how to record an animation as a video. # OperationAPI_Recording.py import sys +# Get the current file's path and set the path for external modules. current_dir = __file__.rsplit('\\', 1)[0] external_modules_path = current_dir + '\\..\\..\\Modules' - sys.path.append(external_modules_path) + +# Import necessary modules from OperationAPI import * # Start the headless application interface @@ -379,9 +536,12 @@ filepaths = List[str]() filepaths.Add(result_file_path) # Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. applicationHandler.AddDocument(filepaths) -# Find Page +# Get all created pages. +# This retrieves all pages created in the application. pages = applicationHandler.GetPages() findViews = list() @@ -394,10 +554,20 @@ for page in pages : viewCount = len(findViews) if viewCount > 0 : + # result_file_path - Get the document from the result file path. document = applicationHandler.GetDocument(result_file_path) + + # This retrieves the analysis result from the document. + # Types of Analysis Results + # - Dynamics + # - Eigenvalue + # - Statics analysis = document.GetAnalysisResultViewModel(AnalysisResultType.Dynamics) animationview = findViews[0] + + # Sets a specified number of animation frames. + # This will set the animation frame to the specified number. analysis.SetAnimationFrame(10) specs = animationview.GetViewSpecs() @@ -407,7 +577,8 @@ if viewCount > 0 : # Recording Animation animationview.RecordingAnimation(export_filepath, RecordingType.MP4, RecordingRangeType.ActiveView, 10, specs) -# Close the Pages +# Get all created pages. +# This retrieves all pages created in the application. pages = applicationHandler.GetPages() for page in pages : page.Close() @@ -417,17 +588,19 @@ applicationHandler.CloseDocument(result_file_path) ``` -## Expression -This example demonstrates how to create a expression. -A Postprocessor Expression is similar to a Function Expression in the Motion Preprocessor. It represents a formula that can be written as a combination of functions of displacement, velocity, and acceleration between specified markers, and it also supports basic mathematical functions. +## Vector Display +This example demonstrates how to create a vector display. +Vector display is used to display the force vector in animation view. It is a useful tool for analyzing the magnitude or direction of a force. The force and torque of joint, force, and contact are available in the vector display. ```python -# OperationAPI_CreatingAExpression.py +# OperationAPI_CreatingAVectorDisplay.py import sys +# Get the current file's path and set the path for external modules. current_dir = __file__.rsplit('\\', 1)[0] external_modules_path = current_dir + '\\..\\..\\Modules' - sys.path.append(external_modules_path) + +# Import necessary modules from OperationAPI import * # Start the headless application interface @@ -441,9 +614,12 @@ filepaths = List[str]() filepaths.Add(result_file_path) # Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. applicationHandler.AddDocument(filepaths) -# Find Page +# Get all created pages. +# This retrieves all pages created in the application. pages = applicationHandler.GetPages() findViews = list() @@ -456,31 +632,60 @@ for page in pages : viewCount = len(findViews) if viewCount > 0 : + # result_file_path - Get the document from the result file path. document = applicationHandler.GetDocument(result_file_path) + + # This retrieves the analysis result from the document. + # Types of Analysis Results + # - Dynamics + # - Eigenvalue + # - Statics analysis = document.GetAnalysisResultViewModel(AnalysisResultType.Dynamics) - # Creating a Expression - expression = analysis.CreateExpression("expression") - expression.Expression = "DM(\"Crank/CM\")" + entityName = "TJ_01" + base_force_characteristic = "Base Force" + base_torque_characteristic = "Base Torque" + + # Create Vector Display + # entityName - The name of the target entity for the vector display. + # base_force_characteristic - The name of the characteristic. Refer to the UI for Vector Display for available characteristics. + vector = analysis.CreateVectorDisplay(entityName, base_force_characteristic) -# Close the Page -page.Close() + # Set properties for the vector display + vector.IsLabel = True + vector.IsVisible = True + vector.LabelBackgroundColor = OperationAPIService.GetColorFrameRGB(255,255,255) + vector.LabelTextColor = OperationAPIService.GetColorFrameRGB(0,0,0) + vector.FullName = "TJ_VectorDisplay" + vector.IsLog = False + vector.Scale = 1000 + vector.SetCharacteristic(base_torque_characteristic) + vector.Color = Colors.Blue + +# Get all created pages. +# This retrieves all pages created in the application. +pages = applicationHandler.GetPages() +for page in pages : + page.Close() # Close the Document applicationHandler.CloseDocument(result_file_path) ``` -## Create Node & Element -This example demonstrates how to create nodes and elements within a flexible body. +## View Entity Management: Show, Hide, and Fit +This example demonstrates how to show, hide, or fit entities within the current Animation View. ```python -# OperationAPI_CreatingANodeAndElement.py +# -*- coding: utf-8 -*- +# OperationAPI_ViewEntityControl.py import sys +# Get the current file's path and set the path for external modules. current_dir = __file__.rsplit('\\', 1)[0] external_modules_path = current_dir + '\\..\\..\\Modules' - sys.path.append(external_modules_path) + +# Import necessary modules from OperationAPI import * # Start the headless application interface @@ -494,41 +699,41 @@ filepaths = List[str]() filepaths.Add(result_file_path) # Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. applicationHandler.AddDocument(filepaths) -# Find Page -pages = applicationHandler.GetPages() +# Get Active Page +# This retrieves the currently active page in the application. +page = applicationHandler.GetActivePage() -findViews = list() -for page in pages : - views = page.GetViews() - animationViews = [view for view in views if view.ViewType == ViewType.Animation] - for animationView in animationViews : - if animationView.DocumentFilePath == result_file_path and animationView.AnalysisResultType == AnalysisResultType.Dynamics : - findViews.append(animationView) +# Get Active View +# This retrieves the currently active view in the page. +animationView = page.GetActiveView() -viewCount = len(findViews) -if viewCount > 0 : - document = applicationHandler.GetDocument(result_file_path) - analysis = document.GetAnalysisResultViewModel(AnalysisResultType.Dynamics) +# Get instance of entity +# The GetViewModelByName method retrieves the target by its name. +febody = animationView.GetViewModelByName("FEBody_01") - # Get a febody - febody = analysis.GetViewModel("FEBody_01") +# Hides all entities except the specified ones. +# In this case, we hide all entities except the FEBody_01. +# Input: febody.FullName +# or Input: febody.ID +animationView.HideOthers(febody.ID) - # Create Node - node = febody.CreateNode(754) - node.ChangeID(755) +# Fit the view to the current selection. +animationView.Fit() - # Create Element - element = febody.CreateElement(2343) - element.ChangeID(2601) +# Show all entities in the view. +animationView.ShowAll() -# Close the Pages +# Get all created pages. +# This retrieves all pages created in the application. pages = applicationHandler.GetPages() for page in pages : page.Close() -# Close the Document +# Close Document applicationHandler.CloseDocument(result_file_path) ``` \ No newline at end of file diff --git a/2026R1/motion_post_lib_doc-26-r1/example_chart_for_operation_api.md b/2026R1/motion_post_lib_doc-26-r1/example_chart_for_operation_api.md index 1921eb2a40..2f66871422 100644 --- a/2026R1/motion_post_lib_doc-26-r1/example_chart_for_operation_api.md +++ b/2026R1/motion_post_lib_doc-26-r1/example_chart_for_operation_api.md @@ -9,11 +9,12 @@ Chart view is useful for analyzing simulation results by using a graph which is # OperationAPI_CreatingAChartView.py import sys +# Get the current file's path and set the path for external modules. current_dir = __file__.rsplit('\\', 1)[0] external_modules_path = current_dir + '\\..\\..\\Modules' - sys.path.append(external_modules_path) +# Import necessary modules from OperationAPI import * # Start the headless application interface @@ -27,12 +28,17 @@ filepaths = List[str]() filepaths.Add(result_file_path) # Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. applicationHandler.AddDocument(filepaths) -# Get Page +# Get Active Page +# This retrieves the currently active page in the application. page = applicationHandler.GetActivePage() -# Create PlotView +# Creating a Chart +# Create a new Chart View on the page +# This will create a new chart view with the specified name. chartView = page.CreateChart("Chart") # Set Background @@ -55,10 +61,12 @@ For combinations of paths(Characteristic, Component) on the curve, refer to Comm # OperationAPI_CreatingCurves.py import sys +# Get the current file's path and set the path for external modules. current_dir = __file__.rsplit('\\', 1)[0] external_modules_path = current_dir + '\\..\\..\\Modules' - sys.path.append(external_modules_path) + +# Import necessary modules from OperationAPI import * # Start the headless application interface @@ -72,12 +80,17 @@ filepaths = List[str]() filepaths.Add(result_file_path) # Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. applicationHandler.AddDocument(filepaths) -# Get Page +# Get Active Page +# This retrieves the currently active page in the application. page = applicationHandler.GetActivePage() -# Create PlotView +# Creating a Chart +# Create a new Chart View on the page +# This will create a new chart view with the specified name. chartView = page.CreateChart("Chart") # Documentation Example @@ -86,7 +99,11 @@ curvePaths = List[str]() curvePaths.Add(r'Displacement/Magnitude') curvePaths.Add(r'Displacement/Z') -# Set a Curve Parameter +# Create a PlotParameters object to specify the parameters for the plot. +# Set the Entity to Plot. +# The Target is the name of the target for which you want to retrieve the curves. +# Set the paths for the curves you want to retrieve. +# This is where you specify the characteristics and components you want to plot. parameters = PlotParameters() parameters.Paths = curvePaths parameters.Target = "Crank" @@ -116,10 +133,12 @@ It is perform addition, subtraction and multiplication between graphs in the cha # OperationAPI_CreatingAPage.py import sys +# Get the current file's path and set the path for external modules. current_dir = __file__.rsplit('\\', 1)[0] external_modules_path = current_dir + '\\..\\..\\Modules' - sys.path.append(external_modules_path) + +# Import necessary modules from OperationAPI import * # Start the headless application interface @@ -133,20 +152,32 @@ filepaths = List[str]() filepaths.Add(result_file_path) # Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. applicationHandler.AddDocument(filepaths) -# Get Page +# Get Active Page +# This retrieves the currently active page in the application. page = applicationHandler.GetActivePage() -# Create PlotView +# Creating a Chart +# Create a new Chart View on the page +# This will create a new chart view with the specified name. chartView = page.CreateChart("Chart") -# Set array about combination of characteristic and component +# Specify the paths for the curves you want to retrieve. +# For example, Acceleration represents the Characteristic, and Y after the / represents the Component. +# In this case, we are retrieving the Y component of Acceleration for the Crank. +# You can check the available Characteristics and Components for the target by using Add Curve in the Postprocessor. curvePaths = List[str]() curvePaths.Add(r'Displacement/Magnitude') curvePaths.Add(r'Displacement/Z') -# Set a Curve Parameter +# Create a PlotParameters object to specify the parameters for the plot. +# Set the Entity to Plot. +# The Target is the name of the target for which you want to retrieve the curves. +# Set the paths for the curves you want to retrieve. +# This is where you specify the characteristics and components you want to plot. parameters = PlotParameters() parameters.Paths = curvePaths parameters.Target = "Crank" @@ -157,18 +188,17 @@ parameters.Target = "Crank" # The instance of the curve. curves = chartView.AddCurves(result_file_path, parameters) -# Documentation Example # SeriesNames - A list of curve names. # SimpleMathType - The types of the simple math are as follows. # Points - The number of data points for interpolation. -# Add +# SimpleMath - Add chartView.CreateSimpleMath(curves, SimpleMathType.Add, 100) -# Subtract +# SimpleMath - Subtract chartView.CreateSimpleMath(curves, SimpleMathType.Subtract, 100) -# Multiply +# SimpleMath - Multiply chartView.CreateSimpleMath(curves, SimpleMathType.Multiply, 100) # Close the Pages @@ -185,10 +215,12 @@ It is transform graphs through translate, align, scale, and absolute in the char # OperationAPI_CreatingATransform.py import sys +# Get the current file's path and set the path for external modules. current_dir = __file__.rsplit('\\', 1)[0] external_modules_path = current_dir + '\\..\\..\\Modules' - sys.path.append(external_modules_path) + +# Import necessary modules from OperationAPI import * # Start the headless application interface @@ -202,20 +234,32 @@ filepaths = List[str]() filepaths.Add(result_file_path) # Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. applicationHandler.AddDocument(filepaths) -# Get Page +# Get Active Page +# This retrieves the currently active page in the application. page = applicationHandler.GetActivePage() -# Create PlotView +# Creating a Chart +# Create a new Chart View on the page +# This will create a new chart view with the specified name. chartView = page.CreateChart("Chart") -# Set array about combination of characteristic and component +# Specify the paths for the curves you want to retrieve. +# For example, Acceleration represents the Characteristic, and Y after the / represents the Component. +# In this case, we are retrieving the Y component of Acceleration for the Crank. +# You can check the available Characteristics and Components for the target by using Add Curve in the Postprocessor. curvePaths = List[str]() curvePaths.Add(r'Displacement/Magnitude') curvePaths.Add(r'Displacement/Z') -# Set a Curve Parameter +# Create a PlotParameters object to specify the parameters for the plot. +# Set the Entity to Plot. +# The Target is the name of the target for which you want to retrieve the curves. +# Set the paths for the curves you want to retrieve. +# This is where you specify the characteristics and components you want to plot. parameters = PlotParameters() parameters.Paths = curvePaths parameters.Target = "Crank" @@ -265,10 +309,12 @@ It is interpolate graphs with the desired number of data points in the chart vie # OperationAPI_CreatingAInterpolation.py import sys +# Get the current file's path and set the path for external modules. current_dir = __file__.rsplit('\\', 1)[0] external_modules_path = current_dir + '\\..\\..\\Modules' - sys.path.append(external_modules_path) + +# Import necessary modules from OperationAPI import * # Start the headless application interface @@ -282,19 +328,31 @@ filepaths = List[str]() filepaths.Add(result_file_path) # Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. applicationHandler.AddDocument(filepaths) -# Get Page +# Get Active Page +# This retrieves the currently active page in the application. page = applicationHandler.GetActivePage() -# Create PlotView +# Creating a Chart +# Create a new Chart View on the page +# This will create a new chart view with the specified name. chartView = page.CreateChart("Chart") -# Set array about combination of characteristic and component +# Specify the paths for the curves you want to retrieve. +# For example, Acceleration represents the Characteristic, and Y after the / represents the Component. +# In this case, we are retrieving the Y component of Acceleration for the Crank. +# You can check the available Characteristics and Components for the target by using Add Curve in the Postprocessor. curvePaths = List[str]() curvePaths.Add(r'Displacement/Magnitude') -# Set a Curve Parameter +# Create a PlotParameters object to specify the parameters for the plot. +# Set the Entity to Plot. +# The Target is the name of the target for which you want to retrieve the curves. +# Set the paths for the curves you want to retrieve. +# This is where you specify the characteristics and components you want to plot. parameters = PlotParameters() parameters.Paths = curvePaths parameters.Target = "Crank" @@ -325,10 +383,12 @@ It is integrate or differentiate graphs in the chart view. # OperationAPI_CreatingACalculus.py import sys +# Get the current file's path and set the path for external modules. current_dir = __file__.rsplit('\\', 1)[0] external_modules_path = current_dir + '\\..\\..\\Modules' sys.path.append(external_modules_path) +# Import necessary modules from OperationAPI import * # Start the headless application interface @@ -342,22 +402,34 @@ filepaths = List[str]() filepaths.Add(result_file_path) # Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. applicationHandler.AddDocument(filepaths) -# Get Page +# Get Active Page +# This retrieves the currently active page in the application. page = applicationHandler.GetActivePage() -# Create PlotView +# Creating a Chart +# Create a new Chart View on the page +# This will create a new chart view with the specified name. chartView = page.CreateChart("Chart") -# Set array about combination of characteristic and component +# Specify the paths for the curves you want to retrieve. +# For example, Acceleration represents the Characteristic, and Y after the / represents the Component. +# In this case, we are retrieving the Y component of Acceleration for the Crank. +# You can check the available Characteristics and Components for the target by using Add Curve in the Postprocessor. curvePaths = List[str]() curvePaths.Add(r'Displacement/Magnitude') -# Set a Curve Parameter +# Create a PlotParameters object to specify the parameters for the plot. +# Set the Entity to Plot. +# The Target is the name of the target for which you want to retrieve the curves. +# Set the paths for the curves you want to retrieve. +# This is where you specify the characteristics and components you want to plot. parameters = PlotParameters() -parameters.Paths = curvePaths parameters.Target = "Crank" +parameters.Paths = curvePaths # Add Curves (FilePath, Curve Parameter) # FilePath - The path of the result to access. @@ -387,10 +459,12 @@ It is perform data filtering and smoothing of graphs in the chart view. # OperationAPI_SignalProcessing.py import sys +# Get the current file's path and set the path for external modules. current_dir = __file__.rsplit('\\', 1)[0] external_modules_path = current_dir + '\\..\\..\\Modules' - sys.path.append(external_modules_path) + +# Import necessary modules from OperationAPI import * # Start the headless application interface @@ -404,20 +478,32 @@ filepaths = List[str]() filepaths.Add(result_file_path) # Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. applicationHandler.AddDocument(filepaths) -# Get Page +# Get Active Page +# This retrieves the currently active page in the application. page = applicationHandler.GetActivePage() -# Create PlotView +# Creating a Chart +# Create a new Chart View on the page +# This will create a new chart view with the specified name. chartView = page.CreateChart("Chart") -# Set array about combination of characteristic and component +# Specify the paths for the curves you want to retrieve. +# For example, Acceleration represents the Characteristic, and Y after the / represents the Component. +# In this case, we are retrieving the Y component of Acceleration for the Crank. +# You can check the available Characteristics and Components for the target by using Add Curve in the Postprocessor. curvePaths = List[str]() curvePaths.Add(r'Displacement/Magnitude') curvePaths.Add(r'Displacement/Z') -# Set a Curve Parameter +# Create a PlotParameters object to specify the parameters for the plot. +# Set the Entity to Plot. +# The Target is the name of the target for which you want to retrieve the curves. +# Set the paths for the curves you want to retrieve. +# This is where you specify the characteristics and components you want to plot. parameters = PlotParameters() parameters.Paths = curvePaths parameters.Target = "Crank" @@ -465,10 +551,12 @@ It is transform data in the time domain to the frequency domain by using the Fas # OperationAPI_CreatingAFFT.py import sys +# Get the current file's path and set the path for external modules. current_dir = __file__.rsplit('\\', 1)[0] external_modules_path = current_dir + '\\..\\..\\Modules' - sys.path.append(external_modules_path) + +# Import necessary modules from OperationAPI import * # Start the headless application interface @@ -482,19 +570,31 @@ filepaths = List[str]() filepaths.Add(result_file_path) # Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. applicationHandler.AddDocument(filepaths) -# Get Page +# Get Active Page +# This retrieves the currently active page in the application. page = applicationHandler.GetActivePage() -# Create PlotView +# Creating a Chart +# Create a new Chart View on the page +# This will create a new chart view with the specified name. chartView = page.CreateChart("Chart") -# Set array about combination of characteristic and component +# Specify the paths for the curves you want to retrieve. +# For example, Acceleration represents the Characteristic, and Y after the / represents the Component. +# In this case, we are retrieving the Y component of Acceleration for the Crank. +# You can check the available Characteristics and Components for the target by using Add Curve in the Postprocessor. curvePaths = List[str]() curvePaths.Add(r'Displacement/Magnitude') -# Set a Curve Parameter +# Create a PlotParameters object to specify the parameters for the plot. +# Set the Entity to Plot. +# The Target is the name of the target for which you want to retrieve the curves. +# Set the paths for the curves you want to retrieve. +# This is where you specify the characteristics and components you want to plot. parameters = PlotParameters() parameters.Paths = curvePaths parameters.Target = "Crank" @@ -532,10 +632,12 @@ The short time furrier transformation method(STFT) can transform the data in tim # OperationAPI_CreatingSTFT.py import sys +# Get the current file's path and set the path for external modules. current_dir = __file__.rsplit('\\', 1)[0] external_modules_path = current_dir + '\\..\\..\\Modules' - sys.path.append(external_modules_path) + +# Import necessary modules from OperationAPI import * # Start the headless application interface @@ -549,19 +651,31 @@ filepaths = List[str]() filepaths.Add(result_file_path) # Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. applicationHandler.AddDocument(filepaths) -# Get Page +# Get Active Page +# This retrieves the currently active page in the application. page = applicationHandler.GetActivePage() -# Create PlotView +# Creating a Chart +# Create a new Chart View on the page +# This will create a new chart view with the specified name. chartView = page.CreateChart("Chart") -# Set array about combination of characteristic and component +# Specify the paths for the curves you want to retrieve. +# For example, Acceleration represents the Characteristic, and Y after the / represents the Component. +# In this case, we are retrieving the Y component of Acceleration for the Crank. +# You can check the available Characteristics and Components for the target by using Add Curve in the Postprocessor. curvePaths = List[str]() curvePaths.Add(r'Displacement/Magnitude') -# Set a Curve Parameter +# Create a PlotParameters object to specify the parameters for the plot. +# Set the Entity to Plot. +# The Target is the name of the target for which you want to retrieve the curves. +# Set the paths for the curves you want to retrieve. +# This is where you specify the characteristics and components you want to plot. parameters = PlotParameters() parameters.Paths = curvePaths parameters.Target = "Crank" diff --git a/2026R1/motion_post_lib_doc-26-r1/example_export_for_operation_api.md b/2026R1/motion_post_lib_doc-26-r1/example_export_for_operation_api.md index ed313fb140..9806448714 100644 --- a/2026R1/motion_post_lib_doc-26-r1/example_export_for_operation_api.md +++ b/2026R1/motion_post_lib_doc-26-r1/example_export_for_operation_api.md @@ -8,10 +8,12 @@ Export all curves on active plot view. # OperationAPI_ExportAllCurves.py import sys +# Get the current file's path and set the path for external modules. current_dir = __file__.rsplit('\\', 1)[0] external_modules_path = current_dir + '\\..\\..\\Modules' - sys.path.append(external_modules_path) + +# Import necessary modules from OperationAPI import * # Start the headless application interface @@ -25,20 +27,32 @@ filepaths = List[str]() filepaths.Add(result_file_path) # Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. applicationHandler.AddDocument(filepaths) -# Get Page +# Get Active Page +# This retrieves the currently active page in the application. page = applicationHandler.GetActivePage() -# Create PlotView +# Creating a Chart +# Create a new Chart View on the page +# This will create a new chart view with the specified name. chartView = page.CreateChart("Chart") -# Set array about combination of characteristic and component +# Specify the paths for the curves you want to retrieve. +# For example, Acceleration represents the Characteristic, and Y after the / represents the Component. +# In this case, we are retrieving the Y component of Acceleration for the Crank. +# You can check the available Characteristics and Components for the target by using Add Curve in the Postprocessor. curvePaths = List[str]() curvePaths.Add(r'Displacement/Magnitude') curvePaths.Add(r'Displacement/Z') -# Set a Curve Parameter +# Create a PlotParameters object to specify the parameters for the plot. +# Set the Entity to Plot. +# The Target is the name of the target for which you want to retrieve the curves. +# Set the paths for the curves you want to retrieve. +# This is where you specify the characteristics and components you want to plot. parameters = PlotParameters() parameters.Paths = curvePaths parameters.Target = "Crank" @@ -49,13 +63,16 @@ parameters.Target = "Crank" # The instance of the curve. curves = chartView.AddCurves(result_file_path, parameters) +# Change the name of the curves index = 0 for curve in curves : curve.SeriesName = "NameChange_{0}".format(index) index = index + 1 -# Documentation Example -# use not file dialog +# Exporting All Curves +# The output path is 'examples/Output'. +# file_path - The path to the file where the curve data will be exported. +# This function exports all curves in the chart view to a specified file. output_dir = get_output_directory() export_filepath = combine_path(output_dir, r'curvedata.txt') chartView.ExportAllCurves(export_filepath) @@ -68,16 +85,19 @@ applicationHandler.CloseDocument(result_file_path) ``` -## Numeric Import -Here is an example of importing curve results from a file. +## Export Contour Result To File +This example demonstrates how to export contour results to a file. ```python -# OperationAPI_NumericImport.py +# Export.py +# -*- coding: utf-8 -*- import sys +# Get the current file's path and set the path for external modules. current_dir = __file__.rsplit('\\', 1)[0] external_modules_path = current_dir + '\\..\\..\\Modules' - sys.path.append(external_modules_path) + +# Import necessary modules from OperationAPI import * # Start the headless application interface @@ -86,63 +106,87 @@ applicationHandler = ApplicationHandler() # Import result file result_file_path = get_result_file_path() -# Set array about result file +# Set array about result file - There may be multiple result files. filepaths = List[str]() filepaths.Add(result_file_path) # Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. applicationHandler.AddDocument(filepaths) -# Get Page +# Get Active Page +# This retrieves the currently active page in the application. page = applicationHandler.GetActivePage() -# Create PlotView -chartView = page.CreateChart("Chart") - -# Set array about combination of characteristic and component -curvePaths = List[str]() -curvePaths.Add(r'Displacement/Magnitude') -curvePaths.Add(r'Displacement/Z') - -# Set a Curve Parameter -parameters = PlotParameters() -parameters.Paths = curvePaths -parameters.Target = "Crank" - -# Add Curves (FilePath, Curve Parameter) -# FilePath - The path of the result to access. -# parameters - The class used as a parameter of the AddCurve function. -# The instance of the curve. -curves = chartView.AddCurves(result_file_path, parameters) - -index = 0 -for curve in curves : - curve.SeriesName = "NameChange_{0}".format(index) - index = index + 1 - -# File Dialog Open -# chart1.ExportAllDataSeries() - -# use not file dialog -output_dir = get_output_directory() -export_filepath = combine_path(output_dir, r'curvedata.txt') -chartView.ExportAllCurves(export_filepath) - -# Documentation Example -parameters = List[INumericParameter](2) -parameter = NumericParameter() -parameter.Name = r'NameChange_10' -parameter.TargetX = r'X(sec)' -parameter.TargetY = r'NameChange_1' -parameters.Add(parameter) - -# Import Numeric -chartView.ImportNumeric(export_filepath, parameters) +# Get Active View +# This retrieves the currently active view in the page. +activeView = page.GetActiveView() + +# Loading Animation - Use this only when the current Active View is an Animation View. +# This method is used to load the animation in the active view. +applicationHandler.LoadingAnimation() + +# Get instance of entity +# The GetViewModelByName method retrieves the target by its name. +febody = activeView.GetViewModelByName("FEBody_01") + +# Check if the FEBody is found +if febody is None: + sys.exit(1) + +# Set Ouput Path - The path where the output will be saved. +output_path = combine_path(get_output_directory(), "Displacement.txt") + +# A boolean indicating whether to export the full frame or not. +# If True, the full frame will be exported; if False, only the current frame will be exported. +is_full_frame = True + +# Set the febody fullname as the target for export +targetNames = List[str]() +targetNames.Add(febody.FullName) + +# Set Contour Mapping Type +# ContourMappingType can be one of the following: +# - ContourMappingType.None - None +# - ContourMappingType.FENode - Node (Averaged across body) +# - ContourMappingType.FEElement - Element (Unaveraged) +# - ContourMappingType.FEElementNode - Node (Unaveraged) +# - ContourMappingType.FEMaterial - Node (Averaged within material) +# - ContourMappingType.BeamGroup - Beam Group +# - ContourMappingType.Contact - Contact +# - ContourMappingType.ChainedSystem - Chained System +# - ContourMappingType.Usersubroutine - Usersubroutine +contour_mapping_type = ContourMappingType.FENode + +# Set Characteristic Path +characteristic_path = "Displacement" + +# Set Component Path +component_path = "X" + +# Combine Characteristic and Component Path +combined_characteristic_component_path = characteristic_path + "/" + component_path + +# Export Contour Result to File - When the Animation View is the Active View +# result_file_path - The path to the result file. +# output_path - The path to the output file where the contour results will be saved. +# targetNames - The list of target names for which the contour results will be exported. +# is_full_frame - A boolean indicating whether to export the full frame or not. +# contour_mapping_type - The type of contour mapping to be used. +# characteristic_component_path - The path to the characteristic and component for which the contour results will be exported. +# AnalysisType - The default value is AnalysisResultType.Dynamics. If you want to change it, please set the AnalysisType. +# FileFormatType - The format of the output file. The default is FileFormatType.Text. The format type can be set to TXT or BINARY. +Export.ExportContourResultToFile(result_file_path, output_path, targetNames, is_full_frame, contour_mapping_type, combined_characteristic_component_path) # Close the Pages -page.Close() +# Get all created pages. +# This retrieves all pages created in the application. +pages = applicationHandler.GetPages() +for page in pages : + page.Close() -# Close the Document +# Close Document applicationHandler.CloseDocument(result_file_path) ``` \ No newline at end of file diff --git a/2026R1/motion_post_lib_doc-26-r1/example_result_file_reader.md b/2026R1/motion_post_lib_doc-26-r1/example_result_file_reader.md index 5c6056249b..30399e0dd1 100644 --- a/2026R1/motion_post_lib_doc-26-r1/example_result_file_reader.md +++ b/2026R1/motion_post_lib_doc-26-r1/example_result_file_reader.md @@ -13,19 +13,20 @@ The Coordinate system can be created from various entities in the result as belo import sys from pathlib import Path +# Get the current file's path and set the path for external modules. current_dir = Path(__file__).resolve().parent - external_modules_path = Path(current_dir, r'../../Modules').resolve() sys.path.append('{0}'.format(external_modules_path)) +# Import necessary modules from ResultFileReaderAPI import * # Import result file outputReader = OutputReader(get_result_file_path()) -# newName - Specifies the name of the marker. -# parentFullName - Specifies the name of parent. -# Rigid Body +# Create a Coordinate System +# Name - Set the name of instance. +# ParentInfo - Specifies The path of an parent entity. crank_csys = outputReader.CreateCoordinateSystem("Crank_CSYS", "Crank") crank_csys.TransformationOffsetParameters.Angle = Vector(0, 10, 0) crank_csys.TransformationOffsetParameters.Position = Vector(10, 10, 10) @@ -55,11 +56,15 @@ elif crank_csys.GeneralMarkerType == GeneralMarkerType.CYLINDRICAL: # Rigid Body print (f"Marker Name : {crank_csys.FullName}") -# FE Node +# Create a Coordinate System +# Name - Set the name of instance. +# ParentInfo - Specifies The path of an parent entity. fenode_csys = outputReader.CreateCoordinateSystem("NodeCSYS", "FEBody_01/Node/754") print (f"Marker Name : {fenode_csys.FullName}") -# Marker +# Create a Coordinate System +# Name - Set the name of instance. +# ParentInfo - Specifies The path of an parent entity. marker_csys = outputReader.CreateCoordinateSystem("MarkerCSYS", "Crank/CM") print (f"Marker Name : {marker_csys.FullName}") @@ -79,26 +84,46 @@ It is the simplest example of a Python script to print plot data. import sys from pathlib import Path +# Get the current file's path and set the path for external modules. current_dir = Path(__file__).resolve().parent - external_modules_path = Path(current_dir, r'../../Modules').resolve() sys.path.append('{0}'.format(external_modules_path)) +# Import necessary modules from ResultFileReaderAPI import * # Import result file +# Create an OutputReader instance to read the result file. outputReader = OutputReader(get_result_file_path()) -# Get Curves +# Specify the paths for the curves you want to retrieve. +# For example, Acceleration represents the Characteristic, and Y after the / represents the Component. +# In this case, we are retrieving the Y component of Acceleration for the Crank. +# You can check the available Characteristics and Components for the target by using Add Curve in the Postprocessor. paths = List[str]() paths.Add("Acceleration/Y") +# Create a PlotParameters object to specify the parameters for the plot. plotParameter = PlotParameters() + +# Set the Entity to Plot. +# The Target is the name of the target for which you want to retrieve the curves. plotParameter.Target = "Crank" + +# Set the paths for the curves you want to retrieve. +# This is where you specify the characteristics and components you want to plot. plotParameter.Paths = paths +# There are two ways to retrieve the results of the curve: +# 1. PlotDataType.DEFAULT - Uses the default PlotDataType setting. +# 2. PlotDataType.PlotResult - If a Plt result exists, you can set PlotResult and obtain the result from Plt. +# If PlotDataType is not set, it is set to Default by default. +plotParameter.PlotDataType = PlotDataType.DEFAULT + +# Get curve data from the result. results = outputReader.GetCurves(plotParameter) +# Print the results in a formatted way. for result in results : print(['Time\t', "Y", '\n']) for plotData in result.Value : @@ -118,11 +143,12 @@ Export contour results to a file import struct, os, sys from pathlib import Path +# Get the current file's path and set the path for external modules. current_dir = Path(__file__).resolve().parent - external_modules_path = Path(current_dir, r'../../Modules').resolve() sys.path.append('{0}'.format(external_modules_path)) +# Import necessary modules from ResultFileReaderAPI import * # Import result file @@ -181,11 +207,12 @@ Export vector results to a file import os, sys from pathlib import Path +# Get the current file's path and set the path for external modules. current_dir = Path(__file__).resolve().parent - external_modules_path = Path(current_dir, r'../../Modules').resolve() sys.path.append('{0}'.format(external_modules_path)) +# Import necessary modules from ResultFileReaderAPI import * # Import result file @@ -224,11 +251,12 @@ Get results from the Vector. import sys from pathlib import Path +# Get the current file's path and set the path for external modules. current_dir = Path(__file__).resolve().parent - external_modules_path = Path(current_dir, r'../../Modules').resolve() sys.path.append('{0}'.format(external_modules_path)) +# Import necessary modules from ResultFileReaderAPI import * # Import result file diff --git a/2026R1/motion_post_lib_doc-26-r1/example_view_for_operation_api.md b/2026R1/motion_post_lib_doc-26-r1/example_view_for_operation_api.md index a602f3db42..55a753d2df 100644 --- a/2026R1/motion_post_lib_doc-26-r1/example_view_for_operation_api.md +++ b/2026R1/motion_post_lib_doc-26-r1/example_view_for_operation_api.md @@ -8,10 +8,12 @@ This example demonstrates how to create a page. # OperationAPI_CreatingAPage.py import sys +# Get the current file's path and set the path for external modules. current_dir = __file__.rsplit('\\', 1)[0] external_modules_path = current_dir + '\\..\\..\\Modules' - sys.path.append(external_modules_path) + +# Import necessary modules from OperationAPI import * # Start the headless application interface @@ -25,12 +27,17 @@ filepaths = List[str]() filepaths.Add(result_file_path) # Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. applicationHandler.AddDocument(filepaths) -# Get Page +# Add a new page +# This will create a new page and activate it. +# You can specify the page name when the page is created. page = applicationHandler.AddPage("FirstPage") -# Close the Pages +# Get all created pages. +# This retrieves all pages created in the application. pages = applicationHandler.GetPages() for page in pages : page.Close() @@ -46,10 +53,12 @@ This example demonstrates how to find and delete a created page. # OperationAPI_FindingAndDeletingAPage.py import sys +# Get the current file's path and set the path for external modules. current_dir = __file__.rsplit('\\', 1)[0] external_modules_path = current_dir + '\\..\\..\\Modules' - sys.path.append(external_modules_path) + +# Import necessary modules from OperationAPI import * # Start the headless application interface @@ -63,9 +72,13 @@ filepaths = List[str]() filepaths.Add(result_file_path) # Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. applicationHandler.AddDocument(filepaths) -# Create a page +# Add a new page +# This will create a new page and activate it. +# You can specify the page name when the page is created. applicationHandler.AddPage("FirstPage") # Find a page @@ -74,7 +87,8 @@ page = applicationHandler.GetPage("FirstPage") # Close a page applicationHandler.ClosePage(page.ID) -# Find Page +# Get all created pages. +# This retrieves all pages created in the application. pages = applicationHandler.GetPages() findViews = list() @@ -85,7 +99,8 @@ for page in pages : if animationView.DocumentFilePath == result_file_path and animationView.AnalysisResultType == AnalysisResultType.Dynamics : findViews.append(animationView) -# Close the Pages +# Get all created pages. +# This retrieves all pages created in the application. pages = applicationHandler.GetPages() for page in pages : page.Close() @@ -101,10 +116,12 @@ This example demonstrates how to move a view within a page. # OperationAPI_MovingAView.py import sys +# Get the current file's path and set the path for external modules. current_dir = __file__.rsplit('\\', 1)[0] external_modules_path = current_dir + '\\..\\..\\Modules' - sys.path.append(external_modules_path) + +# Import necessary modules from OperationAPI import * # Start the headless application interface @@ -118,15 +135,31 @@ filepaths = List[str]() filepaths.Add(result_file_path) # Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. applicationHandler.AddDocument(filepaths) -# Get Page +# Get Active Page +# This retrieves the currently active page in the application. page = applicationHandler.GetActivePage() -# Create View +# result_file_path - Get the document from the result file path. document = applicationHandler.GetDocument(result_file_path) + +# This retrieves the analysis result from the document. +# Types of Analysis Results +# - Dynamics +# - Eigenvalue +# - Statics dynamic_analysis = document.GetAnalysisResultViewModel(AnalysisResultType.Dynamics) + +# Create an Animation View on the active page +# This will create an animation view based on the dynamic analysis. animation = page.CreateAnimation(dynamic_analysis, "ResultAnimation") + +# Creating a Chart +# Create a new Chart View on the page +# This will create a new chart view with the specified name. chart = page.CreateChart("Chart") # Moving a View diff --git a/2026R1/motion_post_lib_doc-26-r1/getting_started_operation_api_using_py.md b/2026R1/motion_post_lib_doc-26-r1/getting_started_operation_api_using_py.md index f9e3851877..8cb6b0e2a1 100644 --- a/2026R1/motion_post_lib_doc-26-r1/getting_started_operation_api_using_py.md +++ b/2026R1/motion_post_lib_doc-26-r1/getting_started_operation_api_using_py.md @@ -119,9 +119,13 @@ By using the ApplicationHandler class, you can gain a comprehensive understandin ```python # OperationAPIUsingThePythonLanguage.py import sys + +# Get the current file's path and set the path for external modules. current_dir = __file__.rsplit('\\', 1)[0] external_modules_path = current_dir + "\\Modules" sys.path.append(external_modules_path) + +# Import necessary modules from OperationAPI import * # Start the headless application interface @@ -136,6 +140,10 @@ result_file_path = get_result_file_path() paths = List[str](1) paths.Add(result_file_path) + +# Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. applicationHandler.AddDocument(paths) ``` diff --git a/2026R1/motion_post_lib_doc-26-r1/getting_started_result_file_reader_using_py.md b/2026R1/motion_post_lib_doc-26-r1/getting_started_result_file_reader_using_py.md index 48b1eeec05..a6059c0a44 100644 --- a/2026R1/motion_post_lib_doc-26-r1/getting_started_result_file_reader_using_py.md +++ b/2026R1/motion_post_lib_doc-26-r1/getting_started_result_file_reader_using_py.md @@ -53,11 +53,12 @@ The following sample code demonstrates how to use Result File Reader API : import sys from pathlib import Path +# Get the current file's path and set the path for external modules. current_dir = Path(__file__).resolve().parent - external_modules_path = Path(current_dir, r'./Modules').resolve() sys.path.append('{0}'.format(external_modules_path)) +# Import necessary modules from ResultFileReaderAPI import * # Import result file diff --git a/2026R1/motion_post_lib_doc-26-r1/index.md b/2026R1/motion_post_lib_doc-26-r1/index.md index 78842de14a..18145a32d8 100644 --- a/2026R1/motion_post_lib_doc-26-r1/index.md +++ b/2026R1/motion_post_lib_doc-26-r1/index.md @@ -16,10 +16,11 @@ The Ansys Motion Standalone Postprocessor C# Library is installed with the Ansys Operation script is a useful functionality that allows you to execute functions provided by Postprocess by using Python Script, allowing you to automate repetitive and time-consuming operations using Python Script. For example, you can use operation script to save time by automating everything from creating screens, adding results, Postprocessor results, and importing and using other library modules. (Some features may not be available.) Accessible functionalities by Python operation script: +* [Analysis](example_analysis_for_operation_api.md) * [Animation](example_animation_for_operation_api.md) * [Chart](example_chart_for_operation_api.md) * [Export](example_export_for_operation_api.md) -* [Analysis](example_analysis_for_operation_api.md) +* [Import](example_Import_for_operation_api.md) * [View](example_view_for_operation_api.md) ## Result File Reader diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.API.Post.Operations.ApplicationHandler.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.API.Post.Operations.ApplicationHandler.md index 35831075ec..58faa161a3 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.API.Post.Operations.ApplicationHandler.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.API.Post.Operations.ApplicationHandler.md @@ -1,30 +1,35 @@ -# Class ApplicationHandler +# Class ApplicationHandler + Namespace: [VM.API.Post.Operations](VM.API.Post.Operations.md) Assembly: VM.API.Post.Operations.dll This is the class to operate the OperationAPI. -```python +```csharp public class ApplicationHandler ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ApplicationHandler](VM.API.Post.Operations.ApplicationHandler.md) ## Examples For an example that includes information about interfaces, see this example. To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
# ApplicationHandler.py
+```python
+# ApplicationHandler.py
+# -*- coding: utf-8 -*-
 import sys
 
+# Get the current file's path and set the path for external modules.
 current_dir = __file__.rsplit('\\', 1)[0]
 external_modules_path = current_dir + '\\..\\..\\Modules'
 sys.path.append(external_modules_path)
 
+# Import necessary modules
 from OperationAPI import *
 
 # Start the headless application interface
@@ -41,36 +46,70 @@ filepaths = List[str]()
 filepaths.Add(result_file_path)
 
 # Open about result files
+# This will open the result file in the application.
+# When the result is first opened, a Page is created and an Animation View is created on that Page.
 applicationHandler.AddDocument(filepaths)
 
 # Get Active Page
+# This retrieves the currently active page in the application.
 page = applicationHandler.GetActivePage()
 
+# Change the name of the active page
 page.FullName = "Page1"
 
+# Add a new page
+# This will create a new page and activate it.
+# You can specify the page name when the page is created.
 page2 = applicationHandler.AddPage("Page2")
+
+# Activate the first page
 page.Activate()
 
-# Create View
+# result_file_path - Get the document from the result file path.
 document = applicationHandler.GetDocument(result_file_path)
+
+# This retrieves the analysis result from the document.
+# Types of Analysis Results
+# - Dynamics
+# - Eigenvalue
+# - Statics
 dynamic_analysis = document.GetAnalysisResultViewModel(AnalysisResultType.Dynamics)
 
-animation = page.CreateAnimation(dynamic_analysis, "ResultAnimation")
+# Create an Animation View on the active page
+# This will create an animation view based on the dynamic analysis.
+animation = page.CreateAnimation(dynamic_analysis, "AnimationView")
 
-chart = page.CreateChart("Chart")
+# Creating a Chart
+# Create a new Chart View on the page
+# This will create a new chart view with the specified name.
+chart = page.CreateChart("ChartView")
 
-# The output path is 'examples/Output'.
-output_dir = get_output_directory()
+# The path where the image will be saved.
 export_image_filepath = combine_path(output_dir, r'Image.png')
+
+# Export the chart as an image
+# chart - Export the chart view as an image. The export target can be AnimationView or ChartView.
+# export_image_filepath - The path where the image will be saved.
+# ImageFormat.Png - The format of the image to be exported.
+# ImageFormat can be Png, Jpeg, Bmp.
+# Width - The width of the exported image. The optional width for the exported image. If not specified, the original width is used.
+# Height - The height of the exported image. The optional height for the exported image. If not specified, the original height is used.
 applicationHandler.ExportImage(chart, export_image_filepath, ImageFormat.Png, 1920, 1080)
 
-# Get Page
+# Get Page - This retrieves a page by its name.
 page2 = applicationHandler.GetPage("Page2")
+
+# Activate the second page
 page2.Activate()
 
 # Creating a Chart
+# Create a new Chart View on the second page
+# This will create a new chart view with the specified name.
 chart = page2.CreateChart("Chart")
 
+# Create a Plot data
+# For ImportNumeric, a CSV file is created with sample data.
+output_dir = get_output_directory()
 file_path = combine_path(output_dir, r'example.csv')
 with open(file_path, 'w') as file:
     file.write("X,Y\n")
@@ -78,27 +117,33 @@ with open(file_path, 'w') as file:
     file.write("0.5,35\n")
     file.write("0.95,75\n")
 
-# Documentation Example
+# Importing Numeric Data
 parameters = List[INumericParameter](2)
+
+# To create a curve from a file, create a NumericParameter.
+# Name - The name of the curve to be created.
+# TargetX - The name of the X-axis data.
+# TargetY - The name of the Y-axis data.
+# In this example, a curve named 'OrderTrackingCurve' is created, and data corresponding to the X and Y headers is retrieved from the file.
 parameter = NumericParameter()
 parameter.Name = r'OrderTrackingCurve'
 parameter.TargetX = r'X'
 parameter.TargetY = r'Y'
 parameters.Add(parameter)
-chart.ImportNumeric(file_path, parameters)
 
-# Add Page
-page3 = applicationHandler.AddPage("Page3")
-page3.Activate()
+# file_path - The path to the file containing the numeric data.
+# parameters - The list of numeric parameters that define how to interpret the data in the file.
+chart.ImportNumeric(file_path, parameters)
 
-# Close the Pages
+# Get all created pages.
+# This retrieves all pages created in the application.
 pages = applicationHandler.GetPages()
 for page in pages :
     page.Close()
 
 # Close the Document
 applicationHandler.CloseDocument(result_file_path)
-
+``` ## Constructors @@ -106,7 +151,7 @@ applicationHandler.CloseDocument(result_file_path) Initializes a new instance of the class, enabling the OperationAPI to function. -```python +```csharp public ApplicationHandler() ``` @@ -124,13 +169,13 @@ This constructor sets up the necessary configurations to allow the OperationAPI Gets or sets a flag that determines whether a message box should be displayed or skipped when the API is executed -```python +```csharp public bool IsShowMessageBox { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples @@ -147,13 +192,13 @@ When set to false, the message box will be skipped, and the process will continu Imports results by adding documents to the UI. -```python +```csharp public void AddDocument(IList filepath) ``` #### Parameters -`filepath` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`filepath` IList A list of file paths representing the results to be imported. @@ -169,13 +214,13 @@ This method takes a list of file paths as input parameters and imports the corre Adds a new page with the specified name. -```python +```csharp public IPage AddPage(string name = null) ``` #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the page to be added. If no name is provided, a default name is used. @@ -197,8 +242,8 @@ This method adds a new page with the given name. If no name is provided, the pag Adds a new plot view by creating a chart. -```python -[Obsolete] +```csharp +[Obsolete("This method is considered outdated and its use is discouraged. It may be removed in future versions, so it is advisable to use the CreateChart function of the IPage interface instead.", true)] public IOperationsLine2DViewModelBase AddPlotView() ``` @@ -221,7 +266,7 @@ Instead, use the DurabilityAnalysis\(IDurabilityAnalysisParameter\) + +Performs durability analysis based on the provided parameters. + +```csharp +[Obsolete("This method is considered outdated and its use is discouraged. It may be removed in future versions, so it is advisable to use the RunFatigueAnalysisAndGenerateContours function of the DurabilityAnalysis class instead.", true)] +public bool DurabilityAnalysis(IDurabilityAnalysisParameter parameter) +``` + +#### Parameters + +`parameter` IDurabilityAnalysisParameter + +An instance of containing the parameters required for the analysis. + +#### Returns + + bool + +A value indicating whether the durability analysis and contour generation were successful. + +#### Examples + +For an example that includes this property, see the [ApplicationHandler](VM.API.Post.Operations.ApplicationHandler.md). + +#### Remarks + +This method first generates a fatigue analysis using the provided parameters. +If the fatigue analysis is successful, it proceeds to generate fatigue contours. +If either step fails, the method returns false. + ### ExportImage\(IView, string, ImageFormat, double?, double?\) Exports the current image to a specified file format. This function saves the image to the given file path. -```python +```csharp public void ExportImage(IView viewViewModel, string filepath, ImageFormat format, double? width = null, double? height = null) ``` @@ -313,7 +389,7 @@ public void ExportImage(IView viewViewModel, string filepath, ImageFormat format Represents the target to be captured. -`filepath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`filepath` string The path where the image file will be saved. @@ -323,11 +399,11 @@ The format in which the image will be saved. Supported formats are Png, Jpeg, an The available options are:
-`width` [double](https://learn.microsoft.com/dotnet/api/system.double)? +`width` double? The optional width for the exported image. If not specified, the original width is used. -`height` [double](https://learn.microsoft.com/dotnet/api/system.double)? +`height` double? The optional height for the exported image. If not specified, the original height is used. @@ -345,8 +421,8 @@ not provided, the original dimensions of the image will be used. Exports the current image to a specified file format. This function saves the image to the given file path. -```python -[Obsolete] +```csharp +[Obsolete("This method is considered outdated and its use is discouraged. It may be removed in future versions, so it is advisable to use the ExportImage function of the IView Interface instead.", true)] public void ExportImage(IView lineViewModel, string filepath, ExportType exportType, double? width = null, double? height = null) ``` @@ -356,7 +432,7 @@ public void ExportImage(IView lineViewModel, string filepath, ExportType exportT The view model to be exported. -`filepath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`filepath` string The file path where the image will be saved. @@ -364,11 +440,11 @@ The file path where the image will be saved. The type of export format (e.g., PNG, JPEG). -`width` [double](https://learn.microsoft.com/dotnet/api/system.double)? +`width` double? The optional width of the exported image. If not specified, the default width is used. -`height` [double](https://learn.microsoft.com/dotnet/api/system.double)? +`height` double? The optional height of the exported image. If not specified, the default height is used. @@ -384,8 +460,8 @@ This method exports the current view to an image file. However, this method is d Retrieves the active animation view from the current page. -```python -[Obsolete] +```csharp +[Obsolete("This method is considered outdated and its use is discouraged. It may be removed in future versions, so it is advisable to use the GetActiveView function of the IPage interface instead.", true)] public IOperationsAnimation GetActiveAnimationView() ``` @@ -408,7 +484,7 @@ Instead, use the new method provided in the targets) ``` @@ -631,11 +707,11 @@ public void ImportNumeric(IOperationsLine2DViewModelBase lineViewModel, string f The target plot view of the curve to import a numeric data​. -`filepath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`filepath` string The path to the file containing the imported curves. Supported file formats include (*.txt, *.csv, *.out, *.rsp). -`targets` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`targets` List A list of objects that specify the parameters for the curves to be created. @@ -653,14 +729,14 @@ Each method. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.API.Post.Operations.DurabilityAnalysis.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.API.Post.Operations.DurabilityAnalysis.md new file mode 100644 index 0000000000..e790729670 --- /dev/null +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.API.Post.Operations.DurabilityAnalysis.md @@ -0,0 +1,289 @@ +# Class DurabilityAnalysis + + +Namespace: [VM.API.Post.Operations](VM.API.Post.Operations.md) +Assembly: VM.API.Post.Operations.dll + +Provides methods for performing durability analysis operations. + +```csharp +public static class DurabilityAnalysis +``` + +#### Inheritance + +object ← +[DurabilityAnalysis](VM.API.Post.Operations.DurabilityAnalysis.md) + +## Examples + +For an example that includes information about interfaces, see this example. +To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. +```python +# DurabilityAnalysis.py +# -*- coding: utf-8 -*- +import sys + +# Get the current file's path and set the path for external modules. +current_dir = __file__.rsplit('\\', 1)[0] +external_modules_path = current_dir + '\\..\\..\\Modules' +sys.path.append(external_modules_path) + +# Import necessary modules +from OperationAPI import * + +# Start the headless application interface +applicationHandler = ApplicationHandler() + +# Import result file +result_file_path = get_result_file_path() + +# Set array about result file +filepaths = List[str]() +filepaths.Add(result_file_path) + +# Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. +applicationHandler.AddDocument(filepaths) + +# Get Active Page +# This retrieves the currently active page in the application. +page = applicationHandler.GetActivePage() + +# Get Active View +# This retrieves the currently active view in the page. +activeView = page.GetActiveView() + +# Loading Animation - Use this only when the current Active View is an Animation View. +# This method is used to load the animation in the active view. +applicationHandler.LoadingAnimation() + +# Get the FEBody instance +# The GetViewModelByName method retrieves the target by its name. +febody = activeView.GetViewModelByName("FEBody_01") + +# Get the Material instance +# The GetViewModelByName method retrieves the material by its name. +material = activeView.GetViewModelByName("2014_HV_O") + +# Check if the FEBody and Material are found +if febody is None or material is None: + sys.exit(1) + +# Set the febody and material properties +febody.Material = material + +# Set Analysis Type +# FatigueAnalysisType can be one of the following: +# - FatigueAnalysisType.SN - SN Curve +# - FatigueAnalysisType.EN - EN Curve +febody.AnalysisType = FatigueAnalysisType.SN + +# Set Stress-Strain Combination +# StressStrainCombinationType can be one of the following: +# - StressStrainCombinationType.VonMises - VonMises +# - StressStrainCombinationType.Signed_VonMises - Signed VonMises +# - StressStrainCombinationType.Max_Principal - 1st Principal +# - StressStrainCombinationType.Min_Principal - 3rd Principal +# - StressStrainCombinationType.Max_ABS_Principal - Max Abs Principal +# - StressStrainCombinationType.Max_Shear - Max Shear +# - StressStrainCombinationType.Signed_Max_Shear - Signed Max Shear +# - StressStrainCombinationType.Average_Principal - Average Principal +febody.StressStrainCombination = StressStrainCombinationType.VonMises + +# Set Mean Stress Correction +# - MeanStressCorrection.Neglect - Neglect +# - MeanStressCorrection.ModifiedGerber - Modified Gerber +# - MeanStressCorrection.GerberLocus - GerberLocus +# - MeanStressCorrection.Sodeberg - Sodeberg +# - MeanStressCorrection.DEelliptic - DEelliptic +febody.MeanStressCorrection = MeanStressCorrection.Neglect + +# Fatigue analysis parameters +# DocumentFilePath - The path to the result file. +# ResultName - Name of the fatigue result. The result will be saved in the Fatigue folder under the result file directory. +# NoOfRepeatedLoad - Number of repeated loads +# Start - Start time +# End - End time +# AddTarget - Adds a target. The target value is the ID of the FEBody. +durabilityParameter = DurabilityAnalysisParameter() +durabilityParameter.DocumentFilePath = result_file_path +durabilityParameter.ResultName = "FEBbody_01_Fatigue" +durabilityParameter.NoOfRepeatedLoad = 1 +durabilityParameter.Start = 1 +durabilityParameter.End = 10 +durabilityParameter.AddTarget(febody.ID) + +# Run the fatigue analysis +DurabilityAnalysis.RunFatigueAnalysis(durabilityParameter) + +# Run the fatigue analysis with contour +# DurabilityAnalysis.RunFatigueAnalysisAndGenerateContours(durabilityParameter) + +# Output Path +life_cycle_path = combine_path(get_output_directory(), "Fatigue_Life_Cycle.txt") + +# Set the febody fullname as the target for export +targetNames = List[str]() +targetNames.Add(febody.FullName) + +# A boolean indicating whether to export the full frame or not. +# If True, the full frame will be exported; if False, only the current frame will be exported. +is_full_frame = True + +# Set Contour Mapping Type +# ContourMappingType can be one of the following: +# - ContourMappingType.None - None +# - ContourMappingType.FENode - Node (Averaged across body) +# - ContourMappingType.FEElement - Element (Unaveraged) +# - ContourMappingType.FEElementNode - Node (Unaveraged) +# - ContourMappingType.FEMaterial - Node (Averaged within material) +# - ContourMappingType.BeamGroup - Beam Group +# - ContourMappingType.Contact - Contact +# - ContourMappingType.ChainedSystem - Chained System +# - ContourMappingType.Usersubroutine - Usersubroutine +contour_mapping_type = ContourMappingType.FEElement + +# Set Characteristic Path +characteristic_path = "Fatigue" + +# Set Component Path +component_path = "Life Cycle" + +# Combine Characteristic and Component Path +characteristic_component_path = characteristic_path + "/" + component_path + +# Set the fatigue path +# - DocumentFilePath: The path to the result file. +# - FatiguePath: The fatigue results are saved in the Fatigue folder under the result file directory. Specify the name of the result file inside this Fatigue folder. +DurabilityAnalysis.SetFatiguePath(result_file_path, "FEBbody_01_Fatigue") + +# Export Contour Result to File +# result_file_path - The path to the result file. +# life_cycle_path - The path to the output file where the life cycle data will be saved. +# targetNames - The list of target names for which the contour results will be exported. +# is_full_frame - A boolean indicating whether to export the full frame or not. +# contour_mapping_type - The type of contour mapping to be used. +# characteristic_component_path - The path to the characteristic and component for which the contour results will be exported. +# AnalysisType - The default value is AnalysisResultType.Dynamics. If you want to change it, please set the AnalysisType. +# FileFormatType - The format of the output file. The default is FileFormatType.Text. The format type can be set to TXT or BINARY. +Export.ExportContourResultToFile(result_file_path, life_cycle_path, targetNames, is_full_frame, contour_mapping_type, characteristic_component_path) + +# Close all open pages. +# Get all created pages. +# This retrieves all pages created in the application. +pages = applicationHandler.GetPages() +for page in pages : + page.Close() + +# Close Document +applicationHandler.CloseDocument(result_file_path) +``` + +## Remarks + +This class acts as a static API for executing fatigue analysis and managing related operations. + +## Methods + +### RunFatigueAnalysis\(IDurabilityAnalysisParameter\) + +Runs a fatigue analysis using the specified parameters. + +```csharp +public static bool RunFatigueAnalysis(IDurabilityAnalysisParameter parameter) +``` + +#### Parameters + +`parameter` IDurabilityAnalysisParameter + +The parameters required for the fatigue analysis. + +#### Returns + + bool + +True if the analysis is successful; otherwise, false. + +#### Examples + +For an example that includes this property, see the [DurabilityAnalysis](VM.API.Post.Operations.DurabilityAnalysis.md). + +#### Remarks + +This method delegates the fatigue analysis execution to the main view model handler. + +#### Exceptions + + Exception + +Thrown when the handler is not initialized. + +### RunFatigueAnalysisAndGenerateContours\(IDurabilityAnalysisParameter\) + +Runs a fatigue analysis and generates contours using the specified parameters. + +```csharp +public static bool RunFatigueAnalysisAndGenerateContours(IDurabilityAnalysisParameter parameter) +``` + +#### Parameters + +`parameter` IDurabilityAnalysisParameter + +The parameters required for the fatigue analysis and contour generation. + +#### Returns + + bool + +True if the operation is successful; otherwise, false. + +#### Examples + +For an example that includes this property, see the [DurabilityAnalysis](VM.API.Post.Operations.DurabilityAnalysis.md). + +#### Remarks + +This method performs both fatigue analysis and contour generation by delegating to the main view model handler. + +#### Exceptions + + Exception + +Thrown when the handler is not initialized. + +### SetFatiguePath\(string, string\) + +Sets the fatigue path for a document. + +```csharp +public static void SetFatiguePath(string documentFilePath, string fatigueFilePath) +``` + +#### Parameters + +`documentFilePath` string + +The file path of the document. + +`fatigueFilePath` string + +The name of the fatigue result. + +#### Examples + +For an example that includes this property, see the [DurabilityAnalysis](VM.API.Post.Operations.DurabilityAnalysis.md). + +#### Remarks + +This method retrieves the document using the provided file path and sets its fatigue name. + +#### Exceptions + + Exception + +Thrown when the document is not found. + diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.API.Post.Operations.Export.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.API.Post.Operations.Export.md new file mode 100644 index 0000000000..8331521f8f --- /dev/null +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.API.Post.Operations.Export.md @@ -0,0 +1,190 @@ +# Class Export + + +Namespace: [VM.API.Post.Operations](VM.API.Post.Operations.md) +Assembly: VM.API.Post.Operations.dll + +A utility class that provides methods for exporting various types of data. +This class is designed to be extended with additional export functionalities in the future. + +```csharp +public static class Export +``` + +#### Inheritance + +object ← +[Export](VM.API.Post.Operations.Export.md) + +## Examples + +For an example that includes information about interfaces, see this example. +To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. +```python +# Export.py +# -*- coding: utf-8 -*- +import sys + +# Get the current file's path and set the path for external modules. +current_dir = __file__.rsplit('\\', 1)[0] +external_modules_path = current_dir + '\\..\\..\\Modules' +sys.path.append(external_modules_path) + +# Import necessary modules +from OperationAPI import * + +# Start the headless application interface +applicationHandler = ApplicationHandler() + +# Import result file +result_file_path = get_result_file_path() + +# Set array about result file - There may be multiple result files. +filepaths = List[str]() +filepaths.Add(result_file_path) + +# Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. +applicationHandler.AddDocument(filepaths) + +# Get Active Page +# This retrieves the currently active page in the application. +page = applicationHandler.GetActivePage() + +# Get Active View +# This retrieves the currently active view in the page. +activeView = page.GetActiveView() + +# Loading Animation - Use this only when the current Active View is an Animation View. +# This method is used to load the animation in the active view. +applicationHandler.LoadingAnimation() + +# Get instance of entity +# The GetViewModelByName method retrieves the target by its name. +febody = activeView.GetViewModelByName("FEBody_01") + +# Check if the FEBody is found +if febody is None: + sys.exit(1) + +# Set Ouput Path - The path where the output will be saved. +output_path = combine_path(get_output_directory(), "Displacement.txt") + +# A boolean indicating whether to export the full frame or not. +# If True, the full frame will be exported; if False, only the current frame will be exported. +is_full_frame = True + +# Set the febody fullname as the target for export +targetNames = List[str]() +targetNames.Add(febody.FullName) + +# Set Contour Mapping Type +# ContourMappingType can be one of the following: +# - ContourMappingType.None - None +# - ContourMappingType.FENode - Node (Averaged across body) +# - ContourMappingType.FEElement - Element (Unaveraged) +# - ContourMappingType.FEElementNode - Node (Unaveraged) +# - ContourMappingType.FEMaterial - Node (Averaged within material) +# - ContourMappingType.BeamGroup - Beam Group +# - ContourMappingType.Contact - Contact +# - ContourMappingType.ChainedSystem - Chained System +# - ContourMappingType.Usersubroutine - Usersubroutine +contour_mapping_type = ContourMappingType.FENode + +# Set Characteristic Path +characteristic_path = "Displacement" + +# Set Component Path +component_path = "X" + +# Combine Characteristic and Component Path +combined_characteristic_component_path = characteristic_path + "/" + component_path + +# Export Contour Result to File - When the Animation View is the Active View +# result_file_path - The path to the result file. +# output_path - The path to the output file where the contour results will be saved. +# targetNames - The list of target names for which the contour results will be exported. +# is_full_frame - A boolean indicating whether to export the full frame or not. +# contour_mapping_type - The type of contour mapping to be used. +# characteristic_component_path - The path to the characteristic and component for which the contour results will be exported. +# AnalysisType - The default value is AnalysisResultType.Dynamics. If you want to change it, please set the AnalysisType. +# FileFormatType - The format of the output file. The default is FileFormatType.Text. The format type can be set to TXT or BINARY. +Export.ExportContourResultToFile(result_file_path, output_path, targetNames, is_full_frame, contour_mapping_type, combined_characteristic_component_path) + +# Close the Pages +# Get all created pages. +# This retrieves all pages created in the application. +pages = applicationHandler.GetPages() +for page in pages : + page.Close() + +# Close Document +applicationHandler.CloseDocument(result_file_path) +``` + +## Methods + +### ExportContourResultToFile\(string, string, IList, bool, ContourMappingType, string, AnalysisResultType, FileFormatType\) + +Exports contour results to a specified file. + +```csharp +public static void ExportContourResultToFile(string documentFilePath, string resultFilePath, IList targetEntities, bool fullFrame, ContourMappingType contourMappingType, string combinedPath, AnalysisResultType analysisResultType = AnalysisResultType.Dynamics, FileFormatType formatType = FileFormatType.TXT) +``` + +#### Parameters + +`documentFilePath` string + +The file path where the document is located. + +`resultFilePath` string + +The file path where the fatigue results will be saved. + +`targetEntities` IList + +A list of target entities for which the contour results will be exported. + +`fullFrame` bool + +A boolean indicating whether to export the full frame or not. + +`contourMappingType` ContourMappingType + +The type of contour mapping to be applied during export. +Supported types: +
+ +`combinedPath` string + +A combination of Characteristic and Component. + +`analysisResultType` AnalysisResultType + +The type of analysis result to be exported. Defaults to . +Supported types: +
+ +`formatType` FileFormatType + +The file format type for the exported results. Defaults to . +Supported types: +
  • : Exports the results in plain text format.
  • : Exports the results in binary format.
+ +#### Examples + +For an example that includes this property, see the [Export](VM.API.Post.Operations.Export.md). + +#### Remarks + +This method exports contour results for the specified target entities to a file in the desired format. +It requires the active slot view model to be an animation view model with available frames. + +#### Exceptions + + Exception + +Thrown when the active slot view model is not an animation view model. + diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.API.Post.Operations.OperationAPIService.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.API.Post.Operations.OperationAPIService.md index 1769e9faed..2d8aae579d 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.API.Post.Operations.OperationAPIService.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.API.Post.Operations.OperationAPIService.md @@ -1,30 +1,34 @@ -# Class OperationAPIService +# Class OperationAPIService + Namespace: [VM.API.Post.Operations](VM.API.Post.Operations.md) Assembly: VM.API.Post.Operations.dll A utility class that provides methods to convert string values to specific types. -```python +```csharp public static class OperationAPIService ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OperationAPIService](VM.API.Post.Operations.OperationAPIService.md) ## Examples For an example that includes information about interfaces, see this example. To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
# OperationAPIService.py
+```python
+# OperationAPIService.py
 import sys
 
+# Get the current file's path and set the path for external modules.
 current_dir = __file__.rsplit('\\', 1)[0]
 external_modules_path = current_dir + '\\..\\..\\Modules'
 sys.path.append(external_modules_path)
 
+# Import necessary modules
 from OperationAPI import *
 
 # Start the headless application interface
@@ -38,12 +42,17 @@ filepaths = List[str]()
 filepaths.Add(result_file_path)
 
 # Open about result files
+# This will open the result file in the application.
+# When the result is first opened, a Page is created and an Animation View is created on that Page.
 applicationHandler.AddDocument(filepaths)
 
-# Get Page
+# Get Active Page
+# This retrieves the currently active page in the application.
 page = applicationHandler.GetActivePage()
 
-# Create PlotView
+# Creating a Chart
+# Create a new Chart View on the page
+# This will create a new chart view with the specified name.
 chartView = page.CreateChart("Chart")
 
 chartView.Legend.Background = OperationAPIService.GetColorFromHexCode("#FF000000")
@@ -52,13 +61,15 @@ chartView.Legend.FontFace = OperationAPIService.GetFontFaceFromString("Arial")
 chartView.Legend.FontStyle = OperationAPIService.GetFontStyleFromString("Italic")
 chartView.Legend.FontWeight = OperationAPIService.GetFontWeightFromString("Bold")
 
+# Get all created pages.
+# This retrieves all pages created in the application.
 pages = applicationHandler.GetPages()
 for page in pages :
     page.Close()
 
 # Close the Document
 applicationHandler.CloseDocument(result_file_path)
-
+``` ## Methods @@ -66,27 +77,27 @@ applicationHandler.CloseDocument(result_file_path) Converts the specified RGB values into a object. -```python +```csharp public static Color GetColorFrameRGB(int r, int g, int b) ``` #### Parameters -`r` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`r` int The red component of the color, ranging from 0 to 255. -`g` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`g` int The green component of the color, ranging from 0 to 255. -`b` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`b` int The blue component of the color, ranging from 0 to 255. #### Returns - [Color](https://learn.microsoft.com/dotnet/api/system.windows.media.color) + Color A object representing the color defined by the specified RGB values. @@ -102,19 +113,19 @@ This method takes integer values for the red, green, and blue components and con Converts a hex color code to a . -```python +```csharp public static Color GetColorFromHexCode(string color) ``` #### Parameters -`color` [string](https://learn.microsoft.com/dotnet/api/system.string) +`color` string The hex color code string to be converted. #### Returns - [Color](https://learn.microsoft.com/dotnet/api/system.windows.media.color) + Color A that represents the converted color. @@ -130,19 +141,19 @@ This method converts a hex color code (e.g., "#FF5733") to a . -```python +```csharp public static FontFamily GetFontFaceFromString(string fontface) ``` #### Parameters -`fontface` [string](https://learn.microsoft.com/dotnet/api/system.string) +`fontface` string The font face string to be converted. #### Returns - [FontFamily](https://learn.microsoft.com/dotnet/api/system.windows.media.fontfamily) + FontFamily A that represents the converted font face. @@ -158,19 +169,19 @@ This method converts a font face string (e.g., "Arial") to a . -```python +```csharp public static FontStyle GetFontStyleFromString(string fontstyle) ``` #### Parameters -`fontstyle` [string](https://learn.microsoft.com/dotnet/api/system.string) +`fontstyle` string The font style string to be converted (e.g., "Normal", "Italic", "Oblique"). #### Returns - [FontStyle](https://learn.microsoft.com/dotnet/api/system.windows.fontstyle) + FontStyle A that represents the converted font style. @@ -186,19 +197,19 @@ This method converts a font style string (e.g., "Normal", "Italic", "Oblique") t Converts a font weight string to a . -```python +```csharp public static FontWeight GetFontWeightFromString(string fontweight) ``` #### Parameters -`fontweight` [string](https://learn.microsoft.com/dotnet/api/system.string) +`fontweight` string The font weight string to be converted (e.g., "Normal", "Bold", "Thin"). #### Returns - [FontWeight](https://learn.microsoft.com/dotnet/api/system.windows.fontweight) + FontWeight A that represents the converted font weight. @@ -210,4 +221,3 @@ For an example that includes this property, see the [OperationAPIService](VM.API This method converts a font weight string (e.g., "Normal", "Bold", "Thin") to a . - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.API.Post.Operations.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.API.Post.Operations.md index ece2a54316..1b8d8bb152 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.API.Post.Operations.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.API.Post.Operations.md @@ -1,4 +1,5 @@ -# Namespace VM.API.Post.Operations +# Namespace VM.API.Post.Operations + ### Classes @@ -6,8 +7,16 @@ This is the class to operate the OperationAPI. + [DurabilityAnalysis](VM.API.Post.Operations.DurabilityAnalysis.md) + +Provides methods for performing durability analysis operations. + + [Export](VM.API.Post.Operations.Export.md) + +A utility class that provides methods for exporting various types of data. +This class is designed to be extended with additional export functionalities in the future. + [OperationAPIService](VM.API.Post.Operations.OperationAPIService.md) A utility class that provides methods to convert string values to specific types. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.AdditionModes.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.AdditionModes.md index 0e1ab6197b..4afbcde7eb 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.AdditionModes.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.AdditionModes.md @@ -1,11 +1,12 @@ -# Enum AdditionModes +# Enum AdditionModes + Namespace: [VM](VM.md) Assembly: VM.dll This enumerator represent the selection mode of the picker -```python +```csharp public enum AdditionModes ``` @@ -35,4 +36,3 @@ Toggle selection mode - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.AngleTypes.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.AngleTypes.md index e6dcc5ddaf..5f57a2d789 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.AngleTypes.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.AngleTypes.md @@ -1,11 +1,12 @@ -# Enum AngleTypes +# Enum AngleTypes + Namespace: [VM](VM.md) Assembly: VM.dll

Specifies Angle Type.

-```python +```csharp public enum AngleTypes ``` @@ -23,4 +24,3 @@ public enum AngleTypes - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.AnonymousDisposable.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.AnonymousDisposable.md index 7a952e0b0a..cd37fbcac7 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.AnonymousDisposable.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.AnonymousDisposable.md @@ -1,61 +1,61 @@ -# Class AnonymousDisposable +# Class AnonymousDisposable + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public sealed class AnonymousDisposable ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnonymousDisposable](VM.AnonymousDisposable.md) ## Constructors ### AnonymousDisposable\(Action\) -```python +```csharp public AnonymousDisposable(Action dispose) ``` #### Parameters -`dispose` [Action](https://learn.microsoft.com/dotnet/api/system.action) +`dispose` Action ## Properties ### IsDisposed -```python +```csharp public bool IsDisposed { get; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods ### Create\(Action\) -```python +```csharp public static IDisposable Create(Action dispose) ``` #### Parameters -`dispose` [Action](https://learn.microsoft.com/dotnet/api/system.action) +`dispose` Action #### Returns - [IDisposable](https://learn.microsoft.com/dotnet/api/system.idisposable) + IDisposable ### Dispose\(\) -```python +```csharp public void Dispose() ``` - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.ExtendedObservableCollection-1.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.ExtendedObservableCollection-1.md index f6e6718ce5..0434e6d85c 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.ExtendedObservableCollection-1.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.ExtendedObservableCollection-1.md @@ -1,9 +1,10 @@ -# Class ExtendedObservableCollection +# Class ExtendedObservableCollection + Namespace: [VM.Collections](VM.Collections.md) Assembly: VM.dll -```python +```csharp public class ExtendedObservableCollection : ObservableCollection ``` @@ -13,81 +14,80 @@ public class ExtendedObservableCollection : ObservableCollection #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Collection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.collection\-1) ← -[ObservableCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.observablecollection\-1) ← +object ← +Collection ← +ObservableCollection ← [ExtendedObservableCollection](VM.Collections.ExtendedObservableCollection\-1.md) ## Constructors ### ExtendedObservableCollection\(bool\) -```python +```csharp public ExtendedObservableCollection(bool isResetToRemove = false) ``` #### Parameters -`isResetToRemove` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isResetToRemove` bool ## Properties ### IsResetToRemove -```python +```csharp public bool IsResetToRemove { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods ### AddRange\(IEnumerable\) -```python +```csharp public void AddRange(IEnumerable collection) ``` #### Parameters -`collection` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`collection` IEnumerable ### ClearItems\(\) -```python +```csharp protected override void ClearItems() ``` ### OnCollectionChanged\(NotifyCollectionChangedEventArgs\) -```python +```csharp protected override void OnCollectionChanged(NotifyCollectionChangedEventArgs e) ``` #### Parameters -`e` [NotifyCollectionChangedEventArgs](https://learn.microsoft.com/dotnet/api/system.collections.specialized.notifycollectionchangedeventargs) +`e` NotifyCollectionChangedEventArgs ### SuspendNotifications\(\) -```python +```csharp public IDisposable SuspendNotifications() ``` #### Returns - [IDisposable](https://learn.microsoft.com/dotnet/api/system.idisposable) + IDisposable ### CollectionChanged -```python +```csharp public override event NotifyCollectionChangedEventHandler CollectionChanged ``` #### Event Type - [NotifyCollectionChangedEventHandler](https://learn.microsoft.com/dotnet/api/system.collections.specialized.notifycollectionchangedeventhandler) - + NotifyCollectionChangedEventHandler diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.IdentifierCollection-1.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.IdentifierCollection-1.md index 6694ce00a1..0df93595cf 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.IdentifierCollection-1.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.IdentifierCollection-1.md @@ -1,9 +1,10 @@ -# Class IdentifierCollection +# Class IdentifierCollection + Namespace: [VM.Collections](VM.Collections.md) Assembly: VM.dll -```python +```csharp public class IdentifierCollection : KeyedCollection where TItem : IHasID ``` @@ -13,16 +14,16 @@ public class IdentifierCollection : KeyedCollection wh #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Collection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.collection\-1) ← -[KeyedCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.keyedcollection\-2) ← +object ← +Collection ← +KeyedCollection ← [IdentifierCollection](VM.Collections.IdentifierCollection\-1.md) ## Constructors ### IdentifierCollection\(\) -```python +```csharp public IdentifierCollection() ``` @@ -30,7 +31,7 @@ public IdentifierCollection() ### GetKeyForItem\(TItem\) -```python +```csharp protected override Identifier GetKeyForItem(TItem item) ``` @@ -42,4 +43,3 @@ protected override Identifier GetKeyForItem(TItem item) [Identifier](VM.Identifier.md) - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.InheritableDictionary-2.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.InheritableDictionary-2.md index dce3fddc70..00b9165bf8 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.InheritableDictionary-2.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.InheritableDictionary-2.md @@ -1,9 +1,10 @@ -# Class InheritableDictionary +# Class InheritableDictionary + Namespace: [VM.Collections](VM.Collections.md) Assembly: VM.dll -```python +```csharp public abstract class InheritableDictionary : Dictionary ``` @@ -15,89 +16,89 @@ public abstract class InheritableDictionary : Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2) ← +object ← +Dictionary ← [InheritableDictionary](VM.Collections.InheritableDictionary\-2.md) ## Constructors ### InheritableDictionary\(\) -```python +```csharp public InheritableDictionary() ``` ### InheritableDictionary\(int\) -```python +```csharp public InheritableDictionary(int capacity) ``` #### Parameters -`capacity` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`capacity` int ### InheritableDictionary\(IEqualityComparer\) -```python +```csharp public InheritableDictionary(IEqualityComparer comparer) ``` #### Parameters -`comparer` [IEqualityComparer](https://learn.microsoft.com/dotnet/api/system.collections.generic.iequalitycomparer\-1) +`comparer` IEqualityComparer ### InheritableDictionary\(int, IEqualityComparer\) -```python +```csharp public InheritableDictionary(int capacity, IEqualityComparer comparer) ``` #### Parameters -`capacity` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`capacity` int -`comparer` [IEqualityComparer](https://learn.microsoft.com/dotnet/api/system.collections.generic.iequalitycomparer\-1) +`comparer` IEqualityComparer ### InheritableDictionary\(IDictionary\) -```python +```csharp public InheritableDictionary(IDictionary dictionary) ``` #### Parameters -`dictionary` [IDictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary\-2) +`dictionary` IDictionary ### InheritableDictionary\(IDictionary, IEqualityComparer\) -```python +```csharp public InheritableDictionary(IDictionary dictionary, IEqualityComparer comparer) ``` #### Parameters -`dictionary` [IDictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary\-2) +`dictionary` IDictionary -`comparer` [IEqualityComparer](https://learn.microsoft.com/dotnet/api/system.collections.generic.iequalitycomparer\-1) +`comparer` IEqualityComparer ### InheritableDictionary\(SerializationInfo, StreamingContext\) -```python +```csharp protected InheritableDictionary(SerializationInfo serializationInfo, StreamingContext streamingContext) ``` #### Parameters -`serializationInfo` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`serializationInfo` SerializationInfo -`streamingContext` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`streamingContext` StreamingContext ## Properties ### this\[TKey\] -```python +```csharp public TValue this[TKey key] { get; set; } ``` @@ -109,7 +110,7 @@ public TValue this[TKey key] { get; set; } ### Add\(TKey, TValue\) -```python +```csharp public void Add(TKey key, TValue value) ``` @@ -121,7 +122,7 @@ public void Add(TKey key, TValue value) ### AddItem\(TKey, TValue\) -```python +```csharp protected virtual void AddItem(TKey key, TValue value) ``` @@ -133,19 +134,19 @@ protected virtual void AddItem(TKey key, TValue value) ### Clear\(\) -```python +```csharp public void Clear() ``` ### ClearItems\(\) -```python +```csharp protected virtual void ClearItems() ``` ### Remove\(TKey\) -```python +```csharp public bool Remove(TKey key) ``` @@ -155,11 +156,11 @@ public bool Remove(TKey key) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RemoveItem\(TKey\) -```python +```csharp protected virtual bool RemoveItem(TKey key) ``` @@ -169,6 +170,5 @@ protected virtual bool RemoveItem(TKey key) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) - + bool diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.InheritableHashSet-1.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.InheritableHashSet-1.md index d66f1ea6a3..6670e762b0 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.InheritableHashSet-1.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.InheritableHashSet-1.md @@ -1,9 +1,10 @@ -# Class InheritableHashSet +# Class InheritableHashSet + Namespace: [VM.Collections](VM.Collections.md) Assembly: VM.dll -```python +```csharp public abstract class InheritableHashSet : HashSet ``` @@ -13,67 +14,67 @@ public abstract class InheritableHashSet : HashSet #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[HashSet](https://learn.microsoft.com/dotnet/api/system.collections.generic.hashset\-1) ← +object ← +HashSet ← [InheritableHashSet](VM.Collections.InheritableHashSet\-1.md) ## Constructors ### InheritableHashSet\(\) -```python +```csharp public InheritableHashSet() ``` ### InheritableHashSet\(IEnumerable\) -```python +```csharp public InheritableHashSet(IEnumerable collection) ``` #### Parameters -`collection` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`collection` IEnumerable ### InheritableHashSet\(IEqualityComparer\) -```python +```csharp public InheritableHashSet(IEqualityComparer comparer) ``` #### Parameters -`comparer` [IEqualityComparer](https://learn.microsoft.com/dotnet/api/system.collections.generic.iequalitycomparer\-1) +`comparer` IEqualityComparer ### InheritableHashSet\(IEnumerable, IEqualityComparer\) -```python +```csharp public InheritableHashSet(IEnumerable collection, IEqualityComparer comparer) ``` #### Parameters -`collection` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`collection` IEnumerable -`comparer` [IEqualityComparer](https://learn.microsoft.com/dotnet/api/system.collections.generic.iequalitycomparer\-1) +`comparer` IEqualityComparer ### InheritableHashSet\(SerializationInfo, StreamingContext\) -```python +```csharp protected InheritableHashSet(SerializationInfo serializationInfo, StreamingContext streamingContext) ``` #### Parameters -`serializationInfo` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`serializationInfo` SerializationInfo -`streamingContext` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`streamingContext` StreamingContext ## Methods ### Add\(T\) -```python +```csharp public bool Add(T item) ``` @@ -83,11 +84,11 @@ public bool Add(T item) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### AddItem\(T\) -```python +```csharp protected virtual bool AddItem(T item) ``` @@ -97,23 +98,23 @@ protected virtual bool AddItem(T item) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Clear\(\) -```python +```csharp public void Clear() ``` ### ClearItems\(\) -```python +```csharp protected virtual void ClearItems() ``` ### Remove\(T\) -```python +```csharp public bool Remove(T item) ``` @@ -123,11 +124,11 @@ public bool Remove(T item) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RemoveItem\(T\) -```python +```csharp protected virtual bool RemoveItem(T item) ``` @@ -137,6 +138,5 @@ protected virtual bool RemoveItem(T item) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) - + bool diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.InheritableList-1.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.InheritableList-1.md index c61124d2f9..417c2f4df3 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.InheritableList-1.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.InheritableList-1.md @@ -1,9 +1,10 @@ -# Class InheritableList +# Class InheritableList + Namespace: [VM.Collections](VM.Collections.md) Assembly: VM.dll -```python +```csharp public abstract class InheritableList : List ``` @@ -13,43 +14,43 @@ public abstract class InheritableList : List #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) ← +object ← +List ← [InheritableList](VM.Collections.InheritableList\-1.md) ## Constructors ### InheritableList\(\) -```python +```csharp public InheritableList() ``` ### InheritableList\(int\) -```python +```csharp public InheritableList(int capacity) ``` #### Parameters -`capacity` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`capacity` int ### InheritableList\(IEnumerable\) -```python +```csharp public InheritableList(IEnumerable collection) ``` #### Parameters -`collection` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`collection` IEnumerable ## Properties ### this\[int\] -```python +```csharp public T this[int index] { get; set; } ``` @@ -61,7 +62,7 @@ public T this[int index] { get; set; } ### Add\(T\) -```python +```csharp public void Add(T item) ``` @@ -71,65 +72,65 @@ public void Add(T item) ### AddRange\(IEnumerable\) -```python +```csharp public void AddRange(IEnumerable collection) ``` #### Parameters -`collection` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`collection` IEnumerable ### Clear\(\) -```python +```csharp public void Clear() ``` ### ClearItems\(\) -```python +```csharp protected virtual void ClearItems() ``` ### Insert\(int, T\) -```python +```csharp public void Insert(int index, T item) ``` #### Parameters -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int `item` T ### InsertItem\(int, T\) -```python +```csharp protected virtual void InsertItem(int index, T item) ``` #### Parameters -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int `item` T ### InsertRange\(int, IEnumerable\) -```python +```csharp public void InsertRange(int index, IEnumerable collection) ``` #### Parameters -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int -`collection` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`collection` IEnumerable ### Remove\(T\) -```python +```csharp public bool Remove(T item) ``` @@ -139,64 +140,63 @@ public bool Remove(T item) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RemoveAll\(Predicate\) -```python +```csharp public int RemoveAll(Predicate match) ``` #### Parameters -`match` [Predicate](https://learn.microsoft.com/dotnet/api/system.predicate\-1) +`match` Predicate #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### RemoveAt\(int\) -```python +```csharp public void RemoveAt(int index) ``` #### Parameters -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int ### RemoveItem\(int\) -```python +```csharp protected virtual void RemoveItem(int index) ``` #### Parameters -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int ### RemoveRange\(int, int\) -```python +```csharp public void RemoveRange(int index, int count) ``` #### Parameters -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int -`count` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`count` int ### SetItem\(int, T\) -```python +```csharp protected virtual void SetItem(int index, T item) ``` #### Parameters -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int `item` T - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.ObservableConcurrentDictionary-2.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.ObservableConcurrentDictionary-2.md index 90e14f3789..04d3e750d0 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.ObservableConcurrentDictionary-2.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.ObservableConcurrentDictionary-2.md @@ -1,9 +1,10 @@ -# Class ObservableConcurrentDictionary +# Class ObservableConcurrentDictionary + Namespace: [VM.Collections](VM.Collections.md) Assembly: VM.dll -```python +```csharp public class ObservableConcurrentDictionary ``` @@ -15,14 +16,14 @@ public class ObservableConcurrentDictionary #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ObservableConcurrentDictionary](VM.Collections.ObservableConcurrentDictionary\-2.md) ## Constructors ### ObservableConcurrentDictionary\(\) -```python +```csharp public ObservableConcurrentDictionary() ``` @@ -30,47 +31,47 @@ public ObservableConcurrentDictionary() ### Count -```python +```csharp public int Count { get; } ``` #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### IsReadOnly -```python +```csharp public bool IsReadOnly { get; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Keys -```python +```csharp public ICollection Keys { get; } ``` #### Property Value - [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1) + ICollection ### Values -```python +```csharp public ICollection Values { get; } ``` #### Property Value - [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1) + ICollection ### this\[TKey\] -```python +```csharp public TValue this[TKey key] { get; set; } ``` @@ -82,17 +83,17 @@ public TValue this[TKey key] { get; set; } ### <\>OnPropertyChanged\(PropertyChangedEventArgs\) -```python +```csharp protected void <>OnPropertyChanged(PropertyChangedEventArgs eventArgs) ``` #### Parameters -`eventArgs` [PropertyChangedEventArgs](https://learn.microsoft.com/dotnet/api/system.componentmodel.propertychangedeventargs) +`eventArgs` PropertyChangedEventArgs ### Add\(TKey, TValue\) -```python +```csharp public void Add(TKey key, TValue value) ``` @@ -104,27 +105,27 @@ public void Add(TKey key, TValue value) ### Clear\(\) -```python +```csharp public void Clear() ``` ### Contains\(KeyValuePair\) -```python +```csharp public bool Contains(KeyValuePair item) ``` #### Parameters -`item` [KeyValuePair](https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair\-2) +`item` KeyValuePair #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ContainsKey\(TKey\) -```python +```csharp public bool ContainsKey(TKey key) ``` @@ -134,33 +135,33 @@ public bool ContainsKey(TKey key) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CopyTo\(KeyValuePair\[\], int\) -```python +```csharp public void CopyTo(KeyValuePair[] array, int arrayIndex) ``` #### Parameters -`array` [KeyValuePair](https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair\-2)\[\] +`array` KeyValuePair\[\] -`arrayIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`arrayIndex` int ### GetEnumerator\(\) -```python +```csharp public IEnumerator GetEnumerator() ``` #### Returns - [IEnumerator](https://learn.microsoft.com/dotnet/api/system.collections.ienumerator) + IEnumerator ### Remove\(TKey\) -```python +```csharp public bool Remove(TKey key) ``` @@ -170,11 +171,11 @@ public bool Remove(TKey key) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TryGetValue\(TKey, out TValue\) -```python +```csharp public bool TryGetValue(TKey key, out TValue value) ``` @@ -186,26 +187,25 @@ public bool TryGetValue(TKey key, out TValue value) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CollectionChanged -```python +```csharp public event NotifyCollectionChangedEventHandler CollectionChanged ``` #### Event Type - [NotifyCollectionChangedEventHandler](https://learn.microsoft.com/dotnet/api/system.collections.specialized.notifycollectionchangedeventhandler) + NotifyCollectionChangedEventHandler ### PropertyChanged -```python +```csharp public event PropertyChangedEventHandler PropertyChanged ``` #### Event Type - [PropertyChangedEventHandler](https://learn.microsoft.com/dotnet/api/system.componentmodel.propertychangedeventhandler) - + PropertyChangedEventHandler diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.ObservableHashSet-1.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.ObservableHashSet-1.md index ddc4c8704d..0994ef9f70 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.ObservableHashSet-1.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.ObservableHashSet-1.md @@ -1,11 +1,12 @@ -# Class ObservableHashSet +# Class ObservableHashSet + Namespace: [VM.Collections](VM.Collections.md) Assembly: VM.dll Represents an observable set of values. -```python +```csharp public sealed class ObservableHashSet : HashSet ``` @@ -17,49 +18,49 @@ The type of elements in the hash set. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[HashSet](https://learn.microsoft.com/dotnet/api/system.collections.generic.hashset\-1) ← +object ← +HashSet ← [ObservableHashSet](VM.Collections.ObservableHashSet\-1.md) ## Constructors ### ObservableHashSet\(\) -```python +```csharp public ObservableHashSet() ``` ### ObservableHashSet\(IEnumerable\) -```python +```csharp public ObservableHashSet(IEnumerable collection) ``` #### Parameters -`collection` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`collection` IEnumerable ### ObservableHashSet\(IEqualityComparer\) -```python +```csharp public ObservableHashSet(IEqualityComparer comparer) ``` #### Parameters -`comparer` [IEqualityComparer](https://learn.microsoft.com/dotnet/api/system.collections.generic.iequalitycomparer\-1) +`comparer` IEqualityComparer ### ObservableHashSet\(IEnumerable, IEqualityComparer\) -```python +```csharp public ObservableHashSet(IEnumerable collection, IEqualityComparer comparer) ``` #### Parameters -`collection` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`collection` IEnumerable -`comparer` [IEqualityComparer](https://learn.microsoft.com/dotnet/api/system.collections.generic.iequalitycomparer\-1) +`comparer` IEqualityComparer ## Methods @@ -67,7 +68,7 @@ public ObservableHashSet(IEnumerable collection, IEqualityComparer compare Adds the specified element to a set. -```python +```csharp public bool Add(T item) ``` @@ -79,7 +80,7 @@ The element to add to the set. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the element is added to the object; false if the element is already present. @@ -87,13 +88,13 @@ true if the element is added to the object. -```python +```csharp public void Clear() ``` ### Dispose\(\) -```python +```csharp public void Dispose() ``` @@ -101,13 +102,13 @@ public void Dispose() Removes all elements in the specified collection from the current object. -```python +```csharp public void ExceptWith(IEnumerable other) ``` #### Parameters -`other` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`other` IEnumerable The collection of items to remove from the object. @@ -115,13 +116,13 @@ The collection of items to remove from the object to contain only elements that are present in that object and in the specified collection. -```python +```csharp public void IntersectWith(IEnumerable other) ``` #### Parameters -`other` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`other` IEnumerable The collection to compare to the current object. @@ -129,7 +130,7 @@ The collection to compare to the current object. -```python +```csharp public bool Remove(T item) ``` @@ -141,13 +142,13 @@ The element to remove. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the element is successfully found and removed; otherwise, false. This method returns false if item is not found in the object. ### Reset\(\) -```python +```csharp public void Reset() ``` @@ -155,13 +156,13 @@ public void Reset() Modifies the current object to contain only elements that are present either in that object or in the specified collection, but not both. -```python +```csharp public void SymmetricExceptWith(IEnumerable other) ``` #### Parameters -`other` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`other` IEnumerable The collection to compare to the current object. @@ -169,24 +170,23 @@ The collection to compare to the current object to contain all elements that are present in itself, the specified collection, or both. -```python +```csharp public void UnionWith(IEnumerable other) ``` #### Parameters -`other` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`other` IEnumerable The collection to compare to the current object. ### CollectionChanged -```python +```csharp public event NotifyCollectionChangedEventHandler CollectionChanged ``` #### Event Type - [NotifyCollectionChangedEventHandler](https://learn.microsoft.com/dotnet/api/system.collections.specialized.notifycollectionchangedeventhandler) - + NotifyCollectionChangedEventHandler diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.ObservableKeyedCollection-2.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.ObservableKeyedCollection-2.md index 92c08113a5..9f65e89320 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.ObservableKeyedCollection-2.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.ObservableKeyedCollection-2.md @@ -1,9 +1,10 @@ -# Class ObservableKeyedCollection +# Class ObservableKeyedCollection + Namespace: [VM.Collections](VM.Collections.md) Assembly: VM.dll -```python +```csharp public class ObservableKeyedCollection : ObservableKeyedCollectionBase ``` @@ -15,9 +16,9 @@ public class ObservableKeyedCollection : ObservableKeyedCollectionB #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Collection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.collection\-1) ← -[KeyedCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.keyedcollection\-2) ← +object ← +Collection ← +KeyedCollection ← [ObservableKeyedCollectionBase](VM.Collections.ObservableKeyedCollectionBase\-2.md) ← [ObservableKeyedCollection](VM.Collections.ObservableKeyedCollection\-2.md) @@ -38,19 +39,19 @@ public class ObservableKeyedCollection : ObservableKeyedCollectionB ### ObservableKeyedCollection\(Func\) -```python +```csharp public ObservableKeyedCollection(Func getKeyForItem) ``` #### Parameters -`getKeyForItem` [Func](https://learn.microsoft.com/dotnet/api/system.func\-2) +`getKeyForItem` Func ## Methods ### GetKeyForItem\(TItem\) -```python +```csharp protected override TKey GetKeyForItem(TItem item) ``` @@ -62,4 +63,3 @@ protected override TKey GetKeyForItem(TItem item) TKey - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.ObservableKeyedCollectionBase-2.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.ObservableKeyedCollectionBase-2.md index e10a477cc4..e7204d0841 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.ObservableKeyedCollectionBase-2.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.ObservableKeyedCollectionBase-2.md @@ -1,9 +1,10 @@ -# Class ObservableKeyedCollectionBase +# Class ObservableKeyedCollectionBase + Namespace: [VM.Collections](VM.Collections.md) Assembly: VM.dll -```python +```csharp public abstract class ObservableKeyedCollectionBase : KeyedCollection ``` @@ -15,16 +16,16 @@ public abstract class ObservableKeyedCollectionBase : KeyedCollecti #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Collection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.collection\-1) ← -[KeyedCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.keyedcollection\-2) ← +object ← +Collection ← +KeyedCollection ← [ObservableKeyedCollectionBase](VM.Collections.ObservableKeyedCollectionBase\-2.md) ## Constructors ### ObservableKeyedCollectionBase\(\) -```python +```csharp protected ObservableKeyedCollectionBase() ``` @@ -32,77 +33,77 @@ protected ObservableKeyedCollectionBase() ### <\>OnPropertyChanged\(PropertyChangedEventArgs\) -```python +```csharp protected void <>OnPropertyChanged(PropertyChangedEventArgs eventArgs) ``` #### Parameters -`eventArgs` [PropertyChangedEventArgs](https://learn.microsoft.com/dotnet/api/system.componentmodel.propertychangedeventargs) +`eventArgs` PropertyChangedEventArgs ### AddRange\(IEnumerable\) -```python +```csharp public void AddRange(IEnumerable items) ``` #### Parameters -`items` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`items` IEnumerable ### ClearItems\(\) -```python +```csharp protected override void ClearItems() ``` ### InsertItem\(int, TItem\) -```python +```csharp protected override void InsertItem(int index, TItem item) ``` #### Parameters -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int `item` TItem ### OnCollectionChanged\(NotifyCollectionChangedEventArgs\) -```python +```csharp protected virtual void OnCollectionChanged(NotifyCollectionChangedEventArgs e) ``` #### Parameters -`e` [NotifyCollectionChangedEventArgs](https://learn.microsoft.com/dotnet/api/system.collections.specialized.notifycollectionchangedeventargs) +`e` NotifyCollectionChangedEventArgs ### RemoveItem\(int\) -```python +```csharp protected override void RemoveItem(int index) ``` #### Parameters -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int ### SetItem\(int, TItem\) -```python +```csharp protected override void SetItem(int index, TItem newitem) ``` #### Parameters -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int `newitem` TItem ### TryGetValue\(TKey, out TItem\) -```python +```csharp public bool TryGetValue(TKey key, out TItem item) ``` @@ -114,26 +115,25 @@ public bool TryGetValue(TKey key, out TItem item) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CollectionChanged -```python +```csharp public event NotifyCollectionChangedEventHandler CollectionChanged ``` #### Event Type - [NotifyCollectionChangedEventHandler](https://learn.microsoft.com/dotnet/api/system.collections.specialized.notifycollectionchangedeventhandler) + NotifyCollectionChangedEventHandler ### PropertyChanged -```python +```csharp public event PropertyChangedEventHandler PropertyChanged ``` #### Event Type - [PropertyChangedEventHandler](https://learn.microsoft.com/dotnet/api/system.componentmodel.propertychangedeventhandler) - + PropertyChangedEventHandler diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.ObservableValuesDictionary-2.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.ObservableValuesDictionary-2.md index 3f039554f6..d640a0b72d 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.ObservableValuesDictionary-2.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.ObservableValuesDictionary-2.md @@ -1,9 +1,10 @@ -# Class ObservableValuesDictionary +# Class ObservableValuesDictionary + Namespace: [VM.Collections](VM.Collections.md) Assembly: VM.dll -```python +```csharp public class ObservableValuesDictionary ``` @@ -15,14 +16,14 @@ public class ObservableValuesDictionary #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ObservableValuesDictionary](VM.Collections.ObservableValuesDictionary\-2.md) ## Constructors ### ObservableValuesDictionary\(\) -```python +```csharp public ObservableValuesDictionary() ``` @@ -30,47 +31,47 @@ public ObservableValuesDictionary() ### Count -```python +```csharp public int Count { get; } ``` #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### IsReadOnly -```python +```csharp public bool IsReadOnly { get; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Keys -```python +```csharp public ICollection Keys { get; } ``` #### Property Value - [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1) + ICollection ### Values -```python +```csharp public ReadOnlyObservableCollection Values { get; } ``` #### Property Value - [ReadOnlyObservableCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlyobservablecollection\-1) + ReadOnlyObservableCollection ### this\[TKey\] -```python +```csharp public TValue this[TKey key] { get; set; } ``` @@ -82,7 +83,7 @@ public TValue this[TKey key] { get; set; } ### Add\(TKey, TValue\) -```python +```csharp public void Add(TKey key, TValue value) ``` @@ -94,27 +95,27 @@ public void Add(TKey key, TValue value) ### Clear\(\) -```python +```csharp public void Clear() ``` ### Contains\(KeyValuePair\) -```python +```csharp public bool Contains(KeyValuePair item) ``` #### Parameters -`item` [KeyValuePair](https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair\-2) +`item` KeyValuePair #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ContainsKey\(TKey\) -```python +```csharp public bool ContainsKey(TKey key) ``` @@ -124,11 +125,11 @@ public bool ContainsKey(TKey key) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ContainsValue\(TValue\) -```python +```csharp public bool ContainsValue(TValue value) ``` @@ -138,33 +139,33 @@ public bool ContainsValue(TValue value) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CopyTo\(KeyValuePair\[\], int\) -```python +```csharp public void CopyTo(KeyValuePair[] array, int arrayIndex) ``` #### Parameters -`array` [KeyValuePair](https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair\-2)\[\] +`array` KeyValuePair\[\] -`arrayIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`arrayIndex` int ### GetEnumerator\(\) -```python +```csharp public IEnumerator GetEnumerator() ``` #### Returns - [IEnumerator](https://learn.microsoft.com/dotnet/api/system.collections.ienumerator) + IEnumerator ### Remove\(TKey\) -```python +```csharp public virtual bool Remove(TKey key) ``` @@ -174,11 +175,11 @@ public virtual bool Remove(TKey key) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TryGetValue\(TKey, out TValue\) -```python +```csharp public bool TryGetValue(TKey key, out TValue value) ``` @@ -190,6 +191,5 @@ public bool TryGetValue(TKey key, out TValue value) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) - + bool diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.md index a7e9af3aad..01cd6802a4 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Collections.md @@ -1,4 +1,5 @@ -# Namespace VM.Collections +# Namespace VM.Collections + ### Classes @@ -24,4 +25,3 @@ Represents an observable set of values. [ObservableValuesDictionary](VM.Collections.ObservableValuesDictionary\-2.md) - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.CommandBase.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.CommandBase.md index 8c92ae8d34..06c233178a 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.CommandBase.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.CommandBase.md @@ -1,15 +1,16 @@ -# Class CommandBase +# Class CommandBase + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public abstract class CommandBase : ObservableObject, IObservableObject, IDisposableObject ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ObservableObject](VM.ObservableObject.md) ← [CommandBase](VM.CommandBase.md) @@ -36,82 +37,81 @@ public abstract class CommandBase : ObservableObject, IObservableObject, IDispos ### CommandBase\(Func\) -```python +```csharp public CommandBase(Func canExecute) ``` #### Parameters -`canExecute` [Func](https://learn.microsoft.com/dotnet/api/system.func\-2)<[object](https://learn.microsoft.com/dotnet/api/system.object), [bool](https://learn.microsoft.com/dotnet/api/system.boolean)\> +`canExecute` Func ## Properties ### Description -```python +```csharp public string Description { get; set; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IsExecuting -```python +```csharp protected bool IsExecuting { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods ### CanExecute\(object\) -```python +```csharp public bool CanExecute(object parameter) ``` #### Parameters -`parameter` [object](https://learn.microsoft.com/dotnet/api/system.object) +`parameter` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OnCanExecuteChanged\(\) -```python +```csharp protected void OnCanExecuteChanged() ``` ### OnShouldExecute\(\) -```python +```csharp protected void OnShouldExecute() ``` ### CanExecuteChanged -```python +```csharp public virtual event EventHandler CanExecuteChanged ``` #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler) + EventHandler ### ShouldExecute -```python +```csharp public event EventHandler ShouldExecute ``` #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler) - + EventHandler diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Coordinate.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Coordinate.md index c59bc8dad9..49b59cb532 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Coordinate.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Coordinate.md @@ -1,9 +1,10 @@ -# Enum Coordinate +# Enum Coordinate + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public enum Coordinate ``` @@ -33,4 +34,3 @@ Z. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.DataPoint.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.DataPoint.md index b3a93878b0..792b809b3e 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.DataPoint.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.DataPoint.md @@ -1,15 +1,16 @@ -# Class DataPoint +# Class DataPoint + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public class DataPoint : ObservableObject, IObservableObject, IDisposableObject, IDataPoint ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ObservableObject](VM.ObservableObject.md) ← [DataPoint](VM.DataPoint.md) @@ -37,7 +38,7 @@ public class DataPoint : ObservableObject, IObservableObject, IDisposableObject, ### DataPoint\(\) -```python +```csharp public DataPoint() ``` @@ -45,22 +46,21 @@ public DataPoint() ### X -```python +```csharp public double X { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y -```python +```csharp public double Y { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) - + double diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.DeferredAction.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.DeferredAction.md index 6127d034c5..172da4c93c 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.DeferredAction.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.DeferredAction.md @@ -1,34 +1,35 @@ -# Class DeferredAction +# Class DeferredAction + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public class DeferredAction ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DeferredAction](VM.DeferredAction.md) ## Methods ### Cancel\(\) -```python +```csharp public void Cancel() ``` ### Create\(Action\) -```python +```csharp public static DeferredAction Create(Action action) ``` #### Parameters -`action` [Action](https://learn.microsoft.com/dotnet/api/system.action) +`action` Action #### Returns @@ -36,34 +37,33 @@ public static DeferredAction Create(Action action) ### Defer\(TimeSpan\) -```python +```csharp public void Defer(TimeSpan delay) ``` #### Parameters -`delay` [TimeSpan](https://learn.microsoft.com/dotnet/api/system.timespan) +`delay` TimeSpan ### Dispose\(\) -```python +```csharp public void Dispose() ``` ### Dispose\(bool\) -```python +```csharp protected virtual void Dispose(bool disposing) ``` #### Parameters -`disposing` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`disposing` bool ### \~DeferredAction\(\) -```python +```csharp protected ~DeferredAction() ``` - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.DependencyResolveAttribute.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.DependencyResolveAttribute.md index 563c945fcd..b901712b20 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.DependencyResolveAttribute.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.DependencyResolveAttribute.md @@ -1,41 +1,41 @@ -# Class DependencyResolveAttribute +# Class DependencyResolveAttribute + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp [AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)] public class DependencyResolveAttribute : Attribute ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Attribute](https://learn.microsoft.com/dotnet/api/system.attribute) ← +object ← +Attribute ← [DependencyResolveAttribute](VM.DependencyResolveAttribute.md) ## Constructors ### DependencyResolveAttribute\(Type\) -```python +```csharp public DependencyResolveAttribute(Type interfaceType) ``` #### Parameters -`interfaceType` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`interfaceType` Type ## Properties ### InterfaceType -```python +```csharp public Type InterfaceType { get; } ``` #### Property Value - [Type](https://learn.microsoft.com/dotnet/api/system.type) - + Type diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.EntitySelectionMode.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.EntitySelectionMode.md index 94be6db02b..53f6f3fdc0 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.EntitySelectionMode.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.EntitySelectionMode.md @@ -1,11 +1,12 @@ -# Enum EntitySelectionMode +# Enum EntitySelectionMode + Namespace: [VM](VM.md) Assembly: VM.dll This enumerator represent the selection mode of the view -```python +```csharp public enum EntitySelectionMode ``` @@ -23,4 +24,3 @@ Pick mode - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.EventArgs-1.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.EventArgs-1.md index c142166a4e..4095f1ee79 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.EventArgs-1.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.EventArgs-1.md @@ -1,9 +1,10 @@ -# Class EventArgs +# Class EventArgs + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public class EventArgs : EventArgs ``` @@ -13,15 +14,15 @@ public class EventArgs : EventArgs #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) ← +object ← +EventArgs ← [EventArgs](VM.EventArgs\-1.md) ## Constructors ### EventArgs\(T\) -```python +```csharp public EventArgs(T data) ``` @@ -33,7 +34,7 @@ public EventArgs(T data) ### Data -```python +```csharp public T Data { get; } ``` @@ -41,4 +42,3 @@ public T Data { get; } T - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.ExtendedMemberInfo-1.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.ExtendedMemberInfo-1.md index 0d43205100..f323e1191b 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.ExtendedMemberInfo-1.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.ExtendedMemberInfo-1.md @@ -1,9 +1,10 @@ -# Class ExtendedMemberInfo +# Class ExtendedMemberInfo + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public abstract class ExtendedMemberInfo where T : MemberInfo ``` @@ -13,14 +14,14 @@ public abstract class ExtendedMemberInfo where T : MemberInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ExtendedMemberInfo](VM.ExtendedMemberInfo\-1.md) ## Constructors ### ExtendedMemberInfo\(T\) -```python +```csharp public ExtendedMemberInfo(T info) ``` @@ -32,7 +33,7 @@ public ExtendedMemberInfo(T info) ### Info -```python +```csharp protected T Info { get; } ``` @@ -44,13 +45,13 @@ protected T Info { get; } ### HasAttribute\(\) -```python +```csharp public bool HasAttribute() where TAttribute : Attribute ``` #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Type Parameters @@ -58,7 +59,7 @@ public bool HasAttribute() where TAttribute : Attribute ### TryGetAttributeInstance\(out TAttribute\) -```python +```csharp public bool TryGetAttributeInstance(out TAttribute attribute) where TAttribute : Attribute ``` @@ -68,10 +69,9 @@ public bool TryGetAttributeInstance(out TAttribute attribute) where #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Type Parameters `TAttribute` - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.ExtendedTypeInfo.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.ExtendedTypeInfo.md index 6496647991..843cb70a55 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.ExtendedTypeInfo.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.ExtendedTypeInfo.md @@ -1,15 +1,16 @@ -# Class ExtendedTypeInfo +# Class ExtendedTypeInfo + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public class ExtendedTypeInfo : ExtendedMemberInfo ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ExtendedMemberInfo](VM.ExtendedMemberInfo\-1.md) ← [ExtendedTypeInfo](VM.ExtendedTypeInfo.md) @@ -23,64 +24,63 @@ public class ExtendedTypeInfo : ExtendedMemberInfo ### ExtendedTypeInfo\(TypeInfo\) -```python +```csharp public ExtendedTypeInfo(TypeInfo type) ``` #### Parameters -`type` [TypeInfo](https://learn.microsoft.com/dotnet/api/system.reflection.typeinfo) +`type` TypeInfo ## Properties ### Type -```python +```csharp public Type Type { get; } ``` #### Property Value - [Type](https://learn.microsoft.com/dotnet/api/system.type) + Type ### TypeInfo -```python +```csharp public TypeInfo TypeInfo { get; } ``` #### Property Value - [TypeInfo](https://learn.microsoft.com/dotnet/api/system.reflection.typeinfo) + TypeInfo ## Methods ### AddOnChangedMethod\(string, Action\) -```python +```csharp public void AddOnChangedMethod(string propertyName, Action onChanged) ``` #### Parameters -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string -`onChanged` [Action](https://learn.microsoft.com/dotnet/api/system.action\-1)<[object](https://learn.microsoft.com/dotnet/api/system.object)\> +`onChanged` Action ### TryGetOnChangedMethod\(string, out Action\) -```python +```csharp public bool TryGetOnChangedMethod(string propertyName, out Action onChanged) ``` #### Parameters -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string -`onChanged` [Action](https://learn.microsoft.com/dotnet/api/system.action\-1)<[object](https://learn.microsoft.com/dotnet/api/system.object)\> +`onChanged` Action #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) - + bool diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IDataPoint.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IDataPoint.md index dcc353a1f1..50f6e38c7e 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IDataPoint.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IDataPoint.md @@ -1,9 +1,10 @@ -# Interface IDataPoint +# Interface IDataPoint + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public interface IDataPoint ``` @@ -11,22 +12,21 @@ public interface IDataPoint ### X -```python +```csharp double X { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y -```python +```csharp double Y { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) - + double diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IDeletable.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IDeletable.md index 561d8bbc31..43ebdcdc5f 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IDeletable.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IDeletable.md @@ -1,9 +1,10 @@ -# Interface IDeletable +# Interface IDeletable + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public interface IDeletable ``` @@ -11,12 +12,11 @@ public interface IDeletable ### CanDelete -```python +```csharp bool CanDelete { get; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) - + bool diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IDirectionBase.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IDirectionBase.md index 52af868bbc..92f16d3113 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IDirectionBase.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IDirectionBase.md @@ -1,9 +1,10 @@ -# Interface IDirectionBase +# Interface IDirectionBase + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public interface IDirectionBase ``` @@ -11,7 +12,7 @@ public interface IDirectionBase ### Value -```python +```csharp Vector Value { get; } ``` @@ -23,8 +24,7 @@ Vector Value { get; } ### Reverse\(\) -```python +```csharp void Reverse() ``` - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IDirectionExpression.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IDirectionExpression.md index 199a0018f0..c419bb5d71 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IDirectionExpression.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IDirectionExpression.md @@ -1,9 +1,10 @@ -# Interface IDirectionExpression +# Interface IDirectionExpression + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public interface IDirectionExpression : IDirectionBase, IExpression ``` @@ -12,4 +13,3 @@ public interface IDirectionExpression : IDirectionBase, IExpression [IDirectionBase](VM.IDirectionBase.md), [IExpression](VM.IExpression.md) - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IDisposableObject.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IDisposableObject.md index b67ae02d30..29062c75f1 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IDisposableObject.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IDisposableObject.md @@ -1,9 +1,10 @@ -# Interface IDisposableObject +# Interface IDisposableObject + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public interface IDisposableObject ``` @@ -11,42 +12,41 @@ public interface IDisposableObject ### IsDisposed -```python +```csharp bool IsDisposed { get; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TryDisposing -```python +```csharp bool TryDisposing { get; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Disposed -```python +```csharp event EventHandler Disposed ``` #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler) + EventHandler ### Disposing -```python +```csharp event EventHandler Disposing ``` #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler) - + EventHandler diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IEnabled.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IEnabled.md index 09db4cbcd5..7f26f8e0f7 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IEnabled.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IEnabled.md @@ -1,9 +1,10 @@ -# Interface IEnabled +# Interface IEnabled + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public interface IEnabled ``` @@ -11,12 +12,11 @@ public interface IEnabled ### IsEnabled -```python +```csharp bool IsEnabled { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) - + bool diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IExpanded.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IExpanded.md index e82d8bd0b9..e4a844e3b4 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IExpanded.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IExpanded.md @@ -1,9 +1,10 @@ -# Interface IExpanded +# Interface IExpanded + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public interface IExpanded ``` @@ -11,12 +12,11 @@ public interface IExpanded ### IsExpanded -```python +```csharp bool IsExpanded { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) - + bool diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IExpression.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IExpression.md index 7d44475435..3ff99ee758 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IExpression.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IExpression.md @@ -1,9 +1,10 @@ -# Interface IExpression +# Interface IExpression + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public interface IExpression ``` @@ -11,12 +12,11 @@ public interface IExpression ### String -```python +```csharp string String { get; set; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) - + string diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IExpressionEvaluator.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IExpressionEvaluator.md index 354691c6d7..db41bfec4c 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IExpressionEvaluator.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IExpressionEvaluator.md @@ -1,9 +1,10 @@ -# Interface IExpressionEvaluator +# Interface IExpressionEvaluator + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public interface IExpressionEvaluator ``` @@ -11,36 +12,35 @@ public interface IExpressionEvaluator ### Evaluate\(string\) -```python +```csharp object Evaluate(string expression) ``` #### Parameters -`expression` [string](https://learn.microsoft.com/dotnet/api/system.string) +`expression` string #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### TryEvaluate\(string, out T\) -```python +```csharp bool TryEvaluate(string expression, out T result) ``` #### Parameters -`expression` [string](https://learn.microsoft.com/dotnet/api/system.string) +`expression` string `result` T #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Type Parameters `T` - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IFileSupport.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IFileSupport.md index 21550ed6cd..1ebc936555 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IFileSupport.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IFileSupport.md @@ -1,9 +1,10 @@ -# Interface IFileSupport +# Interface IFileSupport + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public interface IFileSupport ``` @@ -11,22 +12,21 @@ public interface IFileSupport ### FileName -```python +```csharp string FileName { get; set; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Filter -```python +```csharp string Filter { get; set; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) - + string diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasBindingValueConverter.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasBindingValueConverter.md index 4f97bea0bf..f73c3b0223 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasBindingValueConverter.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasBindingValueConverter.md @@ -1,11 +1,12 @@ -# Interface IHasBindingValueConverter +# Interface IHasBindingValueConverter + Namespace: [VM](VM.md) Assembly: VM.dll Converts the data type of a value bound to a symbol to another data type. -```python +```csharp public interface IHasBindingValueConverter ``` @@ -15,14 +16,13 @@ public interface IHasBindingValueConverter Convert a value bount to a symbol. -```python +```csharp object Convert() ``` #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The converted value. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasBindingValueConverterParam.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasBindingValueConverterParam.md index 5c72c1b566..3b97ca327e 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasBindingValueConverterParam.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasBindingValueConverterParam.md @@ -1,11 +1,12 @@ -# Interface IHasBindingValueConverterParam +# Interface IHasBindingValueConverterParam + Namespace: [VM](VM.md) Assembly: VM.dll Converts the data type of a value bound to a symbol to another data type. -```python +```csharp public interface IHasBindingValueConverterParam ``` @@ -15,20 +16,19 @@ public interface IHasBindingValueConverterParam Convert a value bount to a symbol. -```python +```csharp object Convert(params object[] parameter) ``` #### Parameters -`parameter` [object](https://learn.microsoft.com/dotnet/api/system.object)\[\] +`parameter` object\[\] Parameters to convert. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The converted value. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasComment.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasComment.md index b90434ec02..cb1835b938 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasComment.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasComment.md @@ -1,9 +1,10 @@ -# Interface IHasComment +# Interface IHasComment + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public interface IHasComment ``` @@ -11,12 +12,11 @@ public interface IHasComment ### Comment -```python +```csharp string Comment { get; set; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) - + string diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasExpressionEvaluator.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasExpressionEvaluator.md index 8967e588ed..153de2bb9a 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasExpressionEvaluator.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasExpressionEvaluator.md @@ -1,9 +1,10 @@ -# Interface IHasExpressionEvaluator +# Interface IHasExpressionEvaluator + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public interface IHasExpressionEvaluator ``` @@ -11,7 +12,7 @@ public interface IHasExpressionEvaluator ### ExpressionEvaluator -```python +```csharp IExpressionEvaluator ExpressionEvaluator { get; } ``` @@ -19,4 +20,3 @@ IExpressionEvaluator ExpressionEvaluator { get; } [IExpressionEvaluator](VM.IExpressionEvaluator.md) - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasFilter.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasFilter.md index 5d665d4bec..e13232196e 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasFilter.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasFilter.md @@ -1,9 +1,10 @@ -# Interface IHasFilter +# Interface IHasFilter + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public interface IHasFilter ``` @@ -11,12 +12,11 @@ public interface IHasFilter ### Filter -```python +```csharp Predicate Filter { get; } ``` #### Property Value - [Predicate](https://learn.microsoft.com/dotnet/api/system.predicate\-1)<[object](https://learn.microsoft.com/dotnet/api/system.object)\> - + Predicate diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasFilterPropertyName.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasFilterPropertyName.md index fe69ad3c11..32955def90 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasFilterPropertyName.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasFilterPropertyName.md @@ -1,9 +1,10 @@ -# Interface IHasFilterPropertyName +# Interface IHasFilterPropertyName + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public interface IHasFilterPropertyName ``` @@ -11,12 +12,11 @@ public interface IHasFilterPropertyName ### FilterPropertyName -```python +```csharp string FilterPropertyName { get; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) - + string diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasID.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasID.md index 23ad74fd0d..b2cc19fe08 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasID.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasID.md @@ -1,9 +1,10 @@ -# Interface IHasID +# Interface IHasID + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public interface IHasID ``` @@ -11,7 +12,7 @@ public interface IHasID ### ID -```python +```csharp Identifier ID { get; } ``` @@ -19,4 +20,3 @@ Identifier ID { get; } [Identifier](VM.Identifier.md) - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasName.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasName.md index 2437000c8f..c2244c44ee 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasName.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasName.md @@ -1,9 +1,10 @@ -# Interface IHasName +# Interface IHasName + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public interface IHasName ``` @@ -11,32 +12,31 @@ public interface IHasName ### DisplayName -```python +```csharp string DisplayName { get; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### FullName -```python +```csharp string FullName { get; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Name -```python +```csharp string Name { get; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) - + string diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasParent-1.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasParent-1.md index 8bbdac0729..313fbf0192 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasParent-1.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasParent-1.md @@ -1,9 +1,10 @@ -# Interface IHasParent +# Interface IHasParent + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public interface IHasParent ``` @@ -15,7 +16,7 @@ public interface IHasParent ### Parent -```python +```csharp T Parent { get; } ``` @@ -23,4 +24,3 @@ T Parent { get; } T - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasParent.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasParent.md index 1e2897a88e..77352cc7d8 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasParent.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IHasParent.md @@ -1,9 +1,10 @@ -# Interface IHasParent +# Interface IHasParent + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public interface IHasParent ``` @@ -11,12 +12,11 @@ public interface IHasParent ### Parent -```python +```csharp object Parent { get; } ``` #### Property Value - [object](https://learn.microsoft.com/dotnet/api/system.object) - + object diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IIdentifier.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IIdentifier.md index 97e931a33c..220a4fc9ef 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IIdentifier.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IIdentifier.md @@ -1,9 +1,10 @@ -# Interface IIdentifier +# Interface IIdentifier + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public interface IIdentifier ``` @@ -11,12 +12,11 @@ public interface IIdentifier ### First -```python +```csharp uint First { get; set; } ``` #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) - + uint diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IIdentifierResolver.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IIdentifierResolver.md index ae54e828e9..fd3161aa45 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IIdentifierResolver.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IIdentifierResolver.md @@ -1,11 +1,12 @@ -# Interface IIdentifierResolver +# Interface IIdentifierResolver + Namespace: [VM](VM.md) Assembly: VM.dll Provides the ability to find and return an object by its identifier. -```python +```csharp public interface IIdentifierResolver ``` @@ -15,24 +16,24 @@ public interface IIdentifierResolver Finds and returns the destination object associated with the specified identifier. -```python +```csharp bool TryResolve(string identifier, out object target) ``` #### Parameters -`identifier` [string](https://learn.microsoft.com/dotnet/api/system.string) +`identifier` string The identifier of the target to find. -`target` [object](https://learn.microsoft.com/dotnet/api/system.object) +`target` object When this method returns, it contains the target associated with the specified identifier, if any, otherwise it contains the default value for the format of the target parameter. This parameter is passed uninitialized. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the element with the specified identifier is found; otherwise, false. @@ -40,25 +41,24 @@ When this method returns, it contains the target associated with the specified i Finds and returns the targets associated with the specified key. -```python +```csharp bool TryResolve(UIntPtr key, out object target) ``` #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr The key of the target to find. -`target` [object](https://learn.microsoft.com/dotnet/api/system.object) +`target` object When this method returns, it contains the target associated with the specified key, if any, otherwise it contains the default value for the format of the target parameter. This parameter is passed uninitialized. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the element with the specified key is found; otherwise, false. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IOMatrix.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IOMatrix.md index 70a2e9cbca..74659a9f67 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IOMatrix.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IOMatrix.md @@ -1,11 +1,12 @@ -# Interface IOMatrix +# Interface IOMatrix + Namespace: [VM](VM.md) Assembly: VM.dll This interface is to represent the orientation matrix. -```python +```csharp public interface IOMatrix ``` @@ -15,19 +16,19 @@ public interface IOMatrix Gets or sets the data of OMatrix. -```python +```csharp double[] Array { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### XVector Gets or sets the XVector. -```python +```csharp Vector XVector { get; set; } ``` @@ -39,7 +40,7 @@ Vector XVector { get; set; } Gets or sets the YVector. -```python +```csharp Vector YVector { get; set; } ``` @@ -51,7 +52,7 @@ Vector YVector { get; set; } Gets or sets the ZVector. -```python +```csharp Vector ZVector { get; set; } ``` @@ -65,7 +66,7 @@ Vector ZVector { get; set; } Get the direction vector for axis. -```python +```csharp Vector GetDirectionVector(Coordinate axis) ``` @@ -85,13 +86,13 @@ The direction vector. Get the direction vector for axis. -```python +```csharp Vector GetDirectionVector(int axis) ``` #### Parameters -`axis` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`axis` int The type of axis. @@ -105,7 +106,7 @@ The direction vector. Initializes a instance of OMatrix. -```python +```csharp void Initialize() ``` @@ -113,7 +114,7 @@ void Initialize() Nomalize a instance of OMatrix. -```python +```csharp void Normalize() ``` @@ -121,7 +122,7 @@ void Normalize() To rotate counterclockwise for coordinate. -```python +```csharp void RotateAxisDeg(Coordinate c, double dAngle) ``` @@ -131,7 +132,7 @@ void RotateAxisDeg(Coordinate c, double dAngle) The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -139,17 +140,17 @@ The degree. To rotate counterclockwise for coordinate. -```python +```csharp void RotateAxisDeg(int nCoord, double dAngle) ``` #### Parameters -`nCoord` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nCoord` int The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -157,7 +158,7 @@ The degree. To rotate counterclockwise for axis. -```python +```csharp void RotateAxisDeg(Vector axis, double dAngle) ``` @@ -167,7 +168,7 @@ void RotateAxisDeg(Vector axis, double dAngle) The rotation axis. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -175,7 +176,7 @@ The degree. To rotate counterclockwise for coordinate. -```python +```csharp void RotateAxisRad(Coordinate c, double dAngle) ``` @@ -185,7 +186,7 @@ void RotateAxisRad(Coordinate c, double dAngle) The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -193,17 +194,17 @@ The radian. To rotate counterclockwise for coordinate. -```python +```csharp void RotateAxisRad(int nCoord, double dAngle) ``` #### Parameters -`nCoord` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nCoord` int The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -211,7 +212,7 @@ The radian. To rotate counterclockwise for axis. -```python +```csharp void RotateAxisRad(Vector axis, double dAngle) ``` @@ -221,7 +222,7 @@ void RotateAxisRad(Vector axis, double dAngle) The rotation axis. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -229,13 +230,13 @@ The radian. To rotate counterclockwise for x-axis. -```python +```csharp void RotateXDeg(double dAngle) ``` #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -243,13 +244,13 @@ The degree. To rotate counterclockwise for x-axis. -```python +```csharp void RotateXRad(double dAngle) ``` #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -257,13 +258,13 @@ The radian. To rotate counterclockwise for y-axis. -```python +```csharp void RotateYDeg(double dAngle) ``` #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -271,13 +272,13 @@ The degree. To rotate counterclockwise for y-axis. -```python +```csharp void RotateYRad(double dAngle) ``` #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -285,13 +286,13 @@ The radian. To rotate counterclockwise for z-axis. -```python +```csharp void RotateZDeg(double dAngle) ``` #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -299,13 +300,13 @@ The degree. To rotate counterclockwise for z-axis. -```python +```csharp void RotateZRad(double dAngle) ``` #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -313,7 +314,7 @@ The radian. Set data of orientation. -```python +```csharp void SetOrientation(Plane type, Vector vecMaster, Vector vecSlave) ``` @@ -335,7 +336,7 @@ The vector for slave. Set data of orientation. -```python +```csharp void SetOrientation(OMatrix mat) ``` @@ -349,13 +350,13 @@ The matrix of orientation. Set data of orientation. -```python +```csharp void SetOrientation(double[] arr) ``` #### Parameters -`arr` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arr` double\[\] The data of orientation. @@ -363,7 +364,7 @@ The data of orientation. Set data of orientation for euler angle. Unit is degree. -```python +```csharp void SetOrientationEADeg(RotationAxes ea, double dAlpha, double dBeta, double dGamma) ``` @@ -373,15 +374,15 @@ void SetOrientationEADeg(RotationAxes ea, double dAlpha, double dBeta, double dG The type of euler angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of euler angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of euler angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of euler angle. @@ -389,7 +390,7 @@ The gamma of euler angle. Set data of orientation for euler angle. Unit is radian. -```python +```csharp void SetOrientationEARad(RotationAxes ea, double dAlpha, double dBeta, double dGamma) ``` @@ -399,15 +400,15 @@ void SetOrientationEARad(RotationAxes ea, double dAlpha, double dBeta, double dG The type of euler angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of euler angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of euler angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of euler angle. @@ -415,7 +416,7 @@ The gamma of euler angle. Set data of orientation for fixed angle. Unit is degree. -```python +```csharp void SetOrientationFixedAngleDeg(RotationAxes ea, double dAlpha, double dBeta, double dGamma) ``` @@ -425,15 +426,15 @@ void SetOrientationFixedAngleDeg(RotationAxes ea, double dAlpha, double dBeta, d The type of fixed angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of fixed angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of fixed angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of fixed angle. @@ -441,7 +442,7 @@ The gamma of fixed angle. Set data of orientation for fixed angle. Unit is radian. -```python +```csharp void SetOrientationFixedAngleRad(RotationAxes ea, double dAlpha, double dBeta, double dGamma) ``` @@ -451,15 +452,15 @@ void SetOrientationFixedAngleRad(RotationAxes ea, double dAlpha, double dBeta, d The type of fixed angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of fixed angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of fixed angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of fixed angle. @@ -467,8 +468,7 @@ The gamma of fixed angle. Transposed rows and columns of the matrix. -```python +```csharp void TransposeOrientation() ``` - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IObservableObject.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IObservableObject.md index 8b3e97ec5b..1fe93c87b7 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IObservableObject.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IObservableObject.md @@ -1,9 +1,10 @@ -# Interface IObservableObject +# Interface IObservableObject + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public interface IObservableObject : IDisposableObject ``` @@ -15,26 +16,25 @@ public interface IObservableObject : IDisposableObject ### RaisePropertyChanged\(string\) -```python +```csharp void RaisePropertyChanged(string propertyName) ``` #### Parameters -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string ### RaisePropertyChanged\(string, object, object\) -```python +```csharp void RaisePropertyChanged(string propertyName, object oldValue, object newValue) ``` #### Parameters -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string -`oldValue` [object](https://learn.microsoft.com/dotnet/api/system.object) - -`newValue` [object](https://learn.microsoft.com/dotnet/api/system.object) +`oldValue` object +`newValue` object diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IOpenFileService.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IOpenFileService.md index 8ac9b26675..c2f9ef89e7 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IOpenFileService.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IOpenFileService.md @@ -1,9 +1,10 @@ -# Interface IOpenFileService +# Interface IOpenFileService + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public interface IOpenFileService : IFileSupport ``` @@ -15,34 +16,33 @@ public interface IOpenFileService : IFileSupport ### FileNames -```python +```csharp IReadOnlyCollection FileNames { get; } ``` #### Property Value - [IReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + IReadOnlyCollection ### IsMultiSelect -```python +```csharp bool IsMultiSelect { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods ### ShowDialog\(\) -```python +```csharp bool ShowDialog() ``` #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) - + bool diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IOrientationBase.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IOrientationBase.md index 3596bc4dc3..ee983f372d 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IOrientationBase.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IOrientationBase.md @@ -1,9 +1,10 @@ -# Interface IOrientationBase +# Interface IOrientationBase + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public interface IOrientationBase ``` @@ -11,7 +12,7 @@ public interface IOrientationBase ### AngleType -```python +```csharp AngleTypes AngleType { get; } ``` @@ -21,17 +22,17 @@ AngleTypes AngleType { get; } ### RotationAngles -```python +```csharp IList RotationAngles { get; } ``` #### Property Value - [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> + IList ### RotationAxes -```python +```csharp RotationAxes RotationAxes { get; } ``` @@ -41,7 +42,7 @@ RotationAxes RotationAxes { get; } ### RotationType -```python +```csharp RotationTypes RotationType { get; } ``` @@ -51,7 +52,7 @@ RotationTypes RotationType { get; } ### Value -```python +```csharp OMatrix Value { get; } ``` @@ -59,4 +60,3 @@ OMatrix Value { get; } [OMatrix](VM.OMatrix.md) - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IOutput.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IOutput.md index 83441a9c0b..6a5d87fff9 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IOutput.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IOutput.md @@ -1,11 +1,12 @@ -# Interface IOutput +# Interface IOutput + Namespace: [VM](VM.md) Assembly: VM.dll Provides the ability to output a specified message. -```python +```csharp public interface IOutput ``` @@ -15,7 +16,7 @@ public interface IOutput Cleat output messages. -```python +```csharp void Clear() ``` @@ -23,18 +24,17 @@ void Clear() Output a specified message. -```python +```csharp void Write(string category, string message) ``` #### Parameters -`category` [string](https://learn.microsoft.com/dotnet/api/system.string) +`category` string The category of the message. -`message` [string](https://learn.microsoft.com/dotnet/api/system.string) +`message` string The message to output. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IPointBase.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IPointBase.md index c847f00ddc..0575c3138e 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IPointBase.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IPointBase.md @@ -1,9 +1,10 @@ -# Interface IPointBase +# Interface IPointBase + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public interface IPointBase ``` @@ -11,17 +12,17 @@ public interface IPointBase ### IsParameterized -```python +```csharp bool IsParameterized { get; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Value -```python +```csharp Vector Value { get; } ``` @@ -33,43 +34,43 @@ Vector Value { get; }

Gets the X point.

-```python +```csharp double X { get; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y

Gets the Y point.

-```python +```csharp double Y { get; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Z

Gets the Z point.

-```python +```csharp double Z { get; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods ### IsParametric\(ReferenceTypes\) -```python +```csharp bool IsParametric(ReferenceTypes type) ``` @@ -79,6 +80,5 @@ bool IsParametric(ReferenceTypes type) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) - + bool diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IPointExpression.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IPointExpression.md index d0373e0fd2..83562754ef 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IPointExpression.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IPointExpression.md @@ -1,9 +1,10 @@ -# Interface IPointExpression +# Interface IPointExpression + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public interface IPointExpression : IPointBase, IExpression ``` @@ -12,4 +13,3 @@ public interface IPointExpression : IPointBase, IExpression [IPointBase](VM.IPointBase.md), [IExpression](VM.IExpression.md) - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IPostDeserialized.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IPostDeserialized.md index b9879cc321..6adfd377bc 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IPostDeserialized.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IPostDeserialized.md @@ -1,9 +1,10 @@ -# Interface IPostDeserialized +# Interface IPostDeserialized + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public interface IPostDeserialized ``` @@ -11,12 +12,11 @@ public interface IPostDeserialized ### OnPostDeserialized\(StreamingContext\) -```python +```csharp void OnPostDeserialized(StreamingContext context) ``` #### Parameters -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) - +`context` StreamingContext diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.ISaveFileService.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.ISaveFileService.md index a86d74dca6..3d056a262e 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.ISaveFileService.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.ISaveFileService.md @@ -1,9 +1,10 @@ -# Interface ISaveFileService +# Interface ISaveFileService + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public interface ISaveFileService : IFileSupport ``` @@ -15,12 +16,11 @@ public interface ISaveFileService : IFileSupport ### ShowDialog\(\) -```python +```csharp bool ShowDialog() ``` #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) - + bool diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IScenarioDocument.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IScenarioDocument.md index e163116da0..8b8dcf3b96 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IScenarioDocument.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IScenarioDocument.md @@ -1,9 +1,10 @@ -# Interface IScenarioDocument +# Interface IScenarioDocument + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public interface IScenarioDocument ``` @@ -11,7 +12,7 @@ public interface IScenarioDocument ### GetGravity\(\) -```python +```csharp Vector GetGravity() ``` @@ -21,32 +22,31 @@ Vector GetGravity() ### GetName\(\) -```python +```csharp string GetName() ``` #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetPath\(\) -```python +```csharp string GetPath() ``` #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetScenarioValue\(\) -```python +```csharp Array GetScenarioValue() ``` #### Returns - [Array](https://learn.microsoft.com/dotnet/api/system.array) - + Array diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.ISelected.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.ISelected.md index 9262c05bf9..1d8f9232cf 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.ISelected.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.ISelected.md @@ -1,9 +1,10 @@ -# Interface ISelected +# Interface ISelected + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public interface ISelected ``` @@ -11,12 +12,11 @@ public interface ISelected ### IsSelected -```python +```csharp bool IsSelected { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) - + bool diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.ITransformBase.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.ITransformBase.md index 9041c14a07..b653df1395 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.ITransformBase.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.ITransformBase.md @@ -1,9 +1,10 @@ -# Interface ITransformBase +# Interface ITransformBase + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public interface ITransformBase ``` @@ -11,7 +12,7 @@ public interface ITransformBase ### Orientation -```python +```csharp OMatrix Orientation { get; } ``` @@ -21,7 +22,7 @@ OMatrix Orientation { get; } ### Position -```python +```csharp Vector Position { get; } ``` @@ -29,4 +30,3 @@ Vector Position { get; } [Vector](VM.Vector.md) - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.ITransformExpression.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.ITransformExpression.md index cf4feaaa6f..374fa7b17a 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.ITransformExpression.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.ITransformExpression.md @@ -1,9 +1,10 @@ -# Interface ITransformExpression +# Interface ITransformExpression + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public interface ITransformExpression : ITransformBase, IExpression ``` @@ -12,4 +13,3 @@ public interface ITransformExpression : ITransformBase, IExpression [ITransformBase](VM.ITransformBase.md), [IExpression](VM.IExpression.md) - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IVisible.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IVisible.md index 794a7c49c4..fa3c54ed01 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.IVisible.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.IVisible.md @@ -1,9 +1,10 @@ -# Interface IVisible +# Interface IVisible + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public interface IVisible ``` @@ -11,12 +12,11 @@ public interface IVisible ### IsVisible -```python +```csharp bool IsVisible { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) - + bool diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Identifier.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Identifier.md index d742fbdccd..a6881ffa79 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Identifier.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Identifier.md @@ -1,9 +1,10 @@ -# Struct Identifier +# Struct Identifier + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public struct Identifier : IIdentifier ``` @@ -15,7 +16,7 @@ public struct Identifier : IIdentifier ### Initial -```python +```csharp public static Identifier Initial { get; } ``` @@ -27,7 +28,7 @@ public static Identifier Initial { get; } ### CompareTo\(Identifier\) -```python +```csharp public int CompareTo(Identifier other) ``` @@ -37,25 +38,25 @@ public int CompareTo(Identifier other) #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### CompareTo\(object\) -```python +```csharp public int CompareTo(object obj) ``` #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Equals\(Identifier\) -```python +```csharp public bool Equals(Identifier other) ``` @@ -65,35 +66,35 @@ public bool Equals(Identifier other) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Equals\(object\) -```python +```csharp public override bool Equals(object obj) ``` #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetHashCode\(\) -```python +```csharp public override int GetHashCode() ``` #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetNextIdentifier\(Identifier\) -```python +```csharp public static Identifier GetNextIdentifier(Identifier other) ``` @@ -107,19 +108,19 @@ public static Identifier GetNextIdentifier(Identifier other) ### ToString\(\) -```python +```csharp public override string ToString() ``` #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Operators ### operator ==\(Identifier, Identifier\) -```python +```csharp public static bool operator ==(Identifier left, Identifier right) ``` @@ -131,11 +132,11 @@ public static bool operator ==(Identifier left, Identifier right) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### operator \>\(Identifier, Identifier\) -```python +```csharp public static bool operator >(Identifier left, Identifier right) ``` @@ -147,11 +148,11 @@ public static bool operator >(Identifier left, Identifier right) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### operator \>=\(Identifier, Identifier\) -```python +```csharp public static bool operator >=(Identifier left, Identifier right) ``` @@ -163,11 +164,11 @@ public static bool operator >=(Identifier left, Identifier right) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### operator \!=\(Identifier, Identifier\) -```python +```csharp public static bool operator !=(Identifier left, Identifier right) ``` @@ -179,11 +180,11 @@ public static bool operator !=(Identifier left, Identifier right) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### operator <\(Identifier, Identifier\) -```python +```csharp public static bool operator <(Identifier left, Identifier right) ``` @@ -195,11 +196,11 @@ public static bool operator <(Identifier left, Identifier right) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### operator <=\(Identifier, Identifier\) -```python +```csharp public static bool operator <=(Identifier left, Identifier right) ``` @@ -211,6 +212,5 @@ public static bool operator <=(Identifier left, Identifier right) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) - + bool diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.KeyValue-2.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.KeyValue-2.md index 3e06492013..f27e8c587e 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.KeyValue-2.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.KeyValue-2.md @@ -1,9 +1,10 @@ -# Class KeyValue +# Class KeyValue + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public class KeyValue : ObservableObject, IObservableObject, IDisposableObject ``` @@ -15,7 +16,7 @@ public class KeyValue : ObservableObject, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ObservableObject](VM.ObservableObject.md) ← [KeyValue](VM.KeyValue\-2.md) @@ -42,7 +43,7 @@ public class KeyValue : ObservableObject, IObservableObject, IDisp ### KeyValue\(TKey, TValue\) -```python +```csharp public KeyValue(TKey key, TValue value) ``` @@ -56,7 +57,7 @@ public KeyValue(TKey key, TValue value) ### Key -```python +```csharp public TKey Key { get; set; } ``` @@ -66,7 +67,7 @@ public TKey Key { get; set; } ### Value -```python +```csharp public TValue Value { get; set; } ``` @@ -74,4 +75,3 @@ public TValue Value { get; set; } TValue - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Managed.Utility.Convert.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Managed.Utility.Convert.md index 85eb7e761a..5b39ae3d40 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Managed.Utility.Convert.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Managed.Utility.Convert.md @@ -1,17 +1,18 @@ -# Class Convert +# Class Convert + Namespace: [VM.Managed.Utility](VM.Managed.Utility.md) Assembly: VM.dll This class is to represent the special convert. -```python +```csharp public static class Convert ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Convert](VM.Managed.Utility.Convert.md) ## Properties @@ -20,71 +21,71 @@ public static class Convert Gets the Degree to Radius. -```python +```csharp public static double DToR { get; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RToD Gets the Radius to Degree. -```python +```csharp public static double RToD { get; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SignificantFigure Gets the significant figure. -```python +```csharp public static int SignificantFigure { get; set; } ``` #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods ### GetContrastColor\(Color\) -```python +```csharp public static Color GetContrastColor(Color baseColor) ``` #### Parameters -`baseColor` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) +`baseColor` Color #### Returns - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### ToString\(double\) Returns a that represents this instance. -```python +```csharp public static string ToString(double dVal) ``` #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The val. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string A that represents this instance. @@ -92,7 +93,7 @@ A that rep Returns a that represents this instance. -```python +```csharp public static string ToString(Vector vec) ``` @@ -102,7 +103,7 @@ public static string ToString(Vector vec) #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string A that represents this instance. @@ -110,24 +111,23 @@ A that rep Returns a that represents this instance. -```python +```csharp public static string ToString(double dVal, double dConvertFactor) ``` #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The val. -`dConvertFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dConvertFactor` double The convert factor. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string A that represents this instance. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Managed.Utility.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Managed.Utility.md index 6b8221d71e..94c4146ba6 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Managed.Utility.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Managed.Utility.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.Utility +# Namespace VM.Managed.Utility + ### Classes @@ -6,4 +7,3 @@ This class is to represent the special convert. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.MemberItem-1.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.MemberItem-1.md index 26bd3428da..2b3afef70d 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.MemberItem-1.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.MemberItem-1.md @@ -1,9 +1,10 @@ -# Class MemberItem +# Class MemberItem + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public abstract class MemberItem where TDescriptor : MemberDescriptor ``` @@ -13,14 +14,14 @@ public abstract class MemberItem where TDescriptor : MemberDescript #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [MemberItem](VM.MemberItem\-1.md) ## Constructors ### MemberItem\(TDescriptor\) -```python +```csharp protected MemberItem(TDescriptor memberDescriptor) ``` @@ -32,17 +33,17 @@ protected MemberItem(TDescriptor memberDescriptor) ### Attributes -```python +```csharp public IEnumerable Attributes { get; } ``` #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Attribute](https://learn.microsoft.com/dotnet/api/system.attribute)\> + IEnumerable ### MemberDescriptor -```python +```csharp protected TDescriptor MemberDescriptor { get; } ``` @@ -54,13 +55,13 @@ protected TDescriptor MemberDescriptor { get; } ### HasAttribute\(\) -```python +```csharp public bool HasAttribute() where T : Attribute ``` #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Type Parameters @@ -68,7 +69,7 @@ public bool HasAttribute() where T : Attribute ### TryGetAttributeInstance\(out T\) -```python +```csharp public bool TryGetAttributeInstance(out T attribute) where T : Attribute ``` @@ -78,10 +79,9 @@ public bool TryGetAttributeInstance(out T attribute) where T : Attribute #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Type Parameters `T` - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.NameType.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.NameType.md index ae276c5905..010f71282c 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.NameType.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.NameType.md @@ -1,11 +1,12 @@ -# Enum NameType +# Enum NameType + Namespace: [VM](VM.md) Assembly: VM.dll This enumerator represents the name display type -```python +```csharp public enum NameType ``` @@ -35,4 +36,3 @@ Name - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.OMatrix.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.OMatrix.md index fe738afc18..317981132a 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.OMatrix.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.OMatrix.md @@ -1,9 +1,10 @@ -# Struct OMatrix +# Struct OMatrix + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public struct OMatrix : IOMatrix ``` @@ -17,7 +18,7 @@ public struct OMatrix : IOMatrix Copy construct orientation matrix -```python +```csharp public OMatrix(OMatrix mat) ``` @@ -31,7 +32,7 @@ The matrix to copy Construct orientation matrix with two principal axis -```python +```csharp public OMatrix(Plane type, Vector vecMaster, Vector vecSlave) ``` @@ -53,13 +54,13 @@ The slave axis Construct orientation matrix with array of double -```python +```csharp public OMatrix(double[] arr) ``` #### Parameters -`arr` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arr` double\[\] The array contains orientation matrix @@ -69,19 +70,19 @@ The array contains orientation matrix Get/Set the array of matrix value -```python +```csharp public double[] Array { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### Identity Gets the Identity Orientation Matrix. -```python +```csharp public static OMatrix Identity { get; } ``` @@ -93,7 +94,7 @@ public static OMatrix Identity { get; } Get/Set X vector of matrix -```python +```csharp public Vector XVector { get; set; } ``` @@ -105,7 +106,7 @@ public Vector XVector { get; set; } Get/Set Y vector of matrix -```python +```csharp public Vector YVector { get; set; } ``` @@ -117,7 +118,7 @@ public Vector YVector { get; set; } Get/Set Z vector of matrix -```python +```csharp public Vector ZVector { get; set; } ``` @@ -129,7 +130,7 @@ public Vector ZVector { get; set; } Get/Set the specific vector of matrix -```python +```csharp public Vector this[int nIndex] { get; set; } ``` @@ -141,7 +142,7 @@ public Vector this[int nIndex] { get; set; } Get/Set the specific vector of matrix -```python +```csharp public Vector this[Coordinate enIndex] { get; set; } ``` @@ -153,25 +154,25 @@ public Vector this[Coordinate enIndex] { get; set; } Get/Set the specific value of matrix element -```python +```csharp public double this[int nRow, int nCol] { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### this\[Coordinate, Coordinate\] Get/Set the specific value of matrix element -```python +```csharp public double this[Coordinate enRow, Coordinate enCol] { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -179,17 +180,17 @@ public double this[Coordinate enRow, Coordinate enCol] { get; set; } Copy matrix values to the array -```python +```csharp public void CopyTo(double[] arr, int nStartIndex) ``` #### Parameters -`arr` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arr` double\[\] The array values copied to -`nStartIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nStartIndex` int The start index of array @@ -197,19 +198,19 @@ The start index of array Determines whether the specified object is equal to the current object. -```python +```csharp public override bool Equals(object obj) ``` #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The object to compare. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the objects are equal, otherwise false. @@ -217,7 +218,7 @@ true if the objects are equal, otherwise false. Get the direction vector for axis. -```python +```csharp public Vector GetDirectionVector(Coordinate axis) ``` @@ -237,13 +238,13 @@ The direction vector. Get the direction vector for axis. -```python +```csharp public Vector GetDirectionVector(int axis) ``` #### Parameters -`axis` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`axis` int The type of axis. @@ -257,13 +258,13 @@ The direction vector. Returns the hash code for this vector -```python +```csharp public override int GetHashCode() ``` #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int A 32-bit signed integer hash code. @@ -271,7 +272,7 @@ A 32-bit signed integer hash code. Initialize the Orientation Matrix -```python +```csharp public void Initialize() ``` @@ -279,13 +280,13 @@ public void Initialize() Normalize the Orientation Matrix -```python +```csharp public void Normalize() ``` #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The normalize operation failed . @@ -293,7 +294,7 @@ The normalize operation failed . To rotate counterclockwise for coordinate. -```python +```csharp public void RotateAxisDeg(Coordinate c, double dAngle) ``` @@ -303,13 +304,13 @@ public void RotateAxisDeg(Coordinate c, double dAngle) The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -317,17 +318,17 @@ The rotate operation failed . To rotate counterclockwise for coordinate. -```python +```csharp public void RotateAxisDeg(int nCoord, double dAngle) ``` #### Parameters -`nCoord` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nCoord` int The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -335,7 +336,7 @@ The degree. To rotate counterclockwise for axis. -```python +```csharp public void RotateAxisDeg(Vector axis, double dAngle) ``` @@ -345,13 +346,13 @@ public void RotateAxisDeg(Vector axis, double dAngle) The rotation axis. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -359,7 +360,7 @@ The rotate operation failed . To rotate counterclockwise for coordinate. -```python +```csharp public void RotateAxisRad(Coordinate c, double dAngle) ``` @@ -369,13 +370,13 @@ public void RotateAxisRad(Coordinate c, double dAngle) The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -383,17 +384,17 @@ The rotate operation failed . To rotate counterclockwise for coordinate. -```python +```csharp public void RotateAxisRad(int nCoord, double dAngle) ``` #### Parameters -`nCoord` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nCoord` int The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -401,7 +402,7 @@ The radian. To rotate counterclockwise for axis. -```python +```csharp public void RotateAxisRad(Vector axis, double dAngle) ``` @@ -411,13 +412,13 @@ public void RotateAxisRad(Vector axis, double dAngle) The rotation axis. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -425,19 +426,19 @@ The rotate operation failed . To rotate counterclockwise for x-axis. -```python +```csharp public void RotateXDeg(double dAngle) ``` #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -445,19 +446,19 @@ The rotate operation failed . To rotate counterclockwise for x-axis. -```python +```csharp public void RotateXRad(double dAngle) ``` #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -465,19 +466,19 @@ The rotate operation failed . To rotate counterclockwise for y-axis. -```python +```csharp public void RotateYDeg(double dAngle) ``` #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -485,19 +486,19 @@ The rotate operation failed . To rotate counterclockwise for y-axis. -```python +```csharp public void RotateYRad(double dAngle) ``` #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -505,19 +506,19 @@ The rotate operation failed . To rotate counterclockwise for z-axis. -```python +```csharp public void RotateZDeg(double dAngle) ``` #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -525,19 +526,19 @@ The rotate operation failed . To rotate counterclockwise for z-axis. -```python +```csharp public void RotateZRad(double dAngle) ``` #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -545,7 +546,7 @@ The rotate operation failed . Set data of orientation. -```python +```csharp public void SetOrientation(Plane type, Vector vecMaster, Vector vecSlave) ``` @@ -565,7 +566,7 @@ The vector for slave. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The set data of orientation operation failed . @@ -573,7 +574,7 @@ The set data of orientation operation failed . Set data of orientation. -```python +```csharp public void SetOrientation(OMatrix mat) ``` @@ -587,13 +588,13 @@ The matrix of orientation. Set data of orientation. -```python +```csharp public void SetOrientation(double[] arr) ``` #### Parameters -`arr` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arr` double\[\] The data of orientation. @@ -601,7 +602,7 @@ The data of orientation. Set data of orientation for euler angle. Unit is degree. -```python +```csharp public void SetOrientationEADeg(RotationAxes ea, double dAlpha, double dBeta, double dGamma) ``` @@ -611,21 +612,21 @@ public void SetOrientationEADeg(RotationAxes ea, double dAlpha, double dBeta, do The type of euler angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of euler angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of euler angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of euler angle. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The set data of orientation operation failed . @@ -633,7 +634,7 @@ The set data of orientation operation failed . Set data of orientation for euler angle. Unit is radian. -```python +```csharp public void SetOrientationEARad(RotationAxes ea, double dAlpha, double dBeta, double dGamma) ``` @@ -643,21 +644,21 @@ public void SetOrientationEARad(RotationAxes ea, double dAlpha, double dBeta, do The type of euler angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of euler angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of euler angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of euler angle. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The set data of orientation operation failed . @@ -665,7 +666,7 @@ The set data of orientation operation failed . Set data of orientation for fixed angle. Unit is degree. -```python +```csharp public void SetOrientationFixedAngleDeg(RotationAxes ea, double dAlpha, double dBeta, double dGamma) ``` @@ -675,21 +676,21 @@ public void SetOrientationFixedAngleDeg(RotationAxes ea, double dAlpha, double d The type of fixed angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of fixed angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of fixed angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of fixed angle. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The set data of orientation operation failed . @@ -697,7 +698,7 @@ The set data of orientation operation failed . Set data of orientation for fixed angle. Unit is radian. -```python +```csharp public void SetOrientationFixedAngleRad(RotationAxes ea, double dAlpha, double dBeta, double dGamma) ``` @@ -707,45 +708,45 @@ public void SetOrientationFixedAngleRad(RotationAxes ea, double dAlpha, double d The type of fixed angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of fixed angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of fixed angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of fixed angle. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The set data of orientation operation failed . ### ToString\(\) -```python +```csharp public override string ToString() ``` #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TransposeOrientation\(\) Transposed rows and columns of the matrix. -```python +```csharp public void TransposeOrientation() ``` #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The transpose operation failed . @@ -755,7 +756,7 @@ The transpose operation failed . Compare two orientation matrices are same or not -```python +```csharp public static bool operator ==(OMatrix matLeft, OMatrix matRight) ``` @@ -771,13 +772,13 @@ The right matrix to compare #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if two matrices are same, otherwise false. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The equality operation failed . @@ -785,7 +786,7 @@ The equality operation failed . Compare two orientation matrices are same or not -```python +```csharp public static bool operator !=(OMatrix matLeft, OMatrix matRight) ``` @@ -801,13 +802,13 @@ The right matrix to compare #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if two matrices are not same, otherwise false. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The inequality operation failed . @@ -815,7 +816,7 @@ The inequality operation failed . Cross product two orientation matrices. -```python +```csharp public static OMatrix operator *(OMatrix matA, OMatrix matB) ``` @@ -837,7 +838,7 @@ The cross product matrix. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The multiply operation failed . @@ -845,7 +846,7 @@ The multiply operation failed . Multiply vector to the matrix. -```python +```csharp public static Vector operator *(Vector vec, OMatrix mat) ``` @@ -867,8 +868,7 @@ The Multiplied vector. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The multiply operation failed . - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.ObservableObject.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.ObservableObject.md index 682b9644ca..daa3a4800b 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.ObservableObject.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.ObservableObject.md @@ -1,17 +1,18 @@ -# Class ObservableObject +# Class ObservableObject + Namespace: [VM](VM.md) Assembly: VM.dll Provides a base class implementing INotifyPropertyChanged -```python +```csharp public abstract class ObservableObject : IObservableObject, IDisposableObject ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ObservableObject](VM.ObservableObject.md) #### Derived @@ -29,7 +30,7 @@ public abstract class ObservableObject : IObservableObject, IDisposableObject ### ObservableObject\(\) -```python +```csharp protected ObservableObject() ``` @@ -37,108 +38,107 @@ protected ObservableObject() ### IsDisposed -```python +```csharp [Browsable(false)] public bool IsDisposed { get; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TryDisposing -```python +```csharp [Browsable(false)] public bool TryDisposing { get; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods ### Dispose\(\) -```python +```csharp public void Dispose() ``` ### Dispose\(bool\) -```python +```csharp protected virtual void Dispose(bool disposing) ``` #### Parameters -`disposing` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`disposing` bool ### DisposeManagedResources\(\) -```python +```csharp protected virtual void DisposeManagedResources() ``` ### DisposeUnmanagedResources\(\) -```python +```csharp protected virtual void DisposeUnmanagedResources() ``` ### RaisePropertyChanged\(string\) -```python +```csharp public virtual void RaisePropertyChanged(string propertyName) ``` #### Parameters -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string ### RaisePropertyChanged\(string, object, object\) -```python +```csharp public virtual void RaisePropertyChanged(string propertyName, object oldValue, object newValue) ``` #### Parameters -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string -`oldValue` [object](https://learn.microsoft.com/dotnet/api/system.object) +`oldValue` object -`newValue` [object](https://learn.microsoft.com/dotnet/api/system.object) +`newValue` object ### Disposed -```python +```csharp public event EventHandler Disposed ``` #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler) + EventHandler ### Disposing -```python +```csharp public event EventHandler Disposing ``` #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler) + EventHandler ### PropertyChanged -```python +```csharp public event PropertyChangedEventHandler PropertyChanged ``` #### Event Type - [PropertyChangedEventHandler](https://learn.microsoft.com/dotnet/api/system.componentmodel.propertychangedeventhandler) - + PropertyChangedEventHandler diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.DurabilityAnalysisParameter.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.DurabilityAnalysisParameter.md new file mode 100644 index 0000000000..fd8f9025d1 --- /dev/null +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.DurabilityAnalysisParameter.md @@ -0,0 +1,416 @@ +# Class DurabilityAnalysisParameter + + +Namespace: [VM.Operations.Post](VM.Operations.Post.md) +Assembly: VM.Operations.Post.dll + +Represents a parameter used for durability analysis. + +```csharp +public sealed class DurabilityAnalysisParameter : IDurabilityAnalysisParameter +``` + +#### Inheritance + +object ← +[DurabilityAnalysisParameter](VM.Operations.Post.DurabilityAnalysisParameter.md) + +#### Implements + +IDurabilityAnalysisParameter + +## Examples + +To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. +```python +# DurabilityAnalysisParameter.py +# -*- coding: utf-8 -*- +import sys + +# Get the current file's path and set the path for external modules. +current_dir = __file__.rsplit('\\', 1)[0] +external_modules_path = current_dir + '\\..\\..\\Modules' +sys.path.append(external_modules_path) + +# Import necessary modules +from OperationAPI import * + +# Start the headless application interface +applicationHandler = ApplicationHandler() + +# Import result file +result_file_path = get_result_file_path() + +# Set array about result file +filepaths = List[str]() +filepaths.Add(result_file_path) + +# Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. +applicationHandler.AddDocument(filepaths) + +# Get Active Page +# This retrieves the currently active page in the application. +page = applicationHandler.GetActivePage() + +# Get Active View +# This retrieves the currently active view in the page. +activeView = page.GetActiveView() + +# Loading Animation - Use this only when the current Active View is an Animation View. +# This method is used to load the animation in the active view. +applicationHandler.LoadingAnimation() + +# Set values for fatigue analysis. +# BodyName - Name of the FEBody to assign the material. +# MaterialName - Name of the material to assign to the FEBody. +# AnalysisType - Type of fatigue analysis. +# FatigueAnalysisType can be one of the following: +# - FatigueAnalysisType.SN - SN Curve +# - FatigueAnalysisType.EN - EN Curve +# Scale - The result for fatigue life is calculated by dividing by the scale. +# StressStrainCombinationType - Type of stress-strain combination. +# StressStrainCombinationType can be one of the following: +# - StressStrainCombinationType.VonMises - VonMises +# - StressStrainCombinationType.Signed_VonMises - Signed VonMises +# - StressStrainCombinationType.Max_Principal - 1st Principal +# - StressStrainCombinationType.Min_Principal - 3rd Principal +# - StressStrainCombinationType.Max_ABS_Principal - Max Abs Principal +# - StressStrainCombinationType.Max_Shear - Max Shear +# - StressStrainCombinationType.Signed_Max_Shear - Signed Max Shear +# - StressStrainCombinationType.Average_Principal - Average Principal +# MeanStressCorrection - Method for mean stress correction. +# MeanStressCorrection can be one of the following: +# - MeanStressCorrection.Neglect - Neglect +# - MeanStressCorrection.ModifiedGerber - Modified Gerber +# - MeanStressCorrection.GerberLocus - GerberLocus +# - MeanStressCorrection.Sodeberg - Sodeberg +# - MeanStressCorrection.DEelliptic - DEelliptic +parameter = FatigueParameter() +parameter.BodyName = "FEBody_01" +parameter.MaterialName = "2014_HV_O" +parameter.AnalysisType = FatigueAnalysisType.SN +parameter.Scale = 1.0 +parameter.StressStrainCombinationType = StressStrainCombinationType.VonMises +parameter.MeanStressCorrection = MeanStressCorrection.Neglect + +# Create a DurabilityAnalysisParameter +# FilePath - The path to the result file. +# ResultName - Name of the fatigue result. The result will be saved in the Fatigue folder under the result file directory. +# NoOfRepeatedLoad - Number of repeated loads +# LowerValue - Start time +# UpperValue - End time +# Parameters.Add - Adds a target. The target is a FatigueParameter that contains values for setting the FEBody. +durabilityParameter = DurabilityAnalysisParameter() +durabilityParameter.FilePath = result_file_path +durabilityParameter.ResultName = "Beam1" +durabilityParameter.NoOfRepeatedLoad = 1 +durabilityParameter.LowerValue = 1 +durabilityParameter.UpperValue = 10 +durabilityParameter.Parameters.Add(parameter) +applicationHandler.DurabilityAnalysis(durabilityParameter) + +# Close the Pages +# Get all created pages. +# This retrieves all pages created in the application. +pages = applicationHandler.GetPages() +for page in pages : + page.Close() + +# Close Document +applicationHandler.CloseDocument(result_file_path) +``` + +## Remarks + +This class provides properties and methods to define and manage the parameters required for performing a durability analysis. +It implements the interface and the interface for resource management. +For more details, refer to the online manual "5.4. Fatigue". + +## Constructors + +### DurabilityAnalysisParameter\(\) + +Initializes a new instance of the class. + +```csharp +public DurabilityAnalysisParameter() +``` + +#### Examples + +For an example that includes this property, see the [Class DurabilityAnalysisParameter](VM.Operations.Post.DurabilityAnalysisParameter.md). + +#### Remarks + +This constructor initializes the property with an empty list of objects. +It ensures that the collection is ready for use immediately after the object is created. + +## Properties + +### DocumentFilePath + +Gets or sets the file path of the document associated with the durability analysis. + +```csharp +public string DocumentFilePath { get; set; } +``` + +#### Property Value + + string + +#### Examples + +For an example that includes this property, see the [Class DurabilityAnalysisParameter](VM.Operations.Post.DurabilityAnalysisParameter.md). + +#### Remarks + +This property is used to specify the location of the document file that is analyzed for durability. + +### End + +Gets or sets the end value for the durability analysis range. + +```csharp +public int End { get; set; } +``` + +#### Property Value + + int + +#### Examples + +For an example that includes this property, see the [Interface DurabilityAnalysisParameter](VM.Operations.Post.DurabilityAnalysisParameter.md). + +#### Remarks + +This property specifies the upper limit of the range used in the durability analysis. + +### FilePath + +Gets or sets the file path of the document associated with the durability analysis. + +```csharp +[Obsolete("This property is considered outdated and its use is discouraged. It may be removed in future versions, so it is advisable to use the DocumentFilePath property of the DurabilityAnalysisParameter class instead.", true)] +public string FilePath { get; set; } +``` + +#### Property Value + + string + +#### Examples + +For an example that includes this property, see the [Interface DurabilityAnalysisParameter](VM.Operations.Post.DurabilityAnalysisParameter.md). + +#### Remarks + +This property is marked as obsolete. Use instead. + +### LowerValue + +Gets or sets the lower value for the durability analysis range. + +```csharp +[Obsolete("This property is considered outdated and its use is discouraged. It may be removed in future versions, so it is advisable to use the Start property of the DurabilityAnalysisParameter class instead.", true)] +public int LowerValue { get; set; } +``` + +#### Property Value + + int + +#### Examples + +For an example that includes this property, see the [Interface DurabilityAnalysisParameter](VM.Operations.Post.DurabilityAnalysisParameter.md). + +#### Remarks + +This property is marked as obsolete. Use instead. + +### NoOfRepeatedLoad + +Gets or sets the number of repeated loads for the durability analysis. + +```csharp +public double NoOfRepeatedLoad { get; set; } +``` + +#### Property Value + + double + +#### Examples + +For an example that includes this property, see the [Interface DurabilityAnalysisParameter](VM.Operations.Post.DurabilityAnalysisParameter.md). + +#### Remarks + +This property specifies the total count of repeated load cycles applied during the durability analysis. + +### Parameters + +Gets the list of fatigue parameters used in the durability analysis. + +```csharp +[Obsolete("This property is considered outdated and its use is discouraged. It may be removed in future versions, so it is advisable to use the Targets property of the DurabilityAnalysisParameter class instead.")] +public IList Parameters { get; } +``` + +#### Property Value + + IList + +#### Examples + +For an example that includes this property, see the [Interface DurabilityAnalysisParameter](VM.Operations.Post.DurabilityAnalysisParameter.md). + +#### Remarks + +This property provides access to the collection of fatigue parameters that define the characteristics of the durability analysis. + +### ResultName + +Gets or sets the name of the result associated with the durability analysis. + +```csharp +public string ResultName { get; set; } +``` + +#### Property Value + + string + +#### Examples + +For an example that includes this property, see the [Interface DurabilityAnalysisParameter](VM.Operations.Post.DurabilityAnalysisParameter.md). + +#### Remarks + +This property is used to specify or retrieve the name of the result generated from the durability analysis. + +### Start + +Gets or sets the start value for the durability analysis range. + +```csharp +public int Start { get; set; } +``` + +#### Property Value + + int + +#### Examples + +For an example that includes this property, see the [Interface DurabilityAnalysisParameter](VM.Operations.Post.DurabilityAnalysisParameter.md). + +#### Remarks + +This property specifies the lower limit of the range used in the durability analysis. + +### Targets + +Gets or sets the collection of target finite element bodies for the durability analysis. + +```csharp +public IEnumerable Targets { get; } +``` + +#### Property Value + + IEnumerable + +#### Examples + +For an example that includes this property, see the [Interface DurabilityAnalysisParameter](VM.Operations.Post.DurabilityAnalysisParameter.md). + +#### Remarks + +This property specifies the finite element bodies that are analyzed during the durability analysis. +Each target in the collection represents a specific body with its own material and analysis properties. + +### UpperValue + +Gets or sets the upper value for the durability analysis range. + +```csharp +[Obsolete("This property is considered outdated and its use is discouraged. It may be removed in future versions, so it is advisable to use the End property of the DurabilityAnalysisParameter class instead.", true)] +public int UpperValue { get; set; } +``` + +#### Property Value + + int + +#### Examples + +For an example that includes this property, see the [Interface DurabilityAnalysisParameter](VM.Operations.Post.DurabilityAnalysisParameter.md). + +#### Remarks + +This property is marked as obsolete. Use instead. + +## Methods + +### AddTarget\(Guid\) + +Adds a target finite element body to the collection of targets for the durability analysis. + +```csharp +public void AddTarget(Guid target) +``` + +#### Parameters + +`target` Guid + +The unique identifier of the target finite element body to add. + +#### Examples + +For an example that includes this property, see the [Interface DurabilityAnalysisParameter](VM.Operations.Post.DurabilityAnalysisParameter.md). + +#### Remarks + +This method attempts to add the specified target to the collection. +If the collection is not a modifiable list, an is thrown. + +#### Exceptions + + InvalidOperationException + +Thrown when the collection is not modifiable. + +### RemoveTarget\(Guid\) + +Removes a target finite element body from the collection of targets for the durability analysis. + +```csharp +public void RemoveTarget(Guid target) +``` + +#### Parameters + +`target` Guid + +The unique identifier of the target finite element body to remove. + +#### Examples + +For an example that includes this property, see the [Interface DurabilityAnalysisParameter](VM.Operations.Post.DurabilityAnalysisParameter.md). + +#### Remarks + +This method attempts to remove the specified target from the collection. +If the collection is not a modifiable list, an is thrown. + +#### Exceptions + + InvalidOperationException + +Thrown when the collection is not modifiable. + diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.FatigueParameter.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.FatigueParameter.md new file mode 100644 index 0000000000..a8db8ee214 --- /dev/null +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.FatigueParameter.md @@ -0,0 +1,317 @@ +# Class FatigueParameter + + +Namespace: [VM.Operations.Post](VM.Operations.Post.md) +Assembly: VM.Operations.Post.dll + +Represents the parameters required for fatigue analysis. +Implements the interface. + +```csharp +[Obsolete("This property is considered outdated and its use is discouraged. It may be removed in future versions, so it is advisable to use the Targets property of the FEBody class instead.", true)] +public class FatigueParameter : IFatigueParameter +``` + +#### Inheritance + +object ← +[FatigueParameter](VM.Operations.Post.FatigueParameter.md) + +#### Implements + +IFatigueParameter + +## Examples + +To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. +```python +# FatigueParameter.py +# -*- coding: utf-8 -*- +import sys + +# Get the current file's path and set the path for external modules. +current_dir = __file__.rsplit('\\', 1)[0] +external_modules_path = current_dir + '\\..\\..\\Modules' +sys.path.append(external_modules_path) + +# Import necessary modules +from OperationAPI import * + +# Start the headless application interface +applicationHandler = ApplicationHandler() + +# Import result file +result_file_path = get_result_file_path() + +# Set array about result file +filepaths = List[str]() +filepaths.Add(result_file_path) + +# Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. +applicationHandler.AddDocument(filepaths) + +# Get Active Page +# This retrieves the currently active page in the application. +page = applicationHandler.GetActivePage() + +# Get Active View +# This retrieves the currently active view in the page. +activeView = page.GetActiveView() + +# Loading Animation - Use this only when the current Active View is an Animation View. +# This method is used to load the animation in the active view. +applicationHandler.LoadingAnimation() + +# Set values for fatigue analysis. +# BodyName - Name of the FEBody to assign the material. +# MaterialName - Name of the material to assign to the FEBody. +parameter = FatigueParameter() +parameter.BodyName = "FEBody_01" +parameter.MaterialName = "2014_HV_O" + +# AnalysisType - Type of fatigue analysis. +# FatigueAnalysisType can be one of the following: +# - FatigueAnalysisType.SN - SN Curve +# - FatigueAnalysisType.EN - EN Curve +parameter.AnalysisType = FatigueAnalysisType.SN + +# Scale - The result for fatigue life is calculated by dividing by the scale. +parameter.Scale = 1.0 + +# StressStrainCombinationType - Type of stress-strain combination. +# StressStrainCombinationType can be one of the following: +# - StressStrainCombinationType.VonMises - VonMises +# - StressStrainCombinationType.Signed_VonMises - Signed VonMises +# - StressStrainCombinationType.Max_Principal - 1st Principal +# - StressStrainCombinationType.Min_Principal - 3rd Principal +# - StressStrainCombinationType.Max_ABS_Principal - Max Abs Principal +# - StressStrainCombinationType.Max_Shear - Max Shear +# - StressStrainCombinationType.Signed_Max_Shear - Signed Max Shear +# - StressStrainCombinationType.Average_Principal - Average Principal +parameter.StressStrainCombinationType = StressStrainCombinationType.VonMises + +# MeanStressCorrection - Method for mean stress correction. +# MeanStressCorrection can be one of the following: +# - MeanStressCorrection.Neglect - Neglect +# - MeanStressCorrection.ModifiedGerber - Modified Gerber +# - MeanStressCorrection.GerberLocus - GerberLocus +# - MeanStressCorrection.Sodeberg - Sodeberg +# - MeanStressCorrection.DEelliptic - DEelliptic +parameter.MeanStressCorrection = MeanStressCorrection.Neglect + +# Create a DurabilityAnalysisParameter +# FilePath - The path to the result file. +# ResultName - Name of the fatigue result. The result will be saved in the Fatigue folder under the result file directory. +# NoOfRepeatedLoad - Number of repeated loads +# LowerValue - Start time +# UpperValue - End time +# Parameters.Add - Adds a target. The target is a FatigueParameter that contains values for setting the FEBody. +durabilityParameter = DurabilityAnalysisParameter() +durabilityParameter.FilePath = result_file_path +durabilityParameter.ResultName = "Beam1" +durabilityParameter.NoOfRepeatedLoad = 1 +durabilityParameter.LowerValue = 1 +durabilityParameter.UpperValue = 10 +durabilityParameter.Parameters.Add(parameter) +applicationHandler.DurabilityAnalysis(durabilityParameter) + +# Close the Pages +# Get all created pages. +# This retrieves all pages created in the application. +pages = applicationHandler.GetPages() +for page in pages : + page.Close() + +# Close Document +applicationHandler.CloseDocument(result_file_path) +``` + +## Remarks + +For more details, refer to the online manual "5.4. Fatigue". + +## Constructors + +### FatigueParameter\(\) + +```csharp +public FatigueParameter() +``` + +## Properties + +### AnalysisMethod + +Gets or sets the analysis method used for EN (Strain-Life) fatigue analysis. + +```csharp +[Obsolete("This property will be deprecated in the near future.")] +public AnalysisMethodEN AnalysisMethod { get; set; } +``` + +#### Property Value + + AnalysisMethodEN + +#### Examples + +For an example that includes this property, see the [Class FatigueParameter](VM.Operations.Post.FatigueParameter.md). + +#### Remarks + +This property is applicable only when the is set to EN. +It determines the specific method used for strain-life fatigue analysis, such as: +
+ +### AnalysisType + +Gets or sets the type of fatigue analysis to be performed. + +```csharp +[Obsolete("This property will be deprecated in the near future.")] +public FatigueAnalysisType AnalysisType { get; set; } +``` + +#### Property Value + + FatigueAnalysisType + +#### Examples + +For an example that includes this property, see the [Class FatigueParameter](VM.Operations.Post.FatigueParameter.md). + +#### Remarks + +This property determines the method used for fatigue analysis, such as Stress-Life (SN) or Strain-Life (EN). +Available values for +
+ +### BodyName + +Gets or sets the name of the body for which fatigue analysis is performed. + +```csharp +[Obsolete("This property will be deprecated in the near future.")] +public string BodyName { get; set; } +``` + +#### Property Value + + string + +#### Examples + +For an example that includes this property, see the [Class FatigueParameter](VM.Operations.Post.FatigueParameter.md). + +#### Remarks + +This property is required to identify the specific body in the fatigue analysis process. + +### MaterialName + +Gets or sets the name of the material used in the fatigue analysis. + +```csharp +[Obsolete("This property will be deprecated in the near future.")] +public string MaterialName { get; set; } +``` + +#### Property Value + + string + +#### Examples + +For an example that includes this property, see the [Class FatigueParameter](VM.Operations.Post.FatigueParameter.md). + +#### Remarks + +This property is required to specify the material properties for the fatigue analysis process. + +### MeanStressCorrection + +Gets or sets the mean stress correction method used in the fatigue analysis. + +```csharp +[Obsolete("This property will be deprecated in the near future.")] +public MeanStressCorrection MeanStressCorrection { get; set; } +``` + +#### Property Value + + MeanStressCorrection + +#### Examples + +For an example that includes this property, see the [Class FatigueParameter](VM.Operations.Post.FatigueParameter.md). + +#### Remarks + +This property is used to define how mean stress is accounted for during the fatigue analysis process. + +### PlasticityCorrection + +Gets or sets the plasticity correction method used in the fatigue analysis. + +```csharp +[Obsolete("This property will be deprecated in the near future.")] +public PlasticityCorrection PlasticityCorrection { get; set; } +``` + +#### Property Value + + PlasticityCorrection + +#### Examples + +For an example that includes this property, see the [Class FatigueParameter](VM.Operations.Post.FatigueParameter.md). + +#### Remarks + +This property is used to define how plasticity effects are accounted for during the fatigue analysis process. +It is applicable when strain-based fatigue analysis is performed. + +### Scale + +Gets or sets the scale factor used in the fatigue analysis. + +```csharp +[Obsolete("This property will be deprecated in the near future.")] +public double Scale { get; set; } +``` + +#### Property Value + + double + +#### Examples + +For an example that includes this property, see the [Class FatigueParameter](VM.Operations.Post.FatigueParameter.md). + +#### Remarks + +This property is used to adjust the magnitude of the analysis results, allowing for scaling based on specific requirements. + +### StressStrainCombinationType + +Gets or sets the type of stress-strain combination used in the fatigue analysis. + +```csharp +[Obsolete("This property will be deprecated in the near future.")] +public StressStrainCombinationType StressStrainCombinationType { get; set; } +``` + +#### Property Value + + StressStrainCombinationType + +#### Examples + +For an example that includes this property, see the [Class FatigueParameter](VM.Operations.Post.FatigueParameter.md). + +#### Remarks + +This property is used to define how stress and strain are combined during the fatigue analysis process. + diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationAnalysisResult.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationAnalysisResult.md new file mode 100644 index 0000000000..0ca6a900b4 --- /dev/null +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationAnalysisResult.md @@ -0,0 +1,286 @@ +# Interface IOperationAnalysisResult + + +Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) +Assembly: VM.Operations.Post.dll + +Interface representing common information for an analysis result. + +```csharp +public interface IOperationAnalysisResult +``` + +## Examples + +For an example that includes information about interfaces, see this example. +To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. +```python +# IOperationAnalysisResult.py +# -*- coding: utf-8 -*- +import sys + +# Get the current file's path and set the path for external modules. +current_dir = __file__.rsplit('\\', 1)[0] +external_modules_path = current_dir + '\\..\\..\\Modules' +sys.path.append(external_modules_path) + +# Import necessary modules +from OperationAPI import * + +# Start the headless application interface +applicationHandler = ApplicationHandler() + +# Import result file +result_file_path = get_result_file_path() + +# Set array about result file +filepaths = List[str]() +filepaths.Add(result_file_path) + +# Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. +applicationHandler.AddDocument(filepaths) + +# Get all created pages. +# This retrieves all pages created in the application. +pages = applicationHandler.GetPages() + +findViews = list() +for page in pages : + views = page.GetViews() + animationViews = [view for view in views if view.ViewType == ViewType.Animation] + for animationView in animationViews : + if animationView.DocumentFilePath == result_file_path and animationView.AnalysisResultType == AnalysisResultType.Dynamics : + findViews.append(animationView) + +# result_file_path - Get the document from the result file path. +document = applicationHandler.GetDocument(result_file_path) + +# This retrieves the analysis result from the document. +# Types of Analysis Results +# - Dynamics +# - Eigenvalue +# - Statics +dynamic_analysis = document.GetAnalysisResultViewModel(AnalysisResultType.Dynamics) + +# This retrieves the state IDs from the dynamic analysis. +stateIDs = dynamic_analysis.GetStateIDArray() +py_stateIDs= list(stateIDs) + +skipIDs = List[int]() +for i in range(0, len(py_stateIDs), 2) : + skipIDs.Add(py_stateIDs[i]) + +# Should the specific frame be loaded? +isFlagActive = True +if isFlagActive: + dynamic_analysis.SetAnimationFrame(skipIDs) +else: + timeArray = dynamic_analysis.GetReferenceTimeArray() + py_timearray = list(timeArray) + dynamic_analysis.SetAnimationFrame(len(py_timearray)) + + # Moves the animation to the specified frame. + dynamic_analysis.MoveToAnimationFrame(len(py_timearray) - 1) + +# It returns the objects available for contouring that correspond to the MappingType. +targetentities = dynamic_analysis.GetContourables(ContourMappingType.FENode) + +# Create Contour + +# targetentities - Set the entity as the target for export +# Set Contour Mapping Type +# ContourMappingType can be one of the following: +# - ContourMappingType.None - None +# - ContourMappingType.FENode - Node (Averaged across body) +# - ContourMappingType.FEElement - Element (Unaveraged) +# - ContourMappingType.FEElementNode - Node (Unaveraged) +# - ContourMappingType.FEMaterial - Node (Averaged within material) +# - ContourMappingType.BeamGroup - Beam Group +# - ContourMappingType.Contact - Contact +# - ContourMappingType.ChainedSystem - Chained System +# - ContourMappingType.Usersubroutine - Usersubroutine +# characteristic_path - The path to the characteristic for which the contour will be created. +# component_path - The path to the component for which the contour will be created. +contour = dynamic_analysis.CreateContour(targetentities, ContourMappingType.FENode, "Displacement", "X") + +# Set properties for the contour +contour.LegendColorScheme = ColorSchemeType.BLACK_TO_WHITE +contour.AutoRange = False +if contour.AutoRange == False: + contour.Max = 4 + contour.Min = 1 + +# Set additional properties for the contour +contour.LegendFontColor = Colors.Red +contour.LogScale = True +contour.LegendVisibility = False +contour.Continuous = True +contour.Component = "Z" +contour.FullName = "FEBody_01_Contour_Z" +contour.MinMaxTargetType = ExtremalValueType.Part +contour.IsEnabled = False + +# Get all created pages. +# This retrieves all pages created in the application. +pages = applicationHandler.GetPages() +for page in pages : + page.Close() + +# Close Document +applicationHandler.CloseDocument(result_file_path) +``` + +## Methods + +### CreateContour\(IList, ContourMappingType, string, string, string\) + +Creates a contour for displaying various simulation results. Please refer to this [here](../getting_started_operation_api_using_py.md#how-to-input-the-value-of-the-target-into-the-function-parameter) link. + +```csharp +IOperationsContourViewModel CreateContour(IList entities, ContourMappingType mappingType, string characteristic, string component, string newName = null) +``` + +#### Parameters + +`entities` IList + +The names of the target entities. + +`mappingType` ContourMappingType + +The MappingType is an option to choose objects for contour display. Refer to UI for Contour. +The available options are: +
+ +`characteristic` string + +The name of the characteristic. Refer to UI for Contour. + +`component` string + +The name of the component. Refer to UI for Contour. + +`newName` string + +The name of the Contour. + +#### Returns + + [IOperationsContourViewModel](VM.Operations.Post.Interfaces.IOperationsContourViewModel.md) + +An instance of representing the created contour. + +#### Examples + +For an example that includes this property, see the [Interface IOperationAnalysisResult](VM.Operations.Post.Interfaces.IOperationAnalysisResult.md). + +#### Remarks + +This method allows the creation of a contour for visualizing simulation results based on various parameters. +The target entities are specified by the entities parameter, which is a list of entity names. +The mappingType parameter determines the type of contour mapping to be used, with options +including nodes, elements, and specialized groups. The characteristic and component +parameters specify the characteristic and component for the contour, respectively. Optionally, a new name for +the contour can be provided using the newName parameter. If not specified, a default name will be used. + +### GetContourables\(ContourMappingType\) + +Retrieves the entities that are applicable for the specified contour mapping type. + +```csharp +string[] GetContourables(ContourMappingType contourMappingType) +``` + +#### Parameters + +`contourMappingType` ContourMappingType + +The type of contour mapping. +The available options are: +
+ +#### Returns + + string\[\] + +An array of strings representing the entities applicable for the specified contour mapping type. + +#### Examples + +For an example that includes this property, see the [Interface IOperationAnalysisResult](VM.Operations.Post.Interfaces.IOperationAnalysisResult.md). + +#### Remarks + +This method returns the entities that correspond to the given contourMappingType. +If there are applicable entities, they are returned as an array of strings. + +### GetReferenceTimeArray\(\) + +Retrieves an array of time values from the result file. + +```csharp +double[] GetReferenceTimeArray() +``` + +#### Returns + + double\[\] + +An array of doubles representing the time values. + +#### Examples + +For an example that includes this property, see the [Interface IOperationAnalysisResult](VM.Operations.Post.Interfaces.IOperationAnalysisResult.md). + +#### Remarks + +This method extracts and returns the array of time values from the result file. The returned array +contains the time points relevant to the simulation or analysis. + +### GetStateIDArray\(\) + +Retrieves an array of state IDs from the result file. + +```csharp +int[] GetStateIDArray() +``` + +#### Returns + + int\[\] + +An array of integers representing the state IDs included in the result file. + +#### Examples + +For an example that includes this property, see the [Interface IOperationAnalysisResult](VM.Operations.Post.Interfaces.IOperationAnalysisResult.md). + +#### Remarks + +This method extracts and returns the array of state IDs from the result file. +The returned array contains the IDs of all states relevant to the simulation or analysis. + +### MoveToAnimationFrame\(int\) + +Moves the animation to the specified frame. + +```csharp +void MoveToAnimationFrame(int frame) +``` + +#### Parameters + +`frame` int + +The frame number to move to. + +#### Examples + +For an example that includes this property, see the [Interface IOperationAnalysisResult](VM.Operations.Post.Interfaces.IOperationAnalysisResult.md). + +#### Remarks + +This method sets the animation to the specified frame, allowing for control over the playback position. + diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationFEProperty.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationFEProperty.md new file mode 100644 index 0000000000..792039121b --- /dev/null +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationFEProperty.md @@ -0,0 +1,120 @@ +# Interface IOperationFEProperty + + +Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) +Assembly: VM.Operations.Post.dll + +Represents finite element properties for beam or shell elements. + +```csharp +public interface IOperationFEProperty : IHasName, IVisible +``` + +#### Implements + +IHasName, +IVisible + +## Examples + +For an example that includes information about interfaces, see this example. +To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. +```python +# IOperationFEProperty.py +# -*- coding: utf-8 -*- +import sys + +# Get the current file's path and set the path for external modules. +current_dir = __file__.rsplit('\\', 1)[0] +external_modules_path = current_dir + '\\..\\..\\Modules' +sys.path.append(external_modules_path) + +# Import necessary modules +from OperationAPI import * + +# Start the headless application interface +applicationHandler = ApplicationHandler() + +# Import result file +result_file_path = get_result_file_path() + +# Set array about result file +filepaths = List[str]() +filepaths.Add(result_file_path) + +# Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. +applicationHandler.AddDocument(filepaths) + +# Get Active Page +# This retrieves the currently active page in the application. +page = applicationHandler.GetActivePage() + +# Get Active View +# This retrieves the currently active view in the page. +activeView = page.GetActiveView() + +# Get instance of entity +# The GetViewModelByName method retrieves the target by its name. +febody = activeView.GetViewModelByName("FEBody_01") +febodyProperties = list(febody.Properties) + +# Print all ElementIndexes of the FEBody properties. +# This will print the ElementIndexes of each property in the FEBody. +output_lines = [] +for i, prop in enumerate(febodyProperties): + prop.IsVisible = True + elementIndexes = prop.ElementIndexes + for idx in elementIndexes: + output_lines.append(str(idx)) + output_lines.append("") + +# Write the output to a text file +output_text = "\n".join(output_lines) +output_dir = get_output_directory() +output_path = combine_path(output_dir, "FEBody_01_All_ElementIndexes.txt") +with open(output_path, "w") as out_f: + out_f.write(output_text) + +# Get all created pages. +# This retrieves all pages created in the application. +pages = applicationHandler.GetPages() +for page in pages : + page.Close() + +# Close Document +applicationHandler.CloseDocument(result_file_path) +``` + +## Remarks + +This interface defines the common contract for various finite element properties +that can be associated with either beam or shell elements within a structural analysis context. +Implementations of this interface should provide specific property data +relevant to the element type they represent. +It extends and to include naming and visibility functionality. + +## Properties + +### ElementIndexes + +Gets the indexes of the elements associated with this property. + +```csharp +uint[] ElementIndexes { get; } +``` + +#### Property Value + + uint\[\] + +#### Examples + +For an example that includes this property, see the [Interface IOperationFEProperty](VM.Operations.Post.Interfaces.IOperationFEProperty.md). + +#### Remarks + +The property provides an array of unsigned integers +that represent the indexes of elements relevant to the operation. + diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationMaterial.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationMaterial.md new file mode 100644 index 0000000000..041f404b09 --- /dev/null +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationMaterial.md @@ -0,0 +1,559 @@ +# Interface IOperationMaterial + + +Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) +Assembly: VM.Operations.Post.dll + +Represents the material properties and parameters used for fatigue analysis. + +```csharp +public interface IOperationMaterial : IViewModel, IObservableObject, IDisposableObject, IEnabled, IExpanded, ISelected, IVisible +``` + +#### Implements + +IViewModel, +IObservableObject, +IDisposableObject, +IEnabled, +IExpanded, +ISelected, +IVisible + +## Examples + +For an example that includes information about interfaces, see this example. +To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. +```python +# IOperationMaterial.py +# -*- coding: utf-8 -*- +import sys + +# Get the current file's path and set the path for external modules. +current_dir = __file__.rsplit('\\', 1)[0] +external_modules_path = current_dir + '\\..\\..\\Modules' +sys.path.append(external_modules_path) + +# Import necessary modules +from OperationAPI import * + +# Start the headless application interface +applicationHandler = ApplicationHandler() + +# Import result file +result_file_path = get_result_file_path() + +# Set array about result file +filepaths = List[str]() +filepaths.Add(result_file_path) + +# Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. +applicationHandler.AddDocument(filepaths) + +# Get Active Page +# This retrieves the currently active page in the application. +page = applicationHandler.GetActivePage() + +# Get Active View +# This retrieves the currently active view in the page. +activeView = page.GetActiveView() + +# Get instance of entity +# The GetViewModelByName method retrieves the target by its name. +material = activeView.GetViewModelByName("2014_HV_O") + +# Material Setting +material.UTS = "10" + +# Get all created pages. +# This retrieves all pages created in the application. +pages = applicationHandler.GetPages() +for page in pages : + page.Close() + +# Close Document +applicationHandler.CloseDocument(result_file_path) +``` + +## Remarks + +This interface defines the properties required for material, +including physical and mechanical properties, as well as additional metadata. +These properties are utilized as the material property of FE or EF (EasyFlex) bodies for fatigue analysis. + +## Properties + +### B + +Gets or sets the fatigue strength exponent (b). + +```csharp +string B { get; set; } +``` + +#### Property Value + + string + +#### Examples + +For an example that includes this property, see the [Interface IOperationMaterial](VM.Operations.Post.Interfaces.IOperationMaterial.md). + +#### Remarks + +Used to set the fatigue strength exponent. This property is critical for determining the material's +resistance to fatigue under cyclic loading conditions. Properly setting this value ensures accurate +fatigue life predictions and material performance evaluations. + +### B1 + +Gets or sets the first fatigue strength exponent (b1). + +```csharp +string B1 { get; set; } +``` + +#### Property Value + + string + +#### Examples + +For an example that includes this property, see the [Interface IOperationMaterial](VM.Operations.Post.Interfaces.IOperationMaterial.md). + +#### Remarks + +Used to set the first exponent of fatigue strength. This property is critical for defining the material's +behavior under cyclic loading conditions, particularly in fatigue strength calculations. Properly setting +this value ensures accurate fatigue life predictions and material performance evaluations. + +### B2 + +Gets or sets the second fatigue strength exponent (b2). + +```csharp +string B2 { get; set; } +``` + +#### Property Value + + string + +#### Examples + +For an example that includes this property, see the [Interface IOperationMaterial](VM.Operations.Post.Interfaces.IOperationMaterial.md). + +#### Remarks + +Used to set the second exponent of fatigue strength. This property is critical for defining the material's +behavior under cyclic loading conditions, particularly in advanced fatigue strength calculations. +Properly setting this value ensures accurate fatigue life predictions and material performance evaluations. + +### C + +Gets or sets the fatigue ductility exponent (c). + +```csharp +string C { get; set; } +``` + +#### Property Value + + string + +#### Examples + +For an example that includes this property, see the [Interface IOperationMaterial](VM.Operations.Post.Interfaces.IOperationMaterial.md). + +#### Remarks + +Used to set the fatigue ductility exponent. This property is critical for determining the material's +ability to undergo plastic deformation under cyclic loading conditions. Properly setting this value +ensures accurate fatigue life predictions and material performance evaluations. + +### Comment + +Gets or sets additional comments or notes about the material. + +```csharp +string Comment { get; set; } +``` + +#### Property Value + + string + +#### Examples + +For an example that includes this property, see the [Interface IOperationMaterial](VM.Operations.Post.Interfaces.IOperationMaterial.md). + +#### Remarks + +Used to enter a comment for the material. This property allows users to provide descriptive or contextual +information about the material, which can be useful for documentation, analysis, or communication purposes. +Properly setting this value ensures that relevant details about the material are captured and accessible. + +### DataType + +Gets or sets the material property type. + +```csharp +DataType DataType { get; set; } +``` + +#### Property Value + + DataType + +#### Examples + +For an example that includes this property, see the [Interface IOperationMaterial](VM.Operations.Post.Interfaces.IOperationMaterial.md). + +#### Remarks + +Used to set the material property type. You can select either or , +which determines how to evaluate the fatigue life. +

+

+Selecting the appropriate data type is crucial as it directly impacts the underlying calculations and accuracy of the fatigue life prediction. +

+ +### E + +Gets or sets the Young's modulus (E) of the material. + +```csharp +string E { get; set; } +``` + +#### Property Value + + string + +#### Examples + +For an example that includes this property, see the [Interface IOperationMaterial](VM.Operations.Post.Interfaces.IOperationMaterial.md). + +#### Remarks + +Used to set the Young's modulus of the material. The Young's modulus, also known as the modulus of elasticity, +is a measure of the material's stiffness and is a critical property in determining how a material deforms +under stress. Properly setting this value ensures accurate material performance evaluations and structural +integrity under applied loads. + +### Ef\_ + +Gets or sets the fatigue ductility coefficient (Ef'). + +```csharp +string Ef_ { get; set; } +``` + +#### Property Value + + string + +#### Examples + +For an example that includes this property, see the [Interface IOperationMaterial](VM.Operations.Post.Interfaces.IOperationMaterial.md). + +#### Remarks + +Used to set the fatigue ductility coefficient. This property is critical for determining the material's +ability to resist fatigue under cyclic loading conditions. Properly setting this value ensures accurate +fatigue life predictions and material performance evaluations. + +### FinishValue + +Gets or sets the finish value of the material. + +```csharp +double FinishValue { get; set; } +``` + +#### Property Value + + double + +#### Examples + +For an example that includes this property, see the [Interface IOperationMaterial](VM.Operations.Post.Interfaces.IOperationMaterial.md). + +#### Remarks + +Used to show the finish type. Only User Defined is available. +Surface finish is the surface roughness and waviness which are determined by manufacturing processes +such as cutting, abrasion, casting, and forming. + +### K + +Gets or sets the strength hardening coefficient (K). + +```csharp +string K { get; set; } +``` + +#### Property Value + + string + +#### Examples + +For an example that includes this property, see the [Interface IOperationMaterial](VM.Operations.Post.Interfaces.IOperationMaterial.md). + +#### Remarks + +Used to set the strength hardening coefficient. This property is critical for determining the material's +ability to resist deformation under applied stress. Properly setting this value ensures accurate material +performance evaluations and structural integrity under various loading conditions. + +### K\_ + +Gets or sets the cyclic strength coefficient (K'). + +```csharp +string K_ { get; set; } +``` + +#### Property Value + + string + +#### Examples + +For an example that includes this property, see the [Interface IOperationMaterial](VM.Operations.Post.Interfaces.IOperationMaterial.md). + +#### Remarks + +Used to set the cyclic strength coefficient. This property is critical for determining the material's +behavior under cyclic loading conditions, particularly its ability to resist fatigue. +Properly setting this value ensures accurate fatigue life predictions and material performance evaluations. + +### N + +Gets or sets the strain hardening exponent (n). + +```csharp +string N { get; set; } +``` + +#### Property Value + + string + +#### Examples + +For an example that includes this property, see the [Interface IOperationMaterial](VM.Operations.Post.Interfaces.IOperationMaterial.md). + +#### Remarks + +Used to set the strain hardening exponent. This property is critical for determining the material's +ability to strengthen as it undergoes plastic deformation. Properly setting this value ensures accurate +material performance evaluations and structural integrity under cyclic loading conditions. + +### N\_ + +Gets or sets the cyclic strain-hardening exponent (n'). + +```csharp +string N_ { get; set; } +``` + +#### Property Value + + string + +#### Examples + +For an example that includes this property, see the [Interface IOperationMaterial](VM.Operations.Post.Interfaces.IOperationMaterial.md). + +#### Remarks + +Used to set the cyclic strain-hardening exponent. This property is critical for determining the material's +behavior under cyclic loading conditions, particularly its ability to harden as strain increases. +Properly setting this value ensures accurate fatigue life predictions and material performance evaluations. + +### Nc1 + +Gets or sets the first fatigue life (Nc1). + +```csharp +string Nc1 { get; set; } +``` + +#### Property Value + + string + +#### Examples + +For an example that includes this property, see the [Interface IOperationMaterial](VM.Operations.Post.Interfaces.IOperationMaterial.md). + +#### Remarks + +Used to set the fatigue transition point. This property defines the first fatigue life value, +which is critical for determining the material's behavior under cyclic loading conditions. +Properly setting this value ensures accurate fatigue life predictions and material performance evaluations. + +### PressureUnit + +Gets or sets the unit for pressure values. + +```csharp +PressureUnitType PressureUnit { get; set; } +``` + +#### Property Value + + PressureUnitType + +#### Examples + +For an example that includes this property, see the [Interface IOperationMaterial](VM.Operations.Post.Interfaces.IOperationMaterial.md). + +#### Remarks + +Used to set the unit for pressure values. This property ensures that all pressure-related calculations +and operations are consistent with the specified unit, such as Pascal or PSI. +Properly setting this value is essential for accurate material property evaluations and fatigue analysis. +

+

+Selecting the appropriate pressure unit is crucial for ensuring consistency and accuracy in calculations. +

+ +### Rc + +Gets or sets the Rockwell hardness (Rc). + +```csharp +string Rc { get; set; } +``` + +#### Property Value + + string + +#### Examples + +For an example that includes this property, see the [Interface IOperationMaterial](VM.Operations.Post.Interfaces.IOperationMaterial.md). + +#### Remarks + +Used to set the endurance limit. The property specifies the Rockwell hardness value, +which is a measure of the material's resistance to permanent deformation or penetration. +Properly setting this value is essential for ensuring accurate material performance evaluations +and fatigue life predictions. + +### SRI1 + +Gets or sets the stress range intercept (SRI1). + +```csharp +string SRI1 { get; set; } +``` + +#### Property Value + + string + +#### Examples + +For an example that includes this property, see the [Interface IOperationMaterial](VM.Operations.Post.Interfaces.IOperationMaterial.md). + +#### Remarks + +Used to set the stress range intercept. This property is critical for defining the material's +behavior under cyclic loading conditions, particularly in fatigue analysis. Properly setting +this value ensures accurate fatigue life predictions and material performance evaluations. + +### Sf\_ + +Gets or sets the fatigue strength coefficient (Sf'). + +```csharp +string Sf_ { get; set; } +``` + +#### Property Value + + string + +#### Examples + +For an example that includes this property, see the [Interface IOperationMaterial](VM.Operations.Post.Interfaces.IOperationMaterial.md). + +#### Remarks + +Used to set the fatigue strength coefficient. This property is critical for determining the material's +resistance to fatigue under cyclic loading conditions. Properly setting this value ensures accurate +fatigue life predictions and material performance evaluations. + +### TreatmentValue + +Gets or sets the treatment value of the material. + +```csharp +double TreatmentValue { get; set; } +``` + +#### Property Value + + double + +#### Examples + +For an example that includes this property, see the [Interface IOperationMaterial](VM.Operations.Post.Interfaces.IOperationMaterial.md). + +#### Remarks + +Used to set the value for treatment. This value is generally greater than 1, +and will increase the fatigue strength as shown in the figure below. +Properly setting this value is essential for ensuring accurate fatigue strength predictions +and material performance evaluations. + +### UTS + +Gets or sets the ultimate tensile strength (UTS) of the material. + +```csharp +string UTS { get; set; } +``` + +#### Property Value + + string + +#### Examples + +For an example that includes this property, see the [Interface IOperationMaterial](VM.Operations.Post.Interfaces.IOperationMaterial.md). + +#### Remarks + +Used to set the ultimate tensile strength of the material. The ultimate tensile strength (UTS) is the maximum stress +that a material can withstand while being stretched or pulled before breaking. Properly setting this value is critical +for ensuring accurate material performance evaluations and structural integrity under applied loads. + +### YS + +Gets or sets the yield strength (YS) of the material. + +```csharp +string YS { get; set; } +``` + +#### Property Value + + string + +#### Examples + +For an example that includes this property, see the [Interface IOperationMaterial](VM.Operations.Post.Interfaces.IOperationMaterial.md). + +#### Remarks + +Used to set the yield strength of the material. The yield strength is a critical property that defines +the stress at which a material begins to deform plastically. Properly setting this value ensures accurate +material performance evaluations and structural integrity under applied loads. + diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsAnimation.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsAnimation.md index 3f4b44bac2..f61affb0a3 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsAnimation.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsAnimation.md @@ -1,30 +1,33 @@ -# Interface IOperationsAnimation +# Interface IOperationsAnimation + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll -Interface for Animation View related operations. +Interface for Animation View. -```python -public interface IOperationsAnimation : IView, IOperationsBase +```csharp +public interface IOperationsAnimation : IView ``` #### Implements -[IView](VM.Operations.Post.Interfaces.IView.md), -[IOperationsBase](VM.Operations.Post.Interfaces.IOperationsBase.md) +[IView](VM.Operations.Post.Interfaces.IView.md) ## Examples For an example that includes information about interfaces, see this example. To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
# IOperationsAnimation.py
+```python
+# IOperationsAnimation.py
 import sys
 
+# Get the current file's path and set the path for external modules.
 current_dir = __file__.rsplit('\\', 1)[0]
 external_modules_path = current_dir + '\\..\\..\\Modules'
 sys.path.append(external_modules_path)
 
+# Import necessary modules
 from OperationAPI import *
 
 # Start the headless application interface
@@ -38,9 +41,12 @@ filepaths = List[str]()
 filepaths.Add(result_file_path)
 
 # Open about result files
+# This will open the result file in the application.
+# When the result is first opened, a Page is created and an Animation View is created on that Page.
 applicationHandler.AddDocument(filepaths)
 
-# Find Page
+# Get all created pages.
+# This retrieves all pages created in the application.
 pages = applicationHandler.GetPages()
 
 findViews = list()
@@ -69,23 +75,47 @@ if viewCount > 0 :
     animationView.TextColorStateInfo = Colors.Blue
 
     # Creating a CoordinateSystem
+    # Name - Set the name of the instance.
+    # ParentInfo - Specifies The path of an parent entity.
     animationview.CreateCoordinateSystem("Microphone", "Ground")
 
+    # Get instance of entity
+    # The GetViewModelByName method retrieves the target by its name.
     microphone = animationview.GetViewModelByName("Microphone")
     microphone.TransformationOffsetPosition = Vector(0,300,0)
 
+    # Get instance of entity
+    # The GetViewModelByName method retrieves the target by its name.
+    febody = animationview.GetViewModelByName("FEBody_01")
+
     bodynames = List[str](1)
-    bodynames.Add(r'FEBody_01')
+    bodynames.Add(febody.FullName)
     microphoneNames = List[str](1)
-    microphoneNames.Add(r'Microphone')
+    microphoneNames.Add(microphone.FullName)
 
     # Creating a SoundPressure
     animationview.CreateSoundPressure(bodynames, microphoneNames, 10.0, 100.0, 3.0, 1.21E-09, 343000.0, 2000.0, 1, 10, False)
 
+    # result_file_path - Get the document from the result file path.
     document = applicationHandler.GetDocument(result_file_path)
+
+    # This retrieves the analysis result from the document.
+    # Types of Analysis Results
+    # - Dynamics
+    # - Eigenvalue
+    # - Statics
     dynamic_analysis = document.GetAnalysisResultViewModel(AnalysisResultType.Dynamics)
     dynamic_analysis.SetAnimationFrame(11)
 
+    # Hides all entities except the specified ones.
+    animationview.HideOthers(febody.FullName)
+
+    # Fit the view to the current selection.
+    animationview.Fit()
+
+    # Show all entities in the view.
+    animationView.ShowAll()
+
     # Following Camera
     # Translation
     animationview.Activate()
@@ -145,14 +175,20 @@ if viewCount > 0 :
     
     animationview.SetViewSpec(viewSpec)
 
-# Close the Pages
+# Get all created pages.
+# This retrieves all pages created in the application.
 pages = applicationHandler.GetPages()
 for page in pages :
     page.Close()
 
 # Close Document
 applicationHandler.CloseDocument(result_file_path)
-
+``` + +## Remarks + +This interface provides functionalities for managing and interacting with animation views. +It includes properties and methods to control the appearance, behavior, and data associated with animation views. ## Properties @@ -160,7 +196,7 @@ applicationHandler.CloseDocument(result_file_path) Gets the type of analysis result for the currently created animation view. -```python +```csharp AnalysisResultType AnalysisResultType { get; } ``` @@ -182,13 +218,13 @@ The available options are: Gets or sets the bottom color of the view's background. -```python +```csharp Color BottomColor { get; set; } ``` #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.windows.media.color) + Color #### Examples @@ -203,13 +239,13 @@ In the UI, this property is represented under the "Background" category with the Gets the file path that contains the information of the simulation results. -```python +```csharp string DocumentFilePath { get; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string #### Examples @@ -224,13 +260,13 @@ The file path is read-only and is determined by the simulation process. Gets or sets a value that activates the following camera. -```python +```csharp bool IsFollowingCameraActive { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples @@ -246,13 +282,13 @@ If set to false, the camera will remain stationary and will not tra Gets or sets a value that determines whether the component follows the orientation of the target along the X-axis. -```python +```csharp bool IsFollowingRotXAxis { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples @@ -268,13 +304,13 @@ When set to false, the component will not follow the X-axis rotatio Gets or sets a value that determines whether the component follows the orientation of the target along the Y-axis. -```python +```csharp bool IsFollowingRotYAxis { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples @@ -290,13 +326,13 @@ When set to false, the component will not follow the Y-axis rotatio Gets or sets a value that determines whether the component follows the orientation of the target along the Z-axis. -```python +```csharp bool IsFollowingRotZAxis { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples @@ -312,13 +348,13 @@ When set to false, the component will not follow the Z-axis rotatio Gets or sets a value that determines whether the component follows the position of the target along the X-axis. -```python +```csharp bool IsFollowingXAxis { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples @@ -334,13 +370,13 @@ When set to false, the component will not follow the X position of Gets or sets a value that determines whether the component follows the position of the target along the Y-axis. -```python +```csharp bool IsFollowingYAxis { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples @@ -356,13 +392,13 @@ When set to false, the component will not follow the Y position of Gets or sets a value that determines whether the component follows the position of the target along the Z-axis. -```python +```csharp bool IsFollowingZAxis { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples @@ -378,13 +414,13 @@ When set to false, the component will not follow the Z position of Gets or sets a value indicating whether the logo is visible. -```python +```csharp bool IsVisibleLogo { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples @@ -399,13 +435,13 @@ In the UI, this property is represented under the "Logo" category with the prope Gets or sets a value indicating whether the navigation cube is visible. -```python +```csharp bool IsVisibleNavigationCube { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples @@ -420,13 +456,13 @@ In the UI, this property is represented under the "Navigation Cube" category wit Gets or sets a value indicating whether the state information is visible. -```python +```csharp bool IsVisibleStateInfo { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples @@ -441,13 +477,13 @@ In the UI, this property is represented under the "StateInfo" category with the Gets or sets the height of the logo image. -```python +```csharp uint LogoHeight { get; set; } ``` #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint #### Examples @@ -462,13 +498,13 @@ In the UI, this property is represented under the "Logo" category with the prope Gets or sets the file path of the logo image. -```python +```csharp string LogoPath { get; set; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string #### Examples @@ -483,7 +519,7 @@ In the UI, this property is represented under the "Logo" category with the prope Gets or sets the position of the logo. -```python +```csharp Layout LogoPosition { get; set; } ``` @@ -505,13 +541,13 @@ In the UI, this property is represented under the "Logo" category with the prope Gets or sets the width of the logo image. -```python +```csharp uint LogoWidth { get; set; } ``` #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint #### Examples @@ -526,7 +562,7 @@ In the UI, this property is represented under the "Logo" category with the prope Gets or sets the position of the navigation cube. -```python +```csharp Layout NavigationCubePosition { get; set; } ``` @@ -548,13 +584,13 @@ In the UI, this property is represented under the "Navigation Cube" category wit Gets or sets the opacity of the logo. -```python +```csharp double Opacity { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Examples @@ -569,7 +605,7 @@ In the UI, this property is represented under the "Logo" category with the prope Gets or sets the position of the state information. -```python +```csharp Layout StateInfoPosition { get; set; } ``` @@ -591,13 +627,13 @@ In the UI, this property is represented under the "StateInfo" category with the Gets or sets the font color of the state information. -```python +```csharp Color TextColorStateInfo { get; set; } ``` #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.windows.media.color) + Color #### Examples @@ -612,13 +648,13 @@ In the UI, this property is represented under the "StateInfo" category with the Gets or sets the top color of the view's background. -```python +```csharp Color TopColor { get; set; } ``` #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.windows.media.color) + Color #### Examples @@ -633,7 +669,7 @@ In the UI, this property is represented under the "Background" category with the Gets or sets the transformation type that determines the following directions of the camera. -```python +```csharp TransformationType TransformationType { get; set; } ``` @@ -657,17 +693,17 @@ The CreateSoundPressure(IList bodyNames, IList coordinateNames, double coarseningRate, double maxAreaFactor, double maxAspectRatio, double airDensity, double soundVelocity, double frequency, int start, int end, bool isDeicbelScale) ``` #### Parameters -`bodyNames` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`bodyNames` IList The list of entity names whose surfaces generate the sound pressure. -`coordinateNames` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`coordinateNames` IList The list of coordinate system names used in the analysis. -`coarseningRate` [double](https://learn.microsoft.com/dotnet/api/system.double) +`coarseningRate` double Percentage of the number of nodes remaining in the sampling result with respect to the initial number of nodes. -`maxAreaFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`maxAreaFactor` double Maximum allowable area of each element generated by the sampling result. It sets the condition that the area of each element cannot be greater than (Max Area Factor) * (Average element area). -`maxAspectRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`maxAspectRatio` double Maximum allowable aspect ratio of each element generated by the sampling result. -`airDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`airDensity` double Density of the air. -`soundVelocity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`soundVelocity` double Speed of sound in air. -`frequency` [double](https://learn.microsoft.com/dotnet/api/system.double) +`frequency` double The number of analysis results per second is determined as 10*analysis frequency. -`start` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`start` int The start frame for the time range to be analyzed. -`end` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`end` int The end frame for the time range to be analyzed. -`isDeicbelScale` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isDeicbelScale` bool The decibel scale. #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> + IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> A collection of sound pressure data series. @@ -756,17 +792,35 @@ For an example that includes this property, see the [Interface IOperationsAnimat This method uses the Rayleigh Integral to analyze the sound pressure generated by the vibrations on the system surface. +### Fit\(\) + +Adjusts the view to fit all visible entities within the current viewport. + +```csharp +void Fit() +``` + +#### Examples + +For an example that includes this property, see the [Interface IOperationsAnimation](VM.Operations.Post.Interfaces.IOperationsAnimation.md). + +#### Remarks + +The method ensures that all visible entities are scaled and positioned +to fit within the current viewport. This is useful for resetting the view to include +all entities after zooming or panning. + ### GetViewModelByName\(string\) Retrieves an instance of an entity based on the provided name. -```python +```csharp IEntityBaseViewModel GetViewModelByName(string name) ``` #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the entity to be retrieved. @@ -790,7 +844,7 @@ If no entity with the specified name is found, the method returns nullnull. +### HideOthers\(params string\[\]\) + +Hides all entities except the specified ones. + +```csharp +void HideOthers(params string[] names) +``` + +#### Parameters + +`names` string\[\] + +An array of entity names to remain visible. All other entities will be hidden. + +#### Examples + +For an example that includes this property, see the [Interface IOperationsAnimation](VM.Operations.Post.Interfaces.IOperationsAnimation.md). + +#### Remarks + +The method is used to hide all entities in the current view except for those specified in the names parameter. +This is useful for focusing on specific entities while temporarily hiding others. + +### HideOthers\(params Guid\[\]\) + +Hides all entities except the specified ones. + +```csharp +void HideOthers(params Guid[] entityIDs) +``` + +#### Parameters + +`entityIDs` Guid\[\] + +An array of entity ids to remain visible. All other entities will be hidden. + +#### Examples + +For an example that includes this property, see the [Interface IOperationsAnimation](VM.Operations.Post.Interfaces.IOperationsAnimation.md). + +#### Remarks + +The method is used to hide all entities in the current view except for those specified in the entityIDs parameter. +This is useful for focusing on specific entities while temporarily hiding others. + ### PlayAnimation\(\) Plays the loaded animation frames. -```python +```csharp void PlayAnimation() ``` @@ -832,13 +932,13 @@ the method should handle this scenario appropriately, such as by displaying an e Records the loaded animation frames to a file. -```python +```csharp void RecordingAnimation(string filePath, RecordingType recordingType, RecordingRangeType rangeType, int frameRate = 10, IViewSpec[] viewSpecs = null) ``` #### Parameters -`filePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`filePath` string The file path where the recording will be saved. @@ -852,7 +952,7 @@ The range of the recording. Supported options are for the page containing the active view. -`frameRate` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`frameRate` int The frame rate of the recording. The default value is 10 frames per second. @@ -875,13 +975,13 @@ and custom camera positions for each frame can be set through the . +### ShowAll\(\) + +Makes all entities visible in the current view. + +```csharp +void ShowAll() +``` + +#### Examples + +For an example that includes this property, see the [Interface IOperationsAnimation](VM.Operations.Post.Interfaces.IOperationsAnimation.md). + +#### Remarks + +The method is used to make all entities in the current view visible. +This is useful for resetting the view to display all entities after some have been hidden. + ### StopAnimation\(\) Stops the currently playing animation. -```python +```csharp void StopAnimation() ``` @@ -934,4 +1051,3 @@ For an example that includes this property, see the [Interface IOperationsAnimat This method stops the playback of the animation frames that are currently playing. If no animation is currently playing, the method should handle this scenario appropriately, such as by displaying an error message or logging the issue. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsAxisViewModelBase.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsAxisViewModelBase.md index 8a3d818bdb..4ab69f7203 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsAxisViewModelBase.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsAxisViewModelBase.md @@ -1,11 +1,12 @@ -# Interface IOperationsAxisViewModelBase +# Interface IOperationsAxisViewModelBase + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll Interface representing common information for an axis view model. -```python +```csharp public interface IOperationsAxisViewModelBase ``` @@ -13,13 +14,16 @@ public interface IOperationsAxisViewModelBase For an example that includes information about interfaces, see this example. To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
# IOperationsAxisViewModelBase.py
+```python
+# IOperationsAxisViewModelBase.py
 import sys
 
+# Get the current file's path and set the path for external modules.
 current_dir = __file__.rsplit('\\', 1)[0]
 external_modules_path = current_dir + '\\..\\..\\Modules'
 sys.path.append(external_modules_path)
 
+# Import necessary modules
 from OperationAPI import *
 
 # Start the headless application interface
@@ -33,12 +37,17 @@ filepaths = List[str]()
 filepaths.Add(result_file_path)
 
 # Open about result files
+# This will open the result file in the application.
+# When the result is first opened, a Page is created and an Animation View is created on that Page.
 applicationHandler.AddDocument(filepaths)
 
-# Get Page
+# Get Active Page
+# This retrieves the currently active page in the application.
 page = applicationHandler.GetActivePage()
 
-# Create PlotView
+# Creating a Chart
+# Create a new Chart View on the page
+# This will create a new chart view with the specified name.
 chartView = page.CreateChart("Chart")
 
 # Set Background
@@ -52,7 +61,7 @@ page.Close()
 
 # Close Document
 applicationHandler.CloseDocument(result_file_path)
-
+``` ## Properties @@ -60,13 +69,13 @@ applicationHandler.CloseDocument(result_file_path) Gets or sets the title of the axis. -```python +```csharp string Title { get; set; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string #### Examples @@ -80,13 +89,13 @@ Use this property to specify or retrieve the title of the axis. Gets or sets the font size of the title. -```python +```csharp double TitleSize { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Examples @@ -100,13 +109,13 @@ Use this property to specify or retrieve the font size of the title. Gets or sets the font weight of the title. -```python +```csharp FontWeight TitleWeight { get; set; } ``` #### Property Value - [FontWeight](https://learn.microsoft.com/dotnet/api/system.windows.fontweight) + FontWeight #### Examples @@ -118,4 +127,3 @@ Use this property to specify or retrieve the font weight of the title. The available options are:
- diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsCSYSViewModel.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsCSYSViewModel.md index eccfd7f063..3f80bb946e 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsCSYSViewModel.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsCSYSViewModel.md @@ -1,11 +1,12 @@ -# Interface IOperationsCSYSViewModel +# Interface IOperationsCSYSViewModel + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll Interface representing information for the coordinate system view model. -```python +```csharp public interface IOperationsCSYSViewModel ``` @@ -13,13 +14,16 @@ public interface IOperationsCSYSViewModel For an example that includes information about interfaces, see this example. To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
# IOperationsCSYSViewModel.py
+```python
+# IOperationsCSYSViewModel.py
 import sys
 
+# Get the current file's path and set the path for external modules.
 current_dir = __file__.rsplit('\\', 1)[0]
 external_modules_path = current_dir + '\\..\\..\\Modules'
 sys.path.append(external_modules_path)
 
+# Import necessary modules
 from OperationAPI import *
 
 # Start the headless application interface
@@ -33,9 +37,12 @@ filepaths = List[str]()
 filepaths.Add(result_file_path)
 
 # Open about result files
+# This will open the result file in the application.
+# When the result is first opened, a Page is created and an Animation View is created on that Page.
 applicationHandler.AddDocument(filepaths)
 
-# Find Page
+# Get all created pages.
+# This retrieves all pages created in the application.
 pages = applicationHandler.GetPages()
 
 findViews = list()
@@ -49,13 +56,15 @@ for page in pages :
 viewCount = len(findViews)
 if viewCount > 0 :
     animationview = findViews[0]
+    # Create a Coordinate System
     # Name - Set the name of instance.
     # ParentInfo - Specifies The path of an parent entity.
     animationview.CreateCoordinateSystem("Crank_CSYS", "Crank")
     animationview.CreateCoordinateSystem("Crank_CM_CSYS", "Crank/CM")
     animationview.CreateCoordinateSystem("FEBody_01_CSYS", "FEBody_01/Node/487")
 
-    # Get instance of entity view model
+    # Get instance of entity
+    # The GetViewModelByName method retrieves the target by its name.
     csys = animationview.GetViewModelByName("Crank_CSYS")
     csys.FullName = "Crank_002_CSYS"
     csys.MarkerSize = 10
@@ -81,14 +90,15 @@ if viewCount > 0 :
         csys.SphericalAxis1 = CoordinateType.X
         csys.SphericalAxis2 = CoordinateType.Y
 
-# Close the Pages
+# Get all created pages.
+# This retrieves all pages created in the application.
 pages = applicationHandler.GetPages()
 for page in pages :
     page.Close()
 
 # Close Document
 applicationHandler.CloseDocument(result_file_path)
-
+``` ## Properties @@ -96,7 +106,7 @@ applicationHandler.CloseDocument(result_file_path) Gets or sets the type of the coordinate system. -```python +```csharp GeneralMarkerType CurrentCoordinateSystemType { get; set; } ``` @@ -119,7 +129,7 @@ The available options are: Gets or sets the Axis R value for a cylindrical coordinate system. -```python +```csharp CoordinateType CylindricalAxisR { get; set; } ``` @@ -142,7 +152,7 @@ The available options are: Gets or sets the Axis Z value for a cylindrical coordinate system. -```python +```csharp CoordinateType CylindricalAxisZ { get; set; } ``` @@ -165,13 +175,13 @@ The available options are: Gets or sets the full name of the coordinate system. -```python +```csharp string FullName { get; set; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string #### Examples @@ -185,13 +195,13 @@ Use this property to specify or retrieve the full name of the coordinate system. Gets or sets a value indicating whether the marker is visible. -```python +```csharp bool IsVisible { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples @@ -206,13 +216,13 @@ In the UI, this property is represented under the "Marker" category with the pro Gets or sets a value indicating whether the label is visible. -```python +```csharp bool IsVisibleLabel { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples @@ -227,13 +237,13 @@ In the UI, this property is represented under the "Label" category with the prop Gets or sets a value indicating whether the background color of the label is visible. -```python +```csharp bool IsVisibleLabelBackground { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples @@ -248,13 +258,13 @@ In the UI, this property is represented under the "Label" category with the prop Gets or sets a value indicating whether the trajectory is visible. -```python +```csharp bool IsVisibleTrajectory { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples @@ -269,13 +279,13 @@ In the UI, this property is represented under the "Trajectory" category with the Gets or sets the background color of the label. -```python +```csharp Color LabelBackGroundColor { get; set; } ``` #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.windows.media.color) + Color #### Examples @@ -290,13 +300,13 @@ In the UI, this property is represented under the "Label" category with the prop Gets or sets the font color of the label. -```python +```csharp Color LabelTextColor { get; set; } ``` #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.windows.media.color) + Color #### Examples @@ -311,13 +321,13 @@ In the UI, this property is represented under the "Label" category with the prop Gets or sets the size of the marker. -```python +```csharp double MarkerSize { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Examples @@ -331,13 +341,13 @@ This property allows you to set the size of the marker. Gets or sets the parent information of the coordinate system. -```python +```csharp string ParentInfo { get; set; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string #### Examples @@ -351,7 +361,7 @@ Use this property to specify or retrieve the information about the parent that c Gets or sets the Axis ρ value for a spherical coordinate system. -```python +```csharp CoordinateType SphericalAxis1 { get; set; } ``` @@ -374,7 +384,7 @@ The available options are: Gets or sets the Axis Ø value for a spherical coordinate system. -```python +```csharp CoordinateType SphericalAxis2 { get; set; } ``` @@ -397,13 +407,13 @@ The available options are: Gets or sets the trajectory color of the marker. -```python +```csharp Color TrajectoryColor { get; set; } ``` #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.windows.media.color) + Color #### Examples @@ -419,7 +429,7 @@ In the UI, this property is represented under the "Trajectory" category with the Gets or sets the offset angle vector relative to the reference orientation. -```python +```csharp Vector TransformationOffsetAngle { get; set; } ``` @@ -441,7 +451,7 @@ which affect how the offset is calculated. Additionally, the offset is influence Gets or sets the offset position vector relative to a specified reference position. -```python +```csharp Vector TransformationOffsetPosition { get; set; } ``` @@ -461,7 +471,7 @@ This property adjusts the position by applying the specified offset to the refer Gets or sets the rotation axis used for applying rotational transformations. -```python +```csharp RotationAxes TransformationOffsetRotationAxis { get; set; } ``` @@ -485,7 +495,7 @@ The available options are: Gets or sets the type of rotation used for applying rotational transformations. -```python +```csharp RotationTypes TransformationOffsetRotationType { get; set; } ``` @@ -504,4 +514,3 @@ It allows you to choose between different rotation types, such as Euler angles o The available options are:
- diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsCalculusLineDataSeriesViewModel.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsCalculusLineDataSeriesViewModel.md index 3229bb9ba3..6a299f7e91 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsCalculusLineDataSeriesViewModel.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsCalculusLineDataSeriesViewModel.md @@ -1,11 +1,12 @@ -# Interface IOperationsCalculusLineDataSeriesViewModel +# Interface IOperationsCalculusLineDataSeriesViewModel + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll Represents a view model for the calculus line data series. -```python +```csharp public interface IOperationsCalculusLineDataSeriesViewModel ``` @@ -13,13 +14,16 @@ public interface IOperationsCalculusLineDataSeriesViewModel For an example that includes information about interfaces, see this example. To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
# IOperationsCalculusLineDataSeriesViewModel.py
+```python
+# IOperationsCalculusLineDataSeriesViewModel.py
 import sys
 
+# Get the current file's path and set the path for external modules.
 current_dir = __file__.rsplit('\\', 1)[0]
 external_modules_path = current_dir + '\\..\\..\\Modules'
 sys.path.append(external_modules_path)
 
+# Import necessary modules
 from OperationAPI import *
 
 # Start the headless application interface
@@ -33,19 +37,28 @@ filepaths = List[str]()
 filepaths.Add(result_file_path)
 
 # Open about result files
+# This will open the result file in the application.
+# When the result is first opened, a Page is created and an Animation View is created on that Page.
 applicationHandler.AddDocument(filepaths)
 
-# Get Page
+# Get Active Page
+# This retrieves the currently active page in the application.
 page = applicationHandler.GetActivePage()
 
-# Create PlotView
+# Creating a Chart
+# Create a new Chart View on the page
+# This will create a new chart view with the specified name.
 chartView = page.CreateChart("Chart")
 
 # Set array about combination of characteristic and component
 curvePaths = List[str]()
 curvePaths.Add(r'Displacement/Magnitude')
 
-# Set a Curve Parameter
+# Create a PlotParameters object to specify the parameters for the plot.
+# Set the Entity to Plot.
+# The Target is the name of the target for which you want to retrieve the curves.
+# Set the paths for the curves you want to retrieve.
+# This is where you specify the characteristics and components you want to plot.
 parameters = PlotParameters()
 parameters.Paths = curvePaths
 parameters.Target = "Crank"
@@ -68,7 +81,7 @@ page.Close()
 
 # Close Document
 applicationHandler.CloseDocument(result_file_path)
-
+``` ## Properties @@ -76,7 +89,7 @@ applicationHandler.CloseDocument(result_file_path) Gets or sets the type of calculus operation. -```python +```csharp CalculusType CalculusType { get; set; } ``` @@ -94,4 +107,3 @@ Use this property to specify or retrieve the type of calculus operation. The supported types are:
- diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsChartViewModel.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsChartViewModel.md index 4c963f5979..d10a06045b 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsChartViewModel.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsChartViewModel.md @@ -1,30 +1,33 @@ -# Interface IOperationsChartViewModel +# Interface IOperationsChartViewModel + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll Represents the base interface for properties and methods that make up a chart view. -```python -public interface IOperationsChartViewModel : IView, IOperationsBase +```csharp +public interface IOperationsChartViewModel : IView ``` #### Implements -[IView](VM.Operations.Post.Interfaces.IView.md), -[IOperationsBase](VM.Operations.Post.Interfaces.IOperationsBase.md) +[IView](VM.Operations.Post.Interfaces.IView.md) ## Examples For an example that includes information about interfaces, see this example. To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
# IOperationsChartViewModel.py
+```python
+# IOperationsChartViewModel.py
 import sys
 
+# Get the current file's path and set the path for external modules.
 current_dir = __file__.rsplit('\\', 1)[0]
 external_modules_path = current_dir + '\\..\\..\\Modules'
 sys.path.append(external_modules_path)
 
+# Import necessary modules
 from OperationAPI import *
 
 # Start the headless application interface
@@ -38,12 +41,17 @@ filepaths = List[str]()
 filepaths.Add(result_file_path)
 
 # Open about result files
+# This will open the result file in the application.
+# When the result is first opened, a Page is created and an Animation View is created on that Page.
 applicationHandler.AddDocument(filepaths)
 
-# Get Page
+# Get Active Page
+# This retrieves the currently active page in the application.
 page = applicationHandler.GetActivePage()
 
-# Create PlotView
+# Creating a Chart
+# Create a new Chart View on the page
+# This will create a new chart view with the specified name.
 chartView = page.CreateChart("Chart")
 
 chartView.Legend.Background = Colors.Red
@@ -60,7 +68,7 @@ page.Close()
 
 # Close Document
 applicationHandler.CloseDocument(result_file_path)
-
+``` ## Properties @@ -68,7 +76,7 @@ applicationHandler.CloseDocument(result_file_path) Get or sets the legend for the chart. -```python +```csharp IOperationsLegendModifier Legend { get; } ``` @@ -92,17 +100,17 @@ specific requirements. Imports curve data from an external file and adds the curves to the chart view. -```python +```csharp void ImportNumeric(string filepath, List targets) ``` #### Parameters -`filepath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`filepath` string The path to the file containing the exported curves. Supported file formats include (*.txt, *.csv, *.out, *.rsp). -`targets` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`targets` List A list of objects that specify the parameters for the curves to be created. @@ -116,4 +124,3 @@ This method reads curve data from the specified file and adds the corresponding Each in the targets list contains the following properties:
  • NameThe name of the curve to be created.
  • TargetXThe path to the data for the X-axis.
  • TargetYThe path to the data for the Y-axis.
- diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsContourViewModel.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsContourViewModel.md index 4dcd72ae09..32016e68d0 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsContourViewModel.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsContourViewModel.md @@ -1,11 +1,12 @@ -# Interface IOperationsContourViewModel +# Interface IOperationsContourViewModel + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll Interface representing information for the contour view model. -```python +```csharp public interface IOperationsContourViewModel ``` @@ -13,13 +14,16 @@ public interface IOperationsContourViewModel For an example that includes information about interfaces, see this example. To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
# IOperationsContourViewModel.py
+```python
+# IOperationsContourViewModel.py
 import sys
 
+# Get the current file's path and set the path for external modules.
 current_dir = __file__.rsplit('\\', 1)[0]
 external_modules_path = current_dir + '\\..\\..\\Modules'
 sys.path.append(external_modules_path)
 
+# Import necessary modules
 from OperationAPI import *
 
 # Start the headless application interface
@@ -33,9 +37,12 @@ filepaths = List[str]()
 filepaths.Add(result_file_path)
 
 # Open about result files
+# This will open the result file in the application.
+# When the result is first opened, a Page is created and an Animation View is created on that Page.
 applicationHandler.AddDocument(filepaths)
 
-# Find Page
+# Get all created pages.
+# This retrieves all pages created in the application.
 pages = applicationHandler.GetPages()
 
 findViews = list()
@@ -46,8 +53,14 @@ for page in pages :
         if animationView.DocumentFilePath == result_file_path and animationView.AnalysisResultType == AnalysisResultType.Dynamics :
             findViews.append(animationView)
 
-
+# result_file_path - Get the document from the result file path.
 document = applicationHandler.GetDocument(result_file_path)
+
+# This retrieves the analysis result from the document.
+# Types of Analysis Results
+# - Dynamics
+# - Eigenvalue
+# - Statics
 dynamic_analysis = document.GetAnalysisResultViewModel(AnalysisResultType.Dynamics)
 dynamic_analysis.SetAnimationFrame(10)
 
@@ -55,7 +68,23 @@ dynamic_analysis.SetAnimationFrame(10)
 targetentities = dynamic_analysis.GetContourables(ContourMappingType.FENode)
 
 # Create Contour
+# targetentities - Set the entity as the target for export
+# Set Contour Mapping Type
+# ContourMappingType can be one of the following:
+# - ContourMappingType.None - None
+# - ContourMappingType.FENode - Node (Averaged across body)
+# - ContourMappingType.FEElement - Element (Unaveraged)
+# - ContourMappingType.FEElementNode - Node (Unaveraged)
+# - ContourMappingType.FEMaterial - Node (Averaged within material)
+# - ContourMappingType.BeamGroup - Beam Group
+# - ContourMappingType.Contact - Contact
+# - ContourMappingType.ChainedSystem - Chained System
+# - ContourMappingType.Usersubroutine - Usersubroutine
+# characteristic_path - The path to the characteristic for which the contour will be created.
+# component_path - The path to the component for which the contour will be created.
 contour = dynamic_analysis.CreateContour(targetentities, ContourMappingType.FENode, "Displacement", "X")
+
+# Set properties for the contour
 contour.LegendColorScheme = ColorSchemeType.BLACK_TO_WHITE
 contour.AutoRange = False
 if contour.AutoRange == False:
@@ -71,14 +100,15 @@ contour.FullName = "FEBody_01_Contour_Z"
 contour.MinMaxTargetType = ExtremalValueType.Part
 contour.IsEnabled = False
 
-# Close the Pages
+# Get all created pages.
+# This retrieves all pages created in the application.
 pages = applicationHandler.GetPages()
 for page in pages :
     page.Close()
 
 # Close Document
 applicationHandler.CloseDocument(result_file_path)
-
+``` ## Properties @@ -86,13 +116,13 @@ applicationHandler.CloseDocument(result_file_path) Gets or sets a value indicating whether the maximum and minimum range values are set automatically. -```python +```csharp bool AutoRange { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples @@ -106,13 +136,13 @@ Use this property to specify or retrieve whether the maximum and minimum values Gets or sets the contour component. -```python +```csharp string Component { get; set; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string #### Examples @@ -126,13 +156,13 @@ Use this property to specify or retrieve the contour component. The available co Gets the list of available components. -```python +```csharp IEnumerable ComponentList { get; } ``` #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + IEnumerable #### Examples @@ -146,13 +176,13 @@ Use this property to retrieve the list of available components. Gets or sets a value indicating whether to allow gradation between colors. -```python +```csharp bool Continuous { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples @@ -166,13 +196,13 @@ Use this property to specify or retrieve whether color gradation is allowed. Gets or sets the full name of the contour. -```python +```csharp string FullName { get; set; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string #### Examples @@ -186,13 +216,13 @@ Use this property to specify or retrieve the full name of the contour. Gets or sets a value indicating whether the contour is enabled. -```python +```csharp bool IsEnabled { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples @@ -206,7 +236,7 @@ Use this property to specify or retrieve whether the contour is enabled. Gets or sets the color scheme of the legend. -```python +```csharp ColorSchemeType LegendColorScheme { get; set; } ``` @@ -232,13 +262,13 @@ This property allows you to set the color scheme of the legend. The available co Gets or sets the font color of the contour legend. -```python +```csharp Color LegendFontColor { get; set; } ``` #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.windows.media.color) + Color #### Examples @@ -252,13 +282,13 @@ Use this property to specify or retrieve the font color of the contour legend. Gets or sets a value indicating whether the legend is visible. -```python +```csharp bool LegendVisibility { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples @@ -272,13 +302,13 @@ Use this property to specify or retrieve whether the legend is displayed or hidd Gets or sets a value indicating whether to scale the values using a logarithmic function. -```python +```csharp bool LogScale { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples @@ -292,13 +322,13 @@ Use this property to specify or retrieve whether the values are scaled using a l Gets or sets the maximum value of the contour. -```python +```csharp double Max { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Examples @@ -312,13 +342,13 @@ Use this property to specify or retrieve the maximum value of the contour when t Gets or sets the minimum value of the contour. -```python +```csharp double Min { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Examples @@ -332,7 +362,7 @@ Use this property to specify or retrieve the minimum value of the contour when t Gets or sets the type of extremal values to be displayed. -```python +```csharp ExtremalValueType MinMaxTargetType { get; set; } ``` @@ -351,4 +381,3 @@ In the UI, this is represented as "Visible" in the "Min/Max Value" category. The available options are:
- diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsCustomAxisViewModel.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsCustomAxisViewModel.md index 4900772791..0701db34d9 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsCustomAxisViewModel.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsCustomAxisViewModel.md @@ -1,11 +1,12 @@ -# Interface IOperationsCustomAxisViewModel +# Interface IOperationsCustomAxisViewModel + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll Defines the properties for a custom axis view model in an operations. -```python +```csharp public interface IOperationsCustomAxisViewModel : IOperationsAxisViewModelBase ``` @@ -17,13 +18,16 @@ public interface IOperationsCustomAxisViewModel : IOperationsAxisViewModelBase For an example that includes information about interfaces, see this example. To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
# IOperationsCustomAxisViewModel.py
+```python
+# IOperationsCustomAxisViewModel.py
 import sys
 
+# Get the current file's path and set the path for external modules.
 current_dir = __file__.rsplit('\\', 1)[0]
 external_modules_path = current_dir + '\\..\\..\\Modules'
 sys.path.append(external_modules_path)
 
+# Import necessary modules
 from OperationAPI import *
 
 # Start the headless application interface
@@ -37,12 +41,17 @@ filepaths = List[str]()
 filepaths.Add(result_file_path)
 
 # Open about result files
+# This will open the result file in the application.
+# When the result is first opened, a Page is created and an Animation View is created on that Page.
 applicationHandler.AddDocument(filepaths)
 
-# Get Page
+# Get Active Page
+# This retrieves the currently active page in the application.
 page = applicationHandler.GetActivePage()
 
-# Create PlotView
+# Creating a Chart
+# Create a new Chart View on the page
+# This will create a new chart view with the specified name.
 chartView = page.CreateChart("Chart")
 
 # Set Background
@@ -71,7 +80,7 @@ page.Close()
 
 # Close Document
 applicationHandler.CloseDocument(result_file_path)
-
+``` ## Properties @@ -79,7 +88,7 @@ applicationHandler.CloseDocument(result_file_path) Gets or sets the scale type for the axis. -```python +```csharp AxisType AxisType { get; set; } ``` @@ -100,13 +109,13 @@ Use this property to specify or retrieve the scale type for the axis. The availa Gets or sets the number of decimal places for the labels on the axis. -```python +```csharp int Decimal { get; set; } ``` #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int #### Examples @@ -120,13 +129,13 @@ Use this property to specify or retrieve the number of decimal places displayed Gets or sets a value indicating whether the decimal value for the axis labels is set automatically or manually. -```python +```csharp bool Default { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples @@ -141,13 +150,13 @@ If set to false, you can manually set the Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll Interface representing information for the dynamic analysis result view model. -```python -public interface IOperationsDynamicAnalysisResultViewModel : IOperationAnalysisResultViewModel, IOperationsBase +```csharp +public interface IOperationsDynamicAnalysisResultViewModel : IOperationAnalysisResult ``` #### Implements -[IOperationAnalysisResultViewModel](VM.Operations.Post.Interfaces.IOperationAnalysisResultViewModel.md), -[IOperationsBase](VM.Operations.Post.Interfaces.IOperationsBase.md) +[IOperationAnalysisResult](VM.Operations.Post.Interfaces.IOperationAnalysisResult.md) ## Examples For an example that includes information about interfaces, see this example. To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
# IOperationsDynamicAnalysisResultViewModel.py
+```python
+# IOperationsDynamicAnalysisResultViewModel.py
 import sys
 
+# Get the current file's path and set the path for external modules.
 current_dir = __file__.rsplit('\\', 1)[0]
 external_modules_path = current_dir + '\\..\\..\\Modules'
-
 sys.path.append(external_modules_path)
+
+# Import necessary modules
 from OperationAPI import *
 
 # Start the headless application interface
@@ -38,9 +41,12 @@ filepaths = List[str]()
 filepaths.Add(result_file_path)
 
 # Open about result files
+# This will open the result file in the application.
+# When the result is first opened, a Page is created and an Animation View is created on that Page.
 applicationHandler.AddDocument(filepaths)
 
-# Find Page
+# Get all created pages.
+# This retrieves all pages created in the application.
 pages = applicationHandler.GetPages()
 
 findViews = list()
@@ -51,7 +57,14 @@ for page in pages :
         if animationView.DocumentFilePath == result_file_path and animationView.AnalysisResultType == AnalysisResultType.Dynamics :
             findViews.append(animationView)
 
+# result_file_path - Get the document from the result file path.
 document = applicationHandler.GetDocument(result_file_path)
+
+# This retrieves the analysis result from the document.
+# Types of Analysis Results
+# - Dynamics
+# - Eigenvalue
+# - Statics
 dynamic_analysis = document.GetAnalysisResultViewModel(AnalysisResultType.Dynamics)
 
 stateIDs = dynamic_analysis.GetStateIDArray()
@@ -89,14 +102,15 @@ vector.Color = Colors.Blue
 expression = dynamic_analysis.CreateExpression("expression")
 expression.Expression = "DM(\"Crank/CM\")"
 
-# Close the Pages
+# Get all created pages.
+# This retrieves all pages created in the application.
 pages = applicationHandler.GetPages()
 for page in pages :
     page.Close()
 
 # Close the Document
 applicationHandler.CloseDocument(result_file_path)
-
+``` ## Methods @@ -104,13 +118,13 @@ applicationHandler.CloseDocument(result_file_path) Creates a new function expression in the Motion Postprocessor. -```python +```csharp IOperationsPythonExpressionViewModel CreateExpression(string newName) ``` #### Parameters -`newName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newName` string The name of the new function expression to be created. @@ -131,19 +145,19 @@ The newName parameter specifies the name of the ne ### CreateVectorDisplay\(string, string\) -Creates a vector display for the specified entity and characteristic. Please refer to this [here](./../getting_started_operation_api_using_py.md#how-to-input-the-value-of-the-target-into-the-function-parameter) link. +Creates a vector display for the specified entity and characteristic. Please refer to this [here](../getting_started_operation_api_using_py.md#how-to-input-the-value-of-the-target-into-the-function-parameter) link. -```python +```csharp IOperationsVectorDisplayBaseViewModel CreateVectorDisplay(string entityName, string characteristic) ``` #### Parameters -`entityName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`entityName` string The name of the target entity for the vector display. -`characteristic` [string](https://learn.microsoft.com/dotnet/api/system.string) +`characteristic` string The name of the characteristic. Refer to the UI for Vector Display for available characteristics. @@ -167,13 +181,13 @@ The characteristic parameter specifies the charact Sets a specified number of animation frames. -```python +```csharp void SetAnimationFrame(int nFrames) ``` #### Parameters -`nFrames` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nFrames` int The number of frames to load. This parameter should be within the range of 0 to the total number of frames available. @@ -190,13 +204,13 @@ The number of frames to load is specified by the nFrames< Sets the specified animation frames based on the provided state IDs. -```python +```csharp void SetAnimationFrame(IEnumerable stateIDs) ``` #### Parameters -`stateIDs` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`stateIDs` IEnumerable An enumerable collection of state IDs representing the frames to load. @@ -208,4 +222,3 @@ For an example that includes this property, see the [Interface IOperationsDynami This method sets only the specified frames for the animation, as indicated by the stateIDs parameter. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsEigenValueAnalysisResultViewModel.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsEigenValueAnalysisResultViewModel.md index df7e5e45a2..7bc0a2922c 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsEigenValueAnalysisResultViewModel.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsEigenValueAnalysisResultViewModel.md @@ -1,30 +1,33 @@ -# Interface IOperationsEigenValueAnalysisResultViewModel +# Interface IOperationsEigenValueAnalysisResultViewModel + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll Interface representing information for an eigenvalue analysis result view model. -```python -public interface IOperationsEigenValueAnalysisResultViewModel : IOperationAnalysisResultViewModel, IOperationsBase +```csharp +public interface IOperationsEigenValueAnalysisResultViewModel : IOperationAnalysisResult ``` #### Implements -[IOperationAnalysisResultViewModel](VM.Operations.Post.Interfaces.IOperationAnalysisResultViewModel.md), -[IOperationsBase](VM.Operations.Post.Interfaces.IOperationsBase.md) +[IOperationAnalysisResult](VM.Operations.Post.Interfaces.IOperationAnalysisResult.md) ## Examples For an example that includes information about interfaces, see this example. To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
# IOperationsEigenValueAnalysisResultViewModel.py
+```python
+# IOperationsEigenValueAnalysisResultViewModel.py
 import sys
 
+# Get the current file's path and set the path for external modules.
 current_dir = __file__.rsplit('\\', 1)[0]
 external_modules_path = current_dir + '\\..\\..\\Modules'
-
 sys.path.append(external_modules_path)
+
+# Import necessary modules
 from OperationAPI import *
 
 # Start the headless application interface
@@ -38,9 +41,12 @@ filepaths = List[str]()
 filepaths.Add(result_file_path)
 
 # Open about result files
+# This will open the result file in the application.
+# When the result is first opened, a Page is created and an Animation View is created on that Page.
 applicationHandler.AddDocument(filepaths)
 
-# Find Page
+# Get all created pages.
+# This retrieves all pages created in the application.
 pages = applicationHandler.GetPages()
 
 findViews = list()
@@ -51,8 +57,14 @@ for page in pages :
         if animationView.DocumentFilePath == result_file_path and animationView.AnalysisResultType == AnalysisResultType.Dynamics :
             findViews.append(animationView)
 
-
+# result_file_path - Get the document from the result file path.
 document = applicationHandler.GetDocument(result_file_path)
+
+# This retrieves the analysis result from the document.
+# Types of Analysis Results
+# - Dynamics
+# - Eigenvalue
+# - Statics
 dynamic_analysis = document.GetAnalysisResultViewModel(AnalysisResultType.Dynamics)
 dynamic_analysis.SetAnimationFrame(10)
 
@@ -60,8 +72,15 @@ viewCount = len(findViews)
 if viewCount > 0 :
     page1 = applicationHandler.GetPage(findViews[0].GroupID)
 
-    # Types of Analyis Results
+    # This retrieves the analysis result from the document.
+    # Types of Analysis Results
+    # - Dynamics
+    # - Eigenvalue
+    # - Statics
     eigenval_analysis = document.GetAnalysisResultViewModel(AnalysisResultType.Eigenvalue)
+
+    # Create an Animation View on the active page
+    # This will create an animation view based on the eigenvalue analysis.
     eigenvalue_animation = page1.CreateAnimation(eigenval_analysis, "EigenvalueAnimation")
     eigenval_analysis.Frame = 100
     
@@ -72,14 +91,15 @@ if viewCount > 0 :
     frequency = eigenval_analysis.GetFrequency(1)
     # frequency.Enable = True
 
-# Close the Pages
+# Get all created pages.
+# This retrieves all pages created in the application.
 pages = applicationHandler.GetPages()
 for page in pages :
     page.Close()
 
 # Close the Document
 applicationHandler.CloseDocument(result_file_path)
-
+``` ## Properties @@ -87,13 +107,13 @@ applicationHandler.CloseDocument(result_file_path) Gets or sets the frame number to be read when loading animation for EigenValue analysis type. -```python +```csharp uint Frame { get; set; } ``` #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint #### Examples @@ -107,13 +127,13 @@ Use this property to specify or retrieve the frame number to load for animations Gets or sets the target sampling time. -```python +```csharp double TargetSamplingTime { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Examples @@ -129,13 +149,13 @@ This property allows you to select and set one specific sampling time from multi Retrieves all instances of frequencies. -```python +```csharp IEnumerable GetFrequencies() ``` #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsFrequencyViewModel](VM.Operations.Post.Interfaces.IOperationsFrequencyViewModel.md)\> + IEnumerable<[IOperationsFrequencyViewModel](VM.Operations.Post.Interfaces.IOperationsFrequencyViewModel.md)\> An enumerable collection of representing the frequency instances. @@ -151,13 +171,13 @@ This method finds and returns all instances of frequencies. Retrieves the frequency instance for the specified sampling time index. -```python +```csharp IOperationsFrequencyViewModel GetFrequency(int index) ``` #### Parameters -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int The index of the target sampling time. @@ -179,13 +199,13 @@ This method finds and returns the frequency instance corresponding to the provid Retrieves an array of sampling times. -```python +```csharp double[] GetSamplingTimes() ``` #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] An array of doubles representing the available sampling times. @@ -197,4 +217,3 @@ For an example that includes this property, see the [Interface IOperationsEigenV This method extracts and returns the array of available sampling times. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsElementViewModel.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsElementViewModel.md index 7c6e6f3229..80def9cd90 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsElementViewModel.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsElementViewModel.md @@ -1,11 +1,12 @@ -# Interface IOperationsElementViewModel +# Interface IOperationsElementViewModel + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll Interface representing information for an element view model. -```python +```csharp public interface IOperationsElementViewModel ``` @@ -13,13 +14,16 @@ public interface IOperationsElementViewModel For an example that includes information about interfaces, see this example. To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
# IOperationsElementViewModel.py
+```python
+# IOperationsElementViewModel.py
 import sys
 
+# Get the current file's path and set the path for external modules.
 current_dir = __file__.rsplit('\\', 1)[0]
 external_modules_path = current_dir + '\\..\\..\\Modules'
-
 sys.path.append(external_modules_path)
+
+# Import necessary modules
 from OperationAPI import *
 
 # Start the headless application interface
@@ -33,9 +37,12 @@ filepaths = List[str]()
 filepaths.Add(result_file_path)
 
 # Open about result files
+# This will open the result file in the application.
+# When the result is first opened, a Page is created and an Animation View is created on that Page.
 applicationHandler.AddDocument(filepaths)
 
-# Find Page
+# Get all created pages.
+# This retrieves all pages created in the application.
 pages = applicationHandler.GetPages()
 
 findViews = list()
@@ -48,7 +55,14 @@ for page in pages :
 
 viewCount = len(findViews)
 if viewCount > 0 :
+    # result_file_path - Get the document from the result file path.
     document = applicationHandler.GetDocument(result_file_path)
+
+    # This retrieves the analysis result from the document.
+    # Types of Analysis Results
+    # - Dynamics
+    # - Eigenvalue
+    # - Statics
     analysis = document.GetAnalysisResultViewModel(AnalysisResultType.Dynamics)    
 
     # Get a febody
@@ -58,14 +72,15 @@ if viewCount > 0 :
     element = febody.CreateElement(2343)
     element.ChangeID(2601)
 
-# Close the Pages
+# Get all created pages.
+# This retrieves all pages created in the application.
 pages = applicationHandler.GetPages()
 for page in pages :
     page.Close()
 
 # Close the Document
 applicationHandler.CloseDocument(result_file_path)
-
+``` ## Methods @@ -73,13 +88,13 @@ applicationHandler.CloseDocument(result_file_path) Changes the ID of an element belonging to an FEBody. -```python +```csharp void ChangeID(int id) ``` #### Parameters -`id` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`id` int The new unique ID for the element. If the specified ID does not exist, the change will not be applied. @@ -91,4 +106,3 @@ For an example that includes this property, see the [Interface IOperationsElemen This method changes the ID of an element within an FEBody. The provided ID must be unique and must correspond to an existing element; otherwise, the ID will not be changed. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsFEBody.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsFEBody.md new file mode 100644 index 0000000000..f615b8b668 --- /dev/null +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsFEBody.md @@ -0,0 +1,435 @@ +# Interface IOperationsFEBody + + +Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) +Assembly: VM.Operations.Post.dll + +Interface representing information for an FEBody. + +```csharp +public interface IOperationsFEBody +``` + +## Examples + +For an example that includes information about interfaces, see this example. +To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. +```python +# IOperationsFEBodyViewModel.py +import sys + +# Get the current file's path and set the path for external modules. +current_dir = __file__.rsplit('\\', 1)[0] +external_modules_path = current_dir + '\\..\\..\\Modules' +sys.path.append(external_modules_path) + +# Import necessary modules +from OperationAPI import * + +# Start the headless application interface +applicationHandler = ApplicationHandler() + +# Import result file +result_file_path = get_result_file_path() + +# Set array about result file +filepaths = List[str]() +filepaths.Add(result_file_path) + +# Open about result files +# This will open the result file in the application. +# When the result is first opened, a Page is created and an Animation View is created on that Page. +applicationHandler.AddDocument(filepaths) + +# Get all created pages. +# This retrieves all pages created in the application. +pages = applicationHandler.GetPages() + +findViews = list() +for page in pages : + views = page.GetViews() + animationViews = [view for view in views if view.ViewType == ViewType.Animation] + for animationView in animationViews : + if animationView.DocumentFilePath == result_file_path and animationView.AnalysisResultType == AnalysisResultType.Dynamics : + findViews.append(animationView) + +viewCount = len(findViews) +if viewCount > 0 : + # result_file_path - Get the document from the result file path. + document = applicationHandler.GetDocument(result_file_path) + + # This retrieves the analysis result from the document. + # Types of Analysis Results + # - Dynamics + # - Eigenvalue + # - Statics + analysis = document.GetAnalysisResultViewModel(AnalysisResultType.Dynamics) + + # Get a material + material = analysis.GetViewModel("2014_HV_O") + + # Get a febody + febody = analysis.GetViewModel("FEBody_01") + febody.Material = material + + # Suppress deformation + febody.IsDeformationSuppressed = True + + # Create Node + node = febody.CreateNode(754) + node.ChangeID(755) + + # Create Element + element = febody.CreateElement(2343) + element.ChangeID(2601) + +# Get all created pages. +# This retrieves all pages created in the application. +pages = applicationHandler.GetPages() +for page in pages : + page.Close() + +# Close the Document +applicationHandler.CloseDocument(result_file_path) +``` + +## Remarks + +This interface provides essential properties and methods for finite element body operations. +It is designed to support fatigue analysis, material property evaluation, and finite element configuration. + +## Properties + +### AlphaX + +Gets or sets the X-axis rotation factor for the FEBody. + +```csharp +double AlphaX { get; set; } +``` + +#### Property Value + + double + +#### Examples + +For an example that includes this property, see the [Interface IOperationsFEBody](VM.Operations.Post.Interfaces.IOperationsFEBody.md). + +#### Remarks + +This property defines the scaling factor applied to the X-axis rotation of the FEBody. +It is used to adjust the rotational behavior of the FEBody during analysis. + +### AlphaY + +Gets or sets the Y-axis rotation factor for the FEBody. + +```csharp +double AlphaY { get; set; } +``` + +#### Property Value + + double + +#### Examples + +For an example that includes this property, see the [Interface IOperationsFEBody](VM.Operations.Post.Interfaces.IOperationsFEBody.md). + +#### Remarks + +This property defines the scaling factor applied to the Y-axis rotation of the FEBody. +It is used to adjust the rotational behavior of the FEBody during analysis. + +### AlphaZ + +Gets or sets the Z-axis rotation factor for the FEBody. + +```csharp +double AlphaZ { get; set; } +``` + +#### Property Value + + double + +#### Examples + +For an example that includes this property, see the [Interface IOperationsFEBody](VM.Operations.Post.Interfaces.IOperationsFEBody.md). + +#### Remarks + +This property defines the scaling factor applied to the Z-axis rotation of the FEBody. +It is used to adjust the rotational behavior of the FEBody during analysis. + +### AnalysisMethodEN + +Gets or sets the analysis method used in the FEBody (Mean Stress Effect). + +```csharp +AnalysisMethodEN AnalysisMethodEN { get; set; } +``` + +#### Property Value + + AnalysisMethodEN + +#### Examples + +For an example that includes this property, see the [Interface IOperationsFEBody](VM.Operations.Post.Interfaces.IOperationsFEBody.md). + +#### Remarks + +Use to set the mean stress effect. This property specifies the method used for analysis in the FEBody. +It determines how the fatigue analysis is performed. +For more details, refer to the online manual section "Mean Stress Effect." + +### AnalysisType + +Gets or sets the type of fatigue analysis. + +```csharp +FatigueAnalysisType AnalysisType { get; set; } +``` + +#### Property Value + + FatigueAnalysisType + +#### Examples + +For an example that includes this property, see the [Interface IOperationsFEBody](VM.Operations.Post.Interfaces.IOperationsFEBody.md). + +#### Remarks + +Use to set the method for fatigue life evaluation. +This property defines whether the fatigue analysis is based on stress-life (SN) or strain-life (EN) methods. +See "Fatigue Life Evaluation" in the online manual for more details. +

+The available values for are: +

+

+ +### IsDeformationSuppressed + +Gets or sets a value indicating whether deformation is suppressed for this body in analysis or visualization. + +```csharp +bool IsDeformationSuppressed { get; set; } +``` + +#### Property Value + + bool + +#### Examples + +For an example that includes this property, see the [Interface IOperationsFEBody](VM.Operations.Post.Interfaces.IOperationsFEBody.md). + +#### Remarks + +This property is typically used to control whether deformation effects are considered during post-processing or visualization. +When set to true, the FEBody will be treated as rigid, and any deformation results will be ignored. +This can be useful for simplifying analysis or focusing on other aspects of the simulation, such as rigid body motion. + +### Material + +Gets or sets the material used in the FEBody. + +```csharp +IOperationMaterial Material { get; set; } +``` + +#### Property Value + + [IOperationMaterial](VM.Operations.Post.Interfaces.IOperationMaterial.md) + +#### Examples + +For an example that includes this property, see the [Interface IOperationsFEBody](VM.Operations.Post.Interfaces.IOperationsFEBody.md). + +#### Remarks + +Use to set the material properties. This property provides access to the material characteristics +associated with the FEBody, including physical and mechanical properties. Properly setting this value +ensures accurate analysis and evaluation of the FEBody's behavior under various conditions. + +### MeanStressCorrection + +Gets or sets the mean stress correction method (Mean Stress Effect). + +```csharp +MeanStressCorrection MeanStressCorrection { get; set; } +``` + +#### Property Value + + MeanStressCorrection + +#### Examples + +For an example that includes this property, see the [Interface IOperationsFEBody](VM.Operations.Post.Interfaces.IOperationsFEBody.md). + +#### Remarks + +Use to set the mean stress effect. This property specifies the method used to correct for mean stress effects in fatigue analysis. +The available values for are: +
+

+For more details about "Mean Stress Effect," refer to the online manual. +

+ +### PlasticityCorrection + +Gets or sets the plasticity correction method. + +```csharp +PlasticityCorrection PlasticityCorrection { get; set; } +``` + +#### Property Value + + PlasticityCorrection + +#### Examples + +For an example that includes this property, see the [Interface IOperationsFEBody](VM.Operations.Post.Interfaces.IOperationsFEBody.md). + +#### Remarks + +Use to set the method for plastic correction of the EN curve. +The available values for are: +
+Properly setting this value ensures accurate fatigue analysis by accounting for plasticity effects. +For more details, refer to the "Plasticity Correction" section in the online manual. + +### Properties + +Gets the collection of finite element properties associated with the FEBody. + +```csharp +IEnumerable Properties { get; } +``` + +#### Property Value + + IEnumerable + +#### Examples + +For an example that includes this property, see the [Interface IOperationsFEBody](VM.Operations.Post.Interfaces.IOperationsFEBody.md). + +#### Remarks + +This property provides access to the finite element properties associated with the FEBody. +Each property in the collection represents a specific configuration or characteristic +of the finite elements within the FEBody. + +### Scale + +Gets or sets the scale factor applied to the FEBody. + +```csharp +double Scale { get; set; } +``` + +#### Property Value + + double + +#### Examples + +For an example that includes this property, see the [Interface IOperationsFEBody](VM.Operations.Post.Interfaces.IOperationsFEBody.md). + +#### Remarks + +Use to set the scale. The result for fatigue life is calculated +by dividing the scale. This property defines the scale factor used to adjust the size of the FEBody. +It is typically used to normalize or resize the FEBody for analysis purposes. + +### StressStrainCombination + +Gets or sets the stress-strain combination type used in the FEBody. + +```csharp +StressStrainCombinationType StressStrainCombination { get; set; } +``` + +#### Property Value + + StressStrainCombinationType + +#### Examples + +For an example that includes this property, see the [Interface IOperationsFEBody](VM.Operations.Post.Interfaces.IOperationsFEBody.md). + +#### Remarks + +Use to set the design stress or strain type. You can select one of the following options: +
+Properly setting this value ensures accurate stress-strain evaluation during analysis. +For more details, refer to the "Stress/Strain Combination" section in the online manual. + +## Methods + +### CreateElement\(int\) + +Creates an element entity within an FEBody. + +```csharp +IOperationsElementViewModel CreateElement(int elementID) +``` + +#### Parameters + +`elementID` int + +The unique ID of the element to be created. + +#### Returns + + [IOperationsElementViewModel](VM.Operations.Post.Interfaces.IOperationsElementViewModel.md) + +An instance of representing the created element entity. + +#### Examples + +For an example that includes this property, see the [Interface IOperationsFEBody](VM.Operations.Post.Interfaces.IOperationsFEBody.md). + +#### Remarks + +This method creates an element entity within an FEBody using the specified element ID. + +### CreateNode\(int, PlotDataType\) + +Creates a node entity within an FEBody. + +```csharp +IOperationsNodeViewModel CreateNode(int nodeID, PlotDataType fileType = PlotDataType.DEFAULT) +``` + +#### Parameters + +`nodeID` int + +The unique ID of the node to be created. + +`fileType` PlotDataType + +The type of plot data file. Default is . + +#### Returns + + [IOperationsNodeViewModel](VM.Operations.Post.Interfaces.IOperationsNodeViewModel.md) + +An instance of representing the created node entity. + +#### Examples + +For an example that includes this property, see the [Interface IOperationsFEBody](VM.Operations.Post.Interfaces.IOperationsFEBody.md). + +#### Remarks + +This method creates a node entity within an FEBody using the specified node ID and plot data file type. + diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsFFTLineDataSeriesViewModel.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsFFTLineDataSeriesViewModel.md index 245b1334b0..11697561df 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsFFTLineDataSeriesViewModel.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsFFTLineDataSeriesViewModel.md @@ -1,11 +1,12 @@ -# Interface IOperationsFFTLineDataSeriesViewModel +# Interface IOperationsFFTLineDataSeriesViewModel + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll Represents a view model for the fft line data series. -```python +```csharp public interface IOperationsFFTLineDataSeriesViewModel ``` @@ -13,13 +14,16 @@ public interface IOperationsFFTLineDataSeriesViewModel For an example that includes information about interfaces, see this example. To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
# IOperationsFFTLineDataSeriesViewModel.py
+```python
+# IOperationsFFTLineDataSeriesViewModel.py
 import sys
 
+# Get the current file's path and set the path for external modules.
 current_dir = __file__.rsplit('\\', 1)[0]
 external_modules_path = current_dir + '\\..\\..\\Modules'
-
 sys.path.append(external_modules_path)
+
+# Import necessary modules
 from OperationAPI import *
 
 # Start the headless application interface
@@ -33,19 +37,28 @@ filepaths = List[str]()
 filepaths.Add(result_file_path)
 
 # Open about result files
+# This will open the result file in the application.
+# When the result is first opened, a Page is created and an Animation View is created on that Page.
 applicationHandler.AddDocument(filepaths)
 
-# Get Page
+# Get Active Page
+# This retrieves the currently active page in the application.
 page = applicationHandler.GetActivePage()
 
-# Create PlotView
+# Creating a Chart
+# Create a new Chart View on the page
+# This will create a new chart view with the specified name.
 chartView = page.CreateChart("Chart")
 
 # Set array about combination of characteristic and component
 curvePaths = List[str]()
 curvePaths.Add(r'Displacement/Magnitude')
 
-# Set a Curve Parameter
+# Create a PlotParameters object to specify the parameters for the plot.
+# Set the Entity to Plot.
+# The Target is the name of the target for which you want to retrieve the curves.
+# Set the paths for the curves you want to retrieve.
+# This is where you specify the characteristics and components you want to plot.
 parameters = PlotParameters()
 parameters.Paths = curvePaths
 parameters.Target = "Crank"
@@ -79,7 +92,7 @@ page.Close()
 
 # Close the Document
 applicationHandler.CloseDocument(result_file_path)
-
+``` ## Properties @@ -87,13 +100,13 @@ applicationHandler.CloseDocument(result_file_path) Gets or sets the end time for using FFT on the target data series. -```python +```csharp double End { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Examples @@ -107,7 +120,7 @@ Use this property to specify or retrieve the end time for performing FFT on the Gets or sets the scale type of FFT. -```python +```csharp ScaleType FFTScaleType { get; set; } ``` @@ -129,7 +142,7 @@ The supported types are: Gets or sets the type of FFT. -```python +```csharp FFTType FFTType { get; set; } ``` @@ -151,7 +164,7 @@ The supported types are: Gets or sets the window type of FFT. -```python +```csharp FFTWindowType FFTWindowType { get; set; } ``` @@ -173,13 +186,13 @@ The supported types are: Gets or sets the number of data points for FFT. -```python +```csharp int SelectedPoints { get; set; } ``` #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int #### Examples @@ -193,13 +206,13 @@ Use this property to specify or retrieve the number of data points to be used fo Gets or sets the start time for using FFT on the target data series. -```python +```csharp double Start { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Examples @@ -209,4 +222,3 @@ For an example that includes this property, see the [Interface IOperationsFFTLin Use this property to specify or retrieve the start time for performing FFT on the target data series. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsFrequencyViewModel.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsFrequencyViewModel.md index 30a9b498b1..102a062651 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsFrequencyViewModel.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsFrequencyViewModel.md @@ -1,11 +1,12 @@ -# Interface IOperationsFrequencyViewModel +# Interface IOperationsFrequencyViewModel + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll Interface representing information for the frequency view model. -```python +```csharp public interface IOperationsFrequencyViewModel ``` @@ -13,13 +14,16 @@ public interface IOperationsFrequencyViewModel For an example that includes information about interfaces, see this example. To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
# IOperationsFrequencyViewModel.py
+```python
+# IOperationsFrequencyViewModel.py
 import sys
 
+# Get the current file's path and set the path for external modules.
 current_dir = __file__.rsplit('\\', 1)[0]
 external_modules_path = current_dir + '\\..\\..\\Modules'
-
 sys.path.append(external_modules_path)
+
+# Import necessary modules
 from OperationAPI import *
 
 # Start the headless application interface
@@ -31,10 +35,14 @@ result_file_path = get_result_file_path()
 # Set array about result file
 filepaths = List[str]()
 filepaths.Add(result_file_path)
+
 # Open about result files
+# This will open the result file in the application.
+# When the result is first opened, a Page is created and an Animation View is created on that Page.
 applicationHandler.AddDocument(filepaths)
 
-# Find Page
+# Get all created pages.
+# This retrieves all pages created in the application.
 pages = applicationHandler.GetPages()
 
 findViews = list()
@@ -45,8 +53,14 @@ for page in pages :
         if animationView.DocumentFilePath == result_file_path and animationView.AnalysisResultType == AnalysisResultType.Dynamics :
             findViews.append(animationView)
 
-
+# result_file_path - Get the document from the result file path.
 document = applicationHandler.GetDocument(result_file_path)
+
+# This retrieves the analysis result from the document.
+# Types of Analysis Results
+# - Dynamics
+# - Eigenvalue
+# - Statics
 dynamic_analysis = document.GetAnalysisResultViewModel(AnalysisResultType.Dynamics)
 dynamic_analysis.SetAnimationFrame(10)
 
@@ -54,8 +68,15 @@ viewCount = len(findViews)
 if viewCount > 0 :
     page1 = applicationHandler.GetPage(findViews[0].GroupID)
 
-    # Types of Analyis Results
+    # This retrieves the analysis result from the document.
+    # Types of Analysis Results
+    # - Dynamics
+    # - Eigenvalue
+    # - Statics
     eigenval_analysis = document.GetAnalysisResultViewModel(AnalysisResultType.Eigenvalue)
+
+    # Create an Animation View on the active page
+    # This will create an animation view based on the eigenvalue analysis.
     eigenvalue_animation = page1.CreateAnimation(eigenval_analysis, "EigenvalueAnimation")
     eigenval_analysis.Frame = 100
     
@@ -66,14 +87,15 @@ if viewCount > 0 :
     frequency = eigenval_analysis.GetFrequency(1)
     # frequency.Enable = True
 
-# Close the Pages
+# Get all created pages.
+# This retrieves all pages created in the application.
 pages = applicationHandler.GetPages()
 for page in pages :
     page.Close()
 
 # Close the Document
 applicationHandler.CloseDocument(result_file_path)
-
+``` ## Properties @@ -81,13 +103,13 @@ applicationHandler.CloseDocument(result_file_path) Gets or sets a value indicating whether the frequency entity is enabled. -```python +```csharp bool Enable { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples @@ -97,4 +119,3 @@ For an example that includes this property, see the [Interface IOperationsFreque Use this property to specify or retrieve the enabled status of the frequency entity. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsHeatMapBaseViewModel.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsHeatMapBaseViewModel.md index edad11e30b..a6b4db44a0 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsHeatMapBaseViewModel.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsHeatMapBaseViewModel.md @@ -1,11 +1,12 @@ -# Interface IOperationsHeatMapBaseViewModel +# Interface IOperationsHeatMapBaseViewModel + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll Base interface for managing operations related to the STFT (Short-Time Fourier Transform) view. -```python +```csharp public interface IOperationsHeatMapBaseViewModel ``` @@ -13,13 +14,16 @@ public interface IOperationsHeatMapBaseViewModel For an example that includes information about interfaces, see this example. To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
# IOperationsHeatMapBaseViewModel.py
+```python
+# IOperationsHeatMapBaseViewModel.py
 import sys
 
+# Get the current file's path and set the path for external modules.
 current_dir = __file__.rsplit('\\', 1)[0]
 external_modules_path = current_dir + '\\..\\..\\Modules'
-
 sys.path.append(external_modules_path)
+
+# Import necessary modules
 from OperationAPI import *
 
 # Start the headless application interface
@@ -33,19 +37,28 @@ filepaths = List[str]()
 filepaths.Add(result_file_path)
 
 # Open about result files
+# This will open the result file in the application.
+# When the result is first opened, a Page is created and an Animation View is created on that Page.
 applicationHandler.AddDocument(filepaths)
 
-# Get Page
+# Get Active Page
+# This retrieves the currently active page in the application.
 page = applicationHandler.GetActivePage()
 
-# Create PlotView
+# Creating a Chart
+# Create a new Chart View on the page
+# This will create a new chart view with the specified name.
 chartView = page.CreateChart("Chart")
 
 # Set array about combination of characteristic and component
 curvePaths = List[str]()
 curvePaths.Add(r'Displacement/Magnitude')
 
-# Set a Curve Parameter
+# Create a PlotParameters object to specify the parameters for the plot.
+# Set the Entity to Plot.
+# The Target is the name of the target for which you want to retrieve the curves.
+# Set the paths for the curves you want to retrieve.
+# This is where you specify the characteristics and components you want to plot.
 parameters = PlotParameters()
 parameters.Paths = curvePaths
 parameters.Target = "Crank"
@@ -109,7 +122,7 @@ page.Close()
 
 # Close Document
 applicationHandler.CloseDocument(result_file_path)
-
+``` ## Properties @@ -117,13 +130,13 @@ applicationHandler.CloseDocument(result_file_path) Gets or sets a value indicating whether the Min and Max values of the legend are set automatically. -```python +```csharp bool IsAutoRange { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples @@ -139,13 +152,13 @@ In the UI, this property is represented under the "Legend" category with the pro Gets or sets the font color of the legend. -```python +```csharp Color LegendFontColor { get; set; } ``` #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.windows.media.color) + Color #### Examples @@ -160,13 +173,13 @@ In the UI, this property is represented under the "Legend" category with the pro Gets or sets the font size of the legend. -```python +```csharp double LegendFontSize { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Examples @@ -181,13 +194,13 @@ In the UI, this property is represented under the "Legend" category with the pro Gets or sets the maximum value of the legend. -```python +```csharp double Max { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Examples @@ -203,13 +216,13 @@ In the UI, this property is represented under the "Legend" category with the pro Gets or sets the minimum value of the legend. -```python +```csharp double Min { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Examples @@ -227,13 +240,13 @@ In the UI, this property is represented under the "Legend" category with the pro Exports all curves contained in the chart to the specified file path without displaying a file save dialog. -```python +```csharp void ExportAllCurves(string filepath) ``` #### Parameters -`filepath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`filepath` string The file path where the curves will be saved. @@ -252,7 +265,7 @@ requiring automation. Exports all data series included in the chart. -```python +```csharp void ExportAllDataSeries() ``` @@ -267,4 +280,3 @@ on the screen to specify the file save location. Therefore, it is not recommende scenarios requiring automation. Instead, it is recommended to use the method, which does not display a file save dialog. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsHeatMapSTFTDataViewModel.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsHeatMapSTFTDataViewModel.md index 2d13d25b11..0e3eebc9ed 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsHeatMapSTFTDataViewModel.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsHeatMapSTFTDataViewModel.md @@ -1,24 +1,28 @@ -# Interface IOperationsHeatMapSTFTDataViewModel +# Interface IOperationsHeatMapSTFTDataViewModel + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll The IOperationsHeatMapSTFTDataViewModel interface defines the structure and functionalities for handling heat map data specifically for Short-Time Fourier Transform (STFT). -```python +```csharp public interface IOperationsHeatMapSTFTDataViewModel ``` ## Examples To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
# IOperationsHeatMapSTFTDataViewModel.py
+```python
+# IOperationsHeatMapSTFTDataViewModel.py
 import sys
 
+# Get the current file's path and set the path for external modules.
 current_dir = __file__.rsplit('\\', 1)[0]
 external_modules_path = current_dir + '\\..\\..\\Modules'
-
 sys.path.append(external_modules_path)
+
+# Import necessary modules
 from OperationAPI import *
 
 # Start the headless application interface
@@ -32,19 +36,28 @@ filepaths = List[str]()
 filepaths.Add(result_file_path)
 
 # Open about result files
+# This will open the result file in the application.
+# When the result is first opened, a Page is created and an Animation View is created on that Page.
 applicationHandler.AddDocument(filepaths)
 
-# Get Page
+# Get Active Page
+# This retrieves the currently active page in the application.
 page = applicationHandler.GetActivePage()
 
-# Create PlotView
+# Creating a Chart
+# Create a new Chart View on the page
+# This will create a new chart view with the specified name.
 chartView = page.CreateChart("Chart")
 
 # Set array about combination of characteristic and component
 curvePaths = List[str]()
 curvePaths.Add(r'Displacement/Magnitude')
 
-# Set a Curve Parameter
+# Create a PlotParameters object to specify the parameters for the plot.
+# Set the Entity to Plot.
+# The Target is the name of the target for which you want to retrieve the curves.
+# Set the paths for the curves you want to retrieve.
+# This is where you specify the characteristics and components you want to plot.
 parameters = PlotParameters()
 parameters.Paths = curvePaths
 parameters.Target = "Crank"
@@ -106,7 +119,7 @@ page.Close()
 
 # Close the Document
 applicationHandler.CloseDocument(result_file_path)
-
+``` ## Properties @@ -114,13 +127,13 @@ applicationHandler.CloseDocument(result_file_path) Gets or sets the end time for using FFT (Fast Fourier Transform) on the target data series. -```python +```csharp double End { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Examples @@ -135,7 +148,7 @@ In the UI, this property is represented under the "Source" category with the pro Gets or sets the color scheme of the legend. -```python +```csharp ColorSchemeType LegendColorType { get; set; } ``` @@ -158,13 +171,13 @@ In the UI, this property is represented under the "Legend" category with the pro Gets or sets the percentage value for setting overlapped intervals. -```python +```csharp double Overlap { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Examples @@ -179,13 +192,13 @@ In the UI, this property is represented under the "Source" category with the pro Gets or sets the reference value for decibel scaling. -```python +```csharp double ReferenceValue { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Examples @@ -200,13 +213,13 @@ In the UI, this property is represented under the "Source" category with the pro Gets or sets the sampling frequency, which is the number of intervals for dividing the Y direction grids on a color map. -```python +```csharp int SamplingFrequency { get; set; } ``` #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int #### Examples @@ -221,13 +234,13 @@ In the UI, this property is represented under the "Source" category with the pro Gets or sets the scale factor for transforming from the time domain to another domain. -```python +```csharp double ScaleFactor { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Examples @@ -242,13 +255,13 @@ In the UI, this property is represented under the "Source" category with the pro Gets or sets the number of data points for FFT (Fast Fourier Transform). -```python +```csharp int SelectedPoints { get; set; } ``` #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int #### Examples @@ -263,7 +276,7 @@ In the UI, this property is represented under the "Source" category with the pro Gets or sets the scale type for the Short-Time Fourier Transform (STFT). -```python +```csharp STFTScaleType SelectedScaleType { get; set; } ``` @@ -286,13 +299,13 @@ In the UI, this property is represented under the "Source" category with the pro Gets or sets the start time for using FFT (Fast Fourier Transform) on the target data series. -```python +```csharp double Start { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Examples @@ -307,13 +320,13 @@ In the UI, this property is represented under the "Source" category with the pro Gets or sets the number of intervals for dividing the X direction grids on a color map. -```python +```csharp double TimeSlice { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Examples @@ -330,13 +343,13 @@ In the UI, this property is represented under the "Source" category with the pro Exports a curve to order tracking by creating a new chart and adding the exported curve to it. -```python +```csharp void ExportOrderTrackingCurve(string name) ``` #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the curve to be exported. @@ -348,4 +361,3 @@ For an example that includes this property, see the [Interface IOperationsHeatMa This method exports a specified curve to order tracking by creating a new chart and adding the exported curve to it. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsHeatMapSTFTViewModel.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsHeatMapSTFTViewModel.md index d9bf5729cb..28551d061c 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsHeatMapSTFTViewModel.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsHeatMapSTFTViewModel.md @@ -1,30 +1,34 @@ -# Interface IOperationsHeatMapSTFTViewModel +# Interface IOperationsHeatMapSTFTViewModel + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll Represents an interface that manages both 2D and 3D views of the Short-Time Fourier Transform (STFT). -```python -public interface IOperationsHeatMapSTFTViewModel : IOperationsLine2DViewModelBase, IOperationsChartViewModel, IView, IOperationsBase +```csharp +public interface IOperationsHeatMapSTFTViewModel : IOperationsLine2DViewModelBase, IOperationsChartViewModel, IView ``` #### Implements [IOperationsLine2DViewModelBase](VM.Operations.Post.Interfaces.IOperationsLine2DViewModelBase.md), [IOperationsChartViewModel](VM.Operations.Post.Interfaces.IOperationsChartViewModel.md), -[IView](VM.Operations.Post.Interfaces.IView.md), -[IOperationsBase](VM.Operations.Post.Interfaces.IOperationsBase.md) +[IView](VM.Operations.Post.Interfaces.IView.md) ## Examples To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
# IOperationsHeatMapSTFTViewModel.py
+```python
+# IOperationsHeatMapSTFTViewModel.py
 import sys
 
+# Get the current file's path and set the path for external modules.
 current_dir = __file__.rsplit('\\', 1)[0]
 external_modules_path = current_dir + '\\..\\..\\Modules'
 sys.path.append(external_modules_path)
+
+# Import necessary modules
 from OperationAPI import *
 
 # Start the headless application interface
@@ -38,19 +42,28 @@ filepaths = List[str]()
 filepaths.Add(result_file_path)
 
 # Open about result files
+# This will open the result file in the application.
+# When the result is first opened, a Page is created and an Animation View is created on that Page.
 applicationHandler.AddDocument(filepaths)
 
-# Get Page
+# Get Active Page
+# This retrieves the currently active page in the application.
 page = applicationHandler.GetActivePage()
 
-# Create PlotView
+# Creating a Chart
+# Create a new Chart View on the page
+# This will create a new chart view with the specified name.
 chartView = page.CreateChart("Chart")
 
 # Set array about combination of characteristic and component
 curvePaths = List[str]()
 curvePaths.Add(r'Displacement/Magnitude')
 
-# Set a Curve Parameter
+# Create a PlotParameters object to specify the parameters for the plot.
+# Set the Entity to Plot.
+# The Target is the name of the target for which you want to retrieve the curves.
+# Set the paths for the curves you want to retrieve.
+# This is where you specify the characteristics and components you want to plot.
 parameters = PlotParameters()
 parameters.Paths = curvePaths
 parameters.Target = "Crank"
@@ -103,7 +116,7 @@ page.Close()
 
 # Close the Document
 applicationHandler.CloseDocument(result_file_path)
-
+``` ## Properties @@ -111,13 +124,13 @@ applicationHandler.CloseDocument(result_file_path) Gets or sets a value indicating whether the view type is set to Waterfall, enabling 2D to 3D conversion. -```python +```csharp bool IsWaterfallType { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples @@ -131,7 +144,7 @@ This flag determines whether the view type is set to Waterfall, which enables co Gets the 2D view model of the Short-Time Fourier Transform (STFT). -```python +```csharp IHeatMapSTFTView2DViewModel STFT2DViewModel { get; } ``` @@ -151,7 +164,7 @@ This property provides access to the 2D view model of the Short-Time Fourier Tra Gets the 3D view model of the Short-Time Fourier Transform (STFT). -```python +```csharp IHeatMapSTFTView3DViewModel STFT3DViewModel { get; } ``` @@ -167,4 +180,3 @@ For an example that includes this property, see the [Interface IOperationsHeatMa This property provides access to the 3D view model of the Short-Time Fourier Transform (STFT). - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsHeatmapLineDataSeriesViewModel.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsHeatmapLineDataSeriesViewModel.md index ecdae8c01d..60ea163874 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsHeatmapLineDataSeriesViewModel.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsHeatmapLineDataSeriesViewModel.md @@ -1,12 +1,13 @@ -# Interface IOperationsHeatmapLineDataSeriesViewModel +# Interface IOperationsHeatmapLineDataSeriesViewModel + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll Represents a view model for the heatmap line data series. -```python -public interface IOperationsHeatmapLineDataSeriesViewModel : IOperationsLineDataSeriesViewModelBase, ILineDataSeriesViewModelBase, IHasSourceViewModel, IViewModel, IObservableObject, IDisposableObject, IEnabled, IExpanded, ISelected, IVisible, IThicknessProperty, IOperationsBase +```csharp +public interface IOperationsHeatmapLineDataSeriesViewModel : IOperationsLineDataSeriesViewModelBase, ILineDataSeriesViewModelBase, IHasSourceViewModel, IViewModel, IObservableObject, IDisposableObject, IEnabled, IExpanded, ISelected, IVisible, IThicknessProperty ``` #### Implements @@ -21,20 +22,22 @@ IEnabled, IExpanded, ISelected, IVisible, -IThicknessProperty, -[IOperationsBase](VM.Operations.Post.Interfaces.IOperationsBase.md) +IThicknessProperty ## Examples For an example that includes information about interfaces, see this example. To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
# IOperationsHeatmapLineDataSeriesViewModel.py
+```python
+# IOperationsHeatmapLineDataSeriesViewModel.py
 import sys
 
+# Get the current file's path and set the path for external modules.
 current_dir = __file__.rsplit('\\', 1)[0]
 external_modules_path = current_dir + '\\..\\..\\Modules'
-
 sys.path.append(external_modules_path)
+
+# Import necessary modules
 from OperationAPI import *
 
 # Start the headless application interface
@@ -48,19 +51,28 @@ filepaths = List[str]()
 filepaths.Add(result_file_path)
 
 # Open about result files
+# This will open the result file in the application.
+# When the result is first opened, a Page is created and an Animation View is created on that Page.
 applicationHandler.AddDocument(filepaths)
 
-# Get Page
+# Get Active Page
+# This retrieves the currently active page in the application.
 page = applicationHandler.GetActivePage()
 
-# Create PlotView
+# Creating a Chart
+# Create a new Chart View on the page
+# This will create a new chart view with the specified name.
 chartView = page.CreateChart("Chart")
 
 # Set array about combination of characteristic and component
 curvePaths = List[str]()
 curvePaths.Add(r'Displacement/Magnitude')
 
-# Set a Curve Parameter
+# Create a PlotParameters object to specify the parameters for the plot.
+# Set the Entity to Plot.
+# The Target is the name of the target for which you want to retrieve the curves.
+# Set the paths for the curves you want to retrieve.
+# This is where you specify the characteristics and components you want to plot.
 parameters = PlotParameters()
 parameters.Paths = curvePaths
 parameters.Target = "Crank"
@@ -92,18 +104,25 @@ data.ScaleFactor = 1.0
 data.SelectedScaleType = STFTScaleType.Original
 stfts = chartView.CreateSTFT(data, curves)
 
-# Documentation Example
+# Importing Numeric Data
 parameters = List[INumericParameter](2)
+
+# To create a curve from a file, create a NumericParameter.
+# Name - The name of the curve to be created.
+# TargetX - The name of the X-axis data.
+# TargetY - The name of the Y-axis data.
+# In this example, a curve named 'OrderTrackingCurve' is created, and data corresponding to the X and Y headers is retrieved from the file.
 parameter = NumericParameter()
 parameter.Name = r'Y'
 parameter.TargetX = r'X'
 parameter.TargetY = r'Y'
 parameters.Add(parameter)
 
-# The output path is 'examples/Output'.
+# file_path - The path to the file containing the numeric data.
+# parameters - The list of numeric parameters that define how to interpret the data in the file.
 output_dir = get_output_directory()
-export_filepath = combine_path(output_dir, r'example.csv')
-applicationHandler.ImportNumeric(stfts[0], export_filepath, parameters)
+file_path = combine_path(output_dir, r'example.csv')
+applicationHandler.ImportNumeric(stfts[0], file_path, parameters)
 
 curves = stfts[0].STFT2DViewModel.GetCurves("Y")
 curves[0].Harmonic = 5
@@ -114,7 +133,7 @@ page.Close()
 
 # Close Document
 applicationHandler.CloseDocument(result_file_path)
-
+``` ## Properties @@ -122,13 +141,13 @@ applicationHandler.CloseDocument(result_file_path) Gets or sets the slope of the curve at the start point. -```python +```csharp double Harmonic { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Examples @@ -142,13 +161,13 @@ Use this property to specify or retrieve the slope of the curve at the start poi Gets or sets the value of the interval. -```python +```csharp double Interval { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Examples @@ -158,4 +177,3 @@ For an example that includes this property, see the [Interface IOperationsHeatma Use this property to specify or retrieve the value of the interval. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsHeatmapNumericAxis2DViewModel.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsHeatmapNumericAxis2DViewModel.md index 8dfbef0e71..4b2b78ff33 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsHeatmapNumericAxis2DViewModel.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsHeatmapNumericAxis2DViewModel.md @@ -1,11 +1,12 @@ -# Interface IOperationsHeatmapNumericAxis2DViewModel +# Interface IOperationsHeatmapNumericAxis2DViewModel + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll Interface for managing axes in a 2D Numeric Heatmap related to STFT. -```python +```csharp public interface IOperationsHeatmapNumericAxis2DViewModel ``` @@ -13,13 +14,16 @@ public interface IOperationsHeatmapNumericAxis2DViewModel For an example that includes information about interfaces, see this example. To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
# IOperationsHeatmapNumericAxis2DViewModel.py
+```python
+# IOperationsHeatmapNumericAxis2DViewModel.py
 import sys
 
+# Get the current file's path and set the path for external modules.
 current_dir = __file__.rsplit('\\', 1)[0]
 external_modules_path = current_dir + '\\..\\..\\Modules'
-
 sys.path.append(external_modules_path)
+
+# Import necessary modules
 from OperationAPI import *
 
 # Start the headless application interface
@@ -33,19 +37,28 @@ filepaths = List[str]()
 filepaths.Add(result_file_path)
 
 # Open about result files
+# This will open the result file in the application.
+# When the result is first opened, a Page is created and an Animation View is created on that Page.
 applicationHandler.AddDocument(filepaths)
 
-# Get Page
+# Get Active Page
+# This retrieves the currently active page in the application.
 page = applicationHandler.GetActivePage()
 
-# Create PlotView
+# Creating a Chart
+# Create a new Chart View on the page
+# This will create a new chart view with the specified name.
 chartView = page.CreateChart("Chart")
 
 # Set array about combination of characteristic and component
 curvePaths = List[str]()
 curvePaths.Add(r'Displacement/Magnitude')
 
-# Set a Curve Parameter
+# Create a PlotParameters object to specify the parameters for the plot.
+# Set the Entity to Plot.
+# The Target is the name of the target for which you want to retrieve the curves.
+# Set the paths for the curves you want to retrieve.
+# This is where you specify the characteristics and components you want to plot.
 parameters = PlotParameters()
 parameters.Paths = curvePaths
 parameters.Target = "Crank"
@@ -110,7 +123,7 @@ page.Close()
 
 # Close Document
 applicationHandler.CloseDocument(result_file_path)
-
+``` ## Properties @@ -118,13 +131,13 @@ applicationHandler.CloseDocument(result_file_path) Gets or sets the number of digits for the label format. -```python +```csharp int Digit { get; set; } ``` #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int #### Examples @@ -138,13 +151,13 @@ Use this property to specify or retrieve the number of digits displayed in the l Gets or sets the font color of the axis. -```python +```csharp Color FontColor { get; set; } ``` #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.windows.media.color) + Color #### Examples @@ -159,13 +172,13 @@ You can set this property to any valid Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll Represents a view model for the interpolation line data series. -```python +```csharp public interface IOperationsInterpolationLineDataSeriesViewModel ``` @@ -13,13 +14,16 @@ public interface IOperationsInterpolationLineDataSeriesViewModel For an example that includes information about interfaces, see this example. To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
# IOperationsInterpolationLineDataSeriesViewModel.py
+```python
+# IOperationsInterpolationLineDataSeriesViewModel.py
 import sys
 
+# Get the current file's path and set the path for external modules.
 current_dir = __file__.rsplit('\\', 1)[0]
 external_modules_path = current_dir + '\\..\\..\\Modules'
-
 sys.path.append(external_modules_path)
+
+# Import necessary modules
 from OperationAPI import *
 
 # Start the headless application interface
@@ -33,19 +37,28 @@ filepaths = List[str]()
 filepaths.Add(result_file_path)
 
 # Open about result files
+# This will open the result file in the application.
+# When the result is first opened, a Page is created and an Animation View is created on that Page.
 applicationHandler.AddDocument(filepaths)
 
-# Get Page
+# Get Active Page
+# This retrieves the currently active page in the application.
 page = applicationHandler.GetActivePage()
 
-# Create PlotView
+# Creating a Chart
+# Create a new Chart View on the page
+# This will create a new chart view with the specified name.
 chartView = page.CreateChart("Chart")
 
 # Set array about combination of characteristic and component
 curvePaths = List[str]()
 curvePaths.Add(r'Displacement/Magnitude')
 
-# Set a Curve Parameter
+# Create a PlotParameters object to specify the parameters for the plot.
+# Set the Entity to Plot.
+# The Target is the name of the target for which you want to retrieve the curves.
+# Set the paths for the curves you want to retrieve.
+# This is where you specify the characteristics and components you want to plot.
 parameters = PlotParameters()
 parameters.Paths = curvePaths
 parameters.Target = "Crank"
@@ -66,7 +79,7 @@ page.Close()
 
 # Close the Document
 applicationHandler.CloseDocument(result_file_path)
-
+``` ## Properties @@ -74,13 +87,13 @@ applicationHandler.CloseDocument(result_file_path) Gets or sets the number of data points for interpolation. -```python +```csharp int Points { get; set; } ``` #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int #### Examples @@ -90,4 +103,3 @@ For an example that includes this property, see the [Interface IOperationsInterp Use this property to specify or retrieve the number of data points to be used for interpolation. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsLegendModifier.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsLegendModifier.md index f083818944..1e6caaea52 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsLegendModifier.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsLegendModifier.md @@ -1,24 +1,28 @@ -# Interface IOperationsLegendModifier +# Interface IOperationsLegendModifier + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll This interface contains properties that modify the attributes of the Legend. -```python +```csharp public interface IOperationsLegendModifier ``` ## Examples To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
# IOperationsLegendModifier.py
+```python
+# IOperationsLegendModifier.py
 import sys
 
+# Get the current file's path and set the path for external modules.
 current_dir = __file__.rsplit('\\', 1)[0]
 external_modules_path = current_dir + '\\..\\..\\Modules'
-
 sys.path.append(external_modules_path)
+
+# Import necessary modules
 from OperationAPI import *
 
 # Start the headless application interface
@@ -32,12 +36,17 @@ filepaths = List[str]()
 filepaths.Add(result_file_path)
 
 # Open about result files
+# This will open the result file in the application.
+# When the result is first opened, a Page is created and an Animation View is created on that Page.
 applicationHandler.AddDocument(filepaths)
 
-# Get Page
+# Get Active Page
+# This retrieves the currently active page in the application.
 page = applicationHandler.GetActivePage()
 
-# Create PlotView
+# Creating a Chart
+# Create a new Chart View on the page
+# This will create a new chart view with the specified name.
 chartView = page.CreateChart("Chart")
 
 chartView.Legend.Background = Colors.Red
@@ -54,7 +63,7 @@ page.Close()
 
 # Close the Document
 applicationHandler.CloseDocument(result_file_path)
-
+``` ## Properties @@ -62,13 +71,13 @@ applicationHandler.CloseDocument(result_file_path) Gets or sets the background color of the legend. -```python +```csharp Color Background { get; set; } ``` #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.windows.media.color) + Color #### Examples @@ -83,13 +92,13 @@ In the UI, this property is represented under the "Font" category with the prope Gets or sets the font color of the legend. -```python +```csharp Color FontColor { get; set; } ``` #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.windows.media.color) + Color #### Examples @@ -104,13 +113,13 @@ In the UI, this property is represented under the "Font" category with the prope Gets or sets the font face of the chart title. -```python +```csharp FontFamily FontFace { get; set; } ``` #### Property Value - [FontFamily](https://learn.microsoft.com/dotnet/api/system.windows.media.fontfamily) + FontFamily #### Examples @@ -125,13 +134,13 @@ In the UI, this property is represented under the "Font" category with the prope Gets or sets the font size of the chart title. -```python +```csharp double FontSize { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Examples @@ -146,13 +155,13 @@ In the UI, this property is represented under the "Font" category with the prope Gets or sets the font style of the chart title. -```python +```csharp FontStyle FontStyle { get; set; } ``` #### Property Value - [FontStyle](https://learn.microsoft.com/dotnet/api/system.windows.fontstyle) + FontStyle #### Examples @@ -169,13 +178,13 @@ The supported types are: Gets or sets the font weight of the chart title. -```python +```csharp FontWeight FontWeight { get; set; } ``` #### Property Value - [FontWeight](https://learn.microsoft.com/dotnet/api/system.windows.fontweight) + FontWeight #### Examples @@ -192,13 +201,13 @@ The available options are: Gets or sets the filter option for displaying curves in the chart. -```python +```csharp string ItemsInFilter { get; set; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string #### Examples @@ -215,7 +224,7 @@ The available options are: Gets or sets the position of the legend in the chart. -```python +```csharp LegendPlacementType LegendPlacement { get; set; } ``` @@ -233,4 +242,3 @@ Use this property to control the placement of the legend within or outside the c By default, the legend is placed inside the chart area. The placement can be adjusted to improve the visibility and layout of the chart. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsLine2DViewModel.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsLine2DViewModel.md index 37676dd27c..09bbd8eb0f 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsLine2DViewModel.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsLine2DViewModel.md @@ -1,31 +1,34 @@ -# Interface IOperationsLine2DViewModel +# Interface IOperationsLine2DViewModel + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll Represents the interface for 2D chart operations view models. -```python -public interface IOperationsLine2DViewModel : IOperationsLine2DViewModelBase, IOperationsChartViewModel, IView, IOperationsBase +```csharp +public interface IOperationsLine2DViewModel : IOperationsLine2DViewModelBase, IOperationsChartViewModel, IView ``` #### Implements [IOperationsLine2DViewModelBase](VM.Operations.Post.Interfaces.IOperationsLine2DViewModelBase.md), [IOperationsChartViewModel](VM.Operations.Post.Interfaces.IOperationsChartViewModel.md), -[IView](VM.Operations.Post.Interfaces.IView.md), -[IOperationsBase](VM.Operations.Post.Interfaces.IOperationsBase.md) +[IView](VM.Operations.Post.Interfaces.IView.md) ## Examples To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
# IOperationsLine2DViewModel.py
+```python
+# IOperationsLine2DViewModel.py
 import sys
 
+# Get the current file's path and set the path for external modules.
 current_dir = __file__.rsplit('\\', 1)[0]
 external_modules_path = current_dir + '\\..\\..\\Modules'
-
 sys.path.append(external_modules_path)
+
+# Import necessary modules
 from OperationAPI import *
 
 # Start the headless application interface
@@ -39,12 +42,17 @@ filepaths = List[str]()
 filepaths.Add(result_file_path)
 
 # Open about result files
+# This will open the result file in the application.
+# When the result is first opened, a Page is created and an Animation View is created on that Page.
 applicationHandler.AddDocument(filepaths)
 
-# Get Page
+# Get Active Page
+# This retrieves the currently active page in the application.
 page = applicationHandler.GetActivePage()
 
-# Create PlotView
+# Creating a Chart
+# Create a new Chart View on the page
+# This will create a new chart view with the specified name.
 chartView = page.CreateChart("Chart")
 
 chartView.AxisX = False
@@ -59,7 +67,7 @@ page.Close()
 
 # Close the Document
 applicationHandler.CloseDocument(result_file_path)
-
+``` ## Properties @@ -67,13 +75,13 @@ applicationHandler.CloseDocument(result_file_path) Gets or sets a value indicating whether the X-axis is visible. -```python +```csharp bool AxisX { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples @@ -88,13 +96,13 @@ In the UI, this property is represented under the "Chart" category with the prop Gets or sets a value indicating whether the Y-axis is visible. -```python +```csharp bool AxisY { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples @@ -109,13 +117,13 @@ In the UI, this property is represented under the "Chart" category with the prop Gets or sets a value indicating whether the Animation Bar is visible. -```python +```csharp bool ShowAnimationBar { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples @@ -130,13 +138,13 @@ In the UI, this property is represented under the "Data Tracking" category with Gets or sets a value indicating whether the legend of the 2D chart is visible. -```python +```csharp bool ShowLegend { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples @@ -151,13 +159,13 @@ In the UI, this property is represented under the "Chart" category with the prop Gets or sets a value indicating whether the Tracking Curve is visible. -```python +```csharp bool TrackingCurve { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples @@ -172,7 +180,7 @@ In the UI, this property is represented under the "Data Tracking" category with Gets or sets the tracking option for displaying data points on the chart. -```python +```csharp ChartAxisType TrackingOption { get; set; } ``` @@ -186,7 +194,7 @@ For an example that includes this property, see the [Interface IOperationsLine2D #### Remarks -This property determines whether the data point values are shown for the closest curve or for all curves in the chart +This property determines whether the data point values are shown for the closest curve or for all curves in the chart when the mouse is hovered over it. The property does not function if the Tracking Curve option is disabled. In the UI, this property is labeled as "Tracking Type". The supported types are: @@ -198,13 +206,13 @@ The supported types are: Transforms data series into absolute values for the Y-Axis as part of the chart tab's Transform functionality. -```python +```csharp IEnumerable CreateAbsolute(IEnumerable lstSeriesName, SignType signType) ``` #### Parameters -`lstSeriesName` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstSeriesName` IEnumerable The list of curve names to perform the operation on. @@ -216,7 +224,7 @@ The supported types are: #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> + IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> A collection of data series with transformed absolute values. @@ -226,22 +234,22 @@ For an example that includes this property, see the [Interface IOperationsTransf #### Remarks -This function iterates over each series specified in lstSeriesName and transforms the Y values of each point in the series -to their absolute values based on the provided signType. If signType is , -the Y values are converted to their positive absolute values. If signType is , the Y values +This function iterates over each series specified in lstSeriesName and transforms the Y values of each point in the series +to their absolute values based on the provided signType. If signType is , +the Y values are converted to their positive absolute values. If signType is , the Y values are converted to their negative absolute values. ### CreateAbsolute\(IEnumerable, SignType\) Transforms data series into absolute values for the Y-Axis as part of the chart tab's Transform functionality. -```python +```csharp IEnumerable CreateAbsolute(IEnumerable seriesViewModels, SignType signType) ``` #### Parameters -`seriesViewModels` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> +`seriesViewModels` IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> The list of instances of the curves to perform the operation on. @@ -253,7 +261,7 @@ The supported types are: #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> + IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> A collection of data series with transformed absolute values. @@ -263,22 +271,22 @@ For an example that includes this property, see the [Interface IOperationsTransf #### Remarks -This function iterates over each series in seriesViewModels and transforms the Y values of each point in the series -to their absolute values based on the provided signType. If signType is , -the Y values are converted to their positive absolute values. If signType is , the Y values +This function iterates over each series in seriesViewModels and transforms the Y values of each point in the series +to their absolute values based on the provided signType. If signType is , +the Y values are converted to their positive absolute values. If signType is , the Y values are converted to their negative absolute values. ### CreateAlign\(IEnumerable, AlignType\) Aligns data series to zero or the first point of the target curve as part of the chart tab's Transform functionality. -```python +```csharp IEnumerable CreateAlign(IEnumerable lstSeriesName, AlignType alignType) ``` #### Parameters -`lstSeriesName` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstSeriesName` IEnumerable The list of curve names to perform the operation on. @@ -290,7 +298,7 @@ The supported types are: #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> + IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> A collection of data series with aligned values. @@ -300,22 +308,22 @@ For an example that includes this property, see the [Interface IOperationsTransf #### Remarks -This function iterates over each series specified in lstSeriesName and aligns the Y values of each point in the series -based on the provided alignType. If alignType is , -the Y values are aligned to zero. If alignType is , +This function iterates over each series specified in lstSeriesName and aligns the Y values of each point in the series +based on the provided alignType. If alignType is , +the Y values are aligned to zero. If alignType is , the Y values are aligned to the first point of the target curve. ### CreateAlign\(IEnumerable, AlignType\) Aligns data series to zero or the first point of the target curve as part of the chart tab's Transform functionality. -```python +```csharp IEnumerable CreateAlign(IEnumerable seriesViewModels, AlignType alignType) ``` #### Parameters -`seriesViewModels` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> +`seriesViewModels` IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> The list of instances of the curves to perform the operation on. @@ -327,7 +335,7 @@ The supported types are: #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> + IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> A collection of data series with aligned values. @@ -337,28 +345,28 @@ For an example that includes this property, see the [Interface IOperationsTransf #### Remarks -This function iterates over each series in seriesViewModels and aligns the Y values of each point in the series -based on the provided alignType. If alignType is , -the Y values are aligned to zero. If alignType is , +This function iterates over each series in seriesViewModels and aligns the Y values of each point in the series +based on the provided alignType. If alignType is , +the Y values are aligned to zero. If alignType is , the Y values are aligned to the first point of the target curve. ### CreateDifferentiatedCurve\(IEnumerable\) Differentiates data series as part of the chart tab's Calculus functionality. -```python +```csharp IEnumerable CreateDifferentiatedCurve(IEnumerable lstSeriesName) ``` #### Parameters -`lstSeriesName` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstSeriesName` IEnumerable The list of curve names to perform the differentiation on. #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> + IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> A collection of data series with differentiated values. @@ -368,26 +376,26 @@ For an example that includes this property, see the [Interface IOperationsCalcul #### Remarks -This function iterates over each series specified in lstSeriesName and applies differentiation to the Y values +This function iterates over each series specified in lstSeriesName and applies differentiation to the Y values of each point in the series. The differentiation calculates the difference between consecutive points. ### CreateDifferentiatedCurve\(IEnumerable\) Differentiates data series as part of the chart tab's Calculus functionality. -```python +```csharp IEnumerable CreateDifferentiatedCurve(IEnumerable seriesViewModels) ``` #### Parameters -`seriesViewModels` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> +`seriesViewModels` IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> The list of instances of the curves to perform the differentiation on. #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> + IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> A collection of data series with differentiated values. @@ -397,20 +405,20 @@ For an example that includes this property, see the [Interface IOperationsCalcul #### Remarks -This function iterates over each series in seriesViewModels and applies differentiation to the Y values +This function iterates over each series in seriesViewModels and applies differentiation to the Y values of each point in the series. The differentiation calculates the difference between consecutive points. ### CreateFFT\(IEnumerable, FFTType, FFTWindowType, ScaleType, int, double, double\) Applies FFT (Fast Fourier Transform) to data series as part of the chart tab's functionality. -```python +```csharp IEnumerable CreateFFT(IEnumerable lstSeriesName, FFTType fftType, FFTWindowType fftWindowType, ScaleType scaleType, int points, double start, double end) ``` #### Parameters -`lstSeriesName` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstSeriesName` IEnumerable The list of curve names to perform the operation on. @@ -432,21 +440,21 @@ The scale type to apply. The supported types are:
-`points` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`points` int The number of data points for FFT. -`start` [double](https://learn.microsoft.com/dotnet/api/system.double) +`start` double The start time for using FFT on target data series. -`end` [double](https://learn.microsoft.com/dotnet/api/system.double) +`end` double The end time for using FFT on target data series. #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> + IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> A collection of data series with FFT applied. @@ -463,13 +471,13 @@ using the specified FFT type, window type, scale type, and number of points. Applies FFT (Fast Fourier Transform) to data series as part of the chart tab's functionality. -```python +```csharp IEnumerable CreateFFT(IEnumerable seriesViewModels, FFTType fftType, FFTWindowType fftWindowType, ScaleType scaleType, int points, double start, double end) ``` #### Parameters -`seriesViewModels` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> +`seriesViewModels` IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> The list of instances of the curves to perform the operation on. @@ -491,21 +499,21 @@ The scale type to apply. The supported types are:
-`points` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`points` int The number of data points for FFT. -`start` [double](https://learn.microsoft.com/dotnet/api/system.double) +`start` double The start time for using FFT on target data series. -`end` [double](https://learn.microsoft.com/dotnet/api/system.double) +`end` double The end time for using FFT on target data series. #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> + IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> A collection of data series with FFT applied. @@ -522,13 +530,13 @@ using the specified FFT type, window type, scale type, and number of points. Applies data filtering and smoothing to data series as part of the chart tab's Signal Processing functionality. -```python +```csharp IEnumerable CreateFiltering(IEnumerable lstSeriesName, FilteringType filteringType, int order, double frequency1, double frequency2) ``` #### Parameters -`lstSeriesName` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstSeriesName` IEnumerable The list of curve names to perform the operation on. @@ -538,21 +546,21 @@ The type of filter to apply. The supported types are:
-`order` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`order` int The order of the filter. As the value decreases, the output becomes smoother. -`frequency1` [double](https://learn.microsoft.com/dotnet/api/system.double) +`frequency1` double The first frequency value for the filter. -`frequency2` [double](https://learn.microsoft.com/dotnet/api/system.double) +`frequency2` double The second frequency value for the filter, used in band filters. #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> + IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> A collection of data series with filtering applied. @@ -569,13 +577,13 @@ filter order, and frequency values. The filtering operation can smooth the data Applies data filtering and smoothing to data series as part of the chart tab's Signal Processing functionality. -```python +```csharp IEnumerable CreateFiltering(IEnumerable seriesViewModels, FilteringType filteringType, int order, double frequency1, double frequency2) ``` #### Parameters -`seriesViewModels` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> +`seriesViewModels` IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> The list of instances of the curves to perform the operation on. @@ -585,21 +593,21 @@ The type of filter to apply. The supported types are:
-`order` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`order` int The order of the filter. As the value decreases, the output becomes smoother. -`frequency1` [double](https://learn.microsoft.com/dotnet/api/system.double) +`frequency1` double The first frequency value for the filter. -`frequency2` [double](https://learn.microsoft.com/dotnet/api/system.double) +`frequency2` double The second frequency value for the filter, used in band filters. #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> + IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> A collection of data series with filtering applied. @@ -616,13 +624,13 @@ filter order, and frequency values. The filtering operation can smooth the data Applies frequency weighting to data series as part of the chart tab's Signal Processing functionality. -```python +```csharp IEnumerable CreateFrequencyWeighting(IEnumerable lstSeriesName, WeightingType weightingType, FrequencyAxisType axisType) ``` #### Parameters -`lstSeriesName` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstSeriesName` IEnumerable The list of curve names to perform the operation on. @@ -640,7 +648,7 @@ The supported types are: #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> + IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> A collection of data series with frequency weighting applied. @@ -657,13 +665,13 @@ and axis type. A-weighting is the most commonly used to measure the sound pressu Applies frequency weighting to data series as part of the chart tab's Signal Processing functionality. -```python +```csharp IEnumerable CreateFrequencyWeighting(IEnumerable seriesViewModels, WeightingType weightingType, FrequencyAxisType axisType) ``` #### Parameters -`seriesViewModels` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> +`seriesViewModels` IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> The list of instances of the curves to perform the operation on. @@ -681,7 +689,7 @@ The supported types are: #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> + IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> A collection of data series with frequency weighting applied. @@ -698,19 +706,19 @@ and axis type. A-weighting is the most commonly used to measure the sound pressu Integrates data series as part of the chart tab's Calculus functionality. -```python +```csharp IEnumerable CreateIntegratedCurve(IEnumerable lstSeriesName) ``` #### Parameters -`lstSeriesName` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstSeriesName` IEnumerable The list of curve names to perform the integration on. #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> + IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> A collection of data series with integrated values. @@ -727,19 +735,19 @@ of each point in the series. Integrates data series as part of the chart tab's Calculus functionality. -```python +```csharp IEnumerable CreateIntegratedCurve(IEnumerable seriesViewModels) ``` #### Parameters -`seriesViewModels` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> +`seriesViewModels` IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> The list of instances of the curves to perform the operation on. #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> + IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> A collection of data series with integrated values. @@ -756,23 +764,23 @@ of each point in the series. Applies interpolation to data series as part of the chart tab's Interpolation functionality. -```python +```csharp IEnumerable CreateInterpolation(IEnumerable lstSeriesName, int points) ``` #### Parameters -`lstSeriesName` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstSeriesName` IEnumerable The list of curve names to perform the interpolation on. -`points` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`points` int The number of data points for interpolation. #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> + IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> A collection of data series with interpolated values. @@ -789,23 +797,23 @@ based on the specified number of points. Applies interpolation to data series as part of the chart tab's Interpolation functionality. -```python +```csharp IEnumerable CreateInterpolation(IEnumerable seriesViewModels, int points) ``` #### Parameters -`seriesViewModels` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> +`seriesViewModels` IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> The list of instances of the curves to perform the operation on. -`points` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`points` int The number of data points for interpolation. #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> + IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> A collection of data series with interpolated values. @@ -822,31 +830,31 @@ based on the specified number of points. Applies a logarithmic scale to data series as part of the chart tab's Transform functionality. -```python +```csharp IEnumerable CreateLogScale(IEnumerable lstSeriesName, double coefficient, double baseValue, bool decibel) ``` #### Parameters -`lstSeriesName` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstSeriesName` IEnumerable The list of curve names to perform the operation on. -`coefficient` [double](https://learn.microsoft.com/dotnet/api/system.double) +`coefficient` double The value of the coefficient. -`baseValue` [double](https://learn.microsoft.com/dotnet/api/system.double) +`baseValue` double The value of the base for the logarithmic scale. -`decibel` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`decibel` bool Indicates whether to apply the decibel scale (20 * Log10(Y)) to the data series. #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> + IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> A collection of data series with logarithmic scaling applied. @@ -863,31 +871,31 @@ base value, and whether to use the decibel scale. Applies a logarithmic scale to data series as part of the chart tab's Transform functionality. -```python +```csharp IEnumerable CreateLogScale(IEnumerable seriesViewModels, double coefficient, double baseValue, bool decibel) ``` #### Parameters -`seriesViewModels` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> +`seriesViewModels` IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> The list of instances of the curves to perform the operation on. -`coefficient` [double](https://learn.microsoft.com/dotnet/api/system.double) +`coefficient` double The value of the coefficient. -`baseValue` [double](https://learn.microsoft.com/dotnet/api/system.double) +`baseValue` double The value of the base for the logarithmic scale. -`decibel` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`decibel` bool Indicates whether to apply the decibel scale (20 * Log10(Y)) to the data series. #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> + IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> A collection of data series with logarithmic scaling applied. @@ -900,22 +908,22 @@ For an example that includes this property, see the [Interface IOperationsTransf This function performs a logarithmic transformation on each series specified in seriesViewModels using the specified coefficient, base value, and whether to use the decibel scale. -### CreateSTFT\(IHeatMapSTFTDataViewModel, IList\) +### CreateSTFT\(ISTFTParameters, IList\) Creates a Short Time Fourier Transform (STFT) for data series and updates the heatmap data. -```python -IOperationsHeatMapSTFTViewModel[] CreateSTFT(IHeatMapSTFTDataViewModel hitmapData, IList lstSeriesName) +```csharp +IOperationsHeatMapSTFTViewModel[] CreateSTFT(ISTFTParameters hitmapData, IList lstSeriesName) ``` #### Parameters -`hitmapData` IHeatMapSTFTDataViewModel +`hitmapData` ISTFTParameters The heatmap data model to update with STFT results.
  • - The value about setting the number of the interval for dividing Y direction grids on color map.
  • - The value about setting the number of the interval for dividing X direction grids on color map.
  • - The value of the percentage for setting overlapped intervals.
  • - The number of data point for FFT.
  • - The start time for using FFT on target data series.
  • - The end time for using FFT on target data series.
  • - The reference value on decibel as the type of the scale.
  • - the scale factor to change from time domain to another domain.
  • - An STFTScaleType enumeration value that represents the scale type for the STFT.
-`lstSeriesName` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstSeriesName` IList The list of curve names to perform the STFT operation on. @@ -934,22 +942,22 @@ For an example that includes this property, see the [Interface IOperationsHeatMa This function performs the STFT on each series specified in lstSeriesName and updates the heatmap data model with the results. The heatmap data model is defined by the interface. -### CreateSTFT\(IHeatMapSTFTDataViewModel, IEnumerable\) +### CreateSTFT\(ISTFTParameters, IEnumerable\) Creates a Short Time Fourier Transform (STFT) for data series and updates the heatmap data. -```python -IOperationsHeatMapSTFTViewModel[] CreateSTFT(IHeatMapSTFTDataViewModel hitmapData, IEnumerable seriesViewModels) +```csharp +IOperationsHeatMapSTFTViewModel[] CreateSTFT(ISTFTParameters hitmapData, IEnumerable seriesViewModels) ``` #### Parameters -`hitmapData` IHeatMapSTFTDataViewModel +`hitmapData` ISTFTParameters The heatmap data model to update with STFT results.
  • - The value about setting the number of the interval for dividing Y direction grids on color map.
  • - The value about setting the number of the interval for dividing X direction grids on color map.
  • - The value of the percentage for setting overlapped intervals.
  • - The number of data point for FFT.
  • - The start time for using FFT on target data series.
  • - The end time for using FFT on target data series.
  • - The reference value on decibel as the type of the scale.
  • - the scale factor to change from time domain to another domain.
  • - An STFTScaleType enumeration value that represents the scale type for the STFT.
-`seriesViewModels` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> +`seriesViewModels` IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> The list of instances of the curves to perform the operation on. @@ -972,27 +980,27 @@ model with the results. The heatmap data model is defined by the
  • -`points` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`points` int The number of data points for interpolation. @@ -1085,13 +1093,13 @@ into a single series. The function supports addition, subtraction, and multiplic Performs simple mathematical operations (+, -, *) on data series as part of the chart tab's Simple Math functionality. -```python +```csharp IOperationsLineDataSeriesViewModelBase CreateSimpleMath(IEnumerable seriesViewModels, SimpleMathType simpleMathType, int points) ``` #### Parameters -`seriesViewModels` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> +`seriesViewModels` IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> The list of instances of the curves to perform the operation on. @@ -1101,7 +1109,7 @@ The type of simple math operation to apply. The supported types are:
    -`points` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`points` int The number of data points for interpolation. @@ -1124,13 +1132,13 @@ into a single series. The function supports addition, subtraction, and multiplic Applies data filtering and smoothing to data series as part of the chart tab's Signal Processing functionality. -```python +```csharp IEnumerable CreateSmoothing(IEnumerable lstSeriesName, SmoothingType smoothingType, int pointsOfWindow, int polyOrder) ``` #### Parameters -`lstSeriesName` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstSeriesName` IEnumerable The list of curve names to perform the operation on. @@ -1140,17 +1148,17 @@ The type of smoothing to apply. The supported types are:
    -`pointsOfWindow` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`pointsOfWindow` int The number of points for the smoothing window. -`polyOrder` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`polyOrder` int The polynomial order for the smoothing operation. #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> + IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> A collection of data series with smoothing applied. @@ -1167,13 +1175,13 @@ window size, and polynomial order. The function supports moving average and Savi Applies data filtering and smoothing to data series as part of the chart tab's Signal Processing functionality. -```python +```csharp IEnumerable CreateSmoothing(IEnumerable seriesViewModels, SmoothingType smoothingType, int pointsOfWindow, int polyOrder) ``` #### Parameters -`seriesViewModels` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> +`seriesViewModels` IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> The list of instances of the curves to perform the operation on. @@ -1183,17 +1191,17 @@ The type of smoothing to apply. The supported types are:
    -`pointsOfWindow` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`pointsOfWindow` int The number of points for the smoothing window. -`polyOrder` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`polyOrder` int The polynomial order for the smoothing operation. #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> + IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> A collection of data series with smoothing applied. @@ -1210,27 +1218,27 @@ window size, and polynomial order. The function supports moving average and Savi Translates data series by the specified offsets as part of the chart tab's Transform functionality. -```python +```csharp IEnumerable CreateTranslate(IEnumerable lstSeriesName, double offsetX, double offsetY) ``` #### Parameters -`lstSeriesName` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstSeriesName` IEnumerable The list of curve names to perform the translation on. -`offsetX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`offsetX` double The offset value to translate on the X-axis. -`offsetY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`offsetY` double The offset value to translate on the Y-axis. #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> + IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> A collection of translated data series. @@ -1247,27 +1255,27 @@ of each point in the series. Translates data series by the specified offsets as part of the chart tab's Transform functionality. -```python +```csharp IEnumerable CreateTranslate(IEnumerable seriesViewModels, double offsetX, double offsetY) ``` #### Parameters -`seriesViewModels` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> +`seriesViewModels` IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> The list of instances of the curves to perform the operation on. -`offsetX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`offsetX` double The offset value to translate on the X-axis. -`offsetY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`offsetY` double The offset value to translate on the Y-axis. #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> + IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> A collection of translated data series. @@ -1280,4 +1288,3 @@ For an example that includes this property, see the [Interface IOperationsTransf This function translates each series specified in seriesViewModels by adding the specified offsets to the X and Y values of each point in the series. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsLine2DViewModelBase.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsLine2DViewModelBase.md index f4de3597a2..10e2d06fba 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsLine2DViewModelBase.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsLine2DViewModelBase.md @@ -1,30 +1,33 @@ -# Interface IOperationsLine2DViewModelBase +# Interface IOperationsLine2DViewModelBase + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll Represents the base interface for properties and methods that make up a 2D chart view. -```python -public interface IOperationsLine2DViewModelBase : IOperationsChartViewModel, IView, IOperationsBase +```csharp +public interface IOperationsLine2DViewModelBase : IOperationsChartViewModel, IView ``` #### Implements [IOperationsChartViewModel](VM.Operations.Post.Interfaces.IOperationsChartViewModel.md), -[IView](VM.Operations.Post.Interfaces.IView.md), -[IOperationsBase](VM.Operations.Post.Interfaces.IOperationsBase.md) +[IView](VM.Operations.Post.Interfaces.IView.md) ## Examples To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
    # IOperationsLine2DViewModelBase.py
    +```python
    +# IOperationsLine2DViewModelBase.py
     import sys
     
    +# Get the current file's path and set the path for external modules.
     current_dir = __file__.rsplit('\\', 1)[0]
     external_modules_path = current_dir + '\\..\\..\\Modules'
    -
     sys.path.append(external_modules_path)
    +
    +# Import necessary modules
     from OperationAPI import *
     
     # Start the headless application interface
    @@ -38,12 +41,17 @@ filepaths = List[str]()
     filepaths.Add(result_file_path)
     
     # Open about result files
    +# This will open the result file in the application.
    +# When the result is first opened, a Page is created and an Animation View is created on that Page.
     applicationHandler.AddDocument(filepaths)
     
    -# Get Page
    +# Get Active Page
    +# This retrieves the currently active page in the application.
     page = applicationHandler.GetActivePage()
     
    -# Create PlotView
    +# Creating a Chart
    +# Create a new Chart View on the page
    +# This will create a new chart view with the specified name.
     chartView = page.CreateChart("Chart")
     chartView.Background = Colors.Gray
     chartView.BorderColor = Colors.Red
    @@ -63,7 +71,11 @@ curvePaths.Add(r'Displacement/X')
     curvePaths.Add(r'Displacement/Y')
     curvePaths.Add(r'Displacement/Z')
     
    -# Set a Curve Parameter
    +# Create a PlotParameters object to specify the parameters for the plot.
    +# Set the Entity to Plot.
    +# The Target is the name of the target for which you want to retrieve the curves.
    +# Set the paths for the curves you want to retrieve.
    +# This is where you specify the characteristics and components you want to plot.
     parameters = PlotParameters()
     parameters.Paths = curvePaths
     parameters.Target = "Crank"
    @@ -113,7 +125,7 @@ page.Close()
     
     # Close the Document
     applicationHandler.CloseDocument(result_file_path)
    -
    +``` ## Properties @@ -121,13 +133,13 @@ applicationHandler.CloseDocument(result_file_path) Gets or sets the background color of the chart view. -```python +```csharp Color Background { get; set; } ``` #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.windows.media.color) + Color #### Examples @@ -142,13 +154,13 @@ In the UI, this property is represented under the "Color" category with the prop Gets or sets the border color of the chart view. -```python +```csharp Color BorderColor { get; set; } ``` #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.windows.media.color) + Color #### Examples @@ -163,7 +175,7 @@ In the UI, this property is represented under the "Color" category with the prop Gets or sets the axis type of the chart, indicating whether to display the chart's axis as single or multiple. -```python +```csharp ChartAxisType ChartAxisType { get; set; } ``` @@ -186,13 +198,13 @@ The available options are: Gets or sets the title of the chart view. -```python +```csharp string ChartTitle { get; set; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string #### Examples @@ -207,13 +219,13 @@ In the UI, this property is represented under the "Chart" category with the prop Gets or sets the font color of the chart view's title. -```python +```csharp Color FontColor { get; set; } ``` #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.windows.media.color) + Color #### Examples @@ -228,13 +240,13 @@ In the UI, this property is represented under the "Chart" category with the prop Gets or sets the font face of the chart title. -```python +```csharp FontFamily FontFace { get; set; } ``` #### Property Value - [FontFamily](https://learn.microsoft.com/dotnet/api/system.windows.media.fontfamily) + FontFamily #### Examples @@ -249,13 +261,13 @@ In the UI, this property is represented under the "Font" category with the prope Gets or sets the font size of the chart title. -```python +```csharp double FontSize { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Examples @@ -270,13 +282,13 @@ In the UI, this property is represented under the "Font" category with the prope Gets or sets the font style of the chart title. -```python +```csharp FontStyle FontStyle { get; set; } ``` #### Property Value - [FontStyle](https://learn.microsoft.com/dotnet/api/system.windows.fontstyle) + FontStyle #### Examples @@ -293,13 +305,13 @@ The supported types are: Gets or sets the font weight of the chart title. -```python +```csharp FontWeight FontWeight { get; set; } ``` #### Property Value - [FontWeight](https://learn.microsoft.com/dotnet/api/system.windows.fontweight) + FontWeight #### Examples @@ -316,19 +328,19 @@ The available options are: ### AddCurves\(string, PlotParameters\) -Adds curves to the chart by reading data from the specified file path and using the given plot parameters. Please refer to this [here](./../getting_started_operation_api_using_py.md#how-to-input-the-value-of-the-target-into-the-function-parameter) link. +Adds curves to the chart by reading data from the specified file path and using the given plot parameters. Please refer to this [here](../getting_started_operation_api_using_py.md#how-to-input-the-value-of-the-target-into-the-function-parameter) link. -```python +```csharp IOperationsLineDataSeriesViewModelBase[] AddCurves(string filepath, PlotParameters parameters) ``` #### Parameters -`filepath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`filepath` string The path to the file containing the curve data. -`parameters` PlotParameters +`parameters` [PlotParameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.OutputReader/Models/PlotParameters.cs) The parameters used for plotting the curves, including target entity, data paths, coordinate system, and plot data type.
    • - The target entity for plotting the curves.
    • - Default or Plot Data.
    • - An Paths representing the paths to the data to be read. This is a combination of characteristic and component.
    • - The coordinate system to be used.
    @@ -351,13 +363,13 @@ This method reads data from the specified file path and adds curves to the chart Exports all curves contained in the chart to the specified file path without displaying a file save dialog. -```python +```csharp void ExportAllCurves(string filepath) ``` #### Parameters -`filepath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`filepath` string The file path where the curves will be saved. @@ -376,7 +388,7 @@ requiring automation. Exports all data series included in the chart. -```python +```csharp void ExportAllDataSeries() ``` @@ -395,13 +407,13 @@ which does not display a file save dialog. Retrieves an axis by its name. -```python +```csharp IOperationsAxisViewModelBase GetAxis(string name) ``` #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the axis to be retrieved. @@ -425,13 +437,13 @@ If no axis with the specified name is found, the method returns null GetCurveNameList() ``` #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + IEnumerable A collection of the names of all curves currently displayed in the chart view. @@ -503,13 +515,13 @@ This method retrieves the names of all the curves that are currently displayed i Gets all the curves currently included in the chart view. -```python +```csharp IEnumerable GetCurves() ``` #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> + IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> A collection of all the curves currently displayed in the chart view. @@ -525,19 +537,19 @@ This method retrieves all the curves that are currently displayed in the chart v Gets all curves from the chart view that contain the specified substring in their names. -```python +```csharp IEnumerable GetCurves(string name) ``` #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string A substring to search for within the curve names. #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> + IEnumerable<[IOperationsLineDataSeriesViewModelBase](VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md)\> A collection of all curves whose names contain the specified substring. @@ -554,7 +566,7 @@ If no such curves are found, an empty collection is returned. Gets the most recently added curve from the chart view. -```python +```csharp IOperationsLineDataSeriesViewModelBase GetLastCurve() ``` @@ -576,13 +588,13 @@ This method retrieves the curve that was added last to the chart view. If no cur Removes a curve from the chart by its id. -```python +```csharp void Remove(string id) ``` #### Parameters -`id` [string](https://learn.microsoft.com/dotnet/api/system.string) +`id` string The id of the curve to be removed. @@ -598,7 +610,7 @@ This method deletes the curve with the specified id from the chart. If no curve Removes a curve from the chart by its instance. -```python +```csharp void Remove(IOperationsLineDataSeriesViewModelBase curve) ``` @@ -616,4 +628,3 @@ For an example that includes this property, see the [Interface IOperationsLine2D This method deletes the specified curve instance from the chart. If the provided curve instance does not exist in the chart, no action is taken. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsLineDataSeriesAxisViewModel.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsLineDataSeriesAxisViewModel.md index bebc3614fb..6a0100d051 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsLineDataSeriesAxisViewModel.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsLineDataSeriesAxisViewModel.md @@ -1,16 +1,12 @@ -# Interface IOperationsLineDataSeriesAxisViewModel +# Interface IOperationsLineDataSeriesAxisViewModel + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll Interface for handling updates related to point information of a curve in a data series axis view model. -```python -public interface IOperationsLineDataSeriesAxisViewModel : IOperationsBase +```csharp +public interface IOperationsLineDataSeriesAxisViewModel ``` -#### Implements - -[IOperationsBase](VM.Operations.Post.Interfaces.IOperationsBase.md) - - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModel.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModel.md index ebf3486ff2..6030f0d11f 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModel.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModel.md @@ -1,12 +1,13 @@ -# Interface IOperationsLineDataSeriesViewModel +# Interface IOperationsLineDataSeriesViewModel + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll Represents a view model for the line data series. -```python -public interface IOperationsLineDataSeriesViewModel : IOperationsLineDataSeriesViewModelBase, ILineDataSeriesViewModelBase, IHasSourceViewModel, IViewModel, IObservableObject, IDisposableObject, IEnabled, IExpanded, ISelected, IVisible, IThicknessProperty, IOperationsBase +```csharp +public interface IOperationsLineDataSeriesViewModel : IOperationsLineDataSeriesViewModelBase, ILineDataSeriesViewModelBase, IHasSourceViewModel, IViewModel, IObservableObject, IDisposableObject, IEnabled, IExpanded, ISelected, IVisible, IThicknessProperty ``` #### Implements @@ -21,20 +22,22 @@ IEnabled, IExpanded, ISelected, IVisible, -IThicknessProperty, -[IOperationsBase](VM.Operations.Post.Interfaces.IOperationsBase.md) +IThicknessProperty ## Examples For an example that includes information about interfaces, see this example. To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
    # IOperationsLineDataSeriesViewModel.py
    +```python
    +# IOperationsLineDataSeriesViewModel.py
     import sys
     
    +# Get the current file's path and set the path for external modules.
     current_dir = __file__.rsplit('\\', 1)[0]
     external_modules_path = current_dir + '\\..\\..\\Modules'
     sys.path.append(external_modules_path)
     
    +# Import necessary modules
     from OperationAPI import *
     
     # Start the headless application interface
    @@ -48,12 +51,17 @@ filepaths = List[str]()
     filepaths.Add(result_file_path)
     
     # Open about result files
    +# This will open the result file in the application.
    +# When the result is first opened, a Page is created and an Animation View is created on that Page.
     applicationHandler.AddDocument(filepaths)
     
    -# Get Page
    +# Get Active Page
    +# This retrieves the currently active page in the application.
     page = applicationHandler.GetActivePage()
     
    -# Create PlotView
    +# Creating a Chart
    +# Create a new Chart View on the page
    +# This will create a new chart view with the specified name.
     chartView = page.CreateChart("Chart")
     
     # Documentation Example
    @@ -61,7 +69,11 @@ chartView = page.CreateChart("Chart")
     curvePaths = List[str]()
     curvePaths.Add(r'Displacement/Magnitude')
     
    -# Set a Curve Parameter
    +# Create a PlotParameters object to specify the parameters for the plot.
    +# Set the Entity to Plot.
    +# The Target is the name of the target for which you want to retrieve the curves.
    +# Set the paths for the curves you want to retrieve.
    +# This is where you specify the characteristics and components you want to plot.
     parameters = PlotParameters()
     parameters.Paths = curvePaths
     parameters.Target = "Crank"
    @@ -79,7 +91,7 @@ page.Close()
     
     # Close the Document
     applicationHandler.CloseDocument(result_file_path)
    -
    +``` ## Properties @@ -87,7 +99,7 @@ applicationHandler.CloseDocument(result_file_path) Gets or sets the source X instance of the series. -```python +```csharp ILineDataSeriesAxisViewModel SourceX { get; set; } ``` @@ -107,7 +119,7 @@ Use this property to specify or retrieve the source X instance of the series. Gets or sets the source Y instance of the series. -```python +```csharp ILineDataSeriesAxisViewModel SourceY { get; set; } ``` @@ -129,29 +141,29 @@ Use this property to specify or retrieve the source Y instance of the series. Creates information of Axis for data series. It is used for modifying information of axis for data series. -```python +```csharp IOperationsLineDataSeriesAxisViewModel CreateLineDataSeries(string filepath, string fullTarget, string characteristic, string component, string csys) ``` #### Parameters -`filepath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`filepath` string The path of the result to access. -`fullTarget` [string](https://learn.microsoft.com/dotnet/api/system.string) +`fullTarget` string The name of the target entity. -`characteristic` [string](https://learn.microsoft.com/dotnet/api/system.string) +`characteristic` string The name of the characteristic. -`component` [string](https://learn.microsoft.com/dotnet/api/system.string) +`component` string The name of the component. -`csys` [string](https://learn.microsoft.com/dotnet/api/system.string) +`csys` string The name of the coordinate system. @@ -173,38 +185,38 @@ This method creates axis information for a data series, allowing for the modific Creates information of Axis for data series. It is used for modifying information of axis for data series. -```python +```csharp [Obsolete("This method is considered outdated and its use is discouraged.", true)] IOperationsLineDataSeriesAxisViewModel CreateLineDataSeries(string filepath, string parent, string fullTarget, string subTarget, string characteristic, string component, string csys) ``` #### Parameters -`filepath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`filepath` string The path of the result to access. -`parent` [string](https://learn.microsoft.com/dotnet/api/system.string) +`parent` string The parent entity. If the entity does not have a parent, it should be . -`fullTarget` [string](https://learn.microsoft.com/dotnet/api/system.string) +`fullTarget` string The name of the target entity. -`subTarget` [string](https://learn.microsoft.com/dotnet/api/system.string) +`subTarget` string The name of the child item such as node, element, or marker. If there is no child item, it should be . -`characteristic` [string](https://learn.microsoft.com/dotnet/api/system.string) +`characteristic` string The name of the characteristic. -`component` [string](https://learn.microsoft.com/dotnet/api/system.string) +`component` string The name of the component. -`csys` [string](https://learn.microsoft.com/dotnet/api/system.string) +`csys` string The name of the coordinate system. @@ -222,4 +234,3 @@ For an example that includes this property, see the [Interface IOperationsLineDa This method creates axis information for a data series, allowing for the modification of axis information for the data series. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md index 9a3c8f864e..ad4af0e17c 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsLineDataSeriesViewModelBase.md @@ -1,12 +1,13 @@ -# Interface IOperationsLineDataSeriesViewModelBase +# Interface IOperationsLineDataSeriesViewModelBase + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll Represents a view model for the line data series. -```python -public interface IOperationsLineDataSeriesViewModelBase : ILineDataSeriesViewModelBase, IHasSourceViewModel, IViewModel, IObservableObject, IDisposableObject, IEnabled, IExpanded, ISelected, IVisible, IThicknessProperty, IOperationsBase +```csharp +public interface IOperationsLineDataSeriesViewModelBase : ILineDataSeriesViewModelBase, IHasSourceViewModel, IViewModel, IObservableObject, IDisposableObject, IEnabled, IExpanded, ISelected, IVisible, IThicknessProperty ``` #### Implements @@ -20,20 +21,22 @@ IEnabled, IExpanded, ISelected, IVisible, -IThicknessProperty, -[IOperationsBase](VM.Operations.Post.Interfaces.IOperationsBase.md) +IThicknessProperty ## Examples For an example that includes information about interfaces, see this example. To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
    # IOperationsLineDataSeriesViewModelBase.py
    +```python
    +# IOperationsLineDataSeriesViewModelBase.py
     import sys
     
    +# Get the current file's path and set the path for external modules.
     current_dir = __file__.rsplit('\\', 1)[0]
     external_modules_path = current_dir + '\\..\\..\\Modules'
     sys.path.append(external_modules_path)
     
    +# Import necessary modules
     from OperationAPI import *
     
     # Start the headless application interface
    @@ -47,12 +50,17 @@ filepaths = List[str]()
     filepaths.Add(result_file_path)
     
     # Open about result files
    +# This will open the result file in the application.
    +# When the result is first opened, a Page is created and an Animation View is created on that Page.
     applicationHandler.AddDocument(filepaths)
     
    -# Get Page
    +# Get Active Page
    +# This retrieves the currently active page in the application.
     page = applicationHandler.GetActivePage()
     
    -# Create PlotView
    +# Creating a Chart
    +# Create a new Chart View on the page
    +# This will create a new chart view with the specified name.
     chartView = page.CreateChart("Chart")
     
     # Documentation Example
    @@ -60,7 +68,11 @@ chartView = page.CreateChart("Chart")
     curvePaths = List[str]()
     curvePaths.Add(r'Displacement/Magnitude')
     
    -# Set a Curve Parameter
    +# Create a PlotParameters object to specify the parameters for the plot.
    +# Set the Entity to Plot.
    +# The Target is the name of the target for which you want to retrieve the curves.
    +# Set the paths for the curves you want to retrieve.
    +# This is where you specify the characteristics and components you want to plot.
     parameters = PlotParameters()
     parameters.Paths = curvePaths
     parameters.Target = "Crank"
    @@ -83,7 +95,7 @@ page.Close()
     
     # Close the Document
     applicationHandler.CloseDocument(result_file_path)
    -
    +``` ## Properties @@ -91,13 +103,13 @@ applicationHandler.CloseDocument(result_file_path) Gets or sets the color of the line in the series. -```python +```csharp Color Color { get; set; } ``` #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.windows.media.color) + Color #### Examples @@ -111,7 +123,7 @@ Use this property to specify or retrieve the color of the line in the series. Gets or sets the style of the line. -```python +```csharp LineStyleType LineStyle { get; set; } ``` @@ -133,13 +145,13 @@ The available options are: Gets or sets the size of the points in the series. -```python +```csharp double PointSize { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Examples @@ -153,7 +165,7 @@ Use this property to specify or retrieve the size of the points in the series. Gets or sets the type of the points in the series. -```python +```csharp PointType PointType { get; set; } ``` @@ -175,13 +187,13 @@ The supported types are: Gets or sets the name of the series. -```python +```csharp string SeriesName { get; set; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string #### Examples @@ -195,7 +207,7 @@ Use this property to specify or retrieve the name of the series. Gets or sets the type of the series. -```python +```csharp SeriesType SeriesType { get; set; } ``` @@ -217,13 +229,13 @@ The supported types are: Gets or sets the thickness of the series. -```python +```csharp int Thickness { get; set; } ``` #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int #### Examples @@ -233,4 +245,3 @@ For an example that includes this property, see the [Interface IOperationsLineDa Use this property to specify or retrieve the thickness of the series. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsLineDisplayViewModel.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsLineDisplayViewModel.md index 9a16d56d98..8a0e0e3fe4 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsLineDisplayViewModel.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsLineDisplayViewModel.md @@ -1,11 +1,12 @@ -# Interface IOperationsLineDisplayViewModel +# Interface IOperationsLineDisplayViewModel + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll Interface representing information for the line display view model. -```python +```csharp public interface IOperationsLineDisplayViewModel : IOperationsVectorDisplayBaseViewModel ``` @@ -17,13 +18,16 @@ public interface IOperationsLineDisplayViewModel : IOperationsVectorDisplayBaseV For an example that includes information about interfaces, see this example. To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
    # IOperationsLineDisplayViewModel.py
    +```python
    +# IOperationsLineDisplayViewModel.py
     import sys
     
    +# Get the current file's path and set the path for external modules.
     current_dir = __file__.rsplit('\\', 1)[0]
     external_modules_path = current_dir + '\\..\\..\\Modules'
     sys.path.append(external_modules_path)
     
    +# Import necessary modules
     from OperationAPI import *
     
     # Start the headless application interface
    @@ -37,9 +41,12 @@ filepaths = List[str]()
     filepaths.Add(result_file_path)
     
     # Open about result files
    +# This will open the result file in the application.
    +# When the result is first opened, a Page is created and an Animation View is created on that Page.
     applicationHandler.AddDocument(filepaths)
     
    -# Find Page
    +# Get all created pages.
    +# This retrieves all pages created in the application.
     pages = applicationHandler.GetPages()
     
     findViews = list()
    @@ -52,7 +59,14 @@ for page in pages :
     
     viewCount = len(findViews)
     if viewCount > 0 :
    +    # result_file_path - Get the document from the result file path.
         document = applicationHandler.GetDocument(result_file_path)
    +
    +    # This retrieves the analysis result from the document.
    +    # Types of Analysis Results
    +    # - Dynamics
    +    # - Eigenvalue
    +    # - Statics
         analysis = document.GetAnalysisResultViewModel(AnalysisResultType.Dynamics)
     
         # Create Vector Display
    @@ -60,14 +74,15 @@ if viewCount > 0 :
         vector.Color = Colors.Blue
         # vector.Width = 10
     
    -# Close the Pages
    +# Get all created pages.
    +# This retrieves all pages created in the application.
     pages = applicationHandler.GetPages()
     for page in pages :
         page.Close()
     
     # Close the Document
     applicationHandler.CloseDocument(result_file_path)
    -
    +``` ## Properties @@ -75,13 +90,13 @@ applicationHandler.CloseDocument(result_file_path) Gets or sets the color of the arrows in the vector display. -```python +```csharp Color Color { get; set; } ``` #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.windows.media.color) + Color #### Examples @@ -95,13 +110,13 @@ Use this property to specify or retrieve the color of the arrows in the vector d Gets or sets the width of the arrows in the vector display. -```python +```csharp int Width { get; set; } ``` #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int #### Examples @@ -111,4 +126,3 @@ For an example that includes this property, see the [Interface IOperationsLineDi Use this property to specify or retrieve the width of the arrows in the vector display. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsNodeViewModel.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsNodeViewModel.md index dba2302639..250d4dcd47 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsNodeViewModel.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsNodeViewModel.md @@ -1,11 +1,12 @@ -# Interface IOperationsNodeViewModel +# Interface IOperationsNodeViewModel + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll Interface representing information for the node view model. -```python +```csharp public interface IOperationsNodeViewModel ``` @@ -13,13 +14,16 @@ public interface IOperationsNodeViewModel For an example that includes information about interfaces, see this example. To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
    # IOperationsNodeViewModel.py
    +```python
    +# IOperationsNodeViewModel.py
     import sys
     
    +# Get the current file's path and set the path for external modules.
     current_dir = __file__.rsplit('\\', 1)[0]
     external_modules_path = current_dir + '\\..\\..\\Modules'
     sys.path.append(external_modules_path)
     
    +# Import necessary modules
     from OperationAPI import *
     
     # Start the headless application interface
    @@ -33,9 +37,12 @@ filepaths = List[str]()
     filepaths.Add(result_file_path)
     
     # Open about result files
    +# This will open the result file in the application.
    +# When the result is first opened, a Page is created and an Animation View is created on that Page.
     applicationHandler.AddDocument(filepaths)
     
    -# Find Page
    +# Get all created pages.
    +# This retrieves all pages created in the application.
     pages = applicationHandler.GetPages()
     
     findViews = list()
    @@ -48,7 +55,14 @@ for page in pages :
     
     viewCount = len(findViews)
     if viewCount > 0 :
    +    # result_file_path - Get the document from the result file path.
         document = applicationHandler.GetDocument(result_file_path)
    +
    +    # This retrieves the analysis result from the document.
    +    # Types of Analysis Results
    +    # - Dynamics
    +    # - Eigenvalue
    +    # - Statics
         analysis = document.GetAnalysisResultViewModel(AnalysisResultType.Dynamics)
     
         # Get a febody
    @@ -58,14 +72,15 @@ if viewCount > 0 :
         node = febody.CreateNode(754)
         node.ChangeID(755)
     
    -# Close the Pages
    +# Get all created pages.
    +# This retrieves all pages created in the application.
     pages = applicationHandler.GetPages()
     for page in pages :
         page.Close()
     
     # Close the Document
     applicationHandler.CloseDocument(result_file_path)
    -
    +``` ## Methods @@ -73,13 +88,13 @@ applicationHandler.CloseDocument(result_file_path) Changes the ID of a node belonging to an FEBody. -```python +```csharp void ChangeID(int id) ``` #### Parameters -`id` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`id` int The new unique ID for the node. If the specified ID does not exist, the change will not be applied. @@ -91,4 +106,3 @@ For an example that includes this property, see the [Interface IOperationsNodeVi This method changes the ID of a node within an FEBody. The provided ID must be unique and must correspond to an existing node; otherwise, the ID will not be changed. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsPointDisplayViewModel.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsPointDisplayViewModel.md index 893e652bff..4191ac8ae5 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsPointDisplayViewModel.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsPointDisplayViewModel.md @@ -1,11 +1,12 @@ -# Interface IOperationsPointDisplayViewModel +# Interface IOperationsPointDisplayViewModel + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll /// Interface representing information for the point display view model. -```python +```csharp public interface IOperationsPointDisplayViewModel : IOperationsVectorDisplayBaseViewModel ``` @@ -17,13 +18,16 @@ public interface IOperationsPointDisplayViewModel : IOperationsVectorDisplayBase For an example that includes information about interfaces, see this example. To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
    # IOperationsPointDisplayViewModel.py
    +```python
    +# IOperationsPointDisplayViewModel.py
     import sys
     
    +# Get the current file's path and set the path for external modules.
     current_dir = __file__.rsplit('\\', 1)[0]
     external_modules_path = current_dir + '\\..\\..\\Modules'
     sys.path.append(external_modules_path)
     
    +# Import necessary modules
     from OperationAPI import *
     
     # Start the headless application interface
    @@ -37,9 +41,12 @@ filepaths = List[str]()
     filepaths.Add(result_file_path)
     
     # Open about result files
    +# This will open the result file in the application.
    +# When the result is first opened, a Page is created and an Animation View is created on that Page.
     applicationHandler.AddDocument(filepaths)
     
    -# Find Page
    +# Get all created pages.
    +# This retrieves all pages created in the application.
     pages = applicationHandler.GetPages()
     
     findViews = list()
    @@ -52,21 +59,29 @@ for page in pages :
     
     viewCount = len(findViews)
     if viewCount > 0 :
    +    # result_file_path - Get the document from the result file path.
         document = applicationHandler.GetDocument(result_file_path)
    +
    +    # This retrieves the analysis result from the document.
    +    # Types of Analysis Results
    +    # - Dynamics
    +    # - Eigenvalue
    +    # - Statics
         analysis = document.GetAnalysisResultViewModel(AnalysisResultType.Dynamics)
     
         # Create Vector Display
         vector = analysis.CreateVectorDisplay("TJ_01", "Base Force")
         # vector.SymbolSize = 10
     
    -# Close the Pages
    +# Get all created pages.
    +# This retrieves all pages created in the application.
     pages = applicationHandler.GetPages()
     for page in pages :
         page.Close()
     
     # Close the Document
     applicationHandler.CloseDocument(result_file_path)
    -
    +``` ## Properties @@ -74,13 +89,13 @@ applicationHandler.CloseDocument(result_file_path) Gets or sets the size of the symbols in the vector display. -```python +```csharp int SymbolSize { get; set; } ``` #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int #### Examples @@ -90,4 +105,3 @@ For an example that includes this property, see the [Interface IOperationsPointD Use this property to specify or retrieve the size of the symbols in the vector display. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsPythonExpressionViewModel.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsPythonExpressionViewModel.md index 2c03d3f4e6..c37084faec 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsPythonExpressionViewModel.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsPythonExpressionViewModel.md @@ -1,11 +1,12 @@ -# Interface IOperationsPythonExpressionViewModel +# Interface IOperationsPythonExpressionViewModel + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll /// Interface representing information for the python expression view model. -```python +```csharp public interface IOperationsPythonExpressionViewModel ``` @@ -13,13 +14,16 @@ public interface IOperationsPythonExpressionViewModel For an example that includes information about interfaces, see this example. To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
    # IOperationsPythonExpressionViewModel.py
    +```python
    +# IOperationsPythonExpressionViewModel.py
     import sys
     
    +# Get the current file's path and set the path for external modules.
     current_dir = __file__.rsplit('\\', 1)[0]
     external_modules_path = current_dir + '\\..\\..\\Modules'
     sys.path.append(external_modules_path)
     
    +# Import necessary modules
     from OperationAPI import *
     
     # Start the headless application interface
    @@ -33,9 +37,12 @@ filepaths = List[str]()
     filepaths.Add(result_file_path)
     
     # Open about result files
    +# This will open the result file in the application.
    +# When the result is first opened, a Page is created and an Animation View is created on that Page.
     applicationHandler.AddDocument(filepaths)
     
    -# Find Page
    +# Get all created pages.
    +# This retrieves all pages created in the application.
     pages = applicationHandler.GetPages()
     
     findViews = list()
    @@ -48,20 +55,28 @@ for page in pages :
     
     viewCount = len(findViews)
     if viewCount > 0 :
    +    # result_file_path - Get the document from the result file path.
         document = applicationHandler.GetDocument(result_file_path)
    +
    +    # This retrieves the analysis result from the document.
    +    # Types of Analysis Results
    +    # - Dynamics
    +    # - Eigenvalue
    +    # - Statics
         analysis = document.GetAnalysisResultViewModel(AnalysisResultType.Dynamics)
     
         expression = analysis.CreateExpression("expression")
         expression.Expression = "DM(\"Crank/CM\")"
     
    -# Close the Pages
    +# Get all created pages.
    +# This retrieves all pages created in the application.
     pages = applicationHandler.GetPages()
     for page in pages :
         page.Close()
     
     # Close the Document
     applicationHandler.CloseDocument(result_file_path)
    -
    +``` ## Properties @@ -69,13 +84,13 @@ applicationHandler.CloseDocument(result_file_path) Gets or sets the formula in the expression properties. -```python +```csharp string Expression { get; set; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string #### Examples @@ -90,13 +105,13 @@ The formula should result in a single real value. Gets or sets the full name of the expression. -```python +```csharp string FullName { get; set; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string #### Examples @@ -106,4 +121,3 @@ For an example that includes this property, see the [Interface IOperationsPython Use this property to specify or retrieve the full name of the expression. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsSignalProcessingLineDataSeriesViewModel.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsSignalProcessingLineDataSeriesViewModel.md index 12b69180a7..36b2f8934f 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsSignalProcessingLineDataSeriesViewModel.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsSignalProcessingLineDataSeriesViewModel.md @@ -1,11 +1,12 @@ -# Interface IOperationsSignalProcessingLineDataSeriesViewModel +# Interface IOperationsSignalProcessingLineDataSeriesViewModel + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll Represents a view model for the signalprocessing line data series. -```python +```csharp public interface IOperationsSignalProcessingLineDataSeriesViewModel ``` @@ -13,13 +14,16 @@ public interface IOperationsSignalProcessingLineDataSeriesViewModel For an example that includes information about interfaces, see this example. To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
    # IOperationsSignalProcessingLineDataSeriesViewModel.py
    +```python
    +# IOperationsSignalProcessingLineDataSeriesViewModel.py
     import sys
     
    +# Get the current file's path and set the path for external modules.
     current_dir = __file__.rsplit('\\', 1)[0]
     external_modules_path = current_dir + '\\..\\..\\Modules'
     sys.path.append(external_modules_path)
     
    +# Import necessary modules
     from OperationAPI import *
     
     # Start the headless application interface
    @@ -33,19 +37,28 @@ filepaths = List[str]()
     filepaths.Add(result_file_path)
     
     # Open about result files
    +# This will open the result file in the application.
    +# When the result is first opened, a Page is created and an Animation View is created on that Page.
     applicationHandler.AddDocument(filepaths)
     
    -# Get Page
    +# Get Active Page
    +# This retrieves the currently active page in the application.
     page = applicationHandler.GetActivePage()
     
    -# Create PlotView
    +# Creating a Chart
    +# Create a new Chart View on the page
    +# This will create a new chart view with the specified name.
     chartView = page.CreateChart("Chart")
     
     # Set array about combination of characteristic and component
     curvePaths = List[str]()
     curvePaths.Add(r'Displacement/Magnitude')
     
    -# Set a Curve Parameter
    +# Create a PlotParameters object to specify the parameters for the plot.
    +# Set the Entity to Plot.
    +# The Target is the name of the target for which you want to retrieve the curves.
    +# Set the paths for the curves you want to retrieve.
    +# This is where you specify the characteristics and components you want to plot.
     parameters = PlotParameters()
     parameters.Paths = curvePaths
     parameters.Target = "Crank"
    @@ -101,7 +114,7 @@ page.Close()
     
     # Close the Document
     applicationHandler.CloseDocument(result_file_path)
    -
    +``` ## Properties @@ -109,13 +122,13 @@ applicationHandler.CloseDocument(result_file_path) Gets or sets the value of the cut-off frequency. -```python +```csharp double CutOffFrequency { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Examples @@ -129,7 +142,7 @@ Use this property to specify or retrieve the value of the cut-off frequency. Gets or sets the filtering type of signal processing. -```python +```csharp FilteringType FilteringType { get; set; } ``` @@ -151,7 +164,7 @@ The supported types are: Gets or sets the type of frequency axis. -```python +```csharp FrequencyAxisType FrequencyAxisType { get; set; } ``` @@ -173,13 +186,13 @@ The supported types are: Gets or sets the value of the high cut-off frequency. -```python +```csharp double HighCutOffFrequency { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Examples @@ -193,13 +206,13 @@ Use this property to specify or retrieve the value of the high cut-off frequency Gets or sets the value of the low cut-off frequency. -```python +```csharp double LowCutOffFrequency { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Examples @@ -213,13 +226,13 @@ Use this property to specify or retrieve the value of the low cut-off frequency. Gets or sets the order of the filter, which represents the points of the window. -```python +```csharp int Order { get; set; } ``` #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int #### Examples @@ -233,13 +246,13 @@ Use this property to specify or retrieve the order of the filter, which determin Gets or sets the points of the window. -```python +```csharp int PointsOfWindow { get; set; } ``` #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int #### Examples @@ -253,13 +266,13 @@ Use this property to specify or retrieve the points of the window. Gets or sets the value of the polynomial order. -```python +```csharp int PolynomialOrder { get; set; } ``` #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int #### Examples @@ -273,7 +286,7 @@ Use this property to specify or retrieve the value of the polynomial order. Gets or sets the type of signal processing. -```python +```csharp SignalProcessingType SignalProcessingType { get; set; } ``` @@ -295,7 +308,7 @@ The supported types are: Gets or sets the type of smoothing. -```python +```csharp SmoothingType SmoothingType { get; set; } ``` @@ -317,7 +330,7 @@ The supported types are: Gets or sets the type of weighting. -```python +```csharp WeightingType WeightingType { get; set; } ``` @@ -335,4 +348,3 @@ Use this property to specify or retrieve the type of weighting. The supported types are:
    - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsSimpleMathLineDataSeriesViewModel.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsSimpleMathLineDataSeriesViewModel.md index d7a198b08e..b08bf260f4 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsSimpleMathLineDataSeriesViewModel.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsSimpleMathLineDataSeriesViewModel.md @@ -1,11 +1,12 @@ -# Interface IOperationsSimpleMathLineDataSeriesViewModel +# Interface IOperationsSimpleMathLineDataSeriesViewModel + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll Represents a view model for the simplemath line data series. -```python +```csharp public interface IOperationsSimpleMathLineDataSeriesViewModel ``` @@ -13,13 +14,16 @@ public interface IOperationsSimpleMathLineDataSeriesViewModel For an example that includes information about interfaces, see this example. To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
    # IOperationsSimpleMathLineDataSeriesViewModel.py
    +```python
    +# IOperationsSimpleMathLineDataSeriesViewModel.py
     import sys
     
    +# Get the current file's path and set the path for external modules.
     current_dir = __file__.rsplit('\\', 1)[0]
     external_modules_path = current_dir + '\\..\\..\\Modules'
     sys.path.append(external_modules_path)
     
    +# Import necessary modules
     from OperationAPI import *
     
     # Start the headless application interface
    @@ -33,12 +37,17 @@ filepaths = List[str]()
     filepaths.Add(result_file_path)
     
     # Open about result files
    +# This will open the result file in the application.
    +# When the result is first opened, a Page is created and an Animation View is created on that Page.
     applicationHandler.AddDocument(filepaths)
     
    -# Get Page
    +# Get Active Page
    +# This retrieves the currently active page in the application.
     page = applicationHandler.GetActivePage()
     
    -# Create PlotView
    +# Creating a Chart
    +# Create a new Chart View on the page
    +# This will create a new chart view with the specified name.
     chartView = page.CreateChart("Chart")
     
     # Set array about combination of characteristic and component
    @@ -46,7 +55,11 @@ curvePaths = List[str]()
     curvePaths.Add(r'Displacement/Magnitude')
     curvePaths.Add(r'Displacement/Z')
     
    -# Set a Curve Parameter
    +# Create a PlotParameters object to specify the parameters for the plot.
    +# Set the Entity to Plot.
    +# The Target is the name of the target for which you want to retrieve the curves.
    +# Set the paths for the curves you want to retrieve.
    +# This is where you specify the characteristics and components you want to plot.
     parameters = PlotParameters()
     parameters.Paths = curvePaths
     parameters.Target = "Crank"
    @@ -72,7 +85,7 @@ page.Close()
     
     # Close the Document
     applicationHandler.CloseDocument(result_file_path)
    -
    +``` ## Properties @@ -80,7 +93,7 @@ applicationHandler.CloseDocument(result_file_path) Gets or sets the type of simple math operation. -```python +```csharp SimpleMathType MathType { get; set; } ``` @@ -102,13 +115,13 @@ The supported types are: Gets or sets the number of data points for interpolation. -```python +```csharp int Points { get; set; } ``` #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int #### Examples @@ -118,4 +131,3 @@ For an example that includes this property, see the [Interface IOperationsSimple Use this property to specify or retrieve the number of data points to be used for interpolation. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsTransformLineDataSeriesViewModel.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsTransformLineDataSeriesViewModel.md index 407bda718b..d51e54cc2f 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsTransformLineDataSeriesViewModel.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsTransformLineDataSeriesViewModel.md @@ -1,11 +1,12 @@ -# Interface IOperationsTransformLineDataSeriesViewModel +# Interface IOperationsTransformLineDataSeriesViewModel + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll Represents a view model for the transform line data series. -```python +```csharp public interface IOperationsTransformLineDataSeriesViewModel ``` @@ -13,13 +14,16 @@ public interface IOperationsTransformLineDataSeriesViewModel For an example that includes information about interfaces, see this example. To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
    # IOperationsTransformLineDataSeriesViewModel.py
    +```python
    +# IOperationsTransformLineDataSeriesViewModel.py
     import sys
     
    +# Get the current file's path and set the path for external modules.
     current_dir = __file__.rsplit('\\', 1)[0]
     external_modules_path = current_dir + '\\..\\..\\Modules'
     sys.path.append(external_modules_path)
     
    +# Import necessary modules
     from OperationAPI import *
     
     # Start the headless application interface
    @@ -33,12 +37,17 @@ filepaths = List[str]()
     filepaths.Add(result_file_path)
     
     # Open about result files
    +# This will open the result file in the application.
    +# When the result is first opened, a Page is created and an Animation View is created on that Page.
     applicationHandler.AddDocument(filepaths)
     
    -# Get Page
    +# Get Active Page
    +# This retrieves the currently active page in the application.
     page = applicationHandler.GetActivePage()
     
    -# Create PlotView
    +# Creating a Chart
    +# Create a new Chart View on the page
    +# This will create a new chart view with the specified name.
     chartView = page.CreateChart("Chart")
     
     # Set array about combination of characteristic and component
    @@ -46,7 +55,11 @@ curvePaths = List[str]()
     curvePaths.Add(r'Displacement/Magnitude')
     curvePaths.Add(r'Displacement/Z')
     
    -# Set a Curve Parameter
    +# Create a PlotParameters object to specify the parameters for the plot.
    +# Set the Entity to Plot.
    +# The Target is the name of the target for which you want to retrieve the curves.
    +# Set the paths for the curves you want to retrieve.
    +# This is where you specify the characteristics and components you want to plot.
     parameters = PlotParameters()
     parameters.Paths = curvePaths
     parameters.Target = "Crank"
    @@ -96,7 +109,7 @@ page.Close()
     
     # Close the Document
     applicationHandler.CloseDocument(result_file_path)
    -
    +``` ## Properties @@ -104,7 +117,7 @@ applicationHandler.CloseDocument(result_file_path) Gets or sets the type of alignment. -```python +```csharp AlignType Align { get; set; } ``` @@ -126,13 +139,13 @@ The supported types are: Gets or sets the base of the logarithm. -```python +```csharp string Base { get; set; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string #### Examples @@ -153,13 +166,13 @@ Supported values are: Gets or sets the coefficient of the logarithm. -```python +```csharp double Coefficient { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Examples @@ -173,13 +186,13 @@ Use this property to specify or retrieve the coefficient value for the logarithm Gets or sets a value indicating whether the decibel scale is used. -```python +```csharp bool IsDecibel { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples @@ -193,13 +206,13 @@ Use this property to specify or retrieve whether the decibel scale is used. Gets or sets the value for the X offset. -```python +```csharp double OffsetX { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Examples @@ -213,13 +226,13 @@ Use this property to specify or retrieve the value for the X offset. Gets or sets the value for the Y offset. -```python +```csharp double OffsetY { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Examples @@ -233,13 +246,13 @@ Use this property to specify or retrieve the value for the Y offset. Gets or sets the value for the X scale. -```python +```csharp double ScaleX { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Examples @@ -253,13 +266,13 @@ Use this property to specify or retrieve the value for the X scale. Gets or sets the value for the Y scale. -```python +```csharp double ScaleY { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Examples @@ -273,13 +286,13 @@ Use this property to specify or retrieve the value for the Y scale. Gets or sets the type of transform. -```python +```csharp string SelectedTransformType { get; set; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string #### Examples @@ -295,7 +308,7 @@ The supported types are: Gets or sets the type of sign. -```python +```csharp SignType Sign { get; set; } ``` @@ -313,4 +326,3 @@ Use this property to specify or retrieve the type of sign. The supported types are:
    - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsVectorDisplayBaseViewModel.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsVectorDisplayBaseViewModel.md index 87b93b915b..ecc7ceeff6 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsVectorDisplayBaseViewModel.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsVectorDisplayBaseViewModel.md @@ -1,11 +1,12 @@ -# Interface IOperationsVectorDisplayBaseViewModel +# Interface IOperationsVectorDisplayBaseViewModel + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll Interface representing information for the vector display view model. -```python +```csharp public interface IOperationsVectorDisplayBaseViewModel ``` @@ -13,13 +14,16 @@ public interface IOperationsVectorDisplayBaseViewModel For an example that includes information about interfaces, see this example. To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
    # IOperationsVectorDisplayBaseViewModel.py
    +```python
    +# IOperationsVectorDisplayBaseViewModel.py
     import sys
     
    +# Get the current file's path and set the path for external modules.
     current_dir = __file__.rsplit('\\', 1)[0]
     external_modules_path = current_dir + '\\..\\..\\Modules'
     sys.path.append(external_modules_path)
     
    +# Import necessary modules
     from OperationAPI import *
     
     # Start the headless application interface
    @@ -33,9 +37,12 @@ filepaths = List[str]()
     filepaths.Add(result_file_path)
     
     # Open about result files
    +# This will open the result file in the application.
    +# When the result is first opened, a Page is created and an Animation View is created on that Page.
     applicationHandler.AddDocument(filepaths)
     
    -# Find Page
    +# Get all created pages.
    +# This retrieves all pages created in the application.
     pages = applicationHandler.GetPages()
     
     findViews = list()
    @@ -48,7 +55,14 @@ for page in pages :
     
     viewCount = len(findViews)
     if viewCount > 0 :
    +    # result_file_path - Get the document from the result file path.
         document = applicationHandler.GetDocument(result_file_path)
    +
    +    # This retrieves the analysis result from the document.
    +    # Types of Analysis Results
    +    # - Dynamics
    +    # - Eigenvalue
    +    # - Statics
         analysis = document.GetAnalysisResultViewModel(AnalysisResultType.Dynamics)
     
         # Create Vector Display
    @@ -60,14 +74,15 @@ if viewCount > 0 :
         vector.IsVisible = True
         vector.SetCharacteristic("Base Torque")
     
    -# Close the Pages
    +# Get all created pages.
    +# This retrieves all pages created in the application.
     pages = applicationHandler.GetPages()
     for page in pages :
         page.Close()
     
     # Close the Document
     applicationHandler.CloseDocument(result_file_path)
    -
    +``` ## Properties @@ -75,13 +90,13 @@ applicationHandler.CloseDocument(result_file_path) Gets or sets the full name of the vector display. -```python +```csharp string FullName { get; set; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string #### Examples @@ -95,13 +110,13 @@ Use this property to specify or retrieve the full name of the vector display. Gets or sets a value indicating whether to display or hide the object name, and force and position vectors in the animation view. -```python +```csharp bool IsLabel { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples @@ -115,18 +130,19 @@ Use this property to specify or retrieve the visibility of the object name, and Gets or sets a value indicating whether the vector display is visible in the animation view. -```python +```csharp bool IsVisible { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples The following example demonstrates how to use the IsVisible property: -
    For an example that includes this property, see the [Interface IOperationsVectorDisplayBaseViewModel](VM.Operations.Post.Interfaces.IOperationsVectorDisplayBaseViewModel.md).
    +```python +For an example that includes this property, see the [Interface IOperationsVectorDisplayBaseViewModel](VM.Operations.Post.Interfaces.IOperationsVectorDisplayBaseViewModel.md).``` #### Remarks @@ -136,18 +152,19 @@ Use this property to specify or retrieve the visibility of the vector display in Gets or sets the background color of the label in the vector display. -```python +```csharp Color LabelBackgroundColor { get; set; } ``` #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.windows.media.color) + Color #### Examples The following example demonstrates how to use the LabelBackGroundColor property: -
    For an example that includes this property, see the [Interface IOperationsVectorDisplayBaseViewModel](VM.Operations.Post.Interfaces.IOperationsVectorDisplayBaseViewModel.md).
    +```python +For an example that includes this property, see the [Interface IOperationsVectorDisplayBaseViewModel](VM.Operations.Post.Interfaces.IOperationsVectorDisplayBaseViewModel.md).``` #### Remarks @@ -157,18 +174,19 @@ Use this property to specify or retrieve the background color of the label in th Gets or sets the text color of the label in the vector display. -```python +```csharp Color LabelTextColor { get; set; } ``` #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.windows.media.color) + Color #### Examples The following example demonstrates how to use the LabelTextColor property: -
    For an example that includes this property, see the [Interface IOperationsVectorDisplayBaseViewModel](VM.Operations.Post.Interfaces.IOperationsVectorDisplayBaseViewModel.md).
    +```python +For an example that includes this property, see the [Interface IOperationsVectorDisplayBaseViewModel](VM.Operations.Post.Interfaces.IOperationsVectorDisplayBaseViewModel.md).``` #### Remarks @@ -180,23 +198,23 @@ Use this property to specify or retrieve the text color of the label in the vect Sets the characteristic for the vector display. -```python +```csharp void SetCharacteristic(string characteristic) ``` #### Parameters -`characteristic` [string](https://learn.microsoft.com/dotnet/api/system.string) +`characteristic` string The characteristic to be set. #### Examples The following example demonstrates how to use the SetCharacteristic method: -
    For an example that includes this property, see the [Interface IOperationsVectorDisplayBaseViewModel](VM.Operations.Post.Interfaces.IOperationsVectorDisplayBaseViewModel.md).
    +```python +For an example that includes this property, see the [Interface IOperationsVectorDisplayBaseViewModel](VM.Operations.Post.Interfaces.IOperationsVectorDisplayBaseViewModel.md).``` #### Remarks This method sets or changes the characteristic for the vector display. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsVectorDisplayViewModel.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsVectorDisplayViewModel.md index 2d214c2dd4..9e73e33a40 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsVectorDisplayViewModel.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IOperationsVectorDisplayViewModel.md @@ -1,11 +1,12 @@ -# Interface IOperationsVectorDisplayViewModel +# Interface IOperationsVectorDisplayViewModel + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll Interface representing information for the vector display view model. -```python +```csharp public interface IOperationsVectorDisplayViewModel : IOperationsVectorDisplayBaseViewModel ``` @@ -17,13 +18,16 @@ public interface IOperationsVectorDisplayViewModel : IOperationsVectorDisplayBas For an example that includes information about interfaces, see this example. To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
    # IOperationsVectorDisplayViewModel.py
    +```python
    +# IOperationsVectorDisplayViewModel.py
     import sys
     
    +# Get the current file's path and set the path for external modules.
     current_dir = __file__.rsplit('\\', 1)[0]
     external_modules_path = current_dir + '\\..\\..\\Modules'
     sys.path.append(external_modules_path)
     
    +# Import necessary modules
     from OperationAPI import *
     
     # Start the headless application interface
    @@ -37,9 +41,12 @@ filepaths = List[str]()
     filepaths.Add(result_file_path)
     
     # Open about result files
    +# This will open the result file in the application.
    +# When the result is first opened, a Page is created and an Animation View is created on that Page.
     applicationHandler.AddDocument(filepaths)
     
    -# Find Page
    +# Get all created pages.
    +# This retrieves all pages created in the application.
     pages = applicationHandler.GetPages()
     
     findViews = list()
    @@ -52,7 +59,14 @@ for page in pages :
     
     viewCount = len(findViews)
     if viewCount > 0 :
    +    # result_file_path - Get the document from the result file path.
         document = applicationHandler.GetDocument(result_file_path)
    +
    +    # This retrieves the analysis result from the document.
    +    # Types of Analysis Results
    +    # - Dynamics
    +    # - Eigenvalue
    +    # - Statics
         analysis = document.GetAnalysisResultViewModel(AnalysisResultType.Dynamics)
     
         # Create Vector Display
    @@ -61,14 +75,15 @@ if viewCount > 0 :
         vector.IsLog = True
         vector.Scale = 1.5
     
    -# Close the Pages
    +# Get all created pages.
    +# This retrieves all pages created in the application.
     pages = applicationHandler.GetPages()
     for page in pages :
         page.Close()
     
     # Close the Document
     applicationHandler.CloseDocument(result_file_path)
    -
    +``` ## Properties @@ -76,13 +91,13 @@ applicationHandler.CloseDocument(result_file_path) Gets or sets the color of the vector display. -```python +```csharp Color Color { get; set; } ``` #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.windows.media.color) + Color #### Examples @@ -96,13 +111,13 @@ Use this property to specify or retrieve the color of the vector display. Gets or sets a value indicating whether the log scale option is enabled. -```python +```csharp bool IsLog { get; set; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Examples @@ -116,13 +131,13 @@ Use this property to specify or retrieve whether the log scale option is enabled Gets or sets the scale of the vector display. -```python +```csharp double Scale { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Examples @@ -132,4 +147,3 @@ For an example that includes this property, see the [Interface IOperationsVector Use this property to specify or retrieve the scale of the vector display. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IPage.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IPage.md index b27fae0316..f70a17bc6d 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IPage.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IPage.md @@ -1,24 +1,28 @@ -# Interface IPage +# Interface IPage + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll The IPage interface manages views within a page. It provides functionalities for creating, finding, and closing views. -```python +```csharp public interface IPage ``` ## Examples To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
    # IPage.py
    +```python
    +# IPage.py
     import sys
     
    +# Get the path of the current file and append the external modules path
     current_dir = __file__.rsplit('\\', 1)[0]
     external_modules_path = current_dir + '\\..\\..\\Modules'
     sys.path.append(external_modules_path)
     
    +# Import necessary modules
     from OperationAPI import *
     
     # Start the headless application interface
    @@ -32,22 +36,39 @@ filepaths = List[str]()
     filepaths.Add(result_file_path)
     
     # Open about result files
    +# This will open the result file in the application.
    +# When the result is first opened, a Page is created and an Animation View is created on that Page.
     applicationHandler.AddDocument(filepaths)
     
    -# Get Page
    +# Get Active Page
    +# This retrieves the currently active page in the application.
     page = applicationHandler.GetActivePage()
     
     page.FullName = "Page1"
     
    +# Add a new page
    +# This will create a new page and activate it.
    +# You can specify the page name when the page is created.
     page2 = applicationHandler.AddPage("Page2")
     page.Activate()
     
    -# Create View
    +# result_file_path - Get the document from the result file path.
     document = applicationHandler.GetDocument(result_file_path)
    +
    +# This retrieves the analysis result from the document.
    +# Types of Analysis Results
    +# - Dynamics
    +# - Eigenvalue
    +# - Statics
     dynamic_analysis = document.GetAnalysisResultViewModel(AnalysisResultType.Dynamics)
     
    +# Create an Animation View on the active page
    +# This will create an animation view based on the dynamic analysis.
     animation = page.CreateAnimation(dynamic_analysis, "ResultAnimation")
     
    +# Creating a Chart
    +# Create a new Chart View on the page
    +# This will create a new chart view with the specified name.
     chart = page.CreateChart("Chart")
     
     page2.Activate()
    @@ -56,17 +77,20 @@ page2.Close()
     page.CloseView(animation)
     page.CloseView(chart.ID)
     
    +# Get Active View
    +# This retrieves the currently active view in the page.
     activeView = page.GetActiveView()
     page.CloseView(activeView)
     
    -# Close the Pages
    +# Get all created pages.
    +# This retrieves all pages created in the application.
     pages = applicationHandler.GetPages()
     for page in pages :
         page.Close()
     
     # Close the Document
     applicationHandler.CloseDocument(result_file_path)
    -
    +``` ## Properties @@ -74,13 +98,13 @@ applicationHandler.CloseDocument(result_file_path) Gets or sets the name of the page. -```python +```csharp string FullName { get; set; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string #### Examples @@ -96,13 +120,13 @@ This property is typically used in scenarios where the page's name is needed for Gets the unique identifier of the page. -```python +```csharp Guid ID { get; } ``` #### Property Value - [Guid](https://learn.microsoft.com/dotnet/api/system.guid) + Guid #### Examples @@ -120,7 +144,7 @@ This unique identifier is typically used in scenarios where a distinct and consi Activates the page. -```python +```csharp void Activate() ``` @@ -138,7 +162,7 @@ Only one page can be active at any given time. Closes the current page. -```python +```csharp void Close() ``` @@ -155,7 +179,7 @@ When this method is called, the page will be removed from view and any resources Closes a view within the current page. -```python +```csharp void CloseView(IView view) ``` @@ -179,13 +203,13 @@ The view parameter represents either an Animation View or a Chart View that is t Closes a view within the current page. -```python +```csharp void CloseView(int id) ``` #### Parameters -`id` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`id` int The unique identifier of the view to be closed. This can represent an Animation View or a Chart View. @@ -203,13 +227,13 @@ The viewID parameter represents the unique identifier of either an Animation Vie Closes a view within the current page. -```python +```csharp void CloseView(string name) ``` #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the view to be closed. This can represent an Animation View or a Chart View. @@ -228,7 +252,7 @@ The name parameter represents the name of either an Animation View or a Chart Vi Creates an animation view to display the analyzed results on the current page. The CreateAnimation method is used to create an animation view that displays the analyzed results on the current page. -```python +```csharp IOperationsAnimation CreateAnimation(IAnalysisResultViewModel analysis, string name = null) ``` @@ -238,7 +262,7 @@ IOperationsAnimation CreateAnimation(IAnalysisResultViewModel analysis, string n Represents one of the multiple analysis results contained within the analyzed data. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The initial name for the animation view. If not specified, a default name will be used. @@ -262,13 +286,13 @@ The analysis parameter specifies the particular result to be visualized, while t Creates a chart view to draw a 2D curve. The CreateChart method is used to create a chart view for drawing 2D curves. -```python +```csharp IOperationsLine2DViewModelBase CreateChart(string name = null) ``` #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The initial name for the chart view. If not specified, a default name will be used. @@ -291,7 +315,7 @@ The optional name parameter allows for naming the chart view during its creation Retrieves the currently active view within the page. -```python +```csharp IView GetActiveView() ``` @@ -315,13 +339,13 @@ If no view is currently active, the method returns null. Finds and returns a view within the current page. The GetView method is used to retrieve a specific view within the page by its ID. -```python +```csharp IView GetView(int id) ``` #### Parameters -`id` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`id` int The unique identifier of the view to be retrieved. @@ -345,13 +369,13 @@ If the view with the specified ID is not found, the method returns null. Finds and returns a view within the current page. The GetView method is used to retrieve a specific view within the page by its name. -```python +```csharp IView GetView(string name) ``` #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the view to be retrieved. @@ -374,7 +398,7 @@ If the view with the specified name is not found, the method returns null. Retrieves all views within the current page. -```python +```csharp IView[] GetViews() ``` @@ -392,4 +416,3 @@ For an example that includes this property, see the [Interface IPage](VM.Operati The method is used to locate and return all views within the current page. If no views are present, the method returns an empty array. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IView.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IView.md index 8a38298041..6142d10254 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IView.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IView.md @@ -1,28 +1,28 @@ -# Interface IView +# Interface IView + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll Represents a view in the application, providing functionalities to manage and interact with views. -```python -public interface IView : IOperationsBase +```csharp +public interface IView ``` -#### Implements - -[IOperationsBase](VM.Operations.Post.Interfaces.IOperationsBase.md) - ## Examples To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
    # IView.py
    +```python
    +# IView.py
     import sys
     
    +# Get the current file's path and set the path for external modules.
     current_dir = __file__.rsplit('\\', 1)[0]
     external_modules_path = current_dir + '\\..\\..\\Modules'
     sys.path.append(external_modules_path)
     
    +# Import necessary modules
     from OperationAPI import *
     
     # Start the headless application interface
    @@ -36,22 +36,39 @@ filepaths = List[str]()
     filepaths.Add(result_file_path)
     
     # Open about result files
    +# This will open the result file in the application.
    +# When the result is first opened, a Page is created and an Animation View is created on that Page.
     applicationHandler.AddDocument(filepaths)
     
    -# Get Page
    +# Get Active Page
    +# This retrieves the currently active page in the application.
     page = applicationHandler.GetActivePage()
     
     page.FullName = "Page1"
     
    +# Add a new page
    +# This will create a new page and activate it.
    +# You can specify the page name when the page is created.
     page2 = applicationHandler.AddPage("Page2")
     page.Activate()
     
    -# Create View
    +# result_file_path - Get the document from the result file path.
     document = applicationHandler.GetDocument(result_file_path)
    +
    +# This retrieves the analysis result from the document.
    +# Types of Analysis Results
    +# - Dynamics
    +# - Eigenvalue
    +# - Statics
     dynamic_analysis = document.GetAnalysisResultViewModel(AnalysisResultType.Dynamics)
     
    +# Create an Animation View on the active page
    +# This will create an animation view based on the dynamic analysis.
     animation = page.CreateAnimation(dynamic_analysis, "ResultAnimation")
     
    +# Creating a Chart
    +# Create a new Chart View on the page
    +# This will create a new chart view with the specified name.
     chart = page.CreateChart("Chart")
     chart.FullName = "Chart1"
     animation.DockTo(DockLayout.Top, chart)
    @@ -60,17 +77,21 @@ page2.Activate()
     chart.GroupName = "Page2"
     
     page.Activate()
    +
    +# Get Active View
    +# This retrieves the currently active view in the page.
     activeView = page.GetActiveView()
     page.CloseView(activeView)
     
    -# Close the Pages
    +# Get all created pages.
    +# This retrieves all pages created in the application.
     pages = applicationHandler.GetPages()
     for page in pages :
         page.Close()
     
     # Close the Document
     applicationHandler.CloseDocument(result_file_path)
    -
    +``` ## Properties @@ -78,13 +99,13 @@ applicationHandler.CloseDocument(result_file_path) Gets or sets the name of the view. -```python +```csharp string FullName { get; set; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string #### Examples @@ -100,13 +121,13 @@ This property is typically used in scenarios where the view's name is needed for Gets the ID of the page that the current view belongs to. -```python +```csharp Guid GroupID { get; } ``` #### Property Value - [Guid](https://learn.microsoft.com/dotnet/api/system.guid) + Guid #### Examples @@ -121,13 +142,13 @@ This property is read-only and is set when the view is associated with a page. I Gets or sets the name of the page that the current view belongs to. -```python +```csharp string GroupName { get; set; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string #### Examples @@ -142,13 +163,13 @@ When accessed, it retrieves the name of the parent page. When set, it updates th Gets the unique identifier of the view. -```python +```csharp int ID { get; } ``` #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int #### Examples @@ -166,7 +187,7 @@ Gets the type of the view, indicating whether it is an Animation or Chart type. Supported view types include:
    • Animation
    • Chart
    -```python +```csharp ViewType ViewType { get; } ``` @@ -192,7 +213,7 @@ The available options are: Activates the view. -```python +```csharp void Activate() ``` @@ -210,7 +231,7 @@ There can be only one active view at a time. Moves the view to a specified position relative to another view. -```python +```csharp void DockTo(DockLayout dockLayout, IView target) ``` @@ -240,13 +261,13 @@ where the current view will be docked in relation to the target view. Exports the image to the specified file path in the specified format. -```python +```csharp void ExportImage(string filepath, ImageFormat format, double? width = null, double? height = null) ``` #### Parameters -`filepath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`filepath` string The path where the image file will be saved. @@ -256,11 +277,11 @@ The format in which the image will be saved. Supported formats are Png, Jpeg, an The available options are:
    -`width` [double](https://learn.microsoft.com/dotnet/api/system.double)? +`width` double? The optional width for the exported image. If not specified, the original width is used. -`height` [double](https://learn.microsoft.com/dotnet/api/system.double)? +`height` double? The optional height for the exported image. If not specified, the original height is used. @@ -274,4 +295,3 @@ This method allows you to export an image to a desired file path in a specified Png, Jpeg, and Bmp. You can also specify the desired dimensions for the exported image. If width or height is not provided, the original dimensions of the image will be used. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IViewSpec.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IViewSpec.md index f44e704366..668598bfa6 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IViewSpec.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.IViewSpec.md @@ -1,24 +1,28 @@ -# Interface IViewSpec +# Interface IViewSpec + Namespace: [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) Assembly: VM.Operations.Post.dll Represents a specification for a view in a 3D space, providing properties to control the camera's position, target, and orientation. -```python +```csharp public interface IViewSpec ``` ## Examples To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
    # IViewSpec.py
    +```python
    +# IViewSpec.py
     import sys
     
    +# Get the current file's path and set the path for external modules.
     current_dir = __file__.rsplit('\\', 1)[0]
     external_modules_path = current_dir + '\\..\\..\\Modules'
     sys.path.append(external_modules_path)
     
    +# Import necessary modules
     from OperationAPI import *
     
     # Start the headless application interface
    @@ -32,9 +36,12 @@ filepaths = List[str]()
     filepaths.Add(result_file_path)
     
     # Open about result files
    +# This will open the result file in the application.
    +# When the result is first opened, a Page is created and an Animation View is created on that Page.
     applicationHandler.AddDocument(filepaths)
     
    -# Find Page
    +# Get all created pages.
    +# This retrieves all pages created in the application.
     pages = applicationHandler.GetPages()
     
     findViews = list()
    @@ -55,14 +62,15 @@ if viewCount > 0 :
         viewSpec.UpVector = Vector(1, 0, 0)
         animationview.SetViewSpec(viewSpec)
     
    -# Close the Pages
    +# Get all created pages.
    +# This retrieves all pages created in the application.
     pages = applicationHandler.GetPages()
     for page in pages :
         page.Close()
     
     # Close the Document
     applicationHandler.CloseDocument(result_file_path)
    -
    +``` ## Properties @@ -70,7 +78,7 @@ applicationHandler.CloseDocument(result_file_path) Gets or sets the position of the camera in a 3D space. -```python +```csharp Vector Eye { get; set; } ``` @@ -91,7 +99,7 @@ This property is essential for controlling the viewpoint from which the 3D scene Gets or sets the position of the target that the camera is looking at. -```python +```csharp Vector Target { get; set; } ``` @@ -102,7 +110,8 @@ Vector Target { get; set; } #### Examples The following example demonstrates how to use the Target property: -
    For an example that includes this property, see the [Interface IViewSpec](VM.Operations.Post.Interfaces.IViewSpec.md).
    +```python +For an example that includes this property, see the [Interface IViewSpec](VM.Operations.Post.Interfaces.IViewSpec.md).``` #### Remarks @@ -113,7 +122,7 @@ This property is essential for defining the direction the camera is pointed towa Gets or sets the up direction vector of the camera in a 3D space. -```python +```csharp Vector UpVector { get; set; } ``` @@ -130,4 +139,3 @@ For an example that includes this property, see the [Interface IViewSpec](VM.Ope The property allows you to get or set the up direction vector of the camera in a 3D space. This vector determines whether the camera's direction is standard (upright) or inverted. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.md index 6b34bc3b6e..80bb0032ea 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.Interfaces.md @@ -1,23 +1,28 @@ -# Namespace VM.Operations.Post.Interfaces +# Namespace VM.Operations.Post.Interfaces + ### Interfaces - [IOperationAnalysisResultViewModel](VM.Operations.Post.Interfaces.IOperationAnalysisResultViewModel.md) + [IOperationAnalysisResult](VM.Operations.Post.Interfaces.IOperationAnalysisResult.md) -Interface representing common information for an analysis result view model. +Interface representing common information for an analysis result. + + [IOperationFEProperty](VM.Operations.Post.Interfaces.IOperationFEProperty.md) + +Represents finite element properties for beam or shell elements. + + [IOperationMaterial](VM.Operations.Post.Interfaces.IOperationMaterial.md) + +Represents the material properties and parameters used for fatigue analysis. [IOperationsAnimation](VM.Operations.Post.Interfaces.IOperationsAnimation.md) -Interface for Animation View related operations. +Interface for Animation View. [IOperationsAxisViewModelBase](VM.Operations.Post.Interfaces.IOperationsAxisViewModelBase.md) Interface representing common information for an axis view model. - [IOperationsBase](VM.Operations.Post.Interfaces.IOperationsBase.md) - -Base interface for the Operation API. - [IOperationsCSYSViewModel](VM.Operations.Post.Interfaces.IOperationsCSYSViewModel.md) Interface representing information for the coordinate system view model. @@ -50,9 +55,9 @@ Interface representing information for an eigenvalue analysis result view model. Interface representing information for an element view model. - [IOperationsFEBodyViewModel](VM.Operations.Post.Interfaces.IOperationsFEBodyViewModel.md) + [IOperationsFEBody](VM.Operations.Post.Interfaces.IOperationsFEBody.md) -Interface representing information for an febody view model. +Interface representing information for an FEBody. [IOperationsFFTLineDataSeriesViewModel](VM.Operations.Post.Interfaces.IOperationsFFTLineDataSeriesViewModel.md) @@ -158,4 +163,3 @@ Represents a view in the application, providing functionalities to manage and in Represents a specification for a view in a 3D space, providing properties to control the camera's position, target, and orientation. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.md new file mode 100644 index 0000000000..bde34ef824 --- /dev/null +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Operations.Post.md @@ -0,0 +1,18 @@ +# Namespace VM.Operations.Post + + +### Namespaces + + [VM.Operations.Post.Interfaces](VM.Operations.Post.Interfaces.md) + +### Classes + + [DurabilityAnalysisParameter](VM.Operations.Post.DurabilityAnalysisParameter.md) + +Represents a parameter used for durability analysis. + + [FatigueParameter](VM.Operations.Post.FatigueParameter.md) + +Represents the parameters required for fatigue analysis. +Implements the interface. + diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Plane.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Plane.md index cc66996148..36a1003309 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Plane.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Plane.md @@ -1,11 +1,12 @@ -# Enum Plane +# Enum Plane + Namespace: [VM](VM.md) Assembly: VM.dll Specifies type for the plane. -```python +```csharp public enum Plane ``` @@ -47,4 +48,3 @@ ZY. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Post.API.OutputReader.OutputReader.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Post.API.OutputReader.OutputReader.md index 7523d97e06..45cd0ad58f 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Post.API.OutputReader.OutputReader.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Post.API.OutputReader.OutputReader.md @@ -1,36 +1,39 @@ -# Class OutputReader +# Class OutputReader + Namespace: [VM.Post.API.OutputReader](VM.Post.API.OutputReader.md) Assembly: VM.Post.API.OutputReader.dll Represents the API class for reading result files. -```python +```csharp public class OutputReader : IOutputReader ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OutputReader](VM.Post.API.OutputReader.OutputReader.md) #### Implements -IOutputReader +[IOutputReader](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.OutputReader/Interfaces/IOutputReader.cs) ## Examples For an example that includes information about interfaces, see this example. To view the examples, refer to the location of the 'Install_Path\Motion\Document\Postprocessor API for Python.zip' file. -
    # OutputReader.py
    +```python
    +# OutputReader.py
     import clr, os, sys
     from pathlib import Path
     
    +# Get the current file's path and set the path for external modules.
     current_dir = Path(__file__).resolve().parent
    -
     external_modules_path = Path(current_dir, r'../../Modules').resolve()
     sys.path.append('{0}'.format(external_modules_path))
     
    +# Import necessary modules
     from ResultFileReaderAPI import *
     
     # Import result file
    @@ -46,7 +49,7 @@ for entity in entities:
     
     # Close
     outputReader.Close()
    -
    +``` ## Remarks @@ -58,13 +61,13 @@ This class provides methods to interact with and retrieve information from resul Initializes a new instance of the class, used to open the result file. -```python +```csharp public OutputReader(string filepath) ``` #### Parameters -`filepath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`filepath` string The path of the result file. @@ -82,13 +85,13 @@ This constructor opens the specified result file. Gets the file path to the Ansys Motion result file (.dfr). -```python +```csharp public string Path { get; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string #### Examples @@ -102,13 +105,13 @@ This property stores the file path to the Ansys Motion result file (.dfr). Gets the product version. -```python +```csharp public string Version { get; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string #### Examples @@ -124,7 +127,7 @@ This property stores the version of the product. Closes the result file. -```python +```csharp public void Close() ``` @@ -140,30 +143,34 @@ This method closes the result file. Creates a new coordinate system marker with the specified name and optional parent. -```python +```csharp public GeneralMarker CreateCoordinateSystem(string newName, string parentFullName = "Ground") ``` #### Parameters -`newName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newName` string The name of the new coordinate system marker. -`parentFullName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`parentFullName` string The full name of the parent marker. Defaults to . #### Returns - GeneralMarker + [GeneralMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Post/Data/Models/VM.Models.Post/Models/Markers/GeneralMarker.cs) A representing the newly created coordinate system marker. #### Examples The following example demonstrates how to use the CreateCoordinateSystem method: -
    print ("===Creating Marker===")
    +```python
    +print ("===Creating Marker===")
    +# Create a Coordinate System
    +# Name - Set the name of instance.
    +# ParentInfo - Specifies The path of an parent entity.
     ground_csys = outputReader.CreateCoordinateSystem("Ground_CSYS")
     print(ground_csys.FullName)
     
    @@ -175,7 +182,7 @@ print(rigid_cm_csys.FullName)
     
     nodal_node_csys = outputReader.CreateCoordinateSystem("FEBody_01_CSYS", "FEBody_01/Node/754")
     print(nodal_node_csys.FullName)
    -
    +``` #### Remarks @@ -186,21 +193,21 @@ it defaults to the ground marker name as defined by print ("===CreateVector===") +```python +print ("===CreateVector===") vector = outputReader.CreateVector("vector", "TJ_01", "Action Force") print(f"Name : {vector.FullName}") print(f"Type : {vector.Type}") @@ -222,7 +230,7 @@ characteristics = list(vector.Target.Characteristics) for characteristic in characteristics: print(f"Target VectorDisplayType : {characteristic.VectorDisplayType}") print(f"Target CharacteristicName : {characteristic.CharacteristicName}") -
    +``` #### Remarks @@ -232,17 +240,17 @@ This method creates a new vector. The method returns the instance of the newly c Exports acoustic raw data to a file. -```python +```csharp public void ExportAcousticRawDataToFile(string filepath, string fullName, BehaviorType behaviorType, FFTParameters parameters, uint[] nodeIDs) ``` #### Parameters -`filepath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`filepath` string Specifies the file path to export. -`fullName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`fullName` string Specifies the name of the entity. @@ -252,19 +260,20 @@ Specifies the type of the target for Displacement, Velocity, or Acceleration. The available options are:
    -`parameters` FFTParameters +`parameters` [FFTParameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Post/Data/Models/VM.Models.Post.ChartMathLib/FFT/FFTParameters.cs) Specifies the FFT parameters. For a description of the parameters, see in the API Reference.
    • - The window type of FFT.
    • - An array of state IDs from the result file.
    • - The number of data points for FFT.
    -`nodeIDs` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`nodeIDs` uint\[\] Specifies the ID array of the nodes. #### Examples The following example demonstrates how to use the ExportAcousticRawDataToFile method: -
    print("===ExportAcousticRawDataToFile===")
    +```python
    +print("===ExportAcousticRawDataToFile===")
     parameters = FFTParameters()
     parameters.WindowType = FFTWindowType.Rectangular
     parameters.Points = 128
    @@ -279,7 +288,7 @@ outputReader.ExportAcousticRawDataToFile(accoustic_result_path, target, Behavior
     
     accoustic_without_nodeids_result_path = os.path.join(output_dir, r'AcousticWithoutNodeIDsRawDataToFile.txt')
     outputReader.ExportAcousticRawDataToFile(accoustic_without_nodeids_result_path, target, BehaviorType.Displacement, parameters)
    -
    +``` #### Remarks @@ -289,17 +298,17 @@ This method exports acoustic raw data to a specified file path. Exports acoustic raw data to a file. -```python +```csharp public void ExportAcousticRawDataToFile(string filepath, string fullName, BehaviorType behaviorType, FFTParameters parameters) ``` #### Parameters -`filepath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`filepath` string Specifies the file path to export. -`fullName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`fullName` string Specifies the name of the entity. @@ -309,7 +318,7 @@ Specifies the type of behavior for Displacement, Velocity, or Acceleration. The available options are:
    -`parameters` FFTParameters +`parameters` [FFTParameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Post/Data/Models/VM.Models.Post.ChartMathLib/FFT/FFTParameters.cs) Specifies the FFT parameters. For a description of the parameters, see in the API Reference.
    • - The window type of FFT.
    • - An array of state IDs from the result file.
    • - The number of data points for FFT.
    @@ -317,7 +326,8 @@ Specifies the FFT parameters. For a description of the parameters, see ExportAcousticRawDataToFile method: -
    print("===ExportAcousticRawDataToFile===")
    +```python
    +print("===ExportAcousticRawDataToFile===")
     parameters = FFTParameters()
     parameters.WindowType = FFTWindowType.Rectangular
     parameters.Points = 128
    @@ -332,7 +342,7 @@ outputReader.ExportAcousticRawDataToFile(accoustic_result_path, target, Behavior
     
     accoustic_without_nodeids_result_path = os.path.join(output_dir, r'AcousticWithoutNodeIDsRawDataToFile.txt')
     outputReader.ExportAcousticRawDataToFile(accoustic_without_nodeids_result_path, target, BehaviorType.Displacement, parameters)
    -
    +``` #### Remarks @@ -342,27 +352,27 @@ This method exports acoustic raw data to a specified file path. Exports contour results to a file. -```python +```csharp public void ExportContourResultToFile(string resultpath, FileMode mode, IList stateids, string fullName, ContourMappingType type, string path, AnalysisResultType analysisResultType = AnalysisResultType.Dynamics, FileFormatType formatType = FileFormatType.BINARY) ``` #### Parameters -`resultpath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`resultpath` string Specifies the file path to export. -`mode` [FileMode](https://learn.microsoft.com/dotnet/api/system.io.filemode) +`mode` FileMode Specifies how the operating system should open a file. The available options are:
    -`stateids` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`stateids` IList Specifies the list of state IDs to time. -`fullName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`fullName` string Specifies the name of the entities. @@ -372,7 +382,7 @@ Specifies the type of the target for displaying contour. The available options are:
    -`path` [string](https://learn.microsoft.com/dotnet/api/system.string) +`path` string This is a combination of characteristic and component. @@ -391,7 +401,8 @@ The available options are: #### Examples The following example demonstrates how to use the ExportContourResultToFile method: -
    print("===ExportContourResultToFile===")
    +```python
    +print("===ExportContourResultToFile===")
     # resultpath - Specifies the file path to export
     # mode - Specifies how the operating system should open a file.
     # stateids - Specifies the id list of the states to time.
    @@ -410,7 +421,7 @@ path = "Top Stress/X"
     output_dir = get_output_directory()
     nodal_result_path = os.path.join(output_dir, r'ContourResultToFile.txt')
     outputReader.ExportContourResultToFile(nodal_result_path, FileMode.Create, stateids, target, ContourMappingType.FENode, path, analysisResultType = AnalysisResultType.Dynamics, formatType = FileFormatType.BINARY)
    -
    +``` #### Remarks @@ -420,27 +431,27 @@ This method exports contour results to a specified file path. Exports contour results to a file. -```python +```csharp public void ExportContourResultToFile(string resultpath, FileMode mode, IList stateids, IList fullNames, ContourMappingType type, string path, AnalysisResultType analysisResultType = AnalysisResultType.Dynamics, FileFormatType formatType = FileFormatType.BINARY) ``` #### Parameters -`resultpath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`resultpath` string Specifies the file path to export. -`mode` [FileMode](https://learn.microsoft.com/dotnet/api/system.io.filemode) +`mode` FileMode Specifies how the operating system should open a file. The available options are:
    -`stateids` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`stateids` IList Specifies the list of state IDs to time. -`fullNames` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`fullNames` IList Specifies the names of the entities. @@ -450,7 +461,7 @@ Specifies the type of the target for displaying contour. The available options are:
    -`path` [string](https://learn.microsoft.com/dotnet/api/system.string) +`path` string This is a combination of characteristic and component. @@ -469,7 +480,8 @@ The available options are: #### Examples The following example demonstrates how to use the ExportContourResultToFile method: -
    print("===ExportContourResultToFile===")
    +```python
    +print("===ExportContourResultToFile===")
     # resultpath - Specifies the file path to export
     # mode - Specifies how the operating system should open a file.
     # stateids - Specifies the id list of the states to time.
    @@ -488,7 +500,7 @@ path = "Top Stress/X"
     output_dir = get_output_directory()
     nodal_result_path = os.path.join(output_dir, r'ContourResultToFile.txt')
     outputReader.ExportContourResultToFile(nodal_result_path, FileMode.Create, stateids, target, ContourMappingType.FENode, path, analysisResultType = AnalysisResultType.Dynamics, formatType = FileFormatType.BINARY)
    -
    +``` #### Remarks @@ -498,17 +510,17 @@ This method exports contour results to a specified file path. Exports marker results to a file. -```python +```csharp public void ExportMarkerToFile(string filePath, int[] stateids, IResultMarker[] markers) ``` #### Parameters -`filePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`filePath` string Specifies the file path to export. -`stateids` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`stateids` int\[\] Specifies the list of state IDs to time. @@ -519,12 +531,13 @@ Specifies the list of the marker entities. #### Examples The following example demonstrates how to use the ExportMarkerToFile method: -
    print("===ExportMarkerToFile===")
    +```python
    +print("===ExportMarkerToFile===")
     # markers = List[IResultMarker](1)
     # markers.Add(ground_csys)
     
     # outputReader.ExportMarkerToFile(r'D:\MarkerToFile.txt', stateids, markers)
    -
    +``` #### Remarks @@ -534,38 +547,39 @@ This method exports marker results to a specified file path. Exports raw data about the FE modal body to a file. -```python +```csharp public void ExportModalBodyRawDataToFile(string filePath, string target, bool includeGeometry, bool includeModeShape) ``` #### Parameters -`filePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`filePath` string Specifies the file path to export. -`target` [string](https://learn.microsoft.com/dotnet/api/system.string) +`target` string Specifies the name of the entity. -`includeGeometry` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`includeGeometry` bool Specifies whether to include geometry data. -`includeModeShape` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`includeModeShape` bool Specifies whether to include mode shape data. #### Examples The following example demonstrates how to use the ExportModalBodyRawDataToFile method: -
    print("===ExportModalBodyRawDataToFile===")
    +```python
    +print("===ExportModalBodyRawDataToFile===")
     # State ID Array
     stateids = outputReader.GetStateIDArray()
     
     modal_result_path = os.path.join(output_dir, r'ModalBodyRawDataToFile.txt')
     outputReader.ExportModalBodyRawDataToFile(modal_result_path, "FEBody_01", True, True)
    -
    +``` #### Remarks @@ -575,33 +589,33 @@ This method exports raw data about the FE modal body to a specified file path, i Exports vector results to a file. -```python +```csharp public void ExportVectorDisplayToFile(string filepath, int[] stateids, IEnumerable targets, bool isIncludePosition, bool includeVector, bool includeMagnitude, AnalysisResultType analysisResultType) ``` #### Parameters -`filepath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`filepath` string Specifies the file path to export. -`stateids` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`stateids` int\[\] Specifies the list of state IDs to time. -`targets` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[object](https://learn.microsoft.com/dotnet/api/system.object)\> +`targets` IEnumerable Specifies the list of the entities. -`isIncludePosition` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isIncludePosition` bool Specifies whether to include position data. -`includeVector` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`includeVector` bool Specifies whether to include vector data. -`includeMagnitude` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`includeMagnitude` bool Specifies whether to include magnitude data. @@ -612,7 +626,8 @@ Specifies the type of analysis result. #### Examples The following example demonstrates how to use the ExportVectorDisplayToFile method: -
    print("===ExportVectorDisplayToFile===")
    +```python
    +print("===ExportVectorDisplayToFile===")
     targets = List[IVectorDisplay]()
     
     # target - Specifies the name of vector displayable entity
    @@ -625,7 +640,7 @@ outputReader.ExportVectorDisplayToFile(vector_result_path, stateids, targets, Tr
     
     vectors_result_path = os.path.join(output_dir, r'VectorsDisplayToFile.txt')
     outputReader.ExportVectorDisplayToFile(vectors_result_path, stateids, target, "Base Force", True, True, True, AnalysisResultType.Dynamics)
    -
    +``` #### Remarks @@ -635,37 +650,37 @@ This method exports vector results to a specified file path. Exports vector results to a file. -```python +```csharp public void ExportVectorDisplayToFile(string filepath, int[] stateids, string target, string characteristic, bool isIncludePosition, bool includeVector, bool includeMagnitude, AnalysisResultType analysisResultType) ``` #### Parameters -`filepath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`filepath` string Specifies the file path to export. -`stateids` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`stateids` int\[\] Specifies the list of state IDs to time. -`target` [string](https://learn.microsoft.com/dotnet/api/system.string) +`target` string Specifies the list of the entities. -`characteristic` [string](https://learn.microsoft.com/dotnet/api/system.string) +`characteristic` string The name of the characteristic. -`isIncludePosition` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isIncludePosition` bool Specifies whether to include position data. -`includeVector` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`includeVector` bool Specifies whether to include vector data. -`includeMagnitude` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`includeMagnitude` bool Specifies whether to include magnitude data. @@ -676,7 +691,8 @@ Specifies the type of analysis result. #### Examples The following example demonstrates how to use the ExportVectorDisplayToFile method: -
    print("===ExportVectorDisplayToFile===")
    +```python
    +print("===ExportVectorDisplayToFile===")
     targets = List[IVectorDisplay]()
     
     # target - Specifies the name of vector displayable entity
    @@ -689,7 +705,7 @@ outputReader.ExportVectorDisplayToFile(vector_result_path, stateids, targets, Tr
     
     vectors_result_path = os.path.join(output_dir, r'VectorsDisplayToFile.txt')
     outputReader.ExportVectorDisplayToFile(vectors_result_path, stateids, target, "Base Force", True, True, True, AnalysisResultType.Dynamics)
    -
    +``` #### Remarks @@ -699,35 +715,36 @@ This method exports vector results to a specified file path. Retrieves an array of state IDs representing sequential states. -```python +```csharp public AssemblyInfo[] GetAssemblyInfo(AssemblyType assemblyType = AssemblyType.All) ``` #### Parameters -`assemblyType` AssemblyType +`assemblyType` [AssemblyType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Post/Common/VM.Enums.Post/Enums/AssemblyType.cs) The available options are:
    #### Returns - AssemblyInfo\[\] + [AssemblyInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Post/Data/Models/VM.Models.Post.EntityTypes/Assembly/AssemblyInfo.cs)\[\] #### Examples The following example demonstrates how to use the CreateCoordinateSystem method: -
    print ("===Assembly Info===")
    +```python
    +print ("===Assembly Info===")
     assemblyInfo = outputReader.GetAssemblyInfo()
     for assembly in assemblyInfo:
         print(assembly.FullName)
    -
    +``` ### GetBodies\(BodyType, bool\) Retrieves the types and names of bodies based on the specified type and optional inclusion of dummy bodies. -```python +```csharp public IEnumerable<(BodyType, string)> GetBodies(BodyType type, bool includeDuymmy = false) ``` @@ -739,25 +756,26 @@ Specifies the type of bodies to retrieve. The available options are:
    -`includeDuymmy` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`includeDuymmy` bool Specifies whether to include dummy bodies in the result. #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<\(BodyType, [string](https://learn.microsoft.com/dotnet/api/system.string)\)\> + IEnumerable<\(BodyType, string\)\> An enumerable collection of tuples where each tuple contains a BodyType and its corresponding name. #### Examples The following example demonstrates how to use the GetBodies method: -
    print ("===Get Bodies===")
    +```python
    +print ("===Get Bodies===")
     bodies = outputReader.GetBodies(BodyType.RIGID)
     bodiesList = list(bodies)
     for body in bodiesList:
         print(f"Body Type : {body.Item1}, Body Name : {body.Item2}")
    -
    +``` #### Remarks @@ -768,31 +786,32 @@ The returned collection contains tuples where each tuple represents a body type Gets the count of nodes for the specified bodies. -```python +```csharp public long GetBodiesNodeCount(IList bodyNames) ``` #### Parameters -`bodyNames` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`bodyNames` IList Specifies the list of names of the entities. #### Returns - [long](https://learn.microsoft.com/dotnet/api/system.int64) + long The count of nodes for the specified bodies. #### Examples The following example demonstrates how to use the GetBodiesNodeCount method: -
    print("===Bodies Node Count===")
    +```python
    +print("===Bodies Node Count===")
     entities = List[str]()
     entities.Add(r'FEBody_01')
     nodecount = outputReader.GetBodiesNodeCount(entities)
     print(nodecount)
    -
    +``` #### Remarks @@ -802,30 +821,31 @@ This method retrieves the count of nodes for the specified bodies. Retrieves information about connectors associated with the specified body. -```python +```csharp public IList<(ConnectorType, ActionType, string)> GetConnectors(string name) ``` #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the body to retrieve connector information for. #### Returns - [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<\(ConnectorType, ActionType, [string](https://learn.microsoft.com/dotnet/api/system.string)\)\> + IList<\(ConnectorType, ActionType, string\)\> A list of tuples containing the connector type, action type, and names of connectors such as joint, force, and contact. The available connector type are: -
    +
    The available action type are:
    #### Examples The following example demonstrates how to use the GetConnectors method: -
    print ("===GetConnectors===")
    +```python
    +print ("===GetConnectors===")
     connectors = outputReader.GetConnectors("Crank")
     connectorlist = list(connectors)
     
    @@ -833,7 +853,7 @@ for connector in connectorlist:
         print (f"ConnectorType : {connector.Item1}")
         print (f"Action Type : {connector.Item2}")
         print (f"Name : {connector.Item3}")
    -
    +``` #### Remarks @@ -845,17 +865,17 @@ action type, and names of connectors such as joint, force, and contact. Exports contour results to a file. -```python +```csharp public void GetContourResult(IList stateids, string fullName, ContourMappingType type, string path, Action> fncallback, AnalysisResultType analysisType = AnalysisResultType.Dynamics) ``` #### Parameters -`stateids` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`stateids` IList Specifies the list of state IDs to time. -`fullName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`fullName` string Specifies the name of an entity. @@ -865,11 +885,11 @@ Specifies the type of a target for displaying contour. The available options are:
    -`path` [string](https://learn.microsoft.com/dotnet/api/system.string) +`path` string Specifies the path of the result file to save. -`fncallback` [Action](https://learn.microsoft.com/dotnet/api/system.action\-2)<[int](https://learn.microsoft.com/dotnet/api/system.int32), [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\[\]\>\> +`fncallback` Action\> Specifies the callback function for getting contour results by report step. @@ -882,7 +902,8 @@ The available options are: #### Examples The following example demonstrates how to use the GetContourResult method: -
    #print ("===GetContourResult===")
    +```python
    +#print ("===GetContourResult===")
     ## resultpath - Specifies the file path to export
     ## mode - Specifies how the operating system should open a file.
     ## stateids - Specifies the id list of the states to time.
    @@ -908,7 +929,7 @@ def python_action(stateid, resultGroup):
     action = Action[Int32, IList[Array[Double]]](python_action)
     outputReader.GetContourResult(stateids, target, ContourMappingType.FENode, path, action, AnalysisResultType.Dynamics)
     
    -
    +``` #### Remarks @@ -918,17 +939,17 @@ This method exports contour results to a specified file path. Exports contour results to a file. -```python +```csharp public void GetContourResult(IList stateids, IList fullNames, ContourMappingType type, string path, Action> fncallback, AnalysisResultType analysisType = AnalysisResultType.Dynamics) ``` #### Parameters -`stateids` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`stateids` IList Specifies the list of state IDs to time. -`fullNames` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`fullNames` IList Specifies the names of entities. @@ -938,11 +959,11 @@ Specifies the type of a target for displaying contour. The available options are:
    -`path` [string](https://learn.microsoft.com/dotnet/api/system.string) +`path` string Specifies the path of the result file to save. -`fncallback` [Action](https://learn.microsoft.com/dotnet/api/system.action\-2)<[int](https://learn.microsoft.com/dotnet/api/system.int32), [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\[\]\>\> +`fncallback` Action\> Specifies the callback function for getting contour results by report step. @@ -955,7 +976,8 @@ The available options are: #### Examples The following example demonstrates how to use the GetContourResult method: -
    #print ("===GetContourResult===")
    +```python
    +#print ("===GetContourResult===")
     ## resultpath - Specifies the file path to export
     ## mode - Specifies how the operating system should open a file.
     ## stateids - Specifies the id list of the states to time.
    @@ -981,7 +1003,7 @@ def python_action(stateid, resultGroup):
     action = Action[Int32, IList[Array[Double]]](python_action)
     outputReader.GetContourResult(stateids, target, ContourMappingType.FENode, path, action, AnalysisResultType.Dynamics)
     
    -
    +``` #### Remarks @@ -991,13 +1013,13 @@ This method exports contour results to a specified file path. Retrieves plot data based on the specified plot parameters. -```python -public IDictionary GetCurves(PlotParameters parameters) +```csharp +public IDictionary GetCurves(PlotParameters parameter) ``` #### Parameters -`parameters` PlotParameters +`parameter` [PlotParameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.OutputReader/Models/PlotParameters.cs) For a description of parameter, see PlotParameters in the API Reference. The parameters used for plotting the curves, including target entity, data paths, coordinate system, and plot data type. @@ -1005,7 +1027,7 @@ The parameters used for plotting the curves, including target entity, data paths #### Returns - [IDictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), Point2D\[\]\> + IDictionary A dictionary containing plot data where each key represents the name or identifier of the curve, and each value is an array of representing the plot points (x, y). @@ -1014,12 +1036,18 @@ The name of plot, List of X and Y data point of plot #### Examples The following example demonstrates how to use the GetCurves method: -
    print ("===Plot Info===")
    +```python
    +print ("===Plot Info===")
     curvepaths = List[str]()
     
     curve_paths = List[str]()
     curve_paths.Add(r'Displacement/Magnitude')
    -			
    +
    +# Create a PlotParameters object to specify the parameters for the plot.
    +# Set the Entity to Plot.
    +# The Target is the name of the target for which you want to retrieve the curves.
    +# Set the paths for the curves you want to retrieve.
    +# This is where you specify the characteristics and components you want to plot.
     parameters = PlotParameters()
     parameters.Paths = curve_paths
     parameters.Target = "Crank"
    @@ -1030,7 +1058,7 @@ for curve in curves:
         print(curve.Key)
         for point in curve.Value:
             print(f"X : {point.X}, Y : {point.Y}")
    -
    +``` #### Remarks @@ -1041,7 +1069,7 @@ It generates x and y coordinates for each curve specified in the parameters. Retrieves all entities of the specified type. -```python +```csharp public IEnumerable GetEntities(EntityType entityType) ``` @@ -1053,7 +1081,7 @@ The type of the entities to be retrieved. #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) + IEnumerable<[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Post/Data/Models/VM.Models.Post/Models/EntityBase.Series.cs)\> An containing all entities of the specified type. @@ -1071,30 +1099,31 @@ The available options are: Gets the reference frame of a flexible body. -```python -public IList GetFlexibleBodyReferenceFrame(string target, bool reCalculateOrientation = false) +```csharp +public IList GetFlexibleBodyReferenceFrame(string target, bool recalculateOrientation = false) ``` #### Parameters -`target` [string](https://learn.microsoft.com/dotnet/api/system.string) +`target` string The name of the flexible body. -`reCalculateOrientation` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`recalculateOrientation` bool Get the orientation from element reference frame instead of FE body reference frame #### Returns - [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\[\]\> + IList Postion and orientation array with the number of states. #### Examples The following example demonstrates how to use the GetFlexibleBodyReferenceFrame method: -
    print("===GetFlexibleBodyReferenceFrame===")
    +```python
    +print("===GetFlexibleBodyReferenceFrame===")
     
     # State ID Array
     stateids = outputReader.GetStateIDArray()
    @@ -1116,7 +1145,7 @@ for i in range(len(referenceframes)):
         print(referenceframes[i][9])
         print(referenceframes[i][10])
         print(referenceframes[i][11])
    -
    +``` #### Remarks @@ -1126,13 +1155,13 @@ This method retrieves the reference frame of the specified flexible body. Retrieves information about all instances of frequencies. -```python +```csharp public IList<(string path, double time, double[] frequencies)> GetFrequenciesInfoArray() ``` #### Returns - [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<\([string](https://learn.microsoft.com/dotnet/api/system.string) [path](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.string,system.double,system.double\[\]\-.path), [double](https://learn.microsoft.com/dotnet/api/system.double) [time](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.string,system.double,system.double\[\]\-.time), [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] [frequencies](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.string,system.double,system.double\[\]\-.frequencies)\)\> + IList<\(string path, double time, double\[\] frequencies\)\> A list containing tuples where each tuple contains: - path: The file path of the frequency instance. @@ -1142,7 +1171,8 @@ A list containing tuples where each tuple contains: #### Examples The following example demonstrates how to use the GetFrequenciesInfoArray method: -
    print ("===GetFrequenciesInfoArray===")
    +```python
    +print ("===GetFrequenciesInfoArray===")
     frequencies = outputReader.GetFrequenciesInfoArray()
     frequencyInfoArray = list(frequencies)
     for frequency in frequencyInfoArray:
    @@ -1150,7 +1180,7 @@ for frequency in frequencyInfoArray:
         print(f"Sampling Time : {frequency.Item2}")
         indexes = list(frequency.Item3)
         print("Sampling Index :", *indexes, sep=',')
    -
    +``` #### Remarks @@ -1161,13 +1191,13 @@ including their file paths, available sampling times, and corresponding frequenc Gets the geometry information for a specified entity. -```python +```csharp public IDataPart GetGeometryInfo(string target) ``` #### Parameters -`target` [string](https://learn.microsoft.com/dotnet/api/system.string) +`target` string Specifies the name of the entity. @@ -1180,14 +1210,15 @@ An instance of GetGeometryInfo method: -
    print("===Geometry Info===")
    +```python
    +print("===Geometry Info===")
     nodal = outputReader.GetGeometryInfo("FEBody_01")
     print(nodal.DummyNodes)
     print(nodal.ElementCount)
     print(nodal.ElementsNodeCount)
     print(nodal.NodesCount)
     print(nodal.PartIndex)
    -
    +``` #### Remarks @@ -1197,25 +1228,26 @@ This method retrieves the geometry information for the specified entity. Gets an array of geometry information. -```python +```csharp public IEnumerable GetGeometryInfoArray() ``` #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) + IEnumerable<[BodyBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Post/Data/Models/VM.Models.Post/Models/Bodies/BodyBase.cs)\> An containing the geometry information. #### Examples The following example demonstrates how to use the GetGeometryInfoArray method: -
    print("===GeometryArray===")
    +```python
    +print("===GeometryArray===")
     geometries = outputReader.GetGeometryInfoArray()
     geometry_list = list(geometries)
     for geometry in geometry_list:
         print(geometry.FullName)
    -
    +``` #### Remarks @@ -1225,30 +1257,31 @@ This method retrieves an array of geometry information for all entities. Gets the nodes of a specified geometry. -```python +```csharp public double[] GetGeometryNodes(string target) ``` #### Parameters -`target` [string](https://learn.microsoft.com/dotnet/api/system.string) +`target` string Specifies the path of the entity. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] An array of doubles representing the nodes of the geometry. #### Examples The following example demonstrates how to use the GetGeometryNodes method: -
    print("===Geometry Nodes===")
    +```python
    +print("===Geometry Nodes===")
     geometries = outputReader.GetGeometryNodes("FEBody_01")
     for geometry_value in geometries:
         print(geometry_value)
    -
    +``` #### Remarks @@ -1258,33 +1291,34 @@ This method retrieves the nodes of the specified geometry entity. Gets the marker information including position, orientation, velocity, angular velocity, acceleration, and angular acceleration. -```python +```csharp public IList GetMarkerInfo(string name) ``` #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string Specifies the name of the marker. #### Returns - [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\[\]\> + IList A list of double arrays representing the marker values from the start state to the end state, stored sequentially. #### Examples The following example demonstrates how to use the GetMarkerInfo method: -
    print ("===Marker Info===")
    +```python
    +print ("===Marker Info===")
     marker_name = r'Crank/CM'
     marker = outputReader.GetMarkerInfo(marker_name)
     
     for marker_values in marker:
         for marker_value in marker_values:
             print(marker_value)
    -
    +``` #### Remarks @@ -1294,26 +1328,27 @@ This method retrieves detailed information about the specified marker, including Gets the marker positions for the specified list of marker names. -```python +```csharp public IDictionary> GetMarkerPosition(IList names) ``` #### Parameters -`names` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`names` IList Specifies the list of marker names to retrieve positions for. #### Returns - [IDictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\[\]\>\> + IDictionary\> A dictionary where each key is a marker name and the value is a list of double arrays representing marker positions from the start state to the end state, stored sequentially. #### Examples The following example demonstrates how to use the GetMarkerPosition method: -
    print ("===Marker Position===")
    +```python
    +print ("===Marker Position===")
     
     entities = List[str]()
     entities.Add(marker_name)
    @@ -1323,7 +1358,7 @@ marker_position = markers[marker_name]
     for marker_values in marker_position:
         for marker_value in marker_values:
             print(marker_value)
    -
    +``` #### Remarks @@ -1333,29 +1368,30 @@ This method retrieves the positions of markers identified by the provided list o Retrieves the count of modes for the finite element modal body specified by its name. -```python +```csharp public int GetModalModeCount(string target) ``` #### Parameters -`target` [string](https://learn.microsoft.com/dotnet/api/system.string) +`target` string The name of the entity representing the finite element modal body. #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int The number of modes available for the specified finite element modal body. #### Examples The following example demonstrates how to use the GetModalModeCount method: -
    print ("===Get Modal Mode Count===")
    +```python
    +print ("===Get Modal Mode Count===")
     modecount = outputReader.GetModalModeCount("FEBody_01")
     print (modecount)
    -
    +``` #### Remarks @@ -1366,24 +1402,25 @@ identified by its name passed as the target parame Gets the named selection information. -```python +```csharp public NamedSelection[] GetNamedSelections() ``` #### Returns - NamedSelection\[\] + [NamedSelection](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Post/Data/Models/VM.Models.Post/Models/SubEntities/NamedSelection.cs)\[\] An array of instances representing the named selections. #### Examples The following example demonstrates how to use the GetNamedSelections method: -
    print("===Named Selections===")
    +```python
    +print("===Named Selections===")
     namedselections = outputReader.GetNamedSelections()
     for namedselection in namedselections:
         print(namedselection.FullName)
    -
    +``` #### Remarks @@ -1393,30 +1430,31 @@ This method retrieves the named selection information for the entities. Gets the geometry connectivity of an outer face. -```python +```csharp public uint[] GetOuterface(string target) ``` #### Parameters -`target` [string](https://learn.microsoft.com/dotnet/api/system.string) +`target` string Specifies the name of the entity. #### Returns - [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] + uint\[\] An array of unsigned integers representing the geometry connectivity of the outer face. #### Examples The following example demonstrates how to use the GetOuterface method: -
    print("===Outerface===")
    +```python
    +print("===Outerface===")
     outerface = outputReader.GetOuterface("FEBody_01")
     for outerface_value in outerface:
         print(outerface_value)
    -
    +``` #### Remarks @@ -1427,36 +1465,37 @@ The connectivity is structured in a triangular patch form, allowing for efficien Gets the count of nodes for the specified bodies before a certain entity. -```python +```csharp public long GetPreviousBodiesNodeCount(IList bodyNames, string target) ``` #### Parameters -`bodyNames` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`bodyNames` IList Specifies the list of names of the bodies. -`target` [string](https://learn.microsoft.com/dotnet/api/system.string) +`target` string Specifies the name of the entity. #### Returns - [long](https://learn.microsoft.com/dotnet/api/system.int64) + long The count of nodes for the previous bodies. #### Examples The following example demonstrates how to use the GetPreviousBodiesNodeCount method: -
    print("===Previous Bodies NodeCount===")
    +```python
    +print("===Previous Bodies NodeCount===")
     targets = List[str]()
     targets.Add("FEBody_01")
     nodeCount = outputReader.GetPreviousBodiesNodeCount(targets, "FEBody_01")
     
     print(nodeCount)
    -
    +``` #### Remarks @@ -1466,7 +1505,7 @@ This method retrieves the count of nodes for the specified bodies that are proce Retrieves the type of the primary analysis result. -```python +```csharp public AnalysisResultType GetPrimaryAnalysisResultType() ``` @@ -1482,10 +1521,11 @@ The available analysis are: #### Examples The following example demonstrates how to use the GetPrimaryAnalysisResultType method: -
    print ("===GetPrimaryAnalysisResultType===")
    +```python
    +print ("===GetPrimaryAnalysisResultType===")
     analysistype = outputReader.GetPrimaryAnalysisResultType()
     print (analysistype)
    -
    +``` #### Remarks @@ -1496,24 +1536,25 @@ If the primary analysis result is not set or available, it returns print ("===Reference TimeArray===") +```python +print ("===Reference TimeArray===") referenceTimeArray = outputReader.GetReferenceTimeArray() for referenceTime in referenceTimeArray: print(referenceTime) - +``` #### Remarks @@ -1524,24 +1565,25 @@ are stored in a list in sequential order. Get id array of state -```python +```csharp public IList GetStateIDArray() ``` #### Returns - [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> + IList A list of integers representing state IDs from the start state to the end state sequentially. #### Examples The following example demonstrates how to use the GetStateIDArray method: -
    print ("===Get StateIDArray===")
    +```python
    +print ("===Get StateIDArray===")
     stateIDs = outputReader.GetStateIDArray()
     for ids in stateIDs:
         print(ids)
    -
    +``` #### Remarks @@ -1552,13 +1594,13 @@ stored in a list in sequential order. Retrieves units of results including type, unit, and factor. -```python +```csharp public Dictionary> GetUnits() ``` #### Returns - [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [KeyValuePair](https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [double](https://learn.microsoft.com/dotnet/api/system.double)\>\> + Dictionary\> A dictionary where: - The key is the type of the result. @@ -1569,12 +1611,13 @@ A dictionary where: #### Examples The following example demonstrates how to use the GetUnits method: -
    print ("===GetUnits===")
    +```python
    +print ("===GetUnits===")
     units = outputReader.GetUnits()
     for unit in units:
         print(f"Unit Symbol : {unit.Key}")    
         print(f"Unit : {unit.Value.Key}, Value : {unit.Value.Value}")
    -
    +``` #### Remarks @@ -1586,19 +1629,19 @@ and each value is a key-value pair consisting of the unit and its corresponding Retrieves unit information from a dfmf file for a specified target. -```python +```csharp public Dictionary> GetUnitsFromModeShapeFile(string target) ``` #### Parameters -`target` [string](https://learn.microsoft.com/dotnet/api/system.string) +`target` string Specifies the target entity for which unit information is retrieved. #### Returns - [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [KeyValuePair](https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [double](https://learn.microsoft.com/dotnet/api/system.double)\>\> + Dictionary\> A dictionary where: - Key: Dimension of the result (e.g., length, time). @@ -1609,12 +1652,13 @@ A dictionary where: #### Examples The following example demonstrates how to use the GetUnitsFromModeShapeFile method: -
    print ("===GetUnitsFromModeShapeFile===")
    +```python
    +print ("===GetUnitsFromModeShapeFile===")
     units = outputReader.GetUnitsFromModeShapeFile("FEBody_01")
     for unit in units:
         print(f"Unit Symbol : {unit.Key}")    
         print(f"Unit : {unit.Value.Key}, Value : {unit.Value.Value}")
    -
    +``` #### Remarks @@ -1626,23 +1670,23 @@ and each value is a key-value pair consisting of the unit string and its corresp Retrieves vector results for a specified target entity and characteristic path. -```python +```csharp public IDictionary GetVector(string target, string path) ``` #### Parameters -`target` [string](https://learn.microsoft.com/dotnet/api/system.string) +`target` string Specifies the name of the vector displayable entity. -`path` [string](https://learn.microsoft.com/dotnet/api/system.string) +`path` string Specifies the characteristic on the vector display. #### Returns - [IDictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), IVectorDisplayAnimationData\> + IDictionary A dictionary where: - Key: String identifier associated with the vector data. @@ -1651,7 +1695,8 @@ A dictionary where: #### Examples The following example demonstrates how to use the GetVector method: -
    print ("===GetVector===")
    +```python
    +print ("===GetVector===")
     vectors = outputReader.GetVector("TJ_01", "Action Force")
     for vector in vectors:
         print(f"Vector : {vector.Key}")
    @@ -1670,7 +1715,7 @@ for vector in vectors:
             for j in range(first_vectors):
                 second_vectors = list(animation_data.Vectors[i][j])
                 print("Vectors :", *second_vectors, sep=',')
    -
    +``` #### Remarks @@ -1683,17 +1728,17 @@ containing animation data specific to the vector display. Retrieves vector results for a specified target entity, characteristic path, and analysis result type. -```python +```csharp public IDictionary GetVector(string target, string path, AnalysisResultType analysisResultType = AnalysisResultType.Dynamics) ``` #### Parameters -`target` [string](https://learn.microsoft.com/dotnet/api/system.string) +`target` string Specifies the name of the vector displayable entity. -`path` [string](https://learn.microsoft.com/dotnet/api/system.string) +`path` string Specifies the characteristic on the vector display. @@ -1705,7 +1750,7 @@ The available options are: #### Returns - [IDictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), IVectorDisplayAnimationData\> + IDictionary A dictionary where: - Key: String identifier associated with the vector data. @@ -1714,7 +1759,8 @@ A dictionary where: #### Examples The following example demonstrates how to use the GetVector method: -
    print ("===GetVector===")
    +```python
    +print ("===GetVector===")
     vectors = outputReader.GetVector("TJ_01", "Action Force")
     for vector in vectors:
         print(f"Vector : {vector.Key}")
    @@ -1733,7 +1779,7 @@ for vector in vectors:
             for j in range(first_vectors):
                 second_vectors = list(animation_data.Vectors[i][j])
                 print("Vectors :", *second_vectors, sep=',')
    -
    +``` #### Remarks @@ -1746,39 +1792,39 @@ containing animation data specific to the vector display. Interpolates data series using the Akima spline method. -```python +```csharp public (InterpolationErrorType, double[], double[]) InterpolationAkimaSpline(double[] X, double[] Y, int NoOfPnt, int NoOfDesiredPnt, double StartPnt, double EndPnt) ``` #### Parameters -`X` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`X` double\[\] The array of x-values representing plot data. -`Y` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`Y` double\[\] The array of y-values representing plot data. -`NoOfPnt` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`NoOfPnt` int The number of points in the original data series. -`NoOfDesiredPnt` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`NoOfDesiredPnt` int The number of points desired in the interpolated data series. -`StartPnt` [double](https://learn.microsoft.com/dotnet/api/system.double) +`StartPnt` double The start point for using the curve on the plot data. -`EndPnt` [double](https://learn.microsoft.com/dotnet/api/system.double) +`EndPnt` double The end point for using the curve on the plot data. #### Returns - \(InterpolationErrorType, [double](https://learn.microsoft.com/dotnet/api/system.double)\[\], [double](https://learn.microsoft.com/dotnet/api/system.double)\[\]\) + \(InterpolationErrorType, double\[\], double\[\]\) A tuple containing: - An indicating the interpolation error type. @@ -1789,7 +1835,8 @@ A tuple containing: #### Examples The following example demonstrates how to use the InterpolationAkimaSpline method: -
    print ("===Interpolation===")
    +```python
    +print ("===Interpolation===")
     x = [1,2,3,4,5]
     y = [1,2,3,4,5]
     plot = outputReader.InterpolationAkimaSpline(x, y, 5, 100, 0.0, 10.0);
    @@ -1798,11 +1845,10 @@ print(f"InterpolationErrorType : {plot.Item1}")
     
     for index in range(count):
         print(f"X : {plot.Item2[index]}, Y : {plot.Item3[index]}")
    -
    +``` #### Remarks This method interpolates the given data series using the Akima spline interpolation method. It returns the interpolated x and y data points based on the specified parameters. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Post.API.OutputReader.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Post.API.OutputReader.md index 9259ae552a..8801c4ec6d 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Post.API.OutputReader.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Post.API.OutputReader.md @@ -1,4 +1,5 @@ -# Namespace VM.Post.API.OutputReader +# Namespace VM.Post.API.OutputReader + ### Classes @@ -6,4 +7,3 @@ Represents the API class for reading result files. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.PropertyChangedExtendedEventArgs.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.PropertyChangedExtendedEventArgs.md index 5edb108b43..97a65c6d24 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.PropertyChangedExtendedEventArgs.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.PropertyChangedExtendedEventArgs.md @@ -1,55 +1,55 @@ -# Class PropertyChangedExtendedEventArgs +# Class PropertyChangedExtendedEventArgs + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public class PropertyChangedExtendedEventArgs : PropertyChangedEventArgs ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) ← -[PropertyChangedEventArgs](https://learn.microsoft.com/dotnet/api/system.componentmodel.propertychangedeventargs) ← +object ← +EventArgs ← +PropertyChangedEventArgs ← [PropertyChangedExtendedEventArgs](VM.PropertyChangedExtendedEventArgs.md) ## Constructors ### PropertyChangedExtendedEventArgs\(string, object, object\) -```python +```csharp public PropertyChangedExtendedEventArgs(string propertyName, object oldValue, object newValue) ``` #### Parameters -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string -`oldValue` [object](https://learn.microsoft.com/dotnet/api/system.object) +`oldValue` object -`newValue` [object](https://learn.microsoft.com/dotnet/api/system.object) +`newValue` object ## Properties ### NewValue -```python +```csharp public virtual object NewValue { get; } ``` #### Property Value - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### OldValue -```python +```csharp public virtual object OldValue { get; } ``` #### Property Value - [object](https://learn.microsoft.com/dotnet/api/system.object) - + object diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.PropertyItem.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.PropertyItem.md index 9ebde287b6..5ef70b1684 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.PropertyItem.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.PropertyItem.md @@ -1,15 +1,16 @@ -# Class PropertyItem +# Class PropertyItem + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public class PropertyItem : MemberItem ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [MemberItem](VM.MemberItem\-1.md) ← [PropertyItem](VM.PropertyItem.md) @@ -24,110 +25,109 @@ public class PropertyItem : MemberItem ### PropertyItem\(PropertyDescriptor\) -```python +```csharp public PropertyItem(PropertyDescriptor propertyDescriptor) ``` #### Parameters -`propertyDescriptor` [PropertyDescriptor](https://learn.microsoft.com/dotnet/api/system.componentmodel.propertydescriptor) +`propertyDescriptor` PropertyDescriptor ## Properties ### DisplayName -```python +```csharp public string DisplayName { get; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IsBrowsable -```python +```csharp public bool IsBrowsable { get; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsReadOnly -```python +```csharp public bool IsReadOnly { get; } ``` #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name -```python +```csharp public string Name { get; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### PropertyDescriptor -```python +```csharp public PropertyDescriptor PropertyDescriptor { get; } ``` #### Property Value - [PropertyDescriptor](https://learn.microsoft.com/dotnet/api/system.componentmodel.propertydescriptor) + PropertyDescriptor ### PropertyType -```python +```csharp public Type PropertyType { get; } ``` #### Property Value - [Type](https://learn.microsoft.com/dotnet/api/system.type) + Type ### TypeConverter -```python +```csharp public TypeConverter TypeConverter { get; } ``` #### Property Value - [TypeConverter](https://learn.microsoft.com/dotnet/api/system.componentmodel.typeconverter) + TypeConverter ## Methods ### Is\(Type\) -```python +```csharp public bool Is(Type type) ``` #### Parameters -`type` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`type` Type #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ToString\(\) -```python +```csharp public override string ToString() ``` #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) - + string diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.ReferenceTypes.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.ReferenceTypes.md index 28823219cb..fc24fc7a38 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.ReferenceTypes.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.ReferenceTypes.md @@ -1,9 +1,10 @@ -# Enum ReferenceTypes +# Enum ReferenceTypes + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public enum ReferenceTypes ``` @@ -27,4 +28,3 @@ Can not be parametric. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.RotationAxes.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.RotationAxes.md index da5ad12e3d..03538a1bcc 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.RotationAxes.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.RotationAxes.md @@ -1,11 +1,12 @@ -# Enum RotationAxes +# Enum RotationAxes + Namespace: [VM](VM.md) Assembly: VM.dll Specifies type for rotation axes. -```python +```csharp public enum RotationAxes ``` @@ -83,4 +84,3 @@ ZYZ. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.RotationTypes.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.RotationTypes.md index 32c4d1af8d..922b8187a8 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.RotationTypes.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.RotationTypes.md @@ -1,11 +1,12 @@ -# Enum RotationTypes +# Enum RotationTypes + Namespace: [VM](VM.md) Assembly: VM.dll

    Specifies Rotation Type.

    -```python +```csharp public enum RotationTypes ``` @@ -23,4 +24,3 @@ public enum RotationTypes - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.SelectAreaTypes.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.SelectAreaTypes.md index 4e424fe302..ccfecf3fad 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.SelectAreaTypes.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.SelectAreaTypes.md @@ -1,9 +1,10 @@ -# Enum SelectAreaTypes +# Enum SelectAreaTypes + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public enum SelectAreaTypes ``` @@ -63,4 +64,3 @@ Single Selection. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.SortDirection.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.SortDirection.md index 4477bcbd86..e32c2f13c5 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.SortDirection.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.SortDirection.md @@ -1,11 +1,12 @@ -# Enum SortDirection +# Enum SortDirection + Namespace: [VM](VM.md) Assembly: VM.dll This enumerator represent the sort direction -```python +```csharp public enum SortDirection ``` @@ -23,4 +24,3 @@ Descending - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.TMatrix.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.TMatrix.md index c6cb13883e..4da76fe909 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.TMatrix.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.TMatrix.md @@ -1,9 +1,10 @@ -# Struct TMatrix +# Struct TMatrix + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public struct TMatrix : IOMatrix ``` @@ -17,7 +18,7 @@ public struct TMatrix : IOMatrix Copy construct transformation matrix -```python +```csharp public TMatrix(TMatrix mat) ``` @@ -31,7 +32,7 @@ The matrix to copy Initializes a new instance of the class. -```python +```csharp public TMatrix(Plane type, Vector vecMaster, Vector vecSlave, Vector? vecPos = null) ``` @@ -57,13 +58,13 @@ The position. Initializes a new instance of the class. -```python +```csharp public TMatrix(double[] arr) ``` #### Parameters -`arr` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arr` double\[\] The data of orientation. @@ -73,19 +74,19 @@ The data of orientation. Get/Set the array of matrix value -```python +```csharp public double[] Array { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### Identity Gets the Identity Transformation Matrix. -```python +```csharp public static TMatrix Identity { get; } ``` @@ -97,7 +98,7 @@ public static TMatrix Identity { get; } Gets the matrix of inverse transform. -```python +```csharp public TMatrix InverseTransformationMatrix { get; } ``` @@ -107,7 +108,7 @@ public TMatrix InverseTransformationMatrix { get; } #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The inverse transform of matrix operation failed. @@ -115,7 +116,7 @@ The inverse transform of matrix operation failed. Get Orientation vector of matrix -```python +```csharp public OMatrix Orientation { get; } ``` @@ -127,7 +128,7 @@ public OMatrix Orientation { get; } Get/Set Position vector of matrix -```python +```csharp public Vector Position { get; set; } ``` @@ -139,7 +140,7 @@ public Vector Position { get; set; } Get/Set X vector of matrix -```python +```csharp public Vector XVector { get; set; } ``` @@ -151,7 +152,7 @@ public Vector XVector { get; set; } Get/Set Y vector of matrix -```python +```csharp public Vector YVector { get; set; } ``` @@ -163,7 +164,7 @@ public Vector YVector { get; set; } Get/Set Z vector of matrix -```python +```csharp public Vector ZVector { get; set; } ``` @@ -173,7 +174,7 @@ public Vector ZVector { get; set; } ### this\[int\] -```python +```csharp public Vector this[int nIndex] { get; set; } ``` @@ -185,7 +186,7 @@ public Vector this[int nIndex] { get; set; } Get/Set the specific vector of matrix -```python +```csharp public Vector this[Coordinate enIndex] { get; set; } ``` @@ -195,25 +196,25 @@ public Vector this[Coordinate enIndex] { get; set; } ### this\[int, int\] -```python +```csharp public double this[int nRow, int nCol] { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### this\[Coordinate, Coordinate\] Get/Set the specific value of matrix element -```python +```csharp public double this[Coordinate enRow, Coordinate enCol] { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -221,23 +222,23 @@ public double this[Coordinate enRow, Coordinate enCol] { get; set; } Copy matrix values to the array -```python +```csharp public void CopyTo(double[] arr, int nStartIndex) ``` #### Parameters -`arr` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arr` double\[\] The array values copied to -`nStartIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nStartIndex` int The start index of array #### Exceptions - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException The condition : 16 > arr.Length - nStartIndex @@ -245,19 +246,19 @@ The condition : 16 > arr.Length - nStartIndex Determines whether the specified object is equal to the current object. -```python +```csharp public override bool Equals(object obj) ``` #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The object to compare. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the objects are equal, otherwise false. @@ -265,7 +266,7 @@ true if the objects are equal, otherwise false. Get the direction vector for axis. -```python +```csharp public Vector GetDirectionVector(Coordinate axis) ``` @@ -285,13 +286,13 @@ The direction vector. Get the direction vector for axis. -```python +```csharp public Vector GetDirectionVector(int axis) ``` #### Parameters -`axis` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`axis` int The type of axis. @@ -305,13 +306,13 @@ The direction vector. Returns the hash code for this vector -```python +```csharp public override int GetHashCode() ``` #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int A 32-bit signed integer hash code. @@ -319,7 +320,7 @@ A 32-bit signed integer hash code. Initialize the Orientation Matrix -```python +```csharp public void Initialize() ``` @@ -327,13 +328,13 @@ public void Initialize() Normalize the Orientation Matrix -```python +```csharp public void Normalize() ``` #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The normalize operation failed . @@ -341,7 +342,7 @@ The normalize operation failed . To rotate counterclockwise for coordinate. -```python +```csharp public void RotateAxisDeg(Coordinate c, double dAngle) ``` @@ -351,13 +352,13 @@ public void RotateAxisDeg(Coordinate c, double dAngle) The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -365,17 +366,17 @@ The rotate operation failed . To rotate counterclockwise for coordinate. -```python +```csharp public void RotateAxisDeg(int nCoord, double dAngle) ``` #### Parameters -`nCoord` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nCoord` int The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -383,7 +384,7 @@ The degree. To rotate counterclockwise for axis. -```python +```csharp public void RotateAxisDeg(Vector axis, double dAngle) ``` @@ -393,13 +394,13 @@ public void RotateAxisDeg(Vector axis, double dAngle) The rotation axis. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -407,7 +408,7 @@ The rotate operation failed . To rotate counterclockwise for coordinate. -```python +```csharp public void RotateAxisRad(Coordinate c, double dAngle) ``` @@ -417,13 +418,13 @@ public void RotateAxisRad(Coordinate c, double dAngle) The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -431,17 +432,17 @@ The rotate operation failed . To rotate counterclockwise for coordinate. -```python +```csharp public void RotateAxisRad(int nCoord, double dAngle) ``` #### Parameters -`nCoord` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nCoord` int The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -449,7 +450,7 @@ The radian. To rotate counterclockwise for axis. -```python +```csharp public void RotateAxisRad(Vector axis, double dAngle) ``` @@ -459,13 +460,13 @@ public void RotateAxisRad(Vector axis, double dAngle) The rotation axis. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -473,19 +474,19 @@ The rotate operation failed . To rotate counterclockwise for x-axis. -```python +```csharp public void RotateXDeg(double dAngle) ``` #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -493,19 +494,19 @@ The rotate operation failed . To rotate counterclockwise for x-axis. -```python +```csharp public void RotateXRad(double dAngle) ``` #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -513,19 +514,19 @@ The rotate operation failed . To rotate counterclockwise for y-axis. -```python +```csharp public void RotateYDeg(double dAngle) ``` #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -533,19 +534,19 @@ The rotate operation failed . To rotate counterclockwise for y-axis. -```python +```csharp public void RotateYRad(double dAngle) ``` #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -553,19 +554,19 @@ The rotate operation failed . To rotate counterclockwise for z-axis. -```python +```csharp public void RotateZDeg(double dAngle) ``` #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -573,19 +574,19 @@ The rotate operation failed . To rotate counterclockwise for z-axis. -```python +```csharp public void RotateZRad(double dAngle) ``` #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -593,7 +594,7 @@ The rotate operation failed . Set data of transformation. -```python +```csharp public void Set(TMatrix mat) ``` @@ -607,13 +608,13 @@ The transform matrix. Set data of transformation. -```python +```csharp public void Set(double[] arr) ``` #### Parameters -`arr` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arr` double\[\] The transform array. @@ -621,7 +622,7 @@ The transform array. Set data of orientation. -```python +```csharp public void SetOrientation(Plane type, Vector vecMaster, Vector vecSlave) ``` @@ -641,7 +642,7 @@ The vector for slave. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The set data of orientation operation failed . @@ -649,7 +650,7 @@ The set data of orientation operation failed . Set data of orientation. -```python +```csharp public void SetOrientation(OMatrix mat) ``` @@ -663,13 +664,13 @@ The matrix of orientation. Set data of orientation. -```python +```csharp public void SetOrientation(double[] arr) ``` #### Parameters -`arr` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arr` double\[\] The data of orientation. @@ -677,7 +678,7 @@ The data of orientation. Set data of orientation for euler angle. Unit is degree. -```python +```csharp public void SetOrientationEADeg(RotationAxes ea, double dAlpha, double dBeta, double dGamma) ``` @@ -687,21 +688,21 @@ public void SetOrientationEADeg(RotationAxes ea, double dAlpha, double dBeta, do The type of euler angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of euler angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of euler angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of euler angle. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The set data of orientation operation failed . @@ -709,7 +710,7 @@ The set data of orientation operation failed . Set data of orientation for euler angle. Unit is radian. -```python +```csharp public void SetOrientationEARad(RotationAxes ea, double dAlpha, double dBeta, double dGamma) ``` @@ -719,21 +720,21 @@ public void SetOrientationEARad(RotationAxes ea, double dAlpha, double dBeta, do The type of euler angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of euler angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of euler angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of euler angle. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The set data of orientation operation failed . @@ -741,7 +742,7 @@ The set data of orientation operation failed . Set data of orientation for fixed angle. Unit is degree. -```python +```csharp public void SetOrientationFixedAngleDeg(RotationAxes ea, double dAlpha, double dBeta, double dGamma) ``` @@ -751,21 +752,21 @@ public void SetOrientationFixedAngleDeg(RotationAxes ea, double dAlpha, double d The type of fixed angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of fixed angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of fixed angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of fixed angle. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The set data of orientation operation failed . @@ -773,7 +774,7 @@ The set data of orientation operation failed . Set data of orientation for fixed angle. Unit is radian. -```python +```csharp public void SetOrientationFixedAngleRad(RotationAxes ea, double dAlpha, double dBeta, double dGamma) ``` @@ -783,21 +784,21 @@ public void SetOrientationFixedAngleRad(RotationAxes ea, double dAlpha, double d The type of fixed angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of fixed angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of fixed angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of fixed angle. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The set data of orientation operation failed . @@ -805,7 +806,7 @@ The set data of orientation operation failed . Set the position vector. -```python +```csharp public void SetPositionVector(Vector vec) ``` @@ -817,19 +818,19 @@ The vector. ### ToString\(\) -```python +```csharp public override string ToString() ``` #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Translate\(Vector\) To translate for position. -```python +```csharp public void Translate(Vector vec) ``` @@ -843,21 +844,21 @@ The vector To translate for position. -```python +```csharp public void Translate(double dX, double dY, double dZ) ``` #### Parameters -`dX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dX` double The value of X -`dY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dY` double The value of y -`dZ` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dZ` double The value of z @@ -865,13 +866,13 @@ The value of z Transposed rows and columns of the matrix. -```python +```csharp public void TransposeOrientation() ``` #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The transpose operation failed . @@ -881,7 +882,7 @@ The transpose operation failed . Compare two transformation matrices are same or not -```python +```csharp public static bool operator ==(TMatrix matLeft, TMatrix matRight) ``` @@ -897,13 +898,13 @@ The right matrix to compare #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if two matrices are same, otherwise false. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The equality operation failed . @@ -911,7 +912,7 @@ The equality operation failed . Compare two transformation matrices are same or not -```python +```csharp public static bool operator !=(TMatrix matLeft, TMatrix matRight) ``` @@ -927,13 +928,13 @@ The right matrix to compare #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if two matrices are not same, otherwise false. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The inequality operation failed . @@ -941,7 +942,7 @@ The inequality operation failed . Cross product two orientation matrices. -```python +```csharp public static TMatrix operator *(TMatrix matA, TMatrix matB) ``` @@ -963,7 +964,7 @@ The cross product matrix. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The multiply operation failed . @@ -971,7 +972,7 @@ The multiply operation failed . Multiply vector to the matrix. -```python +```csharp public static Vector operator *(Vector vec, TMatrix mat) ``` @@ -993,8 +994,7 @@ The Multiplied vector. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The multiply operation failed . - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Unit.ConvertFactor.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Unit.ConvertFactor.md index 20b69f6f83..42709a8ab4 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Unit.ConvertFactor.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Unit.ConvertFactor.md @@ -1,17 +1,18 @@ -# Class Unit.ConvertFactor +# Class Unit.ConvertFactor + Namespace: [VM](VM.md) Assembly: VM.dll This class is to represent the convert factor. -```python +```csharp public sealed class Unit.ConvertFactor ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Unit.ConvertFactor](VM.Unit.ConvertFactor.md) ## Constructors @@ -20,7 +21,7 @@ public sealed class Unit.ConvertFactor Initializes a new instance of the class -```python +```csharp public ConvertFactor(Unit unitFrom, Unit unitTo) ``` @@ -38,7 +39,7 @@ The unit to. Initializes a new instance of the class -```python +```csharp public ConvertFactor(Unit unitFrom, Unit.ConvertFactor factor) ``` @@ -58,7 +59,7 @@ The factor. Gets the default convert factor -```python +```csharp public static Unit.ConvertFactor Default { get; } ``` @@ -70,37 +71,37 @@ public static Unit.ConvertFactor Default { get; } Gets the from UCF. -```python +```csharp public double FromUCF { get; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ToUCF Gets the to UCF. -```python +```csharp public double ToUCF { get; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### this\[string\] Gets the convert factor by using indexer -```python +```csharp public double this[string stringDimension] { get; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -108,30 +109,29 @@ public double this[string stringDimension] { get; } Calculate Shifting Unit. -```python +```csharp public double CalculateShiftingUnit(string stringType, double value) ``` #### Parameters -`stringType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`stringType` string The unit type -`value` [double](https://learn.microsoft.com/dotnet/api/system.double) +`value` double The value #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double The converted value ### Dispose\(\) -```python +```csharp public void Dispose() ``` - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Unit.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Unit.md index 47a284230b..b962d8aa74 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Unit.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Unit.md @@ -1,17 +1,18 @@ -# Class Unit +# Class Unit + Namespace: [VM](VM.md) Assembly: VM.dll This class is to represent the Unit. -```python +```csharp public sealed class Unit ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Unit](VM.Unit.md) ## Constructors @@ -20,7 +21,7 @@ public sealed class Unit Initializes a new instance of the class -```python +```csharp public Unit() ``` @@ -28,7 +29,7 @@ public Unit() Initializes a new instance of the class -```python +```csharp public Unit(Unit unitValue) ``` @@ -42,7 +43,7 @@ The unit Initializes a new instance of the class -```python +```csharp public Unit(UnitType type) ``` @@ -56,17 +57,17 @@ The type of unit Initializes a new instance of the class -```python +```csharp public Unit(SerializationInfo information, StreamingContext context) ``` #### Parameters -`information` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`information` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context @@ -76,121 +77,121 @@ The context Gets or sets the angle. -```python +```csharp public string Angle { get; set; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Force Gets or sets the force. -```python +```csharp public string Force { get; set; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Handle Gets the handle. -```python +```csharp public IntPtr Handle { get; } ``` #### Property Value - [IntPtr](https://learn.microsoft.com/dotnet/api/system.intptr) + IntPtr ### Length Gets or sets the length. -```python +```csharp public string Length { get; set; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Mass Gets or sets the mass. -```python +```csharp public string Mass { get; set; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Power Gets or sets the power -```python +```csharp public string Power { get; set; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Temperature Gets or sets the temperature -```python +```csharp public string Temperature { get; set; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Time Gets or sets the time. -```python +```csharp public string Time { get; set; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Work Gets or sets the work -```python +```csharp public string Work { get; set; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### this\[string\] Gets or sets the unit by indexer. -```python +```csharp public string this[string type] { get; set; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -198,7 +199,7 @@ public string this[string type] { get; set; } Convert to. -```python +```csharp public double ConvertTo(Unit referenceUnit, string stringType) ``` @@ -208,77 +209,77 @@ public double ConvertTo(Unit referenceUnit, string stringType) The reference unit -`stringType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`stringType` string The type #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double The convert data ### Dispose\(\) -```python +```csharp public void Dispose() ``` ### Equals\(object\) -```python +```csharp public override bool Equals(object obj) ``` #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetFactor\(string\) Get factor for unit type -```python +```csharp public double GetFactor(string type) ``` #### Parameters -`type` [string](https://learn.microsoft.com/dotnet/api/system.string) +`type` string The unit type #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double The factor ### GetHashCode\(\) -```python +```csharp public override int GetHashCode() ``` #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Initialize\(string\) Initializes a instance. -```python +```csharp public static void Initialize(string stringUnitPath) ``` #### Parameters -`stringUnitPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`stringUnitPath` string The path of unit. @@ -286,19 +287,19 @@ The path of unit. Contains unit. -```python +```csharp public bool IsContain(string stringType) ``` #### Parameters -`stringType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`stringType` string The type of unit. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if contains unit type, otherwise false. @@ -308,7 +309,7 @@ true if contains unit type, otherwise false. Compare two units -```python +```csharp public static bool operator ==(Unit left, Unit right) ``` @@ -324,7 +325,7 @@ The unit to compare #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if two units are equal, otherwise false. @@ -332,7 +333,7 @@ true if two units are equal, otherwise false. Compare two units -```python +```csharp public static bool operator !=(Unit left, Unit right) ``` @@ -348,8 +349,7 @@ The unit to compare #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if two units are not equal, otherwise false. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.UnitType.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.UnitType.md index a6364b406a..1da1f382f3 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.UnitType.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.UnitType.md @@ -1,11 +1,12 @@ -# Enum UnitType +# Enum UnitType + Namespace: [VM](VM.md) Assembly: VM.dll Specifies Unit Type. -```python +```csharp public enum UnitType ``` @@ -41,4 +42,3 @@ mmks. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Vector.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Vector.md index e08b24e05e..b9b1c72787 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.Vector.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.Vector.md @@ -1,9 +1,10 @@ -# Struct Vector +# Struct Vector + Namespace: [VM](VM.md) Assembly: VM.dll -```python +```csharp public struct Vector ``` @@ -13,7 +14,7 @@ public struct Vector Initializes a new instance of the class. -```python +```csharp public Vector(Vector vec) ``` @@ -27,21 +28,21 @@ The Vector instance to copy. Initializes a new instance of the class. -```python +```csharp public Vector(double dX, double dY, double dZ) ``` #### Parameters -`dX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dX` double The X. -`dY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dY` double The Y. -`dZ` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dZ` double The Z. @@ -49,13 +50,13 @@ The Z. Initializes a new instance of the class. -```python +```csharp public Vector(double[] arVec) ``` #### Parameters -`arVec` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arVec` double\[\] The arVec. @@ -63,29 +64,29 @@ The arVec. Initializes a new instance of the class. -```python +```csharp public Vector(double[] arVec, int nStartIndex) ``` #### Parameters -`arVec` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arVec` double\[\] The array that have values of vector. -`nStartIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nStartIndex` int The start index of array. ### Vector\(string\) -```python +```csharp public Vector(string vector) ``` #### Parameters -`vector` [string](https://learn.microsoft.com/dotnet/api/system.string) +`vector` string ## Properties @@ -93,17 +94,17 @@ public Vector(string vector) Gets the magnitude of vector. -```python +```csharp public double Magnitude { get; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The get magnitude operation failed . @@ -111,61 +112,61 @@ The get magnitude operation failed . Gets or sets the X of vector. -```python +```csharp public double X { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y Gets or sets the Y of vector. -```python +```csharp public double Y { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Z Gets or sets the Z of vector. -```python +```csharp public double Z { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### this\[int\] Gets or sets the element of vector. -```python +```csharp public double this[int nIndex] { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### this\[Coordinate\] Gets or sets the element of vector. -```python +```csharp public double this[Coordinate enCoord] { get; set; } ``` #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -173,7 +174,7 @@ public double this[Coordinate enCoord] { get; set; } Copy all values in the array of vector to the array of double. -```python +```csharp public static void CopyToArray(Vector[] arVec, double[] arTarget) ``` @@ -183,7 +184,7 @@ public static void CopyToArray(Vector[] arVec, double[] arTarget) The array of vector -`arTarget` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arTarget` double\[\] The array to store values of the array of vector. @@ -191,7 +192,7 @@ The array to store values of the array of vector. Copy all values in the array of vector to the array of double. -```python +```csharp public static void CopyToArray(Vector[] arVec, double[] arTarget, int nIndex) ``` @@ -201,11 +202,11 @@ public static void CopyToArray(Vector[] arVec, double[] arTarget, int nIndex) The array of vector -`arTarget` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arTarget` double\[\] The array to store values of the array of vector. -`nIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIndex` int The start index of array @@ -213,7 +214,7 @@ The start index of array Cross product. -```python +```csharp public Vector CrossProduct(Vector vec) ``` @@ -233,7 +234,7 @@ Result of product Dot product. -```python +```csharp public double DotProduct(Vector vec) ``` @@ -245,7 +246,7 @@ The vec. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double Result of product @@ -253,19 +254,19 @@ Result of product Determines whether the specified object is equal to the current object. -```python +```csharp public override bool Equals(object obj) ``` #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The object to compare. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the objects are equal, otherwise false. @@ -273,13 +274,13 @@ true if the objects are equal, otherwise false. Gets the array. -```python +```csharp public double[] GetArray() ``` #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] The array. @@ -287,7 +288,7 @@ The array. Gets the distance. -```python +```csharp public double GetDistance(Vector vec) ``` @@ -299,13 +300,13 @@ The vec. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double The distance #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The get distance operation failed . @@ -313,13 +314,13 @@ The get distance operation failed . Returns the hash code for this vector -```python +```csharp public override int GetHashCode() ``` #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int A 32-bit signed integer hash code. @@ -327,7 +328,7 @@ A 32-bit signed integer hash code. Gets the ortho vector. -```python +```csharp public Vector GetOrthoVector() ``` @@ -341,7 +342,7 @@ The ortho vector. Gets the ortho vector. -```python +```csharp public Vector GetOrthoVector(Vector vecCandidate) ``` @@ -359,7 +360,7 @@ The ortho vector. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The get ortho vector operation failed . @@ -367,35 +368,35 @@ The get ortho vector operation failed . Initialize the Vector -```python +```csharp public void Initialize() ``` ### IsValidFormat\(string\) -```python +```csharp public static bool IsValidFormat(string vector) ``` #### Parameters -`vector` [string](https://learn.microsoft.com/dotnet/api/system.string) +`vector` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MakeUnitVector\(\) Mate unit vector. -```python +```csharp public void MakeUnitVector() ``` #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The make unit vector operation failed . @@ -403,7 +404,7 @@ The make unit vector operation failed . Sets the value of vector. -```python +```csharp public void Set(Vector vec) ``` @@ -417,13 +418,13 @@ The Vector instance to copy. Sets the value of vector. -```python +```csharp public void Set(double[] arVec) ``` #### Parameters -`arVec` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arVec` double\[\] The array of X, Y, Z Components. @@ -431,17 +432,17 @@ The array of X, Y, Z Components. Sets the value of vector. -```python +```csharp public void Set(double[] arVec, int nStartIndex) ``` #### Parameters -`arVec` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arVec` double\[\] The array of X, Y, Z Components. -`nStartIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nStartIndex` int The start index of array. @@ -449,21 +450,21 @@ The start index of array. Sets the value of vector. -```python +```csharp public void Set(double dX, double dY, double dZ) ``` #### Parameters -`dX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dX` double The X. -`dY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dY` double The Y. -`dZ` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dZ` double The Z. @@ -471,13 +472,13 @@ The Z. Returns a string that represents the current type. -```python +```csharp public override string ToString() ``` #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string A string that represents the current object. @@ -487,7 +488,7 @@ A string that represents the current object. Add two vectors. -```python +```csharp public static Vector operator +(Vector vecLeft, Vector vecRight) ``` @@ -511,7 +512,7 @@ The added vector. Divide value to the vector. -```python +```csharp public static Vector operator /(Vector vec, double dValue) ``` @@ -521,7 +522,7 @@ public static Vector operator /(Vector vec, double dValue) The vector to divide value -`dValue` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dValue` double The value to divide @@ -535,7 +536,7 @@ The divided vector. Compare two vectors are same or not -```python +```csharp public static bool operator ==(Vector vecLeft, Vector vecRight) ``` @@ -551,7 +552,7 @@ The right vector to compare #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if two vectors are same, otherwise false. @@ -559,7 +560,7 @@ true if two vectors are same, otherwise false. Compare two vectors are same or not -```python +```csharp public static bool operator !=(Vector vecLeft, Vector vecRight) ``` @@ -575,7 +576,7 @@ The right vector to compare #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if two vectors are not same, otherwise false. @@ -583,7 +584,7 @@ true if two vectors are not same, otherwise false. Cross product two vectors. -```python +```csharp public static Vector operator *(Vector vecLeft, Vector vecRight) ``` @@ -607,7 +608,7 @@ The cross product vector. Multiply value to the vector. -```python +```csharp public static Vector operator *(Vector vec, double dValue) ``` @@ -617,7 +618,7 @@ public static Vector operator *(Vector vec, double dValue) The vector to multiply value -`dValue` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dValue` double The value to multiply @@ -631,7 +632,7 @@ The Multiplied vector. Subtract two vectors. -```python +```csharp public static Vector operator -(Vector vecLeft, Vector vecRight) ``` @@ -651,4 +652,3 @@ The right vector to subtract The subtracted vector. - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.XmlReaderExtension.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.XmlReaderExtension.md index 4b82dc761e..28bb807962 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.XmlReaderExtension.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.XmlReaderExtension.md @@ -1,17 +1,18 @@ -# Class XmlReaderExtension +# Class XmlReaderExtension + Namespace: [VM](VM.md) Assembly: VM.dll This class is to represent the xml reader utility. -```python +```csharp public static class XmlReaderExtension ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [XmlReaderExtension](VM.XmlReaderExtension.md) ## Methods @@ -20,14 +21,13 @@ public static class XmlReaderExtension Read end-element, safely. -```python +```csharp public static void ReadEndElementSafely(this XmlReader reader) ``` #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream - diff --git a/2026R1/motion_post_lib_doc-26-r1/lib/VM.md b/2026R1/motion_post_lib_doc-26-r1/lib/VM.md index 759506a892..af2692ac70 100644 --- a/2026R1/motion_post_lib_doc-26-r1/lib/VM.md +++ b/2026R1/motion_post_lib_doc-26-r1/lib/VM.md @@ -1,4 +1,5 @@ -# Namespace VM +# Namespace VM + ### Namespaces @@ -184,4 +185,3 @@ This enumerator represent the sort direction Specifies Unit Type. - diff --git a/2026R1/motion_post_lib_doc-26-r1/toc.yml b/2026R1/motion_post_lib_doc-26-r1/toc.yml index 9f9acf051d..b66d7868df 100644 --- a/2026R1/motion_post_lib_doc-26-r1/toc.yml +++ b/2026R1/motion_post_lib_doc-26-r1/toc.yml @@ -1,6 +1,6 @@ - name: Introduction href: index.md -- name: Getting started +- name: Getting Started items: - name: Result File Reader using Python language href: getting_started_result_file_reader_using_py.md @@ -16,22 +16,23 @@ items: - name: Result File Reader href: example_result_file_reader.md + - name: Analysis for Operation API + href: example_analysis_for_operation_api.md - name: Animation for Operation API href: example_animation_for_operation_api.md - name: Chart for Operation API href: example_chart_for_operation_api.md - name: Export for Operation API - href: example_export_for_operation_api.md - - name: Analysis for Operation API - href: example_analysis_for_operation_api.md + href: example_export_for_operation_api.md + - name: Import for Operation API + href: example_Import_for_operation_api.md - name: View for Operation API - href: example_view_for_operation_api.md + href: example_view_for_operation_api.md - name: Trobleshooting href: troubleshooting.md - name: Reference href: lib/VM.Operations.Post.Interfaces.md - items: - - name: VM + items: - name: VM href: lib/VM.md items: - name: Classes @@ -185,6 +186,10 @@ items: - name: ApplicationHandler href: lib/VM.API.Post.Operations.ApplicationHandler.md + - name: DurabilityAnalysis + href: lib/VM.API.Post.Operations.DurabilityAnalysis.md + - name: Export + href: lib/VM.API.Post.Operations.Export.md - name: OperationAPIService href: lib/VM.API.Post.Operations.OperationAPIService.md - name: VM.Collections @@ -219,19 +224,30 @@ items: - name: Convert href: lib/VM.Managed.Utility.Convert.md + - name: VM.Operations.Post + href: lib/VM.Operations.Post.md + items: + - name: Classes + items: + - name: DurabilityAnalysisParameter + href: lib/VM.Operations.Post.DurabilityAnalysisParameter.md + - name: FatigueParameter + href: lib/VM.Operations.Post.FatigueParameter.md - name: VM.Operations.Post.Interfaces href: lib/VM.Operations.Post.Interfaces.md items: - name: Interfaces items: - - name: IOperationAnalysisResultViewModel - href: lib/VM.Operations.Post.Interfaces.IOperationAnalysisResultViewModel.md + - name: IOperationAnalysisResult + href: lib/VM.Operations.Post.Interfaces.IOperationAnalysisResult.md + - name: IOperationFEProperty + href: lib/VM.Operations.Post.Interfaces.IOperationFEProperty.md + - name: IOperationMaterial + href: lib/VM.Operations.Post.Interfaces.IOperationMaterial.md - name: IOperationsAnimation href: lib/VM.Operations.Post.Interfaces.IOperationsAnimation.md - name: IOperationsAxisViewModelBase href: lib/VM.Operations.Post.Interfaces.IOperationsAxisViewModelBase.md - - name: IOperationsBase - href: lib/VM.Operations.Post.Interfaces.IOperationsBase.md - name: IOperationsCSYSViewModel href: lib/VM.Operations.Post.Interfaces.IOperationsCSYSViewModel.md - name: IOperationsCalculusLineDataSeriesViewModel @@ -248,8 +264,8 @@ href: lib/VM.Operations.Post.Interfaces.IOperationsEigenValueAnalysisResultViewModel.md - name: IOperationsElementViewModel href: lib/VM.Operations.Post.Interfaces.IOperationsElementViewModel.md - - name: IOperationsFEBodyViewModel - href: lib/VM.Operations.Post.Interfaces.IOperationsFEBodyViewModel.md + - name: IOperationsFEBody + href: lib/VM.Operations.Post.Interfaces.IOperationsFEBody.md - name: IOperationsFFTLineDataSeriesViewModel href: lib/VM.Operations.Post.Interfaces.IOperationsFFTLineDataSeriesViewModel.md - name: IOperationsFrequencyViewModel diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.AdvancedRestriction.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.AdvancedRestriction.md index 30db963de7..62092235c0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.AdvancedRestriction.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.AdvancedRestriction.md @@ -1,4 +1,5 @@ -# Struct AdvancedRestriction +# Struct AdvancedRestriction + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -29,19 +30,19 @@ public AdvancedRestriction(ExpressionValueVariable stiffnessCoefficient, Express #### Parameters -`stiffnessCoefficient` ExpressionValueVariable +`stiffnessCoefficient` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The stiffnessCoefficient. -`exponentOfPenetration` ExpressionValueVariable +`exponentOfPenetration` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The exponentOfPenetration. -`maxDampingCoefficient` ExpressionValueVariable +`maxDampingCoefficient` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The maxDampingCoefficient. -`boundaryPenetration` ExpressionValueVariable +`boundaryPenetration` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The boundaryPenetration. @@ -57,7 +58,7 @@ public ExpressionValueVariable BoundaryPenetration { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ExponentOfPenetration @@ -69,7 +70,7 @@ public ExpressionValueVariable ExponentOfPenetration { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MaxDampingCoefficient @@ -81,7 +82,7 @@ public ExpressionValueVariable MaxDampingCoefficient { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### StiffnessCoefficient @@ -93,5 +94,5 @@ public ExpressionValueVariable StiffnessCoefficient { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ArrayAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ArrayAPI.md index 4af78e14ff..ab781755c3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ArrayAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ArrayAPI.md @@ -1,4 +1,5 @@ -# Class ArrayAPI +# Class ArrayAPI + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class ArrayAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ArrayAPI](VM.API.Pre.ArrayAPI.md) #### Extension Methods @@ -34,15 +35,15 @@ public static Obj CreateArray(this SubSystemDocument document, ExpressionValueVa #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the array. -`size` ExpressionValueVariable +`size` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The number of array size. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of array. @@ -50,7 +51,7 @@ The name of array. The symmetric type of the new -`isInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isInterface` bool The flag of interface. @@ -62,11 +63,11 @@ The new < #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'size' values less than 0. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.AssembledBodyAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.AssembledBodyAPI.md index ebad3e0da9..7a69032f65 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.AssembledBodyAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.AssembledBodyAPI.md @@ -1,4 +1,5 @@ -# Class AssembledBodyAPI +# Class AssembledBodyAPI + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class AssembledBodyAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AssembledBodyAPI](VM.API.Pre.AssembledBodyAPI.md) #### Extension Methods @@ -34,11 +35,11 @@ public static Obj CreateAssembledBody(this SubSystemDocument document, string pa #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the assembled body. -`partFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`partFilePath` string The file path of imported part document @@ -46,7 +47,7 @@ The file path of imported part document The transformation matrix for a assembled body. -`bodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bodyName` string The name of the body. If empty, default name starts with 'ABD_' will be generated and used. @@ -58,11 +59,11 @@ The new Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class BeamGroupAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BeamGroupAPI](VM.API.Pre.BeamGroupAPI.md) #### Extension Methods @@ -35,7 +36,7 @@ public static Obj CreateBeamGroup(this SubSystemDocument subSystemDocument, Vect #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a beam group. @@ -51,19 +52,19 @@ The end point of a beam group. The Y-direction of a beam group. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a beam group. -`crossSection` CrossSectionType +`crossSection` [CrossSectionType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.FE.BeamCrossSection/BeamCrossSection.cs) The cross section of a beam group. -`crossSectionValueInfo` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`crossSectionValueInfo` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The cross section value info of a beam group. -`noOfElement` ExpressionValueVariable? +`noOfElement` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The num of element of a beam group. @@ -71,7 +72,7 @@ The num of element of a beam group. The material of a beam group. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of a beam group. @@ -83,11 +84,11 @@ the new to create a beam group. -`positions` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`positions` IEnumerable The positions of a beam group. @@ -116,19 +117,19 @@ The positions of a beam group. The Y-direction of a beam group. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a beam group. -`crossSection` CrossSectionType +`crossSection` [CrossSectionType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.FE.BeamCrossSection/BeamCrossSection.cs) The cross section of a beam group. -`crossSectionValueInfo` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`crossSectionValueInfo` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The cross section value info of a beam group. -`noOfElement` ExpressionValueVariable? +`noOfElement` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The num of element of a beam group. @@ -136,7 +137,7 @@ The num of element of a beam group. The material of a beam group. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of a beam group. @@ -148,15 +149,15 @@ the new to create a beam group. -`filePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`filePath` string The file path of a beam group. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a beam group. -`crossSection` CrossSectionType +`crossSection` [CrossSectionType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.FE.BeamCrossSection/BeamCrossSection.cs) The cross section of a beam group. @@ -193,11 +194,11 @@ The cross section of a beam group. The Y Direction. -`crossSectionValueInfo` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`crossSectionValueInfo` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The cross section value info of a beam group. -`noOfElement` ExpressionValueVariable? +`noOfElement` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The num of element of a beam group. @@ -205,7 +206,7 @@ The num of element of a beam group. The material of a beam group. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of a beam group. @@ -217,15 +218,15 @@ the new Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class BodyAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BodyAPI](VM.API.Pre.BodyAPI.md) #### Extension Methods @@ -39,11 +40,11 @@ public static void CreateMeshFileInPart(this Obj body, string pathMeshFile, bool The to generate mesh file. -`pathMeshFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`pathMeshFile` string Generated mesh file path. -`addToModel` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`addToModel` bool The flag that indicates adding new mesh file to the model. @@ -53,11 +54,11 @@ Facet parameters. If it is not given, default values will be used. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if body or pathMeshFile arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'body' is not . @@ -72,7 +73,7 @@ public static Obj CreatePartMarker(this PartDocument document, Obj body, TMatrix #### Parameters -`document` PartDocument +`document` [PartDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs) The document to create a marker. @@ -84,7 +85,7 @@ The The transformation matrix for a marker. -`markerName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`markerName` string The name of the marker. If empty, default name starts with 'MK_' will be generated and used. @@ -96,11 +97,11 @@ the new . @@ -116,7 +117,7 @@ public static Obj CreateSolidBlock(this PartDocument document, Vector position, #### Parameters -`document` PartDocument +`document` [PartDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs) The document to create the block solid body. @@ -124,19 +125,19 @@ The document to create the block solid body. The position to create the block solid body. -`width` ExpressionValueVariable +`width` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The width of the block. -`height` ExpressionValueVariable +`height` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The height of the block. -`depth` ExpressionValueVariable +`depth` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The depth of the blodk. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the new block geometry. The default value is '0xBFAAAA' @@ -148,11 +149,11 @@ The new Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public class BooleanAPI.CheckClash #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BooleanAPI.CheckClash](VM.API.Pre.BooleanAPI.CheckClash.md) #### Extension Methods @@ -40,7 +41,7 @@ public KeyInfo TargetKey { get; set; } #### Property Value - KeyInfo + [KeyInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/KeyInfo.cs) ### ToolKey @@ -52,5 +53,5 @@ public KeyInfo ToolKey { get; set; } #### Property Value - KeyInfo + [KeyInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/KeyInfo.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.BooleanAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.BooleanAPI.md index f4003e2509..68e63a55f9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.BooleanAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.BooleanAPI.md @@ -1,4 +1,5 @@ -# Class BooleanAPI +# Class BooleanAPI + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class BooleanAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BooleanAPI](VM.API.Pre.BooleanAPI.md) #### Extension Methods @@ -46,7 +47,7 @@ The tool of a body. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool the object seleted by this API. @@ -64,9 +65,9 @@ public static void IntersectBody(this IDocument document, Obj targetBody, IEnume `targetBody` [Obj](VM.API.Pre.Obj.md) -`toolBodies` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`toolBodies` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> -`reserveToolBody` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`reserveToolBody` bool ### SubtractBody\(IDocument, Obj, Obj, bool\) @@ -84,7 +85,7 @@ public static void SubtractBody(this IDocument document, Obj targetBody, Obj too `toolBody` [Obj](VM.API.Pre.Obj.md) -`reserveToolBody` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`reserveToolBody` bool ### UniteBody\(IDocument, Obj, IEnumerable, bool\) @@ -100,7 +101,7 @@ public static void UniteBody(this IDocument document, Obj targetBody, IEnumerabl `targetBody` [Obj](VM.API.Pre.Obj.md) -`toolBodies` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`toolBodies` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> -`reserveToolBody` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`reserveToolBody` bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.BooleanOperationType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.BooleanOperationType.md index 2e9925986a..4a2e21a14b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.BooleanOperationType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.BooleanOperationType.md @@ -1,4 +1,5 @@ -# Enum BooleanOperationType +# Enum BooleanOperationType + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.CAD.Heal.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.CAD.Heal.md index e2a90db267..01ce49f440 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.CAD.Heal.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.CAD.Heal.md @@ -1,4 +1,5 @@ -# Class Heal +# Class Heal + Namespace: [VM.API.Pre.CAD](VM.API.Pre.CAD.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class Heal #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Heal](VM.API.Pre.CAD.Heal.md) #### Extension Methods @@ -36,17 +37,17 @@ public static int HasDefect(this Body body, Action actOutMessage = null, The target body to check the defect. -`actOutMessage` [Action](https://learn.microsoft.com/dotnet/api/system.action\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`actOutMessage` Action The action delegate for output message. -`bShowDetailedInformation` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bShowDetailedInformation` bool The flag whether showing the detailed information. #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int The error type. @@ -64,17 +65,17 @@ public static int HasDefect(this IGeometryContainer geometryContainer, Action +`actOutMessage` Action The action delegate for output message. -`bShowDetailedInformation` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bShowDetailedInformation` bool The flag whether showing the detailed information. #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int The error type. @@ -89,13 +90,13 @@ public static int HasDefect(Obj entity, Action actOutMessage = null, boo `entity` [Obj](VM.API.Pre.Obj.md) -`actOutMessage` [Action](https://learn.microsoft.com/dotnet/api/system.action\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`actOutMessage` Action -`bShowDetailedInformation` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bShowDetailedInformation` bool #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Repair\(Body, Action\) @@ -111,13 +112,13 @@ public static int Repair(this Body body, Action actOutMessage = null) The target body to repair. -`actOutMessage` [Action](https://learn.microsoft.com/dotnet/api/system.action\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`actOutMessage` Action The action delegate for output message. #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int The error type. @@ -135,13 +136,13 @@ public static int Repair(this IGeometryContainer geometryContainer, Action +`actOutMessage` Action The action delegate for output message. #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int The error type. @@ -156,9 +157,9 @@ public static int Repair(Obj entity, Action actOutMessage = null) `entity` [Obj](VM.API.Pre.Obj.md) -`actOutMessage` [Action](https://learn.microsoft.com/dotnet/api/system.action\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`actOutMessage` Action #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.CAD.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.CAD.md index b54e66ea4b..10d6272fbc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.CAD.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.CAD.md @@ -1,4 +1,5 @@ -# Namespace VM.API.Pre.CAD +# Namespace VM.API.Pre.CAD + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.CADImportResultType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.CADImportResultType.md index fc2d3a7868..df5d6fbb0c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.CADImportResultType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.CADImportResultType.md @@ -1,4 +1,5 @@ -# Enum CADImportResultType +# Enum CADImportResultType + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Car.CarDocumentAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Car.CarDocumentAPI.md index 8c2d7b4e5b..0f2dc621c7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Car.CarDocumentAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Car.CarDocumentAPI.md @@ -1,4 +1,5 @@ -# Class CarDocumentAPI +# Class CarDocumentAPI + Namespace: [VM.API.Pre.Car](VM.API.Pre.Car.md) Assembly: VM.API.Pre.Car.dll @@ -11,7 +12,7 @@ public static class CarDocumentAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CarDocumentAPI](VM.API.Pre.Car.CarDocumentAPI.md) #### Extension Methods @@ -33,25 +34,25 @@ public static void ChangeGroupDriveline(this TestRigDocumentBase document, bool #### Parameters -`document` TestRigDocumentBase +`document` [TestRigDocumentBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs) The document to be changed group. -`activeFront` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`activeFront` bool The flag for active front. -`activeRear` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`activeRear` bool The flag for active rear. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'document' argument is not assembly. @@ -66,21 +67,21 @@ public static void ChangeGroupKinematicAndCompliance(this TestRigDocumentBase do #### Parameters -`document` TestRigDocumentBase +`document` [TestRigDocumentBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs) The document to be changed group. -`kinematic` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`kinematic` bool The flag for using kinematic. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'document' argument is not assembly. @@ -94,11 +95,11 @@ public static AntiRollBarDocument CreateNewAntiRollBarFromTemplateDocument(strin #### Parameters -`newAntiRollBarFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newAntiRollBarFromTemplateFilePath` string The file path of new anti-roll bar from template file path. -`existedAntiRollBarTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`existedAntiRollBarTemplateFilePath` string The file path of existed anti-roll bar template file path. @@ -108,7 +109,7 @@ The minor role type. The default value is Any. #### Returns - AntiRollBarDocument + [AntiRollBarDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/AntiRollBarDocument.cs) The new object that is created by this API. @@ -122,11 +123,11 @@ public static AntiRollBarDocument CreateNewAntiRollBarTemplateDocument(string ne #### Parameters -`newAntiRollBarFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newAntiRollBarFilePath` string The file path of new anti-roll bar. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. The default value is AntiRollBar. @@ -134,7 +135,7 @@ The name of document. The default value is AntiRollBar. The unit information. -`iconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`iconSize` double The size of icon. The default value is 1. @@ -144,13 +145,13 @@ The length unit of kernel. The default value is mm. #### Returns - AntiRollBarDocument + [AntiRollBarDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/AntiRollBarDocument.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newAntiRollBarFilePath' argument is null. @@ -164,11 +165,11 @@ public static BodyDocument CreateNewBodyFromTemplateDocument(string newBodyFromT #### Parameters -`newBodyFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newBodyFromTemplateFilePath` string The file path of new body from template file path. -`existedBodyTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`existedBodyTemplateFilePath` string The file path of existed body template file path. @@ -178,7 +179,7 @@ The minor role type. The default value is Any. #### Returns - BodyDocument + [BodyDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/BodyDocument.cs) The new object that is created by this API. @@ -192,11 +193,11 @@ public static BodyDocument CreateNewBodyTemplateDocument(string newBodyFilePath, #### Parameters -`newBodyFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newBodyFilePath` string The file path of new body. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. The default value is Body. @@ -204,7 +205,7 @@ The name of document. The default value is Body. The unit information. -`iconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`iconSize` double The size of icon. The default value is 1. @@ -214,13 +215,13 @@ The length unit of kernel. The default value is mm. #### Returns - BodyDocument + [BodyDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/BodyDocument.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newBodyFilePath' argument is null. @@ -234,11 +235,11 @@ public static BrakeSystemDocument CreateNewBrakeSystemFromTemplateDocument(strin #### Parameters -`newBrakeSystemFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newBrakeSystemFromTemplateFilePath` string The file path of new brake system from template file path. -`existedBrakeSystemTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`existedBrakeSystemTemplateFilePath` string The file path of existed brake system template file path. @@ -248,7 +249,7 @@ The minor role type. The default value is Any. #### Returns - BrakeSystemDocument + [BrakeSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/BrakeSystemDocument.cs) The new object that is created by this API. @@ -262,11 +263,11 @@ public static BrakeSystemDocument CreateNewBrakeSystemTemplateDocument(string ne #### Parameters -`newBrakeSystemFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newBrakeSystemFilePath` string The file path of new brake system. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. The default value is BrakeSystem. @@ -274,7 +275,7 @@ The name of document. The default value is BrakeSystem. The unit information. -`iconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`iconSize` double The size of icon. The default value is 1. @@ -284,13 +285,13 @@ The length unit of kernel. The default value is mm. #### Returns - BrakeSystemDocument + [BrakeSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/BrakeSystemDocument.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newBrakeSystemFilePath' argument is null. @@ -304,11 +305,11 @@ public static PropertyBumpstopDocument CreateNewBumpStopPropertyDocument(string #### Parameters -`newBumpStopPropertyFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newBumpStopPropertyFilePath` string The file path of new bump stop property file path. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. The default value is Bumpstop. @@ -322,7 +323,7 @@ The length unit of kernel. #### Returns - PropertyBumpstopDocument + [PropertyBumpstopDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/Bumpstop.cs) The new object that is created by this API. @@ -336,11 +337,11 @@ public static PropertyBushDocument CreateNewBushPropertyDocument(string newBushP #### Parameters -`newBushPropertyFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newBushPropertyFilePath` string The file path of new bump stop property file path. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. The default value is Bush. @@ -354,7 +355,7 @@ The length unit of kernel. #### Returns - PropertyBushDocument + [PropertyBushDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Bush.cs) The new object that is created by this API. @@ -368,11 +369,11 @@ public static PropertyDamperDocument CreateNewDamperPropertyDocument(string newD #### Parameters -`newDamperPropertyFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newDamperPropertyFilePath` string The file path of new bump stop property file path. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. The default value is Damper. @@ -386,7 +387,7 @@ The length unit of kernel. #### Returns - PropertyDamperDocument + [PropertyDamperDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/Damper.cs) The new object that is created by this API. @@ -400,11 +401,11 @@ public static DriveLineDocument CreateNewDriveLineFromTemplateDocument(string ne #### Parameters -`newDriveLineFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newDriveLineFromTemplateFilePath` string The file path of new drive line from template file path. -`existedDriveLineTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`existedDriveLineTemplateFilePath` string The file path of existed drive line template file path. @@ -414,7 +415,7 @@ The minor role type. The default value is Any. #### Returns - DriveLineDocument + [DriveLineDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/DriveLineDocument.cs) The new object that is created by this API. @@ -428,11 +429,11 @@ public static DriveLineDocument CreateNewDriveLineTemplateDocument(string newDri #### Parameters -`newDriveLineFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newDriveLineFilePath` string The file path of new drive line. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. The default value is DriveLine. @@ -440,7 +441,7 @@ The name of document. The default value is DriveLine. The unit information. -`iconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`iconSize` double The size of icon. The default value is 1. @@ -450,13 +451,13 @@ The length unit of kernel. The default value is mm. #### Returns - DriveLineDocument + [DriveLineDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/DriveLineDocument.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newDriveLineFilePath' argument is null. @@ -472,47 +473,47 @@ public static FourPostTestRigDocument CreateNewFourPostTestRigFromTemplateDocume #### Parameters -`newTestRigFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newTestRigFromTemplateFilePath` string The file path of new 4-post test-rig from template file path. -`testRigTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`testRigTemplateFilePath` string The file path of test-rig template file path. -`frontSuspensionFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`frontSuspensionFromTemplateFilePath` string The file path of front suspension template file path. -`rearSuspensionFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`rearSuspensionFromTemplateFilePath` string The file path of rear suspension template file path. -`steeringFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`steeringFromTemplateFilePath` string The file path of steering template file path. -`frontWheelFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`frontWheelFromTemplateFilePath` string The file path of front wheel template file path. -`rearWheelFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`rearWheelFromTemplateFilePath` string The file path of rear wheel template file path. -`bodyFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bodyFromTemplateFilePath` string The file path of body template file path. -`breakFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`breakFromTemplateFilePath` string The file path of break template file path. -`powerTrainFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`powerTrainFromTemplateFilePath` string The file path of power train template file path. -`otherFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`otherFromTemplateFilePath` string\[\] The file path of other template file path. The default value is null. @@ -524,7 +525,7 @@ The gravity value. The unit information. -`iconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`iconSize` double The size of icon. @@ -534,17 +535,17 @@ The length unit of kernel. #### Returns - FourPostTestRigDocument + [FourPostTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFullCar/FourPostTestRigDocument.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newTestRigFromTemplateFilePath' argument is null. - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if 'testRigTemplateFilePath', 'frontSuspensionFromTemplateFilePath', 'rearSuspensionFromTemplateFilePath', 'steeringFromTemplateFilePath', 'frontWheelFromTemplateFilePath', 'rearWheelFromTemplateFilePath', 'bodyFromTemplateFilePath' files are not exist. @@ -558,11 +559,11 @@ public static FourPostTestRigDocument CreateNewFourPostTestRigTemplateDocument(s #### Parameters -`newTestRigFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newTestRigFilePath` string The file path of new 4 post test-rig. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. The default value is test rig. @@ -570,7 +571,7 @@ The name of document. The default value is test rig. The unit information. -`iconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`iconSize` double The size of icon. The default value is 1. @@ -580,13 +581,13 @@ The length unit of kernel. The default value is mm. #### Returns - FourPostTestRigDocument + [FourPostTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFullCar/FourPostTestRigDocument.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newTestRigFilePath' argument is null. @@ -602,47 +603,47 @@ public static VehicleTestRigDocument CreateNewFullCarTestRigFromTemplateDocument #### Parameters -`newTestRigFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newTestRigFromTemplateFilePath` string The file path of new full test-rig from template file path. -`testRigTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`testRigTemplateFilePath` string The file path of test-rig template file path. -`frontSuspensionFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`frontSuspensionFromTemplateFilePath` string The file path of front suspension template file path. -`rearSuspensionFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`rearSuspensionFromTemplateFilePath` string The file path of rear suspension template file path. -`steeringFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`steeringFromTemplateFilePath` string The file path of steering template file path. -`frontWheelFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`frontWheelFromTemplateFilePath` string The file path of front wheel template file path. -`rearWheelFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`rearWheelFromTemplateFilePath` string The file path of rear wheel template file path. -`bodyFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bodyFromTemplateFilePath` string The file path of body template file path. -`breakFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`breakFromTemplateFilePath` string The file path of break template file path. -`powerTrainFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`powerTrainFromTemplateFilePath` string The file path of power train template file path. -`otherFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`otherFromTemplateFilePath` string\[\] The file path of other template file path. The default value is null. @@ -654,7 +655,7 @@ The gravity value. The unit information. -`iconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`iconSize` double The size of icon. @@ -664,17 +665,17 @@ The length unit of kernel. #### Returns - VehicleTestRigDocument + [VehicleTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFullCar/VehicleTestRigDocument.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newTestRigFromTemplateFilePath' argument is null. - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if 'testRigTemplateFilePath', 'frontSuspensionFromTemplateFilePath', 'rearSuspensionFromTemplateFilePath', 'steeringFromTemplateFilePath', 'frontWheelFromTemplateFilePath', 'rearWheelFromTemplateFilePath', 'bodyFromTemplateFilePath' files are not exist. @@ -688,11 +689,11 @@ public static VehicleTestRigDocument CreateNewFullCarTestRigTemplateDocument(str #### Parameters -`newTestRigFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newTestRigFilePath` string The file path of new full test-rig. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. The default value is test rig. @@ -700,7 +701,7 @@ The name of document. The default value is test rig. The unit information. -`iconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`iconSize` double The size of icon. The default value is 1. @@ -710,13 +711,13 @@ The length unit of kernel. The default value is mm. #### Returns - VehicleTestRigDocument + [VehicleTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFullCar/VehicleTestRigDocument.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newTestRigFilePath' argument is null. @@ -732,23 +733,23 @@ public static TestRigDocument CreateNewHalfCarTestRigFromTemplateDocument(string #### Parameters -`newTestRigFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newTestRigFromTemplateFilePath` string The file path of new half test-rig from template file path. -`testRigTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`testRigTemplateFilePath` string The file path of half test-rig template file path. -`suspensionFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`suspensionFromTemplateFilePath` string The file path of suspension template file path. -`steeringFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`steeringFromTemplateFilePath` string The file path of steering template file path. The default value is null. -`otherFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`otherFromTemplateFilePath` string\[\] The file path of other template file path. The default value is null. @@ -760,7 +761,7 @@ The gravity value. The unit information. -`iconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`iconSize` double The size of icon. @@ -770,17 +771,17 @@ The length unit of kernel. #### Returns - TestRigDocument + [TestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newTestRigFromTemplateFilePath' argument is null. - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if 'testRigTemplateFilePath', 'suspensionFromTemplateFilePath' files are not exist. @@ -794,11 +795,11 @@ public static TestRigDocument CreateNewHalfCarTestRigTemplateDocument(string new #### Parameters -`newTestRigFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newTestRigFilePath` string The file path of new half test-rig. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. The default value is test rig. @@ -806,7 +807,7 @@ The name of document. The default value is test rig. The unit information. -`iconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`iconSize` double The size of icon. The default value is 1. @@ -816,13 +817,13 @@ The length unit of kernel. The default value is mm. #### Returns - TestRigDocument + [TestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newTestRigFilePath' argument is null. @@ -836,11 +837,11 @@ public static PowerTrainDocument CreateNewPowerTrainFromTemplateDocument(string #### Parameters -`newPowerTrainFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newPowerTrainFromTemplateFilePath` string The file path of new power train from template file path. -`existedPowerTrainTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`existedPowerTrainTemplateFilePath` string The file path of existed power train template file path. @@ -850,7 +851,7 @@ The minor role type. The default value is Any. #### Returns - PowerTrainDocument + [PowerTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/PowerTrainDocument.cs) The new object that is created by this API. @@ -864,11 +865,11 @@ public static PowerTrainDocument CreateNewPowerTrainTemplateDocument(string newP #### Parameters -`newPowerTrainFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newPowerTrainFilePath` string The file path of new power train. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. The default value is PowerTrain. @@ -876,7 +877,7 @@ The name of document. The default value is PowerTrain. The unit information. -`iconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`iconSize` double The size of icon. The default value is 1. @@ -886,13 +887,13 @@ The length unit of kernel. The default value is mm. #### Returns - PowerTrainDocument + [PowerTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/PowerTrainDocument.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newPowerTrainFilePath' argument is null. @@ -906,11 +907,11 @@ public static PropertyReboundstopDocument CreateNewReboundStopPropertyDocument(s #### Parameters -`newReboundStopPropertyFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newReboundStopPropertyFilePath` string The file path of new bump stop property file path. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. The default value is ReboundStop. @@ -924,7 +925,7 @@ The length unit of kernel. #### Returns - PropertyReboundstopDocument + [PropertyReboundstopDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/Reboundstop.cs) The new object that is created by this API. @@ -940,39 +941,39 @@ public static ShimmyJudderTestRigDocument CreateNewShimmyAndJudderTestRigFromTem #### Parameters -`newTestRigFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newTestRigFromTemplateFilePath` string The file path of new shimmy and judder test-rig from template file path. -`testRigTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`testRigTemplateFilePath` string The file path of test-rig template file path. -`frontSuspensionFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`frontSuspensionFromTemplateFilePath` string The file path of front suspension template file path. -`rearSuspensionFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`rearSuspensionFromTemplateFilePath` string The file path of rear suspension template file path. -`steeringFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`steeringFromTemplateFilePath` string The file path of steering template file path. -`bodyFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bodyFromTemplateFilePath` string The file path of body template file path. -`breakFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`breakFromTemplateFilePath` string The file path of break template file path. -`powerTrainFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`powerTrainFromTemplateFilePath` string The file path of power train template file path. -`otherFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`otherFromTemplateFilePath` string\[\] The file path of other template file path. The default value is null. @@ -984,7 +985,7 @@ The gravity value. The unit information. -`iconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`iconSize` double The size of icon. @@ -994,17 +995,17 @@ The length unit of kernel. #### Returns - ShimmyJudderTestRigDocument + [ShimmyJudderTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFullCar/ShimmyJudderTestRigDocument.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newTestRigFromTemplateFilePath' argument is null. - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if 'testRigTemplateFilePath', 'frontSuspensionFromTemplateFilePath', 'rearSuspensionFromTemplateFilePath', 'steeringFromTemplateFilePath', 'bodyFromTemplateFilePath' files are not exist. @@ -1018,11 +1019,11 @@ public static ShimmyJudderTestRigDocument CreateNewShimmyAndJudderTestRigTemplat #### Parameters -`newTestRigFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newTestRigFilePath` string The file path of new shimmy and judder test-rig. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. The default value is test rig. @@ -1030,7 +1031,7 @@ The name of document. The default value is test rig. The unit information. -`iconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`iconSize` double The size of icon. The default value is 1. @@ -1040,13 +1041,13 @@ The length unit of kernel. The default value is mm. #### Returns - ShimmyJudderTestRigDocument + [ShimmyJudderTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFullCar/ShimmyJudderTestRigDocument.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newTestRigFilePath' argument is null. @@ -1060,11 +1061,11 @@ public static PropertySpringDocument CreateNewSpringPropertyDocument(string newS #### Parameters -`newSpringPropertyFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newSpringPropertyFilePath` string The file path of new bump stop property file path. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. The default value is Spring. @@ -1078,7 +1079,7 @@ The length unit of kernel. #### Returns - PropertySpringDocument + [PropertySpringDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/Spring.cs) The new object that is created by this API. @@ -1092,11 +1093,11 @@ public static SteeringDocument CreateNewSteeringFromTemplateDocument(string newS #### Parameters -`newSteeringFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newSteeringFromTemplateFilePath` string The file path of new steering from template file path. -`existedSteeringTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`existedSteeringTemplateFilePath` string The file path of existed steering template file path. @@ -1106,7 +1107,7 @@ The minor role type. The default value is Front. #### Returns - SteeringDocument + [SteeringDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SteeringDocument.cs) The new object that is created by this API. @@ -1120,11 +1121,11 @@ public static SteeringDocument CreateNewSteeringTemplateDocument(string newSteer #### Parameters -`newSteeringFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newSteeringFilePath` string The file path of new steering. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. The default value is Steering. @@ -1132,7 +1133,7 @@ The name of document. The default value is Steering. The unit information. -`iconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`iconSize` double The size of icon. The default value is 1. @@ -1142,13 +1143,13 @@ The length unit of kernel. The default value is mm. #### Returns - SteeringDocument + [SteeringDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SteeringDocument.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newSteeringFilePath' argument is null. @@ -1162,11 +1163,11 @@ public static SuspensionDocument CreateNewSuspensionFromTemplateDocument(string #### Parameters -`newSuspensionFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newSuspensionFromTemplateFilePath` string The file path of new suspension from template file path. -`existedSuspensionTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`existedSuspensionTemplateFilePath` string The file path of existed suspension template file path. @@ -1176,7 +1177,7 @@ The minor role type. The default value is Front. #### Returns - SuspensionDocument + [SuspensionDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionDocument.cs) The new object that is created by this API. @@ -1190,11 +1191,11 @@ public static SuspensionDocument CreateNewSuspensionTemplateDocument(string newS #### Parameters -`newSuspensionFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newSuspensionFilePath` string The file path of new suspension. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. The default value is suspension. @@ -1202,7 +1203,7 @@ The name of document. The default value is suspension. The unit information. -`iconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`iconSize` double The size of icon. The default value is 1. @@ -1212,13 +1213,13 @@ The length unit of kernel. The default value is mm. #### Returns - SuspensionDocument + [SuspensionDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionDocument.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newSuspensionFilePath' argument is null. @@ -1234,15 +1235,15 @@ public static TireTestRigDocument CreateNewTireTestRigFromTemplateDocument(strin #### Parameters -`newTestRigFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newTestRigFromTemplateFilePath` string The file path of new tire test-rig from template file path. -`testRigTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`testRigTemplateFilePath` string The file path of test-rig template file path. -`wheelFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`wheelFromTemplateFilePath` string The file path of wheel template file path. @@ -1254,7 +1255,7 @@ The gravity value. The unit information. -`iconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`iconSize` double The size of icon. @@ -1264,17 +1265,17 @@ The length unit of kernel. #### Returns - TireTestRigDocument + [TireTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TireTestRigDocument.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newTestRigFromTemplateFilePath' argument is null. - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if 'testRigTemplateFilePath', 'wheelFromTemplateFilePath' files are not exist. @@ -1288,11 +1289,11 @@ public static TireTestRigDocument CreateNewTireTestRigTemplateDocument(string ne #### Parameters -`newTestRigFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newTestRigFilePath` string The file path of new tire test-rig. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. The default value is test rig. @@ -1300,7 +1301,7 @@ The name of document. The default value is test rig. The unit information. -`iconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`iconSize` double The size of icon. The default value is 1. @@ -1310,13 +1311,13 @@ The length unit of kernel. The default value is mm. #### Returns - TireTestRigDocument + [TireTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TireTestRigDocument.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newTestRigFilePath' argument is null. @@ -1330,11 +1331,11 @@ public static WheelDocument CreateNewWheelFromTemplateDocument(string newWheelFr #### Parameters -`newWheelFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newWheelFromTemplateFilePath` string The file path of new wheel from template file path. -`existedWheelTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`existedWheelTemplateFilePath` string The file path of existed wheel template file path. @@ -1344,7 +1345,7 @@ The minor role type. The default value is Front. #### Returns - WheelDocument + [WheelDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/WheelDocument.cs) The new object that is created by this API. @@ -1358,11 +1359,11 @@ public static WheelDocument CreateNewWheelTemplateDocument(string newWheelFilePa #### Parameters -`newWheelFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newWheelFilePath` string The file path of new wheel. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. The default value is Wheel. @@ -1370,7 +1371,7 @@ The name of document. The default value is Wheel. The unit information. -`iconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`iconSize` double The size of icon. The default value is 1. @@ -1380,13 +1381,13 @@ The length unit of kernel. The default value is mm. #### Returns - WheelDocument + [WheelDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/WheelDocument.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newWheelFilePath' argument is null. @@ -1400,53 +1401,53 @@ public static void FourPostReplaceAssembly(this FourPostTestRigDocument document #### Parameters -`document` FourPostTestRigDocument +`document` [FourPostTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFullCar/FourPostTestRigDocument.cs) The document to be replaced. -`frontSuspensionPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`frontSuspensionPath` string The front suspension path. The default value is "". -`rearSuspensionPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`rearSuspensionPath` string The rear suspension path. The default value is "". -`steeringPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`steeringPath` string The steering path. The default value is "". -`frontWheelPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`frontWheelPath` string The front wheel path. The default value is "". -`rearWheelPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`rearWheelPath` string The rear wheel path. The default value is "". -`bodyPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bodyPath` string The body path. The default value is "". -`brakePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`brakePath` string The brake path. The default value is "". -`powerTrainPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`powerTrainPath` string The power train path. The default value is "". -`otherPaths` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`otherPaths` IEnumerable The other paths. The default value is "". #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'document' argument is not assembly. @@ -1460,53 +1461,53 @@ public static void FullCarReplaceAssembly(this VehicleTestRigDocument document, #### Parameters -`document` VehicleTestRigDocument +`document` [VehicleTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFullCar/VehicleTestRigDocument.cs) The document to be replaced. -`frontSuspensionPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`frontSuspensionPath` string The front suspension path. The default value is "". -`rearSuspensionPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`rearSuspensionPath` string The rear suspension path. The default value is "". -`steeringPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`steeringPath` string The steering path. The default value is "". -`frontWheelPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`frontWheelPath` string The front wheel path. The default value is "". -`rearWheelPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`rearWheelPath` string The rear wheel path. The default value is "". -`bodyPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bodyPath` string The body path. The default value is "". -`brakePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`brakePath` string The brake path. The default value is "". -`powerTrainPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`powerTrainPath` string The power train path. The default value is "". -`otherPaths` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`otherPaths` IEnumerable The other paths. The default value is "". #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'document' argument is not assembly. @@ -1521,21 +1522,21 @@ public static void ModifyDesignParameter(this TestRigDocumentBase document, Dict #### Parameters -`document` TestRigDocumentBase +`document` [TestRigDocumentBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs) The document to be changed group. -`dicParam` [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)\> +`dicParam` Dictionary\> The dictionary to be contained filepath and parameter information. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'document' argument is not assembly. @@ -1550,7 +1551,7 @@ public static void ModifyModelingParameter(this TestRigDocumentBase document, Ob #### Parameters -`document` TestRigDocumentBase +`document` [TestRigDocumentBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs) The document to be changed group. @@ -1560,11 +1561,11 @@ The target. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'document' argument is not assembly. @@ -1578,45 +1579,45 @@ public static void ShimmyJudderReplaceAssembly(this ShimmyJudderTestRigDocument #### Parameters -`document` ShimmyJudderTestRigDocument +`document` [ShimmyJudderTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFullCar/ShimmyJudderTestRigDocument.cs) The document to be replaced. -`frontSuspensionPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`frontSuspensionPath` string The front suspension path. The default value is "". -`rearSuspensionPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`rearSuspensionPath` string The rear suspension path. The default value is "". -`steeringPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`steeringPath` string The steering path. The default value is "". -`bodyPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bodyPath` string The body path. The default value is "". -`brakePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`brakePath` string The brake path. The default value is "". -`powerTrainPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`powerTrainPath` string The power train path. The default value is "". -`otherPaths` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`otherPaths` IEnumerable The other paths. The default value is "". #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'document' argument is not assembly. @@ -1630,29 +1631,29 @@ public static void SuspensionReplaceAssembly(this TestRigDocument document, stri #### Parameters -`document` TestRigDocument +`document` [TestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs) The document to be replaced. -`suspensionPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`suspensionPath` string The suspension path. The default value is "". -`steeringPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`steeringPath` string The steering path. The default value is "". -`otherPaths` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`otherPaths` IEnumerable The other paths. The default value is "". #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'document' argument is not assembly. @@ -1666,21 +1667,21 @@ public static void TireReplaceAssembly(this TireTestRigDocument document, string #### Parameters -`document` TireTestRigDocument +`document` [TireTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TireTestRigDocument.cs) The document to be replaced. -`wheelPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`wheelPath` string The wheel path. The default value is "". #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'document' argument is not assembly. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Car.CarForceAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Car.CarForceAPI.md index 8e1aa71937..c61954318a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Car.CarForceAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Car.CarForceAPI.md @@ -1,4 +1,5 @@ -# Class CarForceAPI +# Class CarForceAPI + Namespace: [VM.API.Pre.Car](VM.API.Pre.Car.md) Assembly: VM.API.Pre.Car.dll @@ -11,7 +12,7 @@ public static class CarForceAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CarForceAPI](VM.API.Pre.Car.CarForceAPI.md) #### Extension Methods @@ -40,15 +41,15 @@ public static Obj CreateBumpStop(this IPostTemplateBasedDocument document, strin The to create a bump stop. -`propertyFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyFilePath` string The bump stop property file path. -`baseEntity` Obj +`baseEntity` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The base entity of a bump stop. -`actionEntity` Obj +`actionEntity` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The action entity of a bump stop. @@ -60,7 +61,7 @@ The base position of a bump stop. The action position of a bump stop. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a bump stop. @@ -70,25 +71,25 @@ The symmetric type of the new object created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document', 'baseEntity', 'actionEntity' argument is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'baseEntity', 'actionEntity' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if extension of 'propertyFilePath' is not .cpfbsxml. - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if 'propertyFilePath' does not exist. @@ -110,15 +111,15 @@ public static Obj CreateBush(this IPostTemplateBasedDocument document, string pr The to create a bush. -`propertyFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyFilePath` string The bush property file path. -`baseEntity` Obj +`baseEntity` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The base entity of a bush. -`actionEntity` Obj +`actionEntity` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The action entity of a bush. @@ -130,7 +131,7 @@ The base position of a bush. The orientation of a bush force. The default value is identity. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a bush. @@ -140,29 +141,29 @@ The symmetric type of the new object created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document', 'baseEntity', 'actionEntity' argument is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'baseEntity', 'actionEntity' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if extension of 'propertyFilePath' is not .dfpfbxml. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of 'orientation' is 0. - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if 'propertyFilePath' does not exist. @@ -184,15 +185,15 @@ public static Obj CreateDamper(this IPostTemplateBasedDocument document, string The to create a damper. -`propertyFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyFilePath` string The damper property file path. -`baseEntity` Obj +`baseEntity` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The base entity of a damper. -`actionEntity` Obj +`actionEntity` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The action entity of a damper. @@ -204,7 +205,7 @@ The base position of a damper. The action position of a damper. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a damper. @@ -214,25 +215,25 @@ The symmetric type of the new object created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document', 'baseEntity', 'actionEntity' argument is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'baseEntity', 'actionEntity' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if extension of 'propertyFilePath' is not .cpfdxml. - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if 'propertyFilePath' does not exist. @@ -254,15 +255,15 @@ public static Obj CreateReboundStop(this IPostTemplateBasedDocument document, st The to create a rebound stop. -`propertyFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyFilePath` string The rebound stop property file path. -`baseEntity` Obj +`baseEntity` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The base entity of a rebound stop. -`actionEntity` Obj +`actionEntity` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The action entity of a rebound stop. @@ -274,7 +275,7 @@ The base position of a rebound stop. The action position of a rebound stop. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a rebound stop. @@ -284,25 +285,25 @@ The symmetric type of the new object created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document', 'baseEntity', 'actionEntity' argument is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'baseEntity', 'actionEntity' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if extension of 'propertyFilePath' is not .cpfrbsxml. - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if 'propertyFilePath' does not exist. @@ -324,15 +325,15 @@ public static Obj CreateSpring(this IPostTemplateBasedDocument document, string The to create a spring. -`propertyFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyFilePath` string The spring property file path. -`baseEntity` Obj +`baseEntity` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The base entity of a spring. -`actionEntity` Obj +`actionEntity` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The action entity of a spring. @@ -344,7 +345,7 @@ The base position of a spring. The action position of a spring. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a spring. @@ -354,25 +355,25 @@ The symmetric type of the new object created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document', 'baseEntity', 'actionEntity' argument is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'baseEntity', 'actionEntity' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if extension of 'propertyFilePath' is not .cpfsxml. - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if 'propertyFilePath' does not exist. @@ -388,11 +389,11 @@ public static Obj CreateTire(this SubSystemDocument subSystemDocument, string ti #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a tire force. -`tirePropertyFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`tirePropertyFile` string The tire property file of a tire force. @@ -400,35 +401,35 @@ The tire property file of a tire force. The transform of a tire force. -`side` WheelBodyBase.SideType +`side` [WheelBodyBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs).[SideType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs) The side of a tire force. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a leaf spring. -`cmOffset` ExpressionValueVariable? +`cmOffset` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The CM Offset of a tire force. -`mass` ExpressionValueVariable? +`mass` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The mass of a tire force. -`lxxlyy` ExpressionValueVariable? +`lxxlyy` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The lxxlyy of a tire force. -`lzz` ExpressionValueVariable? +`lzz` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The lzz of a tire force. -`wheelCenterOffset` ExpressionValueVariable? +`wheelCenterOffset` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The wheel center offset of a tire force. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of a tire force. @@ -436,23 +437,23 @@ The color of a tire force. The symmetric type of the new Tire. -`isInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isInterface` bool 'true' if it is interface body. Otherwise, 'false'. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) the new Tire object created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'subSystemDocument' argument is null. - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if 'tirePropertyFile' file does not exist. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Car.CarSimulationAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Car.CarSimulationAPI.md index bb8cda4d3e..85e4591ea7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Car.CarSimulationAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Car.CarSimulationAPI.md @@ -1,4 +1,5 @@ -# Class CarSimulationAPI +# Class CarSimulationAPI + Namespace: [VM.API.Pre.Car](VM.API.Pre.Car.md) Assembly: VM.API.Pre.Car.dll @@ -11,7 +12,7 @@ public static class CarSimulationAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CarSimulationAPI](VM.API.Pre.Car.CarSimulationAPI.md) #### Extension Methods @@ -34,17 +35,17 @@ public static void ExportDFG(this TestRigDocument document, string targetPath) #### Parameters -`document` TestRigDocument +`document` [TestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs) The for exporting DFG file. If null, the active document will be used. -`targetPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`targetPath` string The file path to export DFG file exclude file extension. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'targetPath' arguments are empty. @@ -60,17 +61,17 @@ public static void ExportDFG(this VehicleTestRigDocument document, string target #### Parameters -`document` VehicleTestRigDocument +`document` [VehicleTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFullCar/VehicleTestRigDocument.cs) The for exporting DFG file. If null, the active document will be used. -`targetPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`targetPath` string The file path to export DFG file exclude file extension. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'targetPath' arguments are empty. @@ -86,17 +87,17 @@ public static void ExportDFG(this TireTestRigDocument document, string targetPat #### Parameters -`document` TireTestRigDocument +`document` [TireTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TireTestRigDocument.cs) The for exporting DFG file. If null, the active document will be used. -`targetPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`targetPath` string The file path to export DFG file exclude file extension. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'targetPath' arguments are empty. @@ -112,17 +113,17 @@ public static void ExportDFG(this FourPostTestRigDocument document, string targe #### Parameters -`document` FourPostTestRigDocument +`document` [FourPostTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFullCar/FourPostTestRigDocument.cs) The for exporting DFG file. If null, the active document will be used. -`targetPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`targetPath` string The file path to export DFG file exclude file extension. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'targetPath' arguments are empty. @@ -138,17 +139,17 @@ public static void ExportDFG(this ShimmyJudderTestRigDocument document, string t #### Parameters -`document` ShimmyJudderTestRigDocument +`document` [ShimmyJudderTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFullCar/ShimmyJudderTestRigDocument.cs) The for exporting DFG file. If null, the active document will be used. -`targetPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`targetPath` string The file path to export DFG file exclude file extension. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'targetPath' arguments are empty. @@ -164,17 +165,17 @@ public static void ExportDFS(this TestRigDocument document, string targetPath) #### Parameters -`document` TestRigDocument +`document` [TestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs) The for exporting DFS file. If null, the active document will be used. -`targetPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`targetPath` string The file path to export DFS file exclude file extension. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'targetPath' arguments are empty. @@ -190,17 +191,17 @@ public static void ExportDFS(this VehicleTestRigDocument document, string target #### Parameters -`document` VehicleTestRigDocument +`document` [VehicleTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFullCar/VehicleTestRigDocument.cs) The for exporting DFS file. If null, the active document will be used. -`targetPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`targetPath` string The file path to export DFS file exclude file extension. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'targetPath' arguments are empty. @@ -216,17 +217,17 @@ public static void ExportDFS(this TireTestRigDocument document, string targetPat #### Parameters -`document` TireTestRigDocument +`document` [TireTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TireTestRigDocument.cs) The for exporting DFS file. If null, the active document will be used. -`targetPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`targetPath` string The file path to export DFS file exclude file extension. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'targetPath' arguments are empty. @@ -242,17 +243,17 @@ public static void ExportDFS(this FourPostTestRigDocument document, string targe #### Parameters -`document` FourPostTestRigDocument +`document` [FourPostTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFullCar/FourPostTestRigDocument.cs) The for exporting DFS file. If null, the active document will be used. -`targetPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`targetPath` string The file path to export DFS file exclude file extension. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'targetPath' arguments are empty. @@ -268,17 +269,17 @@ public static void ExportDFS(this ShimmyJudderTestRigDocument document, string t #### Parameters -`document` ShimmyJudderTestRigDocument +`document` [ShimmyJudderTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFullCar/ShimmyJudderTestRigDocument.cs) The for exporting DFS file. If null, the active document will be used. -`targetPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`targetPath` string The file path to export DFS file exclude file extension. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'targetPath' arguments are empty. @@ -294,17 +295,17 @@ public static void ExportDFSXML(this TestRigDocument document, string targetPath #### Parameters -`document` TestRigDocument +`document` [TestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs) The for exporting DFSXML file. If null, the active document will be used. -`targetPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`targetPath` string The file path to export DFSXML file exclude file extension. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'targetPath' arguments are empty. @@ -320,17 +321,17 @@ public static void ExportDFSXML(this VehicleTestRigDocument document, string tar #### Parameters -`document` VehicleTestRigDocument +`document` [VehicleTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFullCar/VehicleTestRigDocument.cs) The for exporting DFSXML file. If null, the active document will be used. -`targetPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`targetPath` string The file path to export DFSXML file exclude file extension. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'targetPath' arguments are empty. @@ -346,17 +347,17 @@ public static void ExportDFSXML(this TireTestRigDocument document, string target #### Parameters -`document` TireTestRigDocument +`document` [TireTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TireTestRigDocument.cs) The for exporting DFSXML file. If null, the active document will be used. -`targetPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`targetPath` string The file path to export DFSXML file exclude file extension. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'targetPath' arguments are empty. @@ -372,17 +373,17 @@ public static void ExportDFSXML(this FourPostTestRigDocument document, string ta #### Parameters -`document` FourPostTestRigDocument +`document` [FourPostTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFullCar/FourPostTestRigDocument.cs) The for exporting DFSXML file. If null, the active document will be used. -`targetPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`targetPath` string The file path to export DFSXML file exclude file extension. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'targetPath' arguments are empty. @@ -398,17 +399,227 @@ public static void ExportDFSXML(this ShimmyJudderTestRigDocument document, strin #### Parameters -`document` ShimmyJudderTestRigDocument +`document` [ShimmyJudderTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFullCar/ShimmyJudderTestRigDocument.cs) The for exporting DFSXML file. If null, the active document will be used. -`targetPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`targetPath` string The file path to export DFSXML file exclude file extension. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException + +Will be thrown if 'document' or 'targetPath' arguments are empty. + +### ExportMotionFiles\(TestRigDocument, string, bool, bool, bool, bool\) + +Export motion files. + +```csharp +[NotNull(new string[] { "document" })] +[NotNullOrEmpty(new string[] { "targetPath" })] +public static void ExportMotionFiles(this TestRigDocument document, string targetPath, bool writeDFS, bool writeXML, bool writeDFG, bool includeReferenceFiles) +``` + +#### Parameters + +`document` [TestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs) + +The for exporting motion files. If null, the active document will be used. + +`targetPath` string + +The file path to export motion files exclude file extension. + +`writeDFS` bool + +The flag for whether to write on dfs or not. + +`writeXML` bool + +The flag for whether to write on dfsxml or not. + +`writeDFG` bool + +The flag for whether to write on dfg or not. + +`includeReferenceFiles` bool + +The flag for whether to include reference files or not. + +#### Exceptions + + ArgumentNullException + +Will be thrown if 'document' or 'targetPath' arguments are empty. + +### ExportMotionFiles\(VehicleTestRigDocument, string, bool, bool, bool, bool\) + +Export motion files. + +```csharp +[NotNull(new string[] { "document" })] +[NotNullOrEmpty(new string[] { "targetPath" })] +public static void ExportMotionFiles(this VehicleTestRigDocument document, string targetPath, bool writeDFS, bool writeXML, bool writeDFG, bool includeReferenceFiles) +``` + +#### Parameters + +`document` [VehicleTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFullCar/VehicleTestRigDocument.cs) + +The for exporting motion files. If null, the active document will be used. + +`targetPath` string + +The file path to export motion files exclude file extension. + +`writeDFS` bool + +The flag for whether to write on dfs or not. + +`writeXML` bool + +The flag for whether to write on dfsxml or not. + +`writeDFG` bool + +The flag for whether to write on dfg or not. + +`includeReferenceFiles` bool + +The flag for whether to include reference files or not. + +#### Exceptions + + ArgumentNullException + +Will be thrown if 'document' or 'targetPath' arguments are empty. + +### ExportMotionFiles\(TireTestRigDocument, string, bool, bool, bool, bool\) + +Export motion files. + +```csharp +[NotNull(new string[] { "document" })] +[NotNullOrEmpty(new string[] { "targetPath" })] +public static void ExportMotionFiles(this TireTestRigDocument document, string targetPath, bool writeDFS, bool writeXML, bool writeDFG, bool includeReferenceFiles) +``` + +#### Parameters + +`document` [TireTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TireTestRigDocument.cs) + +The for exporting motion files. If null, the active document will be used. + +`targetPath` string + +The file path to export motion files exclude file extension. + +`writeDFS` bool + +The flag for whether to write on dfs or not. + +`writeXML` bool + +The flag for whether to write on dfsxml or not. + +`writeDFG` bool + +The flag for whether to write on dfg or not. + +`includeReferenceFiles` bool + +The flag for whether to include reference files or not. + +#### Exceptions + + ArgumentNullException + +Will be thrown if 'document' or 'targetPath' arguments are empty. + +### ExportMotionFiles\(FourPostTestRigDocument, string, bool, bool, bool, bool\) + +Export motion files. + +```csharp +[NotNull(new string[] { "document" })] +[NotNullOrEmpty(new string[] { "targetPath" })] +public static void ExportMotionFiles(this FourPostTestRigDocument document, string targetPath, bool writeDFS, bool writeXML, bool writeDFG, bool includeReferenceFiles) +``` + +#### Parameters + +`document` [FourPostTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFullCar/FourPostTestRigDocument.cs) + +The for exporting motion files. If null, the active document will be used. + +`targetPath` string + +The file path to export motion files exclude file extension. + +`writeDFS` bool + +The flag for whether to write on dfs or not. + +`writeXML` bool + +The flag for whether to write on dfsxml or not. + +`writeDFG` bool + +The flag for whether to write on dfg or not. + +`includeReferenceFiles` bool + +The flag for whether to include reference files or not. + +#### Exceptions + + ArgumentNullException + +Will be thrown if 'document' or 'targetPath' arguments are empty. + +### ExportMotionFiles\(ShimmyJudderTestRigDocument, string, bool, bool, bool, bool\) + +Export motion files. + +```csharp +[NotNull(new string[] { "document" })] +[NotNullOrEmpty(new string[] { "targetPath" })] +public static void ExportMotionFiles(this ShimmyJudderTestRigDocument document, string targetPath, bool writeDFS, bool writeXML, bool writeDFG, bool includeReferenceFiles) +``` + +#### Parameters + +`document` [ShimmyJudderTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFullCar/ShimmyJudderTestRigDocument.cs) + +The for exporting motion files. If null, the active document will be used. + +`targetPath` string + +The file path to export motion files exclude file extension. + +`writeDFS` bool + +The flag for whether to write on dfs or not. + +`writeXML` bool + +The flag for whether to write on dfsxml or not. + +`writeDFG` bool + +The flag for whether to write on dfg or not. + +`includeReferenceFiles` bool + +The flag for whether to include reference files or not. + +#### Exceptions + + ArgumentNullException Will be thrown if 'document' or 'targetPath' arguments are empty. @@ -423,21 +634,21 @@ public static void RunSimulation(this TestRigDocument document, SimulationRun.Si #### Parameters -`document` TestRigDocument +`document` [TestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs) The for simulate. If null, the active document will be used. -`simulationParameter` SimulationRun.SimulationParameter +`simulationParameter` [SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs).[SimulationParameter](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) The simulation parameter. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'document' argument is not assembly. @@ -452,21 +663,21 @@ public static void RunSimulation(this VehicleTestRigDocument document, Simulatio #### Parameters -`document` VehicleTestRigDocument +`document` [VehicleTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFullCar/VehicleTestRigDocument.cs) The for simulate. If null, the active document will be used. -`simulationParameter` SimulationRun.SimulationParameter +`simulationParameter` [SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs).[SimulationParameter](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) The simulation parameter. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'document' argument is not assembly. @@ -481,21 +692,21 @@ public static void RunSimulation(this TireTestRigDocument document, SimulationRu #### Parameters -`document` TireTestRigDocument +`document` [TireTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TireTestRigDocument.cs) The for simulate. If null, the active document will be used. -`simulationParameter` SimulationRun.SimulationParameter +`simulationParameter` [SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs).[SimulationParameter](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) The simulation parameter. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'document' argument is not assembly. @@ -510,21 +721,21 @@ public static void RunSimulation(this FourPostTestRigDocument document, Simulati #### Parameters -`document` FourPostTestRigDocument +`document` [FourPostTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFullCar/FourPostTestRigDocument.cs) The for simulate. If null, the active document will be used. -`simulationParameter` SimulationRun.SimulationParameter +`simulationParameter` [SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs).[SimulationParameter](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) The simulation parameter. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'document' argument is not assembly. @@ -539,21 +750,21 @@ public static void RunSimulation(this ShimmyJudderTestRigDocument document, Simu #### Parameters -`document` ShimmyJudderTestRigDocument +`document` [ShimmyJudderTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFullCar/ShimmyJudderTestRigDocument.cs) The for simulate. If null, the active document will be used. -`simulationParameter` SimulationRun.SimulationParameter +`simulationParameter` [SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs).[SimulationParameter](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) The simulation parameter. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'document' argument is not assembly. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Car.DocumentAPIImpl.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Car.DocumentAPIImpl.md index b459fadbf6..84db1a2b31 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Car.DocumentAPIImpl.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Car.DocumentAPIImpl.md @@ -1,4 +1,5 @@ -# Class DocumentAPIImpl +# Class DocumentAPIImpl + Namespace: [VM.API.Pre.Car](VM.API.Pre.Car.md) Assembly: VM.API.Pre.Car.dll @@ -11,7 +12,7 @@ public static class DocumentAPIImpl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DocumentAPIImpl](VM.API.Pre.Car.DocumentAPIImpl.md) #### Extension Methods @@ -33,11 +34,11 @@ public static T CreateNewPropertyDocumentImpl(string newPropertyFilePath, str #### Parameters -`newPropertyFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newPropertyFilePath` string The file path of new property document. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. @@ -49,11 +50,11 @@ The unit information. The length unit of kernel. -`extension` [string](https://learn.microsoft.com/dotnet/api/system.string) +`extension` string The extension. -`documentType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentType` string The document type. @@ -71,7 +72,7 @@ The document type #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newPropertyFilePath' argument is null. @@ -87,11 +88,11 @@ public static T CreateNewSubsystemFromTemplateDocumentImpl(string newSubsyste #### Parameters -`newSubsystemFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newSubsystemFromTemplateFilePath` string The file path of new subsystem from template file path. -`existedSubsystemTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`existedSubsystemTemplateFilePath` string The file path of existed subsystem template file path. @@ -99,11 +100,11 @@ The file path of existed subsystem template file path. The minor role type. -`extension` [string](https://learn.microsoft.com/dotnet/api/system.string) +`extension` string The extension. -`documentType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentType` string The document type. @@ -121,11 +122,11 @@ The document type #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newSubsystemFromTemplateFilePath' argument is null. - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if 'existedSubsystemTemplateFilePath' does not exist. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Car.FullCarAssembly.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Car.FullCarAssembly.md index ca5bf7a932..89f46b821c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Car.FullCarAssembly.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Car.FullCarAssembly.md @@ -1,4 +1,5 @@ -# Struct FullCarAssembly +# Struct FullCarAssembly + Namespace: [VM.API.Pre.Car](VM.API.Pre.Car.md) Assembly: VM.API.Pre.Car.dll @@ -21,39 +22,39 @@ public FullCarAssembly(string frontSuspensionPath, string rearSuspensionPath, st #### Parameters -`frontSuspensionPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`frontSuspensionPath` string The front suspension path. -`rearSuspensionPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`rearSuspensionPath` string The rear suspension path. -`steeringPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`steeringPath` string The steering path. -`frontWheelPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`frontWheelPath` string The front wheel path. -`rearWheelPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`rearWheelPath` string The rear wheel path. -`bodyPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bodyPath` string The body path. -`brakePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`brakePath` string The brake path. -`powerTrainPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`powerTrainPath` string The power train path. -`otherPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`otherPath` string The other path. @@ -69,7 +70,7 @@ public string BodyPath { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### BrakePath @@ -81,7 +82,7 @@ public string BrakePath { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### FrontSuspensionPath @@ -93,7 +94,7 @@ public string FrontSuspensionPath { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### FrontWheelPath @@ -105,7 +106,7 @@ public string FrontWheelPath { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### OtherPath @@ -117,7 +118,7 @@ public string OtherPath { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### PowerTrainPath @@ -129,7 +130,7 @@ public string PowerTrainPath { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RearSuspensionPath @@ -141,7 +142,7 @@ public string RearSuspensionPath { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RearWheelPath @@ -153,7 +154,7 @@ public string RearWheelPath { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SteeringPath @@ -165,5 +166,5 @@ public string SteeringPath { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Car.SuspensionAssembly.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Car.SuspensionAssembly.md index 36c6eb4851..b2490c1207 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Car.SuspensionAssembly.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Car.SuspensionAssembly.md @@ -1,4 +1,5 @@ -# Struct SuspensionAssembly +# Struct SuspensionAssembly + Namespace: [VM.API.Pre.Car](VM.API.Pre.Car.md) Assembly: VM.API.Pre.Car.dll @@ -21,15 +22,15 @@ public SuspensionAssembly(string suspensionPath, string steeringPath, string oth #### Parameters -`suspensionPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`suspensionPath` string The suspension path. -`steeringPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`steeringPath` string The steering path. -`otherPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`otherPath` string The other path. @@ -45,7 +46,7 @@ public string OtherPath { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SteeringPath @@ -57,7 +58,7 @@ public string SteeringPath { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SuspensionPath @@ -69,5 +70,5 @@ public string SuspensionPath { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Car.TireAssembly.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Car.TireAssembly.md index 513451ff41..f065fb9432 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Car.TireAssembly.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Car.TireAssembly.md @@ -1,4 +1,5 @@ -# Struct TireAssembly +# Struct TireAssembly + Namespace: [VM.API.Pre.Car](VM.API.Pre.Car.md) Assembly: VM.API.Pre.Car.dll @@ -21,7 +22,7 @@ public TireAssembly(string wheelPath) #### Parameters -`wheelPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`wheelPath` string The wheel path. @@ -37,5 +38,5 @@ public string WheelPath { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Car.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Car.md index 179672eb5b..af8c417858 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Car.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Car.md @@ -1,4 +1,5 @@ -# Namespace VM.API.Pre.Car +# Namespace VM.API.Pre.Car + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ChannelDirectionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ChannelDirectionType.md index ed23b144aa..8c522f1735 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ChannelDirectionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ChannelDirectionType.md @@ -1,4 +1,5 @@ -# Enum ChannelDirectionType +# Enum ChannelDirectionType + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Clearance.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Clearance.md index c07622b8c4..9abdccfd5c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Clearance.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Clearance.md @@ -1,4 +1,5 @@ -# Class Clearance +# Class Clearance + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public class Clearance #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Clearance](VM.API.Pre.Clearance.md) #### Derived @@ -45,19 +46,19 @@ public Clearance(ExpressionValueVariable stiffnessCoefficient, ExpressionValueVa #### Parameters -`stiffnessCoefficient` ExpressionValueVariable +`stiffnessCoefficient` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The stiffness coefficient. -`exponentOfPenetration` ExpressionValueVariable +`exponentOfPenetration` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The exponent of penetration. -`maxDampingCoefficient` ExpressionValueVariable +`maxDampingCoefficient` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The max damping coefficient. -`useDampingEffectInVoid` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`useDampingEffectInVoid` bool The use damping effect in void. @@ -73,7 +74,7 @@ public ExpressionValueVariable ExponentOfPenetration { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MaxDampingCoefficient @@ -85,7 +86,7 @@ public ExpressionValueVariable MaxDampingCoefficient { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### StiffnessCoefficient @@ -97,7 +98,7 @@ public ExpressionValueVariable StiffnessCoefficient { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### UseDampingEffectInVoid @@ -109,5 +110,5 @@ public bool UseDampingEffectInVoid { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ClearanceRevolute.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ClearanceRevolute.md index 11f2abcbe5..27f2e625f6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ClearanceRevolute.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ClearanceRevolute.md @@ -1,4 +1,5 @@ -# Class ClearanceRevolute +# Class ClearanceRevolute + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public class ClearanceRevolute : Clearance #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Clearance](VM.API.Pre.Clearance.md) ← [ClearanceRevolute](VM.API.Pre.ClearanceRevolute.md) @@ -48,27 +49,27 @@ public ClearanceRevolute(ExpressionValueVariable stiffnessCoefficient, Expressio #### Parameters -`stiffnessCoefficient` ExpressionValueVariable +`stiffnessCoefficient` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The stiffness coefficient. -`exponentOfPenetration` ExpressionValueVariable +`exponentOfPenetration` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The exponent of penetration. -`maxDampingCoefficient` ExpressionValueVariable +`maxDampingCoefficient` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The max damping coefficient. -`useDampingEffectInVoid` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`useDampingEffectInVoid` bool The use damping effect in void. -`radialClearance` ExpressionValueVariable +`radialClearance` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The radial clearance. -`axialClearance` ExpressionValueVariable +`axialClearance` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The axial clearance. @@ -84,7 +85,7 @@ public ExpressionValueVariable AxialClearance { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RadialClearance @@ -96,5 +97,5 @@ public ExpressionValueVariable RadialClearance { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ClearanceTranslational.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ClearanceTranslational.md index e856b728e0..168c8e45f7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ClearanceTranslational.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ClearanceTranslational.md @@ -1,4 +1,5 @@ -# Class ClearanceTranslational +# Class ClearanceTranslational + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public class ClearanceTranslational : Clearance #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Clearance](VM.API.Pre.Clearance.md) ← [ClearanceTranslational](VM.API.Pre.ClearanceTranslational.md) @@ -48,27 +49,27 @@ public ClearanceTranslational(ExpressionValueVariable stiffnessCoefficient, Expr #### Parameters -`stiffnessCoefficient` ExpressionValueVariable +`stiffnessCoefficient` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The stiffness coefficient. -`exponentOfPenetration` ExpressionValueVariable +`exponentOfPenetration` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The exponent of penetration. -`maxDampingCoefficient` ExpressionValueVariable +`maxDampingCoefficient` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The max damping coefficient. -`useDampingEffectInVoid` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`useDampingEffectInVoid` bool The use damping effect in void. -`xClearance` ExpressionValueVariable +`xClearance` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The x clearance. -`yClearance` ExpressionValueVariable +`yClearance` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The y clearance. @@ -84,7 +85,7 @@ public ExpressionValueVariable XClearance { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### YClearance @@ -96,5 +97,5 @@ public ExpressionValueVariable YClearance { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.CoSimulator.CoSimulatorAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.CoSimulator.CoSimulatorAPI.md index 4a5a36332b..33f3932c40 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.CoSimulator.CoSimulatorAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.CoSimulator.CoSimulatorAPI.md @@ -1,4 +1,5 @@ -# Class CoSimulatorAPI +# Class CoSimulatorAPI + Namespace: [VM.API.Pre.CoSimulator](VM.API.Pre.CoSimulator.md) Assembly: VM.API.Pre.CoSimulator.dll @@ -11,7 +12,7 @@ public static class CoSimulatorAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CoSimulatorAPI](VM.API.Pre.CoSimulator.CoSimulatorAPI.md) #### Extension Methods @@ -33,7 +34,7 @@ public static Obj CreateSInput(this SubSystemDocument document, UnitName unit = #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the scalar input. @@ -41,19 +42,19 @@ The document to create the scalar input. The unit of the scalar input. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the scalar input. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. @@ -70,11 +71,11 @@ public static Obj CreateSOutput(this SubSystemDocument document, Obj formula, Un #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the scalar output. -`formula` Obj +`formula` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The formula of the scalar output. @@ -82,23 +83,23 @@ The formula of the scalar output. The unit of the scalar output. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the scalar output. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document', 'formula' is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'formula' is not . @@ -115,49 +116,49 @@ public static void ExecuteMatlabProcess(this Obj fileGen, string strFileName, st #### Parameters -`fileGen` Obj +`fileGen` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The M file generation to excute process. -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string The file name of a matlab file to be generated. -`strFileDir` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileDir` string The file path of matlab file to be generated. -`inputs` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`inputs` IEnumerable<[Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)\> The inputs of the M file generation setting. -`outputs` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`outputs` IEnumerable<[Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)\> The outputs of the M file generation setting. -`strInterfacePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInterfacePath` string The interface folder path of the M file generation setting. -`interfaceTimeStep` ExpressionValueVariable? +`interfaceTimeStep` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The interface time step of the M file generation setting. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'fileGen', 'strFileName' 'strFileDir', 'strInterfacePath' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'fileGen' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'inputs' is not or if the type of 'output' is not . - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'interfaceTimeStep' value is equal to or less than 0. @@ -174,29 +175,29 @@ public static void ExecuteProcess(this Obj fileGen, string strFileName, string s #### Parameters -`fileGen` Obj +`fileGen` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The file generation to excute process. -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string The file name of a fmu file to be generated. -`strFileDir` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileDir` string The file path of a fmu file to be generated. -`strInterfacePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInterfacePath` string The interface folder path. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'fileGen', 'strFileName', 'strFileDir', 'strInterfacePath' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'fileGen' is not . @@ -213,33 +214,33 @@ public static void ExportMatlabModel(this Obj fileGen, IEnumerable inputs, #### Parameters -`fileGen` Obj +`fileGen` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The file generation to export matlab model. -`inputs` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`inputs` IEnumerable<[Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)\> The inputs of the matlab file generation setting. -`outputs` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`outputs` IEnumerable<[Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)\> The outputs of the matlab file generation setting. -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string The file name of a matlab file to be generated. -`strFileDir` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileDir` string The file path of a matlab file to be generated. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'fileGen', 'strFileName', 'strFileDir' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'fileGen' is not . @@ -256,27 +257,27 @@ public static void ExportModel(this Obj fileGen, IEnumerable inputs, IEnume #### Parameters -`fileGen` Obj +`fileGen` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The file generation to export model. -`inputs` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`inputs` IEnumerable<[Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)\> The inputs of the file generation setting. -`outputs` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`outputs` IEnumerable<[Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)\> The outputs of the file generation setting. -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string The file name of fmu file to be generated. -`strFileDir` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileDir` string The file path of files to be generated. -`strInterfacePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInterfacePath` string The interface folder path. @@ -284,37 +285,37 @@ The interface folder path. The version of the file generation setting. -`interfaceTimeStep` ExpressionValueVariable? +`interfaceTimeStep` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The interface time step of the file generation setting. -`modelDescription` [string](https://learn.microsoft.com/dotnet/api/system.string) +`modelDescription` string The model description of the file generation setting. -`scaleFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`scaleFactor` double The scale factor of the file generation setting. -`messageLevel` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`messageLevel` int The message level of the file generation setting. None=0, Partial=1, Full=2 #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'fileGen', 'strFileName', 'strFileDir', 'strInterfacePath' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'fileGen' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'inputs' is not or if the type of 'output' is not . - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'interfaceTimeStep' value is equal to or less than 0. @@ -329,23 +330,23 @@ public static Obj GenerateFile(this SubSystemDocument document, string name = "" #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the file generation setting of FMI version. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the file generation setting of FMI version. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. @@ -360,23 +361,23 @@ public static Obj GenerateMatlabFile(this SubSystemDocument document, string nam #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the M file generation setting of matlab version. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the M file generation setting of matlab version. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.CoSimulator.FMIVersionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.CoSimulator.FMIVersionType.md index a3dee118cb..5ea508fa61 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.CoSimulator.FMIVersionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.CoSimulator.FMIVersionType.md @@ -1,4 +1,5 @@ -# Enum FMIVersionType +# Enum FMIVersionType + Namespace: [VM.API.Pre.CoSimulator](VM.API.Pre.CoSimulator.md) Assembly: VM.API.Pre.CoSimulator.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.CoSimulator.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.CoSimulator.md index 2e652272a5..37938064d9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.CoSimulator.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.CoSimulator.md @@ -1,4 +1,5 @@ -# Namespace VM.API.Pre.CoSimulator +# Namespace VM.API.Pre.CoSimulator + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ConstraintAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ConstraintAPI.md index e1b345f9bf..45431aabf2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ConstraintAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ConstraintAPI.md @@ -1,4 +1,5 @@ -# Class ConstraintAPI +# Class ConstraintAPI + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class ConstraintAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ConstraintAPI](VM.API.Pre.ConstraintAPI.md) #### Extension Methods @@ -35,7 +36,7 @@ public static Obj CreateBall(this SubSystemDocument subSystemDocument, Obj baseE #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a ball constraint. @@ -51,7 +52,7 @@ The action entity of a ball constraint. The position of a ball constraint. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a ball constraint. @@ -71,11 +72,11 @@ the new . @@ -93,7 +94,7 @@ public static Obj CreateConstantVelocity(this SubSystemDocument subSystemDocumen #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a constant velocity constraint. @@ -121,7 +122,7 @@ The action Z-Axis of a constant velocity constraint. The orthogonal Axis of a constant velocity constraint. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a constant velocity constraint. @@ -137,15 +138,15 @@ the new . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'baseZAxis' is equal to 'actionZAxis', 'orthogonalAxis' or if 'actionZAxis' is equal to 'orthogonalAxis'. @@ -163,7 +164,7 @@ public static Obj CreateCylindrical(this SubSystemDocument subSystemDocument, Ob #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a cylindrical constraint. @@ -183,7 +184,7 @@ The position of a cylindrical constraint. The Z-Axis of cylindrical constraint. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a cylindrical constraint. @@ -231,11 +232,11 @@ the new . @@ -252,7 +253,7 @@ public static Obj CreateDistance(this SubSystemDocument subSystemDocument, Obj b #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a distance constraint. @@ -272,7 +273,7 @@ The base position of a distance constraint. The action position of a distance constraint. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a distance constraint. @@ -288,15 +289,15 @@ the new . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'basePosition' is equal to 'actionPosition'. @@ -313,7 +314,7 @@ public static Obj CreateFixed(this SubSystemDocument subSystemDocument, Obj base #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a fixed constraint. @@ -329,7 +330,7 @@ The action entity of a fixed constraint. The position of a fixed constraint. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a fixed constraint. @@ -345,11 +346,11 @@ the new . @@ -362,9 +363,9 @@ public static void CreateGroupAutoConnector(this SubSystemDocument subSystemDocu #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) -`groups` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`groups` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> ### CreateInline\(SubSystemDocument, Obj, Obj, Vector, Vector, string, SymmetricType\) @@ -379,7 +380,7 @@ public static Obj CreateInline(this SubSystemDocument subSystemDocument, Obj bas #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a inline constraint. @@ -399,7 +400,7 @@ The base position of a inline constraint. The action position of a inline constraint. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a inline constraint. @@ -415,15 +416,15 @@ the new . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'basePosition' is equal to 'actionPosition'.. @@ -441,7 +442,7 @@ public static Obj CreateInplane(this SubSystemDocument subSystemDocument, Obj ba #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a inplane constraint. @@ -465,7 +466,7 @@ The action position of a inplane constraint. The Z-Axis of a inplane constraint. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a inplane constraint. @@ -481,11 +482,11 @@ the new . @@ -502,7 +503,7 @@ public static Obj CreateOrientation(this SubSystemDocument subSystemDocument, Ob #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a orientation constraint. @@ -518,7 +519,7 @@ The action entity of a orientation constraint. The position of a orientation constraint. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a orientation constraint. @@ -534,11 +535,11 @@ the new . @@ -556,7 +557,7 @@ public static Obj CreateParallel(this SubSystemDocument subSystemDocument, Obj b #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a parallel constraint. @@ -580,7 +581,7 @@ The action position of a parallel constraint. The Z-Axis of a parallel constraint. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a parallel constraint. @@ -596,11 +597,11 @@ the new . @@ -618,7 +619,7 @@ public static Obj CreatePerpendicular(this SubSystemDocument subSystemDocument, #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a perpendicular constraint. @@ -642,7 +643,7 @@ The base Z-Axis of a perpendicular constraint. The action Z-Axis of a perpendicular constraint. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a perpendicular constraint. @@ -658,11 +659,11 @@ the new . @@ -680,7 +681,7 @@ public static Obj CreatePerpendicular(this SubSystemDocument subSystemDocument, #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a perpendicular constraint. @@ -708,7 +709,7 @@ The base Z-Axis of a perpendicular constraint. The action Z-Axis of a perpendicular constraint. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a perpendicular constraint. @@ -724,15 +725,15 @@ the new . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'baseZAxis' is equal to 'actionZAxis'. @@ -750,7 +751,7 @@ public static Obj CreatePlane(this SubSystemDocument subSystemDocument, Obj base #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a planar constraint. @@ -770,7 +771,7 @@ The position of a planar constraint. The Z-Axis of a planar constraint. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a planar constraint. @@ -786,11 +787,11 @@ the new . @@ -807,7 +808,7 @@ public static Obj CreateRevolute(this SubSystemDocument subSystemDocument, Obj b #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a revolute constraint. @@ -823,7 +824,7 @@ The action entity of a revolute constraint. The position of a revolute constraint. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a revolute constraint. @@ -859,11 +860,11 @@ the new . @@ -881,7 +882,7 @@ public static Obj CreateRevolute(this SubSystemDocument subSystemDocument, Obj b #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a revolute constraint. @@ -901,7 +902,7 @@ The position of a revolute constraint. The Z-Axis of a revolute constraint. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a revolute constraint. @@ -937,11 +938,11 @@ the new . @@ -959,7 +960,7 @@ public static Obj CreateScrew(this SubSystemDocument subSystemDocument, Obj base #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a screw. @@ -979,11 +980,11 @@ The position of a screw. The Z-Axis of a screw. -`pitch` ExpressionValueVariable? +`pitch` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The pitch of a screw. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a screw. @@ -999,11 +1000,11 @@ the new . @@ -1021,7 +1022,7 @@ public static Obj CreateTranslational(this SubSystemDocument subSystemDocument, #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a translational constraint. @@ -1041,7 +1042,7 @@ The position of a translational constraint. The Z-Axis of a translational constraint. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a translational constraint. @@ -1077,11 +1078,11 @@ the new . @@ -1099,7 +1100,7 @@ public static Obj CreateUniversal(this SubSystemDocument subSystemDocument, Obj #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a universal constraint. @@ -1123,7 +1124,7 @@ The base X-Axis of a universal constraint. The action X-Axis of a universal constraint. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a universal constraint. @@ -1147,11 +1148,11 @@ the new . diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ContactAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ContactAPI.md index d355005fd7..4658bc73d5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ContactAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ContactAPI.md @@ -1,4 +1,5 @@ -# Class ContactAPI +# Class ContactAPI + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class ContactAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ContactAPI](VM.API.Pre.ContactAPI.md) #### Extension Methods @@ -31,13 +32,13 @@ public static Obj CreateAutoContact(this SubSystemDocument subSystemDocument, IE #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) -`objectList` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`objectList` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> -`maximumDistance` ExpressionValueVariable? +`maximumDistance` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns @@ -54,21 +55,21 @@ public static Obj CreateCVCV(this SubSystemDocument subSystemDocument, Obj baseC #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) `baseCurveset` [Obj](VM.API.Pre.Obj.md) `actionCurveset` [Obj](VM.API.Pre.Obj.md) -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string `friction` [FrictionContact](VM.API.Pre.FrictionContact.md) -`baseClearance` ExpressionValueVariable? +`baseClearance` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? -`actionClearance` ExpressionValueVariable? +`actionClearance` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? -`stiffScaleFactor` ExpressionValueVariable? +`stiffScaleFactor` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? #### Returns @@ -84,13 +85,13 @@ public static Obj CreateColorCurveSet(this SubSystemDocument subSystemDocument, #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) `body` [Obj](VM.API.Pre.Obj.md) -`colors` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)\> +`colors` IEnumerable -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns @@ -108,7 +109,7 @@ public static Obj CreateColorCurveSet(this PartDocument document, Obj body, IEnu #### Parameters -`document` PartDocument +`document` [PartDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs) The to create a curve set by color. @@ -116,11 +117,11 @@ The and . @@ -150,13 +151,13 @@ public static Obj CreateColorFaceSet(this SubSystemDocument subSystemDocument, O #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) `body` [Obj](VM.API.Pre.Obj.md) -`colors` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)\> +`colors` IEnumerable -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns @@ -174,7 +175,7 @@ public static Obj CreateColorFaceSet(this PartDocument document, Obj body, IEnum #### Parameters -`document` PartDocument +`document` [PartDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs) The to create a face set by color. @@ -182,11 +183,11 @@ The and . @@ -217,21 +218,21 @@ public static void CreateContactTolerance(this SubSystemDocument subSystemDocume #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create contact tolerances. -`objectList` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`objectList` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> The object list of contacts. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'subSystemDocument', 'objectList' argument is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'objectList' is not equal to . @@ -244,11 +245,11 @@ public static Obj CreateCurveSet(this SubSystemDocument subSystemDocument, IEnum #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) -`edges` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`edges` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns @@ -265,13 +266,13 @@ public static Obj CreateCurveSet(this SubSystemDocument subSystemDocument, strin #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) -`filePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`filePath` string `body` [Obj](VM.API.Pre.Obj.md) -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns @@ -288,15 +289,15 @@ public static Obj CreateCurveSet(this PartDocument document, IEnumerable ed #### Parameters -`document` PartDocument +`document` [PartDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs) The to create a curve set by edges. -`edges` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`edges` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> The edges of a curve set. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a curve set. If empty, default name starts with 'CURVESET' will be generated and used. @@ -308,11 +309,11 @@ The new . @@ -329,11 +330,11 @@ public static Obj CreateCurveSet(this PartDocument document, string filePath, Ob #### Parameters -`document` PartDocument +`document` [PartDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs) The to create a curve set by file import. -`filePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`filePath` string The file path about points of a curve set. @@ -341,7 +342,7 @@ The file path about points of a curve set. The body of a curve set. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a curve set. If empty, default name starts with 'CURVESET' will be generated and used. @@ -353,11 +354,11 @@ The new and . @@ -371,13 +372,13 @@ public static Obj CreateCylinderToMultiCurveContact(this SubSystemDocument subSy #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) -`baseGeomerty` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`baseGeomerty` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> `actionGeomerty` [Obj](VM.API.Pre.Obj.md) -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns @@ -393,9 +394,9 @@ public static Obj CreateCylinderToMultiCurveContact(this SubSystemDocument subSy #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) -`baseGeomerty` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`baseGeomerty` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> `actionGeomerty` [Obj](VM.API.Pre.Obj.md) @@ -403,9 +404,9 @@ public static Obj CreateCylinderToMultiCurveContact(this SubSystemDocument subSy `topPosition` Vector -`radius` ExpressionValueVariable? +`radius` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns @@ -421,21 +422,21 @@ public static void CreateExtractFaceSet(this SubSystemDocument subSystemDocument #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) `firstBody` [Obj](VM.API.Pre.Obj.md) `secondBody` [Obj](VM.API.Pre.Obj.md) -`unused` ExpressionValueVariable? +`unused` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? -`firstFacesetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`firstFacesetName` string -`splitFirstBody` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`splitFirstBody` bool -`secondFacesetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`secondFacesetName` string -`splitSecondBody` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`splitSecondBody` bool ### CreateExtractFaceSet\(SubSystemDocument, IEnumerable, Obj, ExpressionValueVariable?, string, bool, string, bool\) @@ -447,21 +448,21 @@ public static void CreateExtractFaceSet(this SubSystemDocument subSystemDocument #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) -`faces` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`faces` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> `secondBody` [Obj](VM.API.Pre.Obj.md) -`tolerance` ExpressionValueVariable? +`tolerance` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? -`firstFacesetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`firstFacesetName` string -`splitFirstBody` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`splitFirstBody` bool -`secondFacesetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`secondFacesetName` string -`splitSecondBody` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`splitSecondBody` bool ### CreateFaceSet\(SubSystemDocument, IEnumerable, string\) @@ -472,11 +473,11 @@ public static Obj CreateFaceSet(this SubSystemDocument subSystemDocument, IEnume #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) -`faces` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`faces` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns @@ -493,15 +494,15 @@ public static Obj CreateFaceSet(this PartDocument document, IEnumerable fac #### Parameters -`document` PartDocument +`document` [PartDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs) The to create a face set. -`faces` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`faces` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> The faces of a face set. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a face set. If empty, default name starts with 'FACESET_' will be generated and used. @@ -513,11 +514,11 @@ The new . @@ -537,7 +538,7 @@ public static Obj CreateGeneralContact(this IDocument document, Obj baseEntity, `actionEntity` [Obj](VM.API.Pre.Obj.md) -`contactName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`contactName` string #### Returns @@ -554,11 +555,11 @@ public static Obj CreateGeneralContactWithFaces(this IDocument document, IEnumer `document` IDocument -`baseFaces` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`baseFaces` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> -`actionFaces` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`actionFaces` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> -`contactName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`contactName` string #### Returns @@ -575,19 +576,19 @@ public static Obj CreateMbyNContact(this SubSystemDocument subSystemDocument, IE #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create M by N contacts. -`baseGeomerty` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`baseGeomerty` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> The base geomerty of M by N contacts. -`actionGeomerty` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`actionGeomerty` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> The action geomerty of M by N contacts. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of M by N contacts. If empty, default name starts with 'MbyN' will be generated and used. @@ -599,11 +600,11 @@ The new and . @@ -616,13 +617,13 @@ public static Obj CreateMultiCurveToMultiCurveContact(this SubSystemDocument sub #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) -`baseGeomerty` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`baseGeomerty` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> -`actionGeomerty` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`actionGeomerty` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns @@ -639,15 +640,15 @@ public static Obj CreateNCombinationContact(this SubSystemDocument subSystemDocu #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create N combination contacts. -`geomerty` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`geomerty` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> The geomerty of N combination contacts. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of N combination contacts. If empty, default name starts with 'NCombi' will be generated and used. @@ -659,11 +660,11 @@ The new and . @@ -678,7 +679,7 @@ public static Obj CreatePTCV(this SubSystemDocument subSystemDocument, Obj baseC #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) `baseCurveset` [Obj](VM.API.Pre.Obj.md) @@ -686,15 +687,15 @@ public static Obj CreatePTCV(this SubSystemDocument subSystemDocument, Obj baseC `actionPosition` Vector -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string `relative` [Relative](VM.API.Pre.Relative.md) `friction` [FrictionContact](VM.API.Pre.FrictionContact.md) -`baseClearance` ExpressionValueVariable? +`baseClearance` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? -`stiffScaleFactor` ExpressionValueVariable? +`stiffScaleFactor` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? #### Returns @@ -710,13 +711,13 @@ public static Obj CreateSphereToMultiCurveContact(this SubSystemDocument subSyst #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) -`baseGeomerty` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`baseGeomerty` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> `actionGeomerty` [Obj](VM.API.Pre.Obj.md) -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns @@ -732,17 +733,17 @@ public static Obj CreateSphereToMultiCurveContact(this SubSystemDocument subSyst #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) -`baseGeomerty` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`baseGeomerty` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> `actionGeomerty` [Obj](VM.API.Pre.Obj.md) `centerPosition` Vector -`radius` ExpressionValueVariable? +`radius` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.CouplerAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.CouplerAPI.md index 84be9e2585..261a608ad3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.CouplerAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.CouplerAPI.md @@ -1,4 +1,5 @@ -# Class CouplerAPI +# Class CouplerAPI + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class CouplerAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CouplerAPI](VM.API.Pre.CouplerAPI.md) #### Extension Methods @@ -35,7 +36,7 @@ public static Obj CreateCable(this SubSystemDocument subSystemDocument, Obj firs #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the coupler cable. @@ -47,15 +48,15 @@ The first joint to create the coupler cable. The second joint of the coupler cable. -`firstRatio` ExpressionValueVariable? +`firstRatio` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The first ratio of the coupler cable. -`secondRatio` ExpressionValueVariable? +`secondRatio` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The second ratio of the coupler cable. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the . @@ -71,7 +72,7 @@ The new . @@ -132,7 +133,7 @@ The new . @@ -205,7 +206,7 @@ The new . @@ -258,7 +259,7 @@ The new . @@ -311,7 +312,7 @@ The new Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class CreateAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CreateAPI](VM.API.Pre.CreateAPI.md) #### Extension Methods @@ -38,11 +39,11 @@ public static T Create(this IDocument document, string name, Func The document to create the entity. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the entity. -`funcCreate` [Func](https://learn.microsoft.com/dotnet/api/system.func\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), T\> +`funcCreate` Func The customized create function. @@ -60,7 +61,7 @@ The entity type #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'name' arguments are null. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.DesignFrameAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.DesignFrameAPI.md index fbc67b9816..0e24ef20d4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.DesignFrameAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.DesignFrameAPI.md @@ -1,4 +1,5 @@ -# Class DesignFrameAPI +# Class DesignFrameAPI + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class DesignFrameAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DesignFrameAPI](VM.API.Pre.DesignFrameAPI.md) #### Extension Methods @@ -37,7 +38,7 @@ public static Obj CreateDesignFrame(this IDocument document, string name, TMatri The document to create the design frame. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the design frame. @@ -53,7 +54,7 @@ The new < #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'transform' argument is null. @@ -72,7 +73,7 @@ public static Obj CreateDesignFrame(this IDocument document, string name, Transf The document to create the design frame. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the design frame. @@ -92,7 +93,7 @@ The new < #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'transform' argument is null. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.DesignPointAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.DesignPointAPI.md index 7cec554aad..1b48c216a8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.DesignPointAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.DesignPointAPI.md @@ -1,4 +1,5 @@ -# Class DesignPointAPI +# Class DesignPointAPI + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class DesignPointAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DesignPointAPI](VM.API.Pre.DesignPointAPI.md) #### Extension Methods @@ -37,7 +38,7 @@ public static Obj CreateDesignPoint(this IDocument document, string name, Vector The document to create the design point. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the design point. @@ -57,7 +58,7 @@ The new < #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'position' argument is null. @@ -76,7 +77,7 @@ public static Obj CreateDesignPoint(this IDocument document, string name, PointB The document to create the design point. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the design point. @@ -96,7 +97,7 @@ The new < #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'position' argument is null. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.DesignVariableAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.DesignVariableAPI.md index 23c201cc4c..c36da0d6ed 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.DesignVariableAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.DesignVariableAPI.md @@ -1,4 +1,5 @@ -# Class DesignVariableAPI +# Class DesignVariableAPI + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class DesignVariableAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DesignVariableAPI](VM.API.Pre.DesignVariableAPI.md) #### Extension Methods @@ -37,11 +38,11 @@ public static Obj CreateDesignVariable(this IDocument document, string name, Exp The document to create the design variable. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the design variable. -`value` ExpressionValueVariable +`value` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The value to create the design variable. @@ -57,7 +58,7 @@ The new Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class DocumentAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DocumentAPI](VM.API.Pre.DocumentAPI.md) #### Extension Methods @@ -39,7 +40,7 @@ The document to be saved. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is null. @@ -53,11 +54,11 @@ public static PartDocument CreateNewPartDocument(string newPartFilePath, string #### Parameters -`newPartFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newPartFilePath` string The file path of new part. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. @@ -65,7 +66,7 @@ The name of document. The unit information. -`iconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`iconSize` double The size of icon. @@ -75,7 +76,7 @@ This parameter is unused. #### Returns - PartDocument + [PartDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs) The new object that is created by this API. @@ -89,11 +90,11 @@ public static SubSystemDocument CreateNewSubsystemDocument(string newSubsystemFi #### Parameters -`newSubsystemFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newSubsystemFilePath` string The file path of new subsystem. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. @@ -105,11 +106,11 @@ The gravity value. The unit information. -`iconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`iconSize` double The size of icon. -`advancedMode` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`advancedMode` bool The flag whether using advanced mode. @@ -117,7 +118,7 @@ The flag whether using advanced mode. The symetric plane. -`useSymmetric` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`useSymmetric` bool The flag whether using symmetric. @@ -127,7 +128,7 @@ This parameter is unused. #### Returns - SubSystemDocument + [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The new object that is created by this API. @@ -141,17 +142,17 @@ public static SubSystemDocument CreateNewSubsystemFromTemplateDocument(string ne #### Parameters -`newSubsystemFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newSubsystemFromTemplateFilePath` string The file path of new subsystem from template file path. -`existedSubsystemTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`existedSubsystemTemplateFilePath` string The file path of existed subsystem template file path. #### Returns - SubSystemDocument + [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The new object that is created by this API. @@ -166,11 +167,11 @@ public static SubSystemDocument CreateNewTemplateDocument(string newSubsystemTem #### Parameters -`newSubsystemTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newSubsystemTemplateFilePath` string The file path of new subsystem template. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. @@ -182,11 +183,11 @@ The gravity value. The unit information. -`iconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`iconSize` double The size of icon. -`advancedMode` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`advancedMode` bool The flag whether using advanced mode. @@ -194,7 +195,7 @@ The flag whether using advanced mode. The symetric plane. -`useSymmetric` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`useSymmetric` bool The flag whether using symmetric. @@ -204,7 +205,7 @@ This parameter is unused. #### Returns - SubSystemDocument + [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The new object that is created by this API. @@ -228,17 +229,17 @@ The document to modify the simulation scenario. The simulation scenario. -`use` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`use` bool The use flag to modify the simulation scenario. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'scenario' is not Scenario. @@ -259,7 +260,7 @@ The document to be saved. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is null. @@ -279,13 +280,13 @@ public static void SaveDocument(this IDocument document, string filePath) The document to be saved. -`filePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`filePath` string The document file path to be saved #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'filePath' arguments are null. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.DocumentAPIImpl.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.DocumentAPIImpl.md index 9eba4f8535..4358990171 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.DocumentAPIImpl.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.DocumentAPIImpl.md @@ -1,4 +1,5 @@ -# Class DocumentAPIImpl +# Class DocumentAPIImpl + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class DocumentAPIImpl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DocumentAPIImpl](VM.API.Pre.DocumentAPIImpl.md) #### Extension Methods @@ -33,11 +34,11 @@ public static T CreateNewPartDocumentImpl(string newPartFilePath, string docu #### Parameters -`newPartFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newPartFilePath` string The file path of new part. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. @@ -45,7 +46,7 @@ The name of document. The unit information. -`iconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`iconSize` double The size of icon. @@ -53,11 +54,11 @@ The size of icon. The length unit of kernel. -`extension` [string](https://learn.microsoft.com/dotnet/api/system.string) +`extension` string The extension. -`documentType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentType` string The document type. @@ -75,7 +76,7 @@ The document type #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newPartFilePath' argument is null. @@ -90,7 +91,7 @@ public static T CreateNewSubsystemDocumentCore(string newSubsystemFilePath, D #### Parameters -`newSubsystemFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newSubsystemFilePath` string The file path of new subsystem. @@ -98,11 +99,11 @@ The file path of new subsystem. The information of document. -`extension` [string](https://learn.microsoft.com/dotnet/api/system.string) +`extension` string The extension. -`documentType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentType` string The document type. @@ -120,7 +121,7 @@ The document type #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newSubsystemFilePath' argument is null. @@ -135,11 +136,11 @@ public static T CreateNewSubsystemDocumentImpl(string newSubsystemFilePath, s #### Parameters -`newSubsystemFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newSubsystemFilePath` string The file path of new subsystem. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. @@ -151,11 +152,11 @@ The gravity value. The unit information. -`iconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`iconSize` double The size of icon. -`advancedMode` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`advancedMode` bool The flag whether using advanced mode. @@ -163,7 +164,7 @@ The flag whether using advanced mode. The symetric plane. -`useSymmetric` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`useSymmetric` bool The flag whether using symmetric. @@ -171,11 +172,11 @@ The flag whether using symmetric. This parameter is unused. -`extension` [string](https://learn.microsoft.com/dotnet/api/system.string) +`extension` string The extension. -`documentType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentType` string The document type. @@ -193,7 +194,7 @@ The document type #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newSubsystemFilePath' argument is null. @@ -209,19 +210,19 @@ public static T CreateNewSubsystemFromTemplateDocumentImpl(string newSubsyste #### Parameters -`newSubsystemFromTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newSubsystemFromTemplateFilePath` string The file path of new subsystem from template file path. -`existedSubsystemTemplateFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`existedSubsystemTemplateFilePath` string The file path of existed subsystem template file path. -`extension` [string](https://learn.microsoft.com/dotnet/api/system.string) +`extension` string The extension. -`documentType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentType` string The document type. @@ -239,11 +240,11 @@ The document type #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newSubsystemFromTemplateFilePath' argument is null. - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if 'existedSubsystemTemplateFilePath' does not exist. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.EasyFlex.EFConstraintAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.EasyFlex.EFConstraintAPI.md index bf817221f7..88d479b2df 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.EasyFlex.EFConstraintAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.EasyFlex.EFConstraintAPI.md @@ -1,4 +1,5 @@ -# Class EFConstraintAPI +# Class EFConstraintAPI + Namespace: [VM.API.Pre.EasyFlex](VM.API.Pre.EasyFlex.md) Assembly: VM.API.Pre.EasyFlex.dll @@ -11,7 +12,7 @@ public static class EFConstraintAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [EFConstraintAPI](VM.API.Pre.EasyFlex.EFConstraintAPI.md) #### Extension Methods @@ -33,25 +34,25 @@ public static Obj CreateBoundaryConditionWithColor(this SubSystemDocument docume #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) -`body` Obj +`body` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) -`colors` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)\> +`colors` IEnumerable -`pointX` ExpressionValueVariable? +`pointX` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? -`pointY` ExpressionValueVariable? +`pointY` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? -`pointZ` ExpressionValueVariable? +`pointZ` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? -`referenceFrame` Obj? +`referenceFrame` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)? -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) ### CreateBoundaryConditionWithFaces\(SubSystemDocument, IEnumerable, ExpressionValueVariable?, ExpressionValueVariable?, ExpressionValueVariable?, Obj?, string\) @@ -62,23 +63,23 @@ public static Obj CreateBoundaryConditionWithFaces(this SubSystemDocument docume #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) -`baseGeometry` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`baseGeometry` IEnumerable<[Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)\> -`pointX` ExpressionValueVariable? +`pointX` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? -`pointY` ExpressionValueVariable? +`pointY` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? -`pointZ` ExpressionValueVariable? +`pointZ` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? -`referenceFrame` Obj? +`referenceFrame` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)? -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) ### CreateBoundaryConditionWithFaceset\(SubSystemDocument, Obj, ExpressionValueVariable?, ExpressionValueVariable?, ExpressionValueVariable?, Obj?, string\) @@ -91,23 +92,23 @@ public static Obj CreateBoundaryConditionWithFaceset(this SubSystemDocument docu #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) -`baseGeometry` Obj +`baseGeometry` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) -`pointX` ExpressionValueVariable? +`pointX` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? -`pointY` ExpressionValueVariable? +`pointY` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? -`pointZ` ExpressionValueVariable? +`pointZ` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? -`referenceFrame` Obj? +`referenceFrame` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)? -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) ### CreateRange\(SubSystemDocument, Obj, Vector, Vector, ExpressionValueVariable?, string\) @@ -123,11 +124,11 @@ public static Obj CreateRange(this SubSystemDocument subSystemDocument, Obj body #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create the range. -`body` Obj +`body` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The body of the range. @@ -139,31 +140,31 @@ The point of the range. The normal direction of the range. -`radius` ExpressionValueVariable? +`radius` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The radius of the range. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the range. If empty, default name starts with 'RANGE_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) the new General object created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'subSystemDocument', 'body' argument is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'body' is not or if the magnitude of 'normalDirectionOfRange' is 0. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if the 'radius' value is equal to or less than 0. @@ -178,23 +179,23 @@ public static Obj CreateRigidBodyElementPairWithColor(this SubSystemDocument doc #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) -`baseBody` Obj +`baseBody` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) -`baseColors` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)\> +`baseColors` IEnumerable -`actionBody` Obj +`actionBody` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) -`actionColors` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)\> +`actionColors` IEnumerable `point` Vector -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) ### CreateRigidBodyElementPairWithColor\(PartDocument, Obj, IEnumerable, Obj, IEnumerable, Vector, string\) @@ -206,23 +207,23 @@ public static Obj CreateRigidBodyElementPairWithColor(this PartDocument document #### Parameters -`document` PartDocument +`document` [PartDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs) -`baseBody` Obj +`baseBody` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) -`baseColors` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)\> +`baseColors` IEnumerable -`actionBody` Obj +`actionBody` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) -`actionColors` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)\> +`actionColors` IEnumerable `point` Vector -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) ### CreateRigidBodyElementPairWithFaces\(IDocument, IEnumerable, IEnumerable, Vector, string\) @@ -235,17 +236,17 @@ public static Obj CreateRigidBodyElementPairWithFaces(this IDocument document, I `document` IDocument -`baseGeometry` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`baseGeometry` IEnumerable<[Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)\> -`actionGeometry` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`actionGeometry` IEnumerable<[Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)\> `point` Vector -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) ### CreateRigidBodyElementPairWithFaceset\(IDocument, Obj, Obj, Vector, string\) @@ -260,17 +261,17 @@ public static Obj CreateRigidBodyElementPairWithFaceset(this IDocument document, `document` IDocument -`baseGeometry` Obj +`baseGeometry` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) -`actionGeometry` Obj +`actionGeometry` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) `point` Vector -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) ### CreateRigidBodyElementWithColor\(SubSystemDocument, Obj, IEnumerable, Vector, string\) @@ -283,19 +284,19 @@ public static Obj CreateRigidBodyElementWithColor(this SubSystemDocument documen #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) -`body` Obj +`body` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) -`colors` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)\> +`colors` IEnumerable `point` Vector -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) ### CreateRigidBodyElementWithColor\(PartDocument, Obj, IEnumerable, Vector, string\) @@ -307,19 +308,19 @@ public static Obj CreateRigidBodyElementWithColor(this PartDocument document, Ob #### Parameters -`document` PartDocument +`document` [PartDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs) -`body` Obj +`body` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) -`colors` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)\> +`colors` IEnumerable `point` Vector -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) ### CreateRigidBodyElementWithFaces\(IDocument, IEnumerable, Vector, string\) @@ -332,15 +333,15 @@ public static Obj CreateRigidBodyElementWithFaces(this IDocument document, IEnum `document` IDocument -`baseGeometry` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`baseGeometry` IEnumerable<[Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)\> `point` Vector -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) ### CreateRigidBodyElementWithFaceset\(IDocument, Obj, Vector, string\) @@ -355,13 +356,13 @@ public static Obj CreateRigidBodyElementWithFaceset(this IDocument document, Obj `document` IDocument -`baseGeometry` Obj +`baseGeometry` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) `point` Vector -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.EasyFlex.EFForceAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.EasyFlex.EFForceAPI.md index c048afafd6..5a388f3271 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.EasyFlex.EFForceAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.EasyFlex.EFForceAPI.md @@ -1,4 +1,5 @@ -# Class EFForceAPI +# Class EFForceAPI + Namespace: [VM.API.Pre.EasyFlex](VM.API.Pre.EasyFlex.md) Assembly: VM.API.Pre.EasyFlex.dll @@ -11,7 +12,7 @@ public static class EFForceAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [EFForceAPI](VM.API.Pre.EasyFlex.EFForceAPI.md) #### Extension Methods @@ -35,15 +36,15 @@ public static Obj CreateConcentratedLoadFaceWithColor(this SubSystemDocument sub #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create the concentrated load. -`body` Obj +`body` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The body of the concentrated load -`colors` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)\> +`colors` IEnumerable The colors of the concentrated load. @@ -51,31 +52,31 @@ The colors of the concentrated load. The direction of the concentrated load. -`force` [string](https://learn.microsoft.com/dotnet/api/system.string) +`force` string The force of the concentrated load. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the concentrated load. If empty, default name starts with 'CLOAD_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) the new object created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'subSystemDocument', 'body', 'colors' argument is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'body' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of 'direction' is 0. @@ -90,11 +91,11 @@ public static Obj CreateConcentratedLoadFaceWithFaces(this SubSystemDocument sub #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create the concentrated load. -`baseGeometry` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`baseGeometry` IEnumerable<[Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)\> The base geometry of the concentrated load @@ -102,31 +103,31 @@ The base geometry of the concentrated load The direction of the concentrated load. -`force` [string](https://learn.microsoft.com/dotnet/api/system.string) +`force` string The force of the concentrated load. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the concentrated load. If empty, default name starts with 'CLOAD_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) the new object created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'subSystemDocument', 'baseGeometry' argument is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'baseGeometry' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of 'direction' is 0. @@ -143,11 +144,11 @@ public static Obj CreateConcentratedLoadFaceWithFaceset(this SubSystemDocument s #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create the concentrated load. -`baseGeometry` Obj +`baseGeometry` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The base geometry of the concentrated load @@ -155,31 +156,31 @@ The base geometry of the concentrated load The direction of the concentrated load. -`force` [string](https://learn.microsoft.com/dotnet/api/system.string) +`force` string The force of the concentrated load. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the concentrated load. If empty, default name starts with 'CLOAD_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) the new object created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'subSystemDocument', 'baseGeometry' argument is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'baseGeometry' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of 'direction' is 0. @@ -196,11 +197,11 @@ public static Obj CreateConcentratedLoadRange(this SubSystemDocument subSystemDo #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create the concentrated load. -`body` Obj +`body` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The body of the concentrated load @@ -212,7 +213,7 @@ The point of the concentrated load. The normal direction of the concentrated load. -`radius` ExpressionValueVariable? +`radius` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The radius of the concentrated load. @@ -220,35 +221,35 @@ The radius of the concentrated load. The direction of the concentrated load. -`force` [string](https://learn.microsoft.com/dotnet/api/system.string) +`force` string The force of the concentrated load. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the concentrated load. If empty, default name starts with 'CLOAD_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) the new object created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'subSystemDocument', 'body' argument is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'body' is not and . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of 'normalDirectionOfRange' is 0. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if the magnitude of 'direction' is 0 or if the 'radius' value is equal to or less than 0. @@ -265,47 +266,47 @@ public static Obj CreatePressureLoadWithColor(this SubSystemDocument subSystemDo #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create the pressure load. -`body` Obj +`body` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The body of the pressure load -`colors` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)\> +`colors` IEnumerable The colors of the pressure load. -`isNormal` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isNormal` bool The flag of normal of the pressure load. -`normal` [string](https://learn.microsoft.com/dotnet/api/system.string) +`normal` string The normal of the pressure load. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the pressure load. If empty, default name starts with 'PLOAD_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) the new object created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'subSystemDocument', 'body', 'colors' argument is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'body' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of 'direction' is 0. @@ -320,39 +321,39 @@ public static Obj CreatePressureLoadWithFaces(this SubSystemDocument subSystemDo #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create the pressure load. -`baseGeometry` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`baseGeometry` IEnumerable<[Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)\> The base geometry of the pressure load -`isNormal` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isNormal` bool The flag of normal of the pressure load. -`normal` [string](https://learn.microsoft.com/dotnet/api/system.string) +`normal` string The normal of the pressure load. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the pressure load. If empty, default name starts with 'PLOAD_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) the new object created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'subSystemDocument', 'baseGeometry' argument is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'baseGeometry' is not . @@ -369,39 +370,39 @@ public static Obj CreatePressureLoadWithFaceset(this SubSystemDocument subSystem #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create the pressure load. -`baseGeometry` Obj +`baseGeometry` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The base geometry of the pressure load -`isNormal` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isNormal` bool The flag of normal of the pressure load. -`normal` [string](https://learn.microsoft.com/dotnet/api/system.string) +`normal` string The normal of the pressure load. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the pressure load. If empty, default name starts with 'PLOAD_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) the new object created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'subSystemDocument', 'baseGeometry' argument is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'baseGeometry' is not . diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.EasyFlex.GlueAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.EasyFlex.GlueAPI.md index a0c9790178..2bd2ce9c8e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.EasyFlex.GlueAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.EasyFlex.GlueAPI.md @@ -1,4 +1,5 @@ -# Class GlueAPI +# Class GlueAPI + Namespace: [VM.API.Pre.EasyFlex](VM.API.Pre.EasyFlex.md) Assembly: VM.API.Pre.EasyFlex.dll @@ -11,7 +12,7 @@ public static class GlueAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [GlueAPI](VM.API.Pre.EasyFlex.GlueAPI.md) #### Extension Methods @@ -33,23 +34,23 @@ public static Obj CreateTieWithColor(this SubSystemDocument document, Obj baseBo #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) -`baseBody` Obj +`baseBody` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) -`baseColors` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)\> +`baseColors` IEnumerable -`actionBody` Obj +`actionBody` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) -`actionColors` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)\> +`actionColors` IEnumerable -`tieName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`tieName` string `symmetricType` SymmetricType #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) ### CreateTieWithColor\(PartDocument, Obj, IEnumerable, Obj, IEnumerable, string, SymmetricType\) @@ -61,23 +62,23 @@ public static Obj CreateTieWithColor(this PartDocument document, Obj baseBody, I #### Parameters -`document` PartDocument +`document` [PartDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs) -`baseBody` Obj +`baseBody` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) -`baseColors` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)\> +`baseColors` IEnumerable -`actionBody` Obj +`actionBody` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) -`actionColors` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)\> +`actionColors` IEnumerable -`tieName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`tieName` string `symmetricType` SymmetricType #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) ### CreateTieWithFaces\(IDocument, IEnumerable, IEnumerable, string, SymmetricType\) @@ -94,15 +95,15 @@ public static Obj CreateTieWithFaces(this IDocument document, IEnumerable b The document to create the tie. -`baseFaces` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`baseFaces` IEnumerable<[Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)\> The base faces -`actionFaces` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`actionFaces` IEnumerable<[Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)\> The action faces -`tieName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`tieName` string The name of the tie. If empty, default name starts with 'TIE_' will be generated and used. @@ -112,17 +113,17 @@ The symmetric type #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'baseContactable' or 'actionContactable' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'document' is not SubSystemDocument and PartDocument. @@ -139,17 +140,17 @@ public static Obj CreateTieWithFaceset(this IDocument document, Obj baseGeometry `document` IDocument -`baseGeometry` Obj +`baseGeometry` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) -`actionGeometry` Obj +`actionGeometry` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) -`tieName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`tieName` string `symmetricType` SymmetricType #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) ### CreateWeld\(IDocument, Obj, Obj, Vector, Vector, Vector?, string, ExpressionValueVariable?, ExpressionValueVariable?, Obj?, Color?\) @@ -168,11 +169,11 @@ public static Obj CreateWeld(this IDocument document, Obj baseBody, Obj actionBo The to create the weld in mesh free. -`baseBody` Obj +`baseBody` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The base body of the weld in mesh free. -`actionBody` Obj +`actionBody` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The action body of the weld in mesh free. @@ -188,51 +189,51 @@ The end point of the weld in mesh free. The tangential direction of the weld in mesh free. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the weld in mesh free. -`number` ExpressionValueVariable? +`number` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The num of element of the weld in mesh free. -`halfLength` ExpressionValueVariable? +`halfLength` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The half length of element of the weld in mesh free. -`material` Obj? +`material` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)? The material of the weld in mesh free. This type should be . -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the weld in mesh free. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) the new object created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document', 'baseBody', 'actionBody' argument is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of 'tangentialDirection' is 0 and if the type of 'material' is not 'ISO'. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'document' is not and . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'baseBody', 'actionBody' is not and or if 'baseBody' is equal to 'actionBody'. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'number' value is less than 2. @@ -253,15 +254,15 @@ public static Obj CreateWeld(this IDocument document, Obj baseBody, Obj actionBo The to create the weld in mesh free. -`baseBody` Obj +`baseBody` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The base body of the weld in mesh free. -`actionBody` Obj +`actionBody` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The action body of the weld in mesh free. -`positions` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`positions` IEnumerable The positions of the weld in mesh free. @@ -269,43 +270,43 @@ The positions of the weld in mesh free. The tangential direction of the weld in mesh free. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the weld in mesh free. -`halfLength` ExpressionValueVariable? +`halfLength` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The half length of element of the weld in mesh free. -`material` Obj? +`material` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)? The material of the weld in mesh free. This type should be . -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the weld in mesh free. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) the new object created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document', 'baseBody', 'actionBody' argument is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of 'tangentialDirection' is 0 and if the type of 'material' is not 'ISO'. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'document' is not and . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'baseBody', 'actionBody' is not and or if 'baseBody' is equal to 'actionBody'. @@ -327,55 +328,55 @@ public static Obj CreateWeld(this IDocument document, string filePath, Obj baseB The to create the weld in mesh free. -`filePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`filePath` string The file path of the weld in mesh free. -`baseBody` Obj +`baseBody` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The base body of the weld in mesh free. -`actionBody` Obj +`actionBody` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The action body of the weld in mesh free. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the weld in mesh free. -`material` Obj? +`material` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)? The material of the weld in mesh free. This type should be . -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the weld in mesh free. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) the new object created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document', 'baseBody', 'actionBody' argument is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'material' is not 'ISO'. - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if 'filePath' files are not exist. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'document' is not and . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'baseBody', 'actionBody' is not and or if 'baseBody' is equal to 'actionBody'. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.EasyFlex.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.EasyFlex.md index e8d2be7fe4..5612c3d476 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.EasyFlex.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.EasyFlex.md @@ -1,4 +1,5 @@ -# Namespace VM.API.Pre.EasyFlex +# Namespace VM.API.Pre.EasyFlex + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.EquationAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.EquationAPI.md index 4e01faec7b..77b674f676 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.EquationAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.EquationAPI.md @@ -1,4 +1,5 @@ -# Class EquationAPI +# Class EquationAPI + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -9,7 +10,7 @@ public static class EquationAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [EquationAPI](VM.API.Pre.EquationAPI.md) #### Extension Methods @@ -32,11 +33,11 @@ public static Obj CreateFirstOrderDifferentialEquation(this SubSystemDocument do #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the 1st differential equation. -`diffType` EquationFunctionDiff.FunctionEquType +`diffType` [EquationFunctionDiff](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDEq/Differential1.cs).[FunctionEquType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDEq/Differential1.cs) The solving method type of the 1st differential equation. @@ -44,11 +45,11 @@ The solving method type of the 1st differential equation. The function of the 1st differential equation. -`initialDisp` ExpressionValueVariable? +`initialDisp` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The initial displacement of the 1st differential equation. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the 1st differential equation. @@ -64,11 +65,11 @@ The new and . @@ -84,11 +85,11 @@ public static Obj CreateSecondOrderDifferentialEquation(this SubSystemDocument d #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the 2nd differential equation. -`diffType` EquationFunctionDiff.FunctionEquType +`diffType` [EquationFunctionDiff](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDEq/Differential1.cs).[FunctionEquType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDEq/Differential1.cs) The solving method type of the 2nd differential equation. @@ -96,15 +97,15 @@ The solving method type of the 2nd differential equation. The function of the 2nd differential equation. -`initialDisp` ExpressionValueVariable? +`initialDisp` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The initial displacement of the 2nd differential equation. -`initialVel` ExpressionValueVariable? +`initialVel` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The initial velocity of the 2nd differential equation. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the 2nd differential equation. @@ -120,11 +121,11 @@ The new and . @@ -140,7 +141,7 @@ public static Obj CreateVariableEquation(this SubSystemDocument document, Obj fu #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create a variable equation. @@ -148,11 +149,11 @@ The document to create a variable equation. The function of a variable equation. -`initialDisp` ExpressionValueVariable? +`initialDisp` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The initial displacement of a variable equation. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a variable equation. @@ -168,11 +169,11 @@ The new and . diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.BeamBodyAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.BeamBodyAPI.md index e0db1c7520..4a5e11e25b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.BeamBodyAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.BeamBodyAPI.md @@ -1,4 +1,5 @@ -# Class BeamBodyAPI +# Class BeamBodyAPI + Namespace: [VM.API.Pre.FE](VM.API.Pre.FE.md) Assembly: VM.API.Pre.FE.dll @@ -11,7 +12,7 @@ public static class BeamBodyAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BeamBodyAPI](VM.API.Pre.FE.BeamBodyAPI.md) #### Extension Methods @@ -36,15 +37,15 @@ public static Obj CreateBeamNodalBody(this SubSystemDocument document, string st #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create beam FE body. -`strNewMeshFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strNewMeshFilePath` string The path to new .dfmesh file. -`strFEBodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFEBodyName` string The name of the new . @@ -60,51 +61,51 @@ The end point of the beam. The Y direction vector of the beam. -`radius` ExpressionValueVariable +`radius` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The radius of the beam. -`numberOfHexElementPerSegment` ExpressionValueVariable +`numberOfHexElementPerSegment` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The number of hexa elements per segment. -`numOfBeamNodes` ExpressionValueVariable +`numOfBeamNodes` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The number of beam nodes. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) the new FE beam body #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'strNewMeshFilePath' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of 'yDirection' is 0. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'radius' value equal to or less than 0. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'numOfBeamNodes' is less than 3. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if distance of 'startPoint' and 'endPoint' is less than 1.0e-5. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if vector of 'endPoint' - 'startPoint' parallel with 'yDirection'. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'numberOfHexElementPerSegment' is less than 8 or an odd number. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.BoundaryConditionAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.BoundaryConditionAPI.md index 2965a02575..46518bc415 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.BoundaryConditionAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.BoundaryConditionAPI.md @@ -1,4 +1,5 @@ -# Class BoundaryConditionAPI +# Class BoundaryConditionAPI + Namespace: [VM.API.Pre.FE](VM.API.Pre.FE.md) Assembly: VM.API.Pre.FE.dll @@ -11,7 +12,7 @@ public static class BoundaryConditionAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BoundaryConditionAPI](VM.API.Pre.FE.BoundaryConditionAPI.md) #### Extension Methods @@ -35,59 +36,59 @@ public static Obj CreateBoundaryCondition(this SubSystemDocument document, Obj b #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the boundary condition. -`boundaryConditionComponent` Obj +`boundaryConditionComponent` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The boundary condition component -`boundaryConditionName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`boundaryConditionName` string The name of the boundary condition. If empty, default name starts with 'BC_' will be generated and used. -`referenceMarker` Obj? +`referenceMarker` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)? The reference marker. -`translationalX` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`translationalX` bool The flag whether using translational X. -`translationalY` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`translationalY` bool The flag whether using translational Y. -`translationalZ` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`translationalZ` bool The flag whether using translational Z. -`rotationalX` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`rotationalX` bool The flag whether using rotational X. -`rotationalY` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`rotationalY` bool The flag whether using rotational Y. -`rotationalZ` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`rotationalZ` bool The flag whether using rotational Z. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'boundaryConditionComponent' arguments are empty. - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'referenceMarker' argument is not empty and type of 'referenceMarker' is not . diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.ConcentratedLoadAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.ConcentratedLoadAPI.md index 42830f707a..d3be9f980e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.ConcentratedLoadAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.ConcentratedLoadAPI.md @@ -1,4 +1,5 @@ -# Class ConcentratedLoadAPI +# Class ConcentratedLoadAPI + Namespace: [VM.API.Pre.FE](VM.API.Pre.FE.md) Assembly: VM.API.Pre.FE.dll @@ -11,7 +12,7 @@ public static class ConcentratedLoadAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ConcentratedLoadAPI](VM.API.Pre.FE.ConcentratedLoadAPI.md) #### Extension Methods @@ -33,15 +34,15 @@ public static Obj CreateConcentratedLoad(this SubSystemDocument document, Obj co #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the concentrated load. -`concentratedLoadComponent` Obj +`concentratedLoadComponent` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The concentrated load component -`concentratedLoadName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`concentratedLoadName` string The name of the concentrated load. If empty, default name starts with 'CLoad_' will be generated and used. @@ -49,63 +50,63 @@ The name of the concentrated load. If empty, default name starts with 'CLoad_' w The direction type. -`functionFX` Obj? +`functionFX` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)? The name of the fx function. -`functionFY` Obj? +`functionFY` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)? The name of the fy function. -`functionFZ` Obj? +`functionFZ` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)? The name of the fz function. -`functionTX` Obj? +`functionTX` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)? The name of the tx function. -`functionTY` Obj? +`functionTY` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)? The name of the ty function. -`functionTZ` Obj? +`functionTZ` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)? The name of the tz function. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'concentratedLoadComponent' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'functionFX' argument is not empty and type of 'functionFX' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'functionFY' argument is not empty and type of 'functionFY' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'functionFZ' argument is not empty and type of 'functionFZ' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'functionTX' argument is not empty and type of 'functionTX' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'functionTY' argument is not empty and type of 'functionTY' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'functionTZ' argument is not empty and type of 'functionTZ' is not . @@ -121,35 +122,35 @@ public static Obj CreateConcentratedLoad(this SubSystemDocument document, Obj co #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the concentrated load. -`concentratedLoadComponent` Obj +`concentratedLoadComponent` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The concentrated load component -`usub` Obj +`usub` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The name of the user-subrooutine. -`concentratedLoadName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`concentratedLoadName` string The name of the concentrated load. If empty, default name starts with 'CLoad_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'concentratedLoadComponent' or 'usub' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'usub' argument is not empty and type of 'usub' is not . diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.CreateCLoad.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.CreateCLoad.md index 540d9d4265..de6188a594 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.CreateCLoad.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.CreateCLoad.md @@ -1,4 +1,5 @@ -# Class CreateCLoad +# Class CreateCLoad + Namespace: [VM.API.Pre.FE](VM.API.Pre.FE.md) Assembly: VMOpMesh.dll @@ -9,7 +10,7 @@ public static class CreateCLoad #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CreateCLoad](VM.API.Pre.FE.CreateCLoad.md) #### Extension Methods @@ -28,9 +29,9 @@ public static CLoad CreateCLoadSimple(this SubSystemDocument docToAdd, string st #### Parameters -`docToAdd` SubSystemDocument +`docToAdd` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string `CLoadComponent` ICLoadComponent @@ -46,25 +47,25 @@ public static CLoad CreateCLoadWithFunction(this SubSystemDocument docToAdd, str #### Parameters -`docToAdd` SubSystemDocument +`docToAdd` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string `CLoadComponent` ICLoadComponent `directionType` CLoadStandard.DirectionType -`functionFX` Function +`functionFX` [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) -`functionFY` Function +`functionFY` [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) -`functionFZ` Function +`functionFZ` [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) -`functionTX` Function +`functionTX` [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) -`functionTY` Function +`functionTY` [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) -`functionTZ` Function +`functionTZ` [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) #### Returns @@ -78,13 +79,13 @@ public static CLoad CreateCLoadWithUserSubroutine(this SubSystemDocument docToAd #### Parameters -`docToAdd` SubSystemDocument +`docToAdd` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string `CLoadComponent` ICLoadComponent -`usub` UserSubroutine +`usub` [UserSubroutine](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSP/UserSubroutine.cs) #### Returns diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.DocumentAPIImpl.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.DocumentAPIImpl.md index cca4c5b5a6..7ef2ec0699 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.DocumentAPIImpl.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.DocumentAPIImpl.md @@ -1,4 +1,5 @@ -# Class DocumentAPIImpl +# Class DocumentAPIImpl + Namespace: [VM.API.Pre.FE](VM.API.Pre.FE.md) Assembly: VM.API.Pre.FE.dll @@ -11,7 +12,7 @@ public static class DocumentAPIImpl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DocumentAPIImpl](VM.API.Pre.FE.DocumentAPIImpl.md) #### Extension Methods @@ -33,11 +34,11 @@ public static T CreateNewMeshDocumentImpl(string newMeshFilePath, string docu #### Parameters -`newMeshFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newMeshFilePath` string The file path of new mesh. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. @@ -45,15 +46,15 @@ The name of document. The unit information. -`iconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`iconSize` double The size of icon. -`extension` [string](https://learn.microsoft.com/dotnet/api/system.string) +`extension` string The extension. -`documentType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentType` string The document type. @@ -71,7 +72,7 @@ The document type #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newMeshFilePath' argument is empty. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.EdgeSetAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.EdgeSetAPI.md index b453022754..bad96677f5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.EdgeSetAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.EdgeSetAPI.md @@ -1,4 +1,5 @@ -# Class EdgeSetAPI +# Class EdgeSetAPI + Namespace: [VM.API.Pre.FE](VM.API.Pre.FE.md) Assembly: VM.API.Pre.FE.dll @@ -11,7 +12,7 @@ public static class EdgeSetAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [EdgeSetAPI](VM.API.Pre.FE.EdgeSetAPI.md) #### Extension Methods @@ -37,19 +38,19 @@ public static Obj CreateEdgeset(this MeshDocument document, IEnumerable no The document to create edge set. -`nodeIndex` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[uint](https://learn.microsoft.com/dotnet/api/system.uint32)\> +`nodeIndex` IEnumerable The node indexes for creating edgeset. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name to be cteated edge set. -`maxPenetration` ExpressionValueVariable? +`maxPenetration` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The maximum penetration to be cteated edge set. The default value is 0. -`offset` ExpressionValueVariable? +`offset` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The offset to be cteated edge set. The default value is 1. @@ -57,19 +58,19 @@ The offset to be cteated edge set. The default value is 1. The surface smoothing to be cteated edge set. The default value is AUTOMATIC. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color to be cteated edge set. The default value is Red. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'nodeIndex' arguments are empty. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.ExternalLoadAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.ExternalLoadAPI.md index ccc57edf42..8b2b97455d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.ExternalLoadAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.ExternalLoadAPI.md @@ -1,4 +1,5 @@ -# Class ExternalLoadAPI +# Class ExternalLoadAPI + Namespace: [VM.API.Pre.FE](VM.API.Pre.FE.md) Assembly: VM.API.Pre.FE.dll @@ -11,7 +12,7 @@ public static class ExternalLoadAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ExternalLoadAPI](VM.API.Pre.FE.ExternalLoadAPI.md) #### Extension Methods @@ -34,27 +35,27 @@ public static Obj CreateExternalLoad(this SubSystemDocument subSystemDocument, O #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a external load. -`body` Obj +`body` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The base entity of a external load. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a external load. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) the new object created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'subSystemDocument', 'body' argument is null. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.FESimulationAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.FESimulationAPI.md index f1767ab3e7..ba1c6f77ed 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.FESimulationAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.FESimulationAPI.md @@ -1,4 +1,5 @@ -# Class FESimulationAPI +# Class FESimulationAPI + Namespace: [VM.API.Pre.FE](VM.API.Pre.FE.md) Assembly: VM.API.Pre.FE.dll @@ -11,7 +12,7 @@ public static class FESimulationAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [FESimulationAPI](VM.API.Pre.FE.FESimulationAPI.md) #### Extension Methods @@ -38,17 +39,17 @@ public static void ExportDFGForComponentEigenvalue(this IDocument document, Obj The document to export dfg for component eigenvalue. -`target` Obj +`target` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The target to export dfg for component eigenvalue. -`resultPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`resultPath` string The result path to export dfg for component eigenvalue. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'target' arguments are empty. @@ -68,17 +69,17 @@ public static void ExportDFSForComponentEigenvalue(this IDocument document, Obj The document to export dfs for component eigenvalue. -`target` Obj +`target` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The target to export dfs for component eigenvalue. -`resultPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`resultPath` string The result path to export dfs for component eigenvalue. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'target' arguments are empty. @@ -98,17 +99,17 @@ public static void ExportDFSXMLForComponentEigenvalue(this IDocument document, O The document to export xml for component eigenvalue. -`target` Obj +`target` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The target to export xml for component eigenvalue. -`resultPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`resultPath` string The result path to export xml for component eigenvalue. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'target' arguments are empty. @@ -128,21 +129,21 @@ public static void RunSimulationForComponentEigenvalue(this IDocument document, The document to simulate for component eigenvalue. -`target` Obj +`target` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The target to simulate for component eigenvalue. -`resultPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`resultPath` string The result path to simulate for component eigenvalue. -`simulationParameter` SimulationRun.SimulationParameter +`simulationParameter` [SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs).[SimulationParameter](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) The simulation parameter. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'target' arguments are empty. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.MarkerOnNodeAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.MarkerOnNodeAPI.md index 6c7322d77d..fe38aa2a02 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.MarkerOnNodeAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.MarkerOnNodeAPI.md @@ -1,4 +1,5 @@ -# Class MarkerOnNodeAPI +# Class MarkerOnNodeAPI + Namespace: [VM.API.Pre.FE](VM.API.Pre.FE.md) Assembly: VM.API.Pre.FE.dll @@ -11,7 +12,7 @@ public static class MarkerOnNodeAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [MarkerOnNodeAPI](VM.API.Pre.FE.MarkerOnNodeAPI.md) #### Extension Methods @@ -45,19 +46,19 @@ The position of marker. The orientation of marker. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name to be cteated marker. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'pointOnNode' or 'orientationBase' arguments are empty. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.MeshDocumentAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.MeshDocumentAPI.md index 634c251e3f..6e9f549f23 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.MeshDocumentAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.MeshDocumentAPI.md @@ -1,4 +1,5 @@ -# Class MeshDocumentAPI +# Class MeshDocumentAPI + Namespace: [VM.API.Pre.FE](VM.API.Pre.FE.md) Assembly: VM.API.Pre.FE.dll @@ -11,7 +12,7 @@ public static class MeshDocumentAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [MeshDocumentAPI](VM.API.Pre.FE.MeshDocumentAPI.md) #### Extension Methods @@ -33,11 +34,11 @@ public static MeshDocument CreateNewMeshDocument(string newMeshFilePath, string #### Parameters -`newMeshFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newMeshFilePath` string The file path of new mesh. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. @@ -45,7 +46,7 @@ The name of document. The unit information. -`iconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`iconSize` double The size of icon. @@ -57,7 +58,7 @@ The new SubSystemDocument object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newMeshFilePath' argument is empty. @@ -77,39 +78,39 @@ public static Obj ImportMesh(this MeshDocument doc, string feDataFilePath, strin The to import external mesh file. -`feDataFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`feDataFilePath` string The path to the external mesh file. -`modalDataFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`modalDataFileName` string The path to the modal data file. -`meshColor` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`meshColor` Color? The of the new mesh, -`degenerateElement` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`degenerateElement` bool The flag for degenerate element. -`importOnlyRBEIncludingStaticCorrectionMode` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`importOnlyRBEIncludingStaticCorrectionMode` bool The flag for import only rbe including static correction mode. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown when doc or feDataFilePath is null, - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if feDataFilePath file is not exist. @@ -120,7 +121,7 @@ Create to modify modal. -`strModalFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strModalFile` string The path to the external modal file. @@ -137,17 +138,17 @@ The path to the external modal file. The unit information. -`bOnlyDelete` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bOnlyDelete` bool The flag of deleting old modal data. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown when doc is null, - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if strModalFile file is not exist. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.NodalBodyAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.NodalBodyAPI.md index 925adfa484..79a614b5d4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.NodalBodyAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.NodalBodyAPI.md @@ -1,4 +1,5 @@ -# Class NodalBodyAPI +# Class NodalBodyAPI + Namespace: [VM.API.Pre.FE](VM.API.Pre.FE.md) Assembly: VM.API.Pre.FE.dll @@ -11,7 +12,7 @@ public static class NodalBodyAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [NodalBodyAPI](VM.API.Pre.FE.NodalBodyAPI.md) #### Extension Methods @@ -34,7 +35,7 @@ public static void ChangeNodalModal(this Obj nodalBody, BodyAnalysisType type) #### Parameters -`nodalBody` Obj +`nodalBody` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The . @@ -44,11 +45,11 @@ The body analysis type. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'nodalBody' argument is empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'nodalBody' is not . @@ -63,11 +64,11 @@ public static Obj CreateNodalBody(this SubSystemDocument docToAdd, string strBod #### Parameters -`docToAdd` SubSystemDocument +`docToAdd` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to add created . -`strBodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBodyName` string The body name of new . @@ -81,13 +82,13 @@ The . #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'meshDocument' argument is empty. @@ -103,15 +104,15 @@ public static Obj CreateNodalBody(this SubSystemDocument docToAdd, string strBod #### Parameters -`docToAdd` SubSystemDocument +`docToAdd` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to add created . -`strBodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBodyName` string The body name of new . -`meshFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`meshFilePath` string The path of the to create @@ -121,17 +122,17 @@ The . #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'docToAdd' or 'transformMesh' arguments are empty. - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Will be thrown if meshFilePath file is not exist. @@ -146,11 +147,11 @@ public static Obj CreateNodalBody(this SubSystemDocument docToAdd, string strBod #### Parameters -`docToAdd` SubSystemDocument +`docToAdd` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to add created . -`strBodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBodyName` string The body name of new . @@ -160,13 +161,13 @@ The . #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'meshDocument' argument is empty. @@ -180,21 +181,21 @@ public static Obj CreateNodalBody(this SubSystemDocument docToAdd, string strBod #### Parameters -`docToAdd` SubSystemDocument +`docToAdd` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to add created . -`strBodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBodyName` string The body name of new . -`meshFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`meshFilePath` string The path of the to create #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new . diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.NodeSetAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.NodeSetAPI.md index 4078ac2fc7..dd7e367834 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.NodeSetAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.NodeSetAPI.md @@ -1,4 +1,5 @@ -# Class NodeSetAPI +# Class NodeSetAPI + Namespace: [VM.API.Pre.FE](VM.API.Pre.FE.md) Assembly: VM.API.Pre.FE.dll @@ -11,7 +12,7 @@ public static class NodeSetAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [NodeSetAPI](VM.API.Pre.FE.NodeSetAPI.md) #### Extension Methods @@ -34,7 +35,7 @@ public static Obj AddDesignPoint(this Obj mesh, Vector position) #### Parameters -`mesh` Obj +`mesh` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The mesh. @@ -44,17 +45,17 @@ The position to add design point.. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'mesh' argument is empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'mesh' is not . @@ -73,11 +74,11 @@ public static Obj CreateNodeset(this MeshDocument document, IEnumerable no The document to create node set. -`nodeIndexes` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[uint](https://learn.microsoft.com/dotnet/api/system.uint32)\> +`nodeIndexes` IEnumerable The node indexes. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name to be cteated node set. @@ -85,7 +86,7 @@ The name to be cteated node set. The rbe type to be cteated node set. The default value is RBE2. -`treatRBE` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`treatRBE` bool The flag for using like treat. The default value is false. @@ -93,27 +94,27 @@ The flag for using like treat. The default value is false. The master node position to be cteated node set. The default value is 0,0,0. -`useStaticCorrectionMode` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`useStaticCorrectionMode` bool The flag for static correction mode. The default value is false. -`imposeRotationalUnitDisplacement` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`imposeRotationalUnitDisplacement` bool The flag for impose rotational unit displacement. The default value is false. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color to be cteated node set. The default value is LightGreen #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'nodeIndexes' arguments are empty. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.PatchSetAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.PatchSetAPI.md index 43df3e1cff..7cd102381f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.PatchSetAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.PatchSetAPI.md @@ -1,4 +1,5 @@ -# Class PatchSetAPI +# Class PatchSetAPI + Namespace: [VM.API.Pre.FE](VM.API.Pre.FE.md) Assembly: VM.API.Pre.FE.dll @@ -11,7 +12,7 @@ public static class PatchSetAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PatchSetAPI](VM.API.Pre.FE.PatchSetAPI.md) #### Extension Methods @@ -37,19 +38,19 @@ public static Obj CreatePatchset(this MeshDocument document, IEnumerable The document to create patch set. -`patchIndexes` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`patchIndexes` IEnumerable The patch indexes. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name to be cteated patch set. -`maxPenetration` ExpressionValueVariable? +`maxPenetration` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The maximum penetration to be cteated patch set. The default value is 0. -`offset` ExpressionValueVariable? +`offset` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The offset to be cteated patch set. The default value is 1. @@ -57,19 +58,19 @@ The offset to be cteated patch set. The default value is 1. The surface smoothing to be cteated patch set. The default value is AUTOMATIC. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color to be cteated patch set. The default value is Violet. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'patchIndexes' arguments are empty. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.PressureLoadAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.PressureLoadAPI.md index 8f256639bb..980971ac8e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.PressureLoadAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.PressureLoadAPI.md @@ -1,4 +1,5 @@ -# Class PressureLoadAPI +# Class PressureLoadAPI + Namespace: [VM.API.Pre.FE](VM.API.Pre.FE.md) Assembly: VM.API.Pre.FE.dll @@ -11,7 +12,7 @@ public static class PressureLoadAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PressureLoadAPI](VM.API.Pre.FE.PressureLoadAPI.md) #### Extension Methods @@ -33,35 +34,35 @@ public static Obj CreatePressureLoad(this SubSystemDocument document, Obj pressu #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the pressure load. -`pressureLoadComponent` Obj +`pressureLoadComponent` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The pressure load component -`pressureLoadName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`pressureLoadName` string The name of the pressure load. If empty, default name starts with 'PLoad_' will be generated and used. -`function` Obj? +`function` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)? The name of the function. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'pressureLoadComponent' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'function' argument is not empty and type of 'function' is not . @@ -77,35 +78,35 @@ public static Obj CreatePressureLoad(this SubSystemDocument document, Obj pressu #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the pressure load. -`pressureLoadComponent` Obj +`pressureLoadComponent` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The pressure load component -`usub` Obj +`usub` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The name of the user-subrooutine. -`pressureLoadName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`pressureLoadName` string The name of the pressure load. If empty, default name starts with 'PLoad_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'pressureLoadComponent' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'usub' argument is not empty and type of 'usub' is not . diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.ReplaceFEBodyAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.ReplaceFEBodyAPI.md index fc3051f54d..e98ed32a6f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.ReplaceFEBodyAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.ReplaceFEBodyAPI.md @@ -1,4 +1,5 @@ -# Class ReplaceFEBodyAPI +# Class ReplaceFEBodyAPI + Namespace: [VM.API.Pre.FE](VM.API.Pre.FE.md) Assembly: VM.API.Pre.FE.dll @@ -11,7 +12,7 @@ public static class ReplaceFEBodyAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ReplaceFEBodyAPI](VM.API.Pre.FE.ReplaceFEBodyAPI.md) #### Extension Methods @@ -36,37 +37,37 @@ public static void ReplaceFEBody(this SubSystemDocument document, Obj nodalBody, #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to replace FE body. -`nodalBody` Obj +`nodalBody` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The nodal body. -`newFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newFilePath` string The new mesh file path. -`allowMulti` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`allowMulti` bool The multi allow flag. The default value is false. -`hideRemoveMessage` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`hideRemoveMessage` bool The remove message show/hide flag. The default value is hide. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'newFilePath' argument is empty. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'thickness' value equal to or less than 0. - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if newFilePath file is not exist. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.ShellToSolidAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.ShellToSolidAPI.md index 28d14dfa62..f00d0ec871 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.ShellToSolidAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.ShellToSolidAPI.md @@ -1,4 +1,5 @@ -# Class ShellToSolidAPI +# Class ShellToSolidAPI + Namespace: [VM.API.Pre.FE](VM.API.Pre.FE.md) Assembly: VM.API.Pre.FE.dll @@ -11,7 +12,7 @@ public static class ShellToSolidAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ShellToSolidAPI](VM.API.Pre.FE.ShellToSolidAPI.md) #### Extension Methods @@ -41,17 +42,17 @@ The document to convert shell to solid. The shell thickness type. The default value is Element. -`thickness` ExpressionValueVariable? +`thickness` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The thickness. The default value is 1. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'thickness' value equal to or less than 0. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.ThermalAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.ThermalAPI.md index 7673822c83..e55f589fb8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.ThermalAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.ThermalAPI.md @@ -1,4 +1,5 @@ -# Class ThermalAPI +# Class ThermalAPI + Namespace: [VM.API.Pre.FE](VM.API.Pre.FE.md) Assembly: VM.API.Pre.FE.dll @@ -11,7 +12,7 @@ public static class ThermalAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ThermalAPI](VM.API.Pre.FE.ThermalAPI.md) #### Extension Methods @@ -33,51 +34,51 @@ public static Obj CreateConvectionWithFunction(this SubSystemDocument document, #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the convection. -`convectionComponent` Obj +`convectionComponent` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The convection component -`convectionName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`convectionName` string The name of the convection. If empty, default name starts with 'Convection_' will be generated and used. -`convectionCoefficientFunction` Obj? +`convectionCoefficientFunction` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)? The name of the convection coefficient function. -`ambientTemperatureFunction` Obj? +`ambientTemperatureFunction` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)? The name of the ambient temperature function. -`convectionCoefficientUnit` ConvectionCoefficientUnit.ConvectionCoefficient +`convectionCoefficientUnit` [ConvectionCoefficientUnit](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs).[ConvectionCoefficient](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs) The unit of the convection coefficient. -`ambientTemperatureUnit` TemperatureUnit.Temperature +`ambientTemperatureUnit` [TemperatureUnit](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs).[Temperature](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs) The unit of the ambient temperature. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'convectionComponent' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'convectionCoefficientFunction' argument is not empty and type of 'convectionCoefficientFunction' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'ambientTemperatureFunction' argument is not empty and type of 'ambientTemperatureFunction' is not . @@ -92,35 +93,35 @@ public static Obj CreateConvectionWithUserSubroutine(this SubSystemDocument docu #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the convection. -`convectionComponent` Obj +`convectionComponent` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The convection component -`usub` Obj +`usub` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The name of the user-subrooutine. -`convectionName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`convectionName` string The name of the convection. If empty, default name starts with 'Convection_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'convectionComponent' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'usub' argument is not empty and type of 'usub' is not . @@ -135,39 +136,39 @@ public static Obj CreateHeatFlowWithFunction(this SubSystemDocument document, Ob #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the heat flow. -`heatFlowComponent` Obj +`heatFlowComponent` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The heat flow component -`heatFlowName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`heatFlowName` string The name of the heat flow. If empty, default name starts with 'HeatFlow_' will be generated and used. -`heatFlowFunction` Obj? +`heatFlowFunction` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)? The name of the heat flow function. -`heatFlowUnit` HeatFlowUnit.HeatFlow +`heatFlowUnit` [HeatFlowUnit](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs).[HeatFlow](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs) The unit of the heat flow. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'heatFlowComponent' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'heatFlowFunction' argument is not empty and type of 'heatFlowFunction' is not . @@ -182,35 +183,35 @@ public static Obj CreateHeatFlowWithUserSubroutine(this SubSystemDocument docume #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the heat flow. -`heatFlowComponent` Obj +`heatFlowComponent` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The heat flow component -`usub` Obj +`usub` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The name of the user-subrooutine. -`heatFlowName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`heatFlowName` string The name of the heat flow. If empty, default name starts with 'HeatFlow_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'heatFlowComponent' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'usub' argument is not empty and type of 'usub' is not . @@ -225,39 +226,39 @@ public static Obj CreateHeatFluxWithFunction(this SubSystemDocument document, Ob #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the heat flux. -`heatFluxComponent` Obj +`heatFluxComponent` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The heat flux component -`heatFluxName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`heatFluxName` string The name of the heat flux. If empty, default name starts with 'HeatFlux_' will be generated and used. -`heatFluxFunction` Obj? +`heatFluxFunction` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)? The name of the heat flux function. -`heatFluxUnit` HeatFluxUnit.HeatFlux +`heatFluxUnit` [HeatFluxUnit](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs).[HeatFlux](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs) The unit of the heat flux. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'heatFluxComponent' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'heatFluxFunction' argument is not empty and type of 'heatFluxFunction' is not . @@ -272,35 +273,35 @@ public static Obj CreateHeatFluxWithUserSubroutine(this SubSystemDocument docume #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the heat flux. -`heatFluxComponent` Obj +`heatFluxComponent` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The heat flux component -`usub` Obj +`usub` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The name of the user-subrooutine. -`heatFluxName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`heatFluxName` string The name of the heat flux. If empty, default name starts with 'HeatFlux_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'heatFluxComponent' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'usub' argument is not empty and type of 'usub' is not . @@ -315,39 +316,39 @@ public static Obj CreateHeatGenerationWithFunction(this SubSystemDocument docume #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the heat generation. -`heatGenerationComponent` Obj +`heatGenerationComponent` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The heat generation component -`heatGenerationName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`heatGenerationName` string The name of the heat generation. If empty, default name starts with 'HeatGeneration_' will be generated and used. -`heatGenerationFunction` Obj? +`heatGenerationFunction` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)? The name of the heat generation function. -`heatGenerationUnit` HeatGenerationUnit.HeatGeneration +`heatGenerationUnit` [HeatGenerationUnit](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs).[HeatGeneration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs) The unit of the heat generation. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'heatGenerationComponent' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'heatGenerationFunction' argument is not empty and type of 'heatGenerationFunction' is not . @@ -362,35 +363,35 @@ public static Obj CreateHeatGenerationWithUserSubroutine(this SubSystemDocument #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the heat generation. -`heatGenerationComponent` Obj +`heatGenerationComponent` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The heat generation component -`usub` Obj +`usub` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The name of the user-subrooutine. -`heatGenerationName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`heatGenerationName` string The name of the heat generation. If empty, default name starts with 'HeatGeneration_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'heatGenerationComponent' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'usub' argument is not empty and type of 'usub' is not . @@ -405,43 +406,43 @@ public static Obj CreateTemperatureWithDFTHFile(this SubSystemDocument document, #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the temperature. -`temperatureComponent` Obj +`temperatureComponent` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The temperature component -`dfthFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`dfthFilePath` string The .dfth file path. -`temperatureUnit` TemperatureUnit.Temperature +`temperatureUnit` [TemperatureUnit](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs).[Temperature](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs) The unit of the temperature. -`temperatureName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`temperatureName` string The name of the temperature. If empty, default name starts with 'Temperature_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'temperatureComponent' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'temperatureFunction' is not . - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if dfthFilePath file is not exist. @@ -456,43 +457,43 @@ public static Obj CreateTemperatureWithFunction(this SubSystemDocument document, #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the temperature. -`temperatureComponent` Obj +`temperatureComponent` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The temperature component -`temperatureName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`temperatureName` string The name of the temperature. If empty, default name starts with 'Temperature_' will be generated and used. -`temperatureFunction` Obj? +`temperatureFunction` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)? The name of the temperature function. -`temperatureUnit` TemperatureUnit.Temperature +`temperatureUnit` [TemperatureUnit](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs).[Temperature](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs) The unit of the temperature. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'temperatureComponent' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'temperatureFunction' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'temperatureFunction' argument is not empty and type of 'temperatureFunction' is not . @@ -507,39 +508,39 @@ public static Obj CreateTemperatureWithUserSubroutine(this SubSystemDocument doc #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the temperature. -`temperatureComponent` Obj +`temperatureComponent` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The temperature component -`usub` Obj +`usub` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The name of the user-subrooutine. -`temperatureName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`temperatureName` string The name of the temperature. If empty, default name starts with 'Temperature_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'temperatureComponent' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'temperatureFunction' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'usub' argument is not empty and type of 'usub' is not . @@ -554,39 +555,39 @@ public static Obj CreateThermalContactWithFunction(this SubSystemDocument docume #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the thermal contact. -`thermalContactComponent` Obj +`thermalContactComponent` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The thermal contact component -`thermalContactName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`thermalContactName` string The name of the thermal contact. If empty, default name starts with 'ThermalContact_' will be generated and used. -`thermalContactFunction` Obj? +`thermalContactFunction` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)? The name of the thermal contact function. -`convectionCoefficient` ConvectionCoefficientUnit.ConvectionCoefficient +`convectionCoefficient` [ConvectionCoefficientUnit](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs).[ConvectionCoefficient](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs) The unit of the thermal contact conductance coefficient. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'thermalContactComponent' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'thermalContactFunction' argument is not empty and type of 'thermalContactFunction' is not . @@ -601,35 +602,35 @@ public static Obj CreateThermalContactWithUserSubroutine(this SubSystemDocument #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the thermal contact. -`thermalContactComponent` Obj +`thermalContactComponent` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The thermal contact component -`usub` Obj +`usub` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The name of the user-subrooutine. -`thermalContactName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`thermalContactName` string The name of the thermal contact. If empty, default name starts with 'ThermalContact_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'thermalContactComponent' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'usub' argument is not empty and type of 'usub' is not . diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.TieAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.TieAPI.md index a1739ea2a9..04449b204b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.TieAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.TieAPI.md @@ -1,4 +1,5 @@ -# Class TieAPI +# Class TieAPI + Namespace: [VM.API.Pre.FE](VM.API.Pre.FE.md) Assembly: VM.API.Pre.FE.dll @@ -11,7 +12,7 @@ public static class TieAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [TieAPI](VM.API.Pre.FE.TieAPI.md) #### Extension Methods @@ -39,27 +40,27 @@ public static Obj CreateTie(this IDocument document, Obj baseContactable, Obj ac The document to create the tie. -`baseContactable` Obj +`baseContactable` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The base contactable object. -`actionContactable` Obj +`actionContactable` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The action contactable object. -`tieName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`tieName` string The name of the tie. If empty, default name starts with 'TIE_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'baseContactable' or 'actionContactable' arguments are empty. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.md index 9edfab2d63..6aa42d599c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FE.md @@ -1,4 +1,5 @@ -# Namespace VM.API.Pre.FE +# Namespace VM.API.Pre.FE + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FacetParameters.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FacetParameters.md index 8159011b3b..c00a53a2dc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FacetParameters.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FacetParameters.md @@ -1,4 +1,5 @@ -# Struct FacetParameters +# Struct FacetParameters + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -31,7 +32,7 @@ public bool CheckFacetAspectRatio { readonly get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CheckMaximumFacetSize @@ -43,7 +44,7 @@ public bool CheckMaximumFacetSize { readonly get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CheckMaximumGridLine @@ -55,7 +56,7 @@ public bool CheckMaximumGridLine { readonly get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CheckMinimumUGridLine @@ -67,7 +68,7 @@ public bool CheckMinimumUGridLine { readonly get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CheckMinimumVGridLine @@ -79,7 +80,7 @@ public bool CheckMinimumVGridLine { readonly get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CheckSurfaceAngularTolerance @@ -91,7 +92,7 @@ public bool CheckSurfaceAngularTolerance { readonly get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CheckSurfaceTolerance @@ -103,7 +104,7 @@ public bool CheckSurfaceTolerance { readonly get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### FacetAspectRatio @@ -115,7 +116,7 @@ public ExpressionValueVariable FacetAspectRatio { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MaximumFacetSize @@ -127,7 +128,7 @@ public ExpressionValueVariable MaximumFacetSize { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MaximumGridLine @@ -139,7 +140,7 @@ public int MaximumGridLine { readonly get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### MinimumUGridLine @@ -151,7 +152,7 @@ public int MinimumUGridLine { readonly get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### MinimumVGridLine @@ -163,7 +164,7 @@ public int MinimumVGridLine { readonly get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### SurfaceAngularTolerance @@ -175,7 +176,7 @@ public ExpressionValueVariable SurfaceAngularTolerance { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### SurfaceTolerance @@ -187,7 +188,7 @@ public ExpressionValueVariable SurfaceTolerance { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### UseApproximatedGeometry @@ -199,7 +200,7 @@ public bool UseApproximatedGeometry { readonly get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseEdge @@ -211,7 +212,7 @@ public bool UseEdge { readonly get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseRegacyFacetParameters @@ -223,5 +224,5 @@ public bool UseRegacyFacetParameters { readonly get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ForceAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ForceAPI.md index 36b2092288..0ee70ff65b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ForceAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ForceAPI.md @@ -1,4 +1,5 @@ -# Class ForceAPI +# Class ForceAPI + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class ForceAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ForceAPI](VM.API.Pre.ForceAPI.md) #### Extension Methods @@ -35,7 +36,7 @@ public static Obj CreateBushing(this SubSystemDocument subSystemDocument, Obj ba #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a bush force. @@ -51,7 +52,7 @@ The action entity of a bush force. The position of a bush force. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a bush force. @@ -67,15 +68,15 @@ the new . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'baseEntity' is equal to 'actionEntity'. @@ -93,7 +94,7 @@ public static Obj CreateBushing(this SubSystemDocument subSystemDocument, Obj ba #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a bush force. @@ -113,7 +114,7 @@ The position of a bushr force. The direction of a bush force. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a bush force. @@ -129,15 +130,15 @@ the new and if the magnitude of 'direction' is 0. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'baseEntity' is equal to 'actionEntity'. @@ -154,7 +155,7 @@ public static Obj CreateBushing(this SubSystemDocument subSystemDocument, Obj ba #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a bush force. @@ -174,7 +175,7 @@ The position of a bush force. The orientation of a bush force. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a bush force. @@ -190,19 +191,19 @@ the new and if the magnitude of 'orientation' is 0. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'baseEntity' is equal to 'actionEntity'. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the X, Y, Z Vector magnitudes of 'orientation' are equal to 0. @@ -220,7 +221,7 @@ public static Obj CreateGeneralBearing(this SubSystemDocument subSystemDocument, #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a bearing general force. @@ -240,7 +241,7 @@ The position of a bearing general force. The Z-Axis of a bearing general force. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a bearing general force. @@ -252,24 +253,24 @@ the new BearingGeneral object created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'subSystemDocument', 'baseEntity', 'actionEntity' argument is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of 'axisZ' is 0 and if the type of 'baseEntity', 'actionEntity' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'baseEntity' is equal to 'actionEntity'. -### CreateLeafSpring\(SubSystemDocument, Obj, Obj, Obj, TMatrix, Vector, Vector, string\) +### CreateLeafSpring\(SubSystemDocument, Obj, Obj, Obj, TMatrix, Vector, Vector, string\) Create ```csharp -[NotNull(new string[] { "subSystemDocument", "transform" })] +[NotNull(new string[] { "subSystemDocument" })] [NotNullObj(new string[] { "frontConnectionFrame", "rearConnectionFrame", "axle" })] [MatchTypeObj(new object[] { "frontConnectionFrame", typeof(IConnectable), "rearConnectionFrame", typeof(IConnectable), "axle", typeof(IConnectable) })] public static Obj CreateLeafSpring(this SubSystemDocument subSystemDocument, Obj frontConnectionFrame, Obj rearConnectionFrame, Obj axle, TMatrix transform, Vector eyePosition, Vector shackleToFramePosition, string name = "") @@ -277,7 +278,7 @@ public static Obj CreateLeafSpring(this SubSystemDocument subSystemDocument, Obj #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a leaf spring. @@ -305,7 +306,7 @@ The eye position of a leaf spring. The shackle to frame position of a leaf spring. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a leaf spring. @@ -317,23 +318,23 @@ the new . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'frontConnectionFrame', 'rearConnectionFrame', 'axle' are same. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the X, Y, Z Vector magnitudes of 'transform' are equal to 0. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'eyePosition' is equal to 'shackleToFramePosition'. @@ -348,21 +349,21 @@ public static void CreateMagnetic(this SubSystemDocument subSystemDocument, IEnu #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a magnetic force. -`groups` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`groups` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> The groups of a magnetic force. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'subSystemDocument', 'groups' is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'groups' is not . @@ -379,7 +380,7 @@ public static Obj CreateMatrix(this SubSystemDocument subSystemDocument, Obj bas #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a matrix force. @@ -399,7 +400,7 @@ The base position of a matrix force. The action position of a matrix force. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a matrix force. @@ -415,11 +416,11 @@ the new . @@ -436,7 +437,7 @@ public static Obj CreateMatrix(this SubSystemDocument subSystemDocument, Obj bas #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a matrix force. @@ -460,7 +461,7 @@ The action position of a matrix force. The user subroutine of a matrix force. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a matrix force. @@ -476,19 +477,19 @@ the new . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'baseEntity' is equal to 'actionEntity'. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'userSubroutine' is equal to . @@ -505,7 +506,7 @@ public static Obj CreateRotationalScalar(this SubSystemDocument subSystemDocumen #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a rotational scalar force. @@ -517,7 +518,7 @@ The joint of a rotational scalar force. The function of a rotational scalar force. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a rotational scalar force. @@ -533,15 +534,15 @@ the new . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'function' is not and . @@ -559,7 +560,7 @@ public static Obj CreateRotationalScalar(this SubSystemDocument subSystemDocumen #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a rotational scalar force. @@ -583,7 +584,7 @@ The Z-Axis of a rotational scalar force. The function of a rotational scalar force. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a rotational scalar force. @@ -599,19 +600,19 @@ the new . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'baseEntity' is equal to 'actionEntity'. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'function' is not and . @@ -628,7 +629,7 @@ public static Obj CreateRotationalSpring(this SubSystemDocument subSystemDocumen #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a rotational spring damper force. @@ -636,7 +637,7 @@ The . @@ -673,7 +674,7 @@ public static Obj CreateSpring(this SubSystemDocument subSystemDocument, Obj bas #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a translational spring damper force. @@ -693,7 +694,7 @@ The base position of a translational spring damper force. The action position of a translational spring damper force. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a translational spring damper force. @@ -709,15 +710,15 @@ the new . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'baseEntity' is equal to 'actionEntity' or if 'basePosition' is equal to 'actionPosition'. @@ -734,7 +735,7 @@ public static Obj CreateTranslationalScalar(this SubSystemDocument subSystemDocu #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a translational scalar force. @@ -758,7 +759,7 @@ The action position of a translational scalar force. The function of a translational scalar force. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a translational scalar force. @@ -774,19 +775,19 @@ the new . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'baseEntity' is equal to 'actionEntity' or if 'basePosition' is equal to 'actionPosition'. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'function' is not and . @@ -803,7 +804,7 @@ public static Obj CreateVector(this SubSystemDocument subSystemDocument, Obj bas #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a vector force. @@ -823,7 +824,7 @@ The position of a vector force. The functions of a vector force. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a vector force. @@ -839,11 +840,11 @@ the new . @@ -860,7 +861,7 @@ public static Obj CreateVector(this SubSystemDocument subSystemDocument, Obj bas #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a vector force. @@ -884,7 +885,7 @@ The action position of a vector force. The functions of a vector force. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a vector force. @@ -900,15 +901,15 @@ the new . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'baseEntity' is equal to 'actionEntity'. @@ -925,7 +926,7 @@ public static Obj CreateVector(this SubSystemDocument subSystemDocument, Obj bas #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a vector force. @@ -945,7 +946,7 @@ The position of a vector force. The user subroutine of a vector force. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a vector force. @@ -961,11 +962,11 @@ the new . @@ -982,7 +983,7 @@ public static Obj CreateVector(this SubSystemDocument subSystemDocument, Obj bas #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a vector force. @@ -1006,7 +1007,7 @@ The action position of a vector force. The user subroutine of a vector force. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a vector force. @@ -1022,19 +1023,19 @@ the new . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'baseEntity' is equal to 'actionEntity'. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'userSubroutine' is not . @@ -1050,7 +1051,7 @@ public static void RunLeafSpringSimulation(this SubSystemDocument subSystemDocum #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a leaf spring simulation. @@ -1058,17 +1059,17 @@ The . diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FrequencyResponseAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FrequencyResponseAPI.md index 3e52f472b7..e4634b6188 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FrequencyResponseAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FrequencyResponseAPI.md @@ -1,4 +1,5 @@ -# Class FrequencyResponseAPI +# Class FrequencyResponseAPI + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class FrequencyResponseAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [FrequencyResponseAPI](VM.API.Pre.FrequencyResponseAPI.md) #### Extension Methods @@ -32,7 +33,7 @@ public static Obj CreateInputChannel(this SubSystemDocument subSystemDocument, O #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) `body` [Obj](VM.API.Pre.Obj.md) @@ -46,7 +47,7 @@ public static Obj CreateInputChannel(this SubSystemDocument subSystemDocument, O `inputMode` InputModeType -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns @@ -65,7 +66,7 @@ public static Obj CreateOutputChannel(this SubSystemDocument subSystemDocument, #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a output channel. @@ -89,7 +90,7 @@ The type of a output channel. The direction of a output channel. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the . If empty, default name starts with 'OC' will be generated and used. @@ -101,11 +102,11 @@ The new . @@ -120,19 +121,19 @@ public static Obj CreateRotatingMassActuatorForForce(this SubSystemDocument subS #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a rotating mass actuator. -`mass` ExpressionValueVariable? +`mass` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The mass of a rotating mass actuator. -`radialOffset` ExpressionValueVariable? +`radialOffset` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The radial offset of a rotating mass actuator. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the . If empty, default name starts with 'RMA_' will be generated and used. @@ -144,7 +145,7 @@ The new to create a rotating mass actuator. -`mass` ExpressionValueVariable? +`mass` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The mass of a rotating mass actuator. -`radialOffset` ExpressionValueVariable? +`radialOffset` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The radial offset of a rotating mass actuator. -`offsetNormalToPlane` ExpressionValueVariable? +`offsetNormalToPlane` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The offset normal to plane of a rotating mass actuator. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the . If empty, default name starts with 'RMA_' will be generated and used. @@ -187,7 +188,7 @@ The new to create a swept sine actuator. -`magnitude` ExpressionValueVariable? +`magnitude` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The magnitude of a swept sine actuator. -`phaseAngle` ExpressionValueVariable? +`phaseAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The phase angle of a swept sine actuator. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the . If empty, default name starts with 'SSA_' will be generated and used. @@ -226,7 +227,7 @@ The new Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public class Friction #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Friction](VM.API.Pre.Friction.md) #### Derived @@ -47,27 +48,27 @@ public Friction(ExpressionValueVariable frictionCoefficient, ExpressionValueVari #### Parameters -`frictionCoefficient` ExpressionValueVariable +`frictionCoefficient` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The friction coefficient. -`staticFrictionCoefficient` ExpressionValueVariable +`staticFrictionCoefficient` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The static friction coefficient. -`dynamicsThreshold` ExpressionValueVariable +`dynamicsThreshold` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The dynamics threshold. -`stictionVelocity` ExpressionValueVariable +`stictionVelocity` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The stiction velocity. -`maxStictionDeformation` ExpressionValueVariable +`maxStictionDeformation` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The max stiction deformation. -`frictionEffect` Friction.EffectType +`frictionEffect` [Friction](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs).[EffectType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs) The friction effect. @@ -81,35 +82,35 @@ public Friction(ExpressionValueVariable frictionCoefficient, ExpressionValueVari #### Parameters -`frictionCoefficient` ExpressionValueVariable +`frictionCoefficient` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The friction coefficient. -`staticFrictionCoefficient` ExpressionValueVariable +`staticFrictionCoefficient` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The static friction coefficient. -`dynamicsThreshold` ExpressionValueVariable +`dynamicsThreshold` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The dynamics threshold. -`stictionVelocity` ExpressionValueVariable +`stictionVelocity` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The stiction velocity. -`maxStictionDeformation` ExpressionValueVariable +`maxStictionDeformation` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The max stiction deformation. -`frictionEffect` Friction.EffectType +`frictionEffect` [Friction](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs).[EffectType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs) The friction effect. -`reactionForce` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`reactionForce` bool The reaction force. -`bendingMoment` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bendingMoment` bool The bending moment. @@ -125,7 +126,7 @@ public bool BendingMoment { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DynamicsThreshold @@ -137,7 +138,7 @@ public ExpressionValueVariable DynamicsThreshold { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### FrictionCoefficient @@ -149,7 +150,7 @@ public ExpressionValueVariable FrictionCoefficient { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### FrictionEffect @@ -161,7 +162,7 @@ public Friction.EffectType FrictionEffect { get; set; } #### Property Value - Friction.EffectType + [Friction](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs).[EffectType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs) ### MaxStictionDeformation @@ -173,7 +174,7 @@ public ExpressionValueVariable MaxStictionDeformation { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ReactionForce @@ -185,7 +186,7 @@ public bool ReactionForce { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### StaticFrictionCoefficient @@ -197,7 +198,7 @@ public ExpressionValueVariable StaticFrictionCoefficient { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### StictionVelocity @@ -209,5 +210,5 @@ public ExpressionValueVariable StictionVelocity { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FrictionBall.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FrictionBall.md index 804babe2a3..a4e03ed2d0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FrictionBall.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FrictionBall.md @@ -1,4 +1,5 @@ -# Class FrictionBall +# Class FrictionBall + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public class FrictionBall : FrictionRevolute #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Friction](VM.API.Pre.Friction.md) ← [FrictionRevolute](VM.API.Pre.FrictionRevolute.md) ← [FrictionBall](VM.API.Pre.FrictionBall.md) @@ -57,51 +58,51 @@ public FrictionBall(ExpressionValueVariable frictionCoefficient, ExpressionValue #### Parameters -`frictionCoefficient` ExpressionValueVariable +`frictionCoefficient` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The friction coefficient. -`staticFrictionCoefficient` ExpressionValueVariable +`staticFrictionCoefficient` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The static friction coefficient. -`dynamicsThreshold` ExpressionValueVariable +`dynamicsThreshold` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The dynamics threshold. -`stictionVelocity` ExpressionValueVariable +`stictionVelocity` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The stiction velocity. -`maxStictionDeformation` ExpressionValueVariable +`maxStictionDeformation` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The max stiction deformation. -`frictionEffect` Friction.EffectType +`frictionEffect` [Friction](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs).[EffectType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs) The friction effect. -`reactionForce` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`reactionForce` bool The reaction force. -`bendingMoment` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bendingMoment` bool The bending moment. -`frictionArm` ExpressionValueVariable +`frictionArm` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The friction arm. -`bendingReactionArm` ExpressionValueVariable +`bendingReactionArm` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The bending reaction arm. -`ballRadius` ExpressionValueVariable +`ballRadius` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The ball Radius. -`preTorque` ExpressionValueVariable +`preTorque` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The preTorque. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FrictionContact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FrictionContact.md index 716079110b..7b212fd226 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FrictionContact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FrictionContact.md @@ -1,4 +1,5 @@ -# Class FrictionContact +# Class FrictionContact + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public class FrictionContact : Friction #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Friction](VM.API.Pre.Friction.md) ← [FrictionContact](VM.API.Pre.FrictionContact.md) @@ -52,27 +53,27 @@ public FrictionContact(ExpressionValueVariable frictionCoefficient, ExpressionVa #### Parameters -`frictionCoefficient` ExpressionValueVariable +`frictionCoefficient` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The friction coefficient. -`staticFrictionCoefficient` ExpressionValueVariable +`staticFrictionCoefficient` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The static friction coefficient. -`dynamicsThreshold` ExpressionValueVariable +`dynamicsThreshold` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The dynamics threshold. -`stictionVelocity` ExpressionValueVariable +`stictionVelocity` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The stiction velocity. -`maxStictionDeformation` ExpressionValueVariable +`maxStictionDeformation` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The max stiction deformation. -`frictionEffect` Friction.EffectType +`frictionEffect` [Friction](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs).[EffectType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs) The friction effect. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FrictionRevolute.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FrictionRevolute.md index 76f508dda4..4effe92458 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FrictionRevolute.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FrictionRevolute.md @@ -1,4 +1,5 @@ -# Class FrictionRevolute +# Class FrictionRevolute + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public class FrictionRevolute : Friction #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Friction](VM.API.Pre.Friction.md) ← [FrictionRevolute](VM.API.Pre.FrictionRevolute.md) @@ -56,51 +57,51 @@ public FrictionRevolute(ExpressionValueVariable frictionCoefficient, ExpressionV #### Parameters -`frictionCoefficient` ExpressionValueVariable +`frictionCoefficient` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The friction coefficient. -`staticFrictionCoefficient` ExpressionValueVariable +`staticFrictionCoefficient` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The static friction coefficient. -`dynamicsThreshold` ExpressionValueVariable +`dynamicsThreshold` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The dynamics threshold. -`stictionVelocity` ExpressionValueVariable +`stictionVelocity` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The stiction velocity. -`maxStictionDeformation` ExpressionValueVariable +`maxStictionDeformation` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The max stiction deformation. -`frictionEffect` Friction.EffectType +`frictionEffect` [Friction](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs).[EffectType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs) The friction effect. -`reactionForce` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`reactionForce` bool The reaction force. -`bendingMoment` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bendingMoment` bool The bending moment. -`frictionArm` ExpressionValueVariable +`frictionArm` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The friction arm. -`bendingReactionArm` ExpressionValueVariable +`bendingReactionArm` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The bending reaction arm. -`pinRadius` ExpressionValueVariable +`pinRadius` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The pin Radius. -`preTorque` ExpressionValueVariable +`preTorque` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The preTorque. @@ -116,7 +117,7 @@ public ExpressionValueVariable BendingReactionArm { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### FrictionArm @@ -128,7 +129,7 @@ public ExpressionValueVariable FrictionArm { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PinRadius @@ -140,7 +141,7 @@ public ExpressionValueVariable PinRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PreTorque @@ -152,5 +153,5 @@ public ExpressionValueVariable PreTorque { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FrictionTranslational.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FrictionTranslational.md index 607887bd0f..77cc3dd0fe 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FrictionTranslational.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FrictionTranslational.md @@ -1,4 +1,5 @@ -# Class FrictionTranslational +# Class FrictionTranslational + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public class FrictionTranslational : Friction #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Friction](VM.API.Pre.Friction.md) ← [FrictionTranslational](VM.API.Pre.FrictionTranslational.md) @@ -52,47 +53,47 @@ public FrictionTranslational(ExpressionValueVariable frictionCoefficient, Expres #### Parameters -`frictionCoefficient` ExpressionValueVariable +`frictionCoefficient` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The friction coefficient. -`staticFrictionCoefficient` ExpressionValueVariable +`staticFrictionCoefficient` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The static friction coefficient. -`dynamicsThreshold` ExpressionValueVariable +`dynamicsThreshold` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The dynamics threshold. -`stictionVelocity` ExpressionValueVariable +`stictionVelocity` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The stiction velocity. -`maxStictionDeformation` ExpressionValueVariable +`maxStictionDeformation` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The max stiction deformation. -`frictionEffect` Friction.EffectType +`frictionEffect` [Friction](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs).[EffectType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs) The friction effect. -`reactionForce` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`reactionForce` bool The reaction force. -`bendingMoment` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bendingMoment` bool The bending moment. -`reactionArm` ExpressionValueVariable +`reactionArm` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The reaction arm. -`preForce` ExpressionValueVariable +`preForce` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The pre force. -`initialOverlap` ExpressionValueVariable +`initialOverlap` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The initial overlap. @@ -100,7 +101,7 @@ The initial overlap. The overlap option. -`torsionalMoment` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`torsionalMoment` bool The torsional moment. @@ -116,7 +117,7 @@ public ExpressionValueVariable InitialOverlap { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### OverlapOption @@ -140,7 +141,7 @@ public ExpressionValueVariable PreForce { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ReactionArm @@ -152,7 +153,7 @@ public ExpressionValueVariable ReactionArm { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TorsionalMoment @@ -164,5 +165,5 @@ public bool TorsionalMoment { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FrictionUniversal.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FrictionUniversal.md index 3db2c9e2c8..74f155bd14 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FrictionUniversal.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FrictionUniversal.md @@ -1,4 +1,5 @@ -# Class FrictionUniversal +# Class FrictionUniversal + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public class FrictionUniversal : Friction #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Friction](VM.API.Pre.Friction.md) ← [FrictionUniversal](VM.API.Pre.FrictionUniversal.md) @@ -52,51 +53,51 @@ public FrictionUniversal(ExpressionValueVariable frictionCoefficient, Expression #### Parameters -`frictionCoefficient` ExpressionValueVariable +`frictionCoefficient` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The friction coefficient. -`staticFrictionCoefficient` ExpressionValueVariable +`staticFrictionCoefficient` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The static friction coefficient. -`dynamicsThreshold` ExpressionValueVariable +`dynamicsThreshold` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The dynamics threshold. -`stictionVelocity` ExpressionValueVariable +`stictionVelocity` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The stiction velocity. -`maxStictionDeformation` ExpressionValueVariable +`maxStictionDeformation` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The max stiction deformation. -`frictionEffect` Friction.EffectType +`frictionEffect` [Friction](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs).[EffectType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs) The friction effect. -`reactionForce` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`reactionForce` bool The reaction force. -`bendingMoment` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bendingMoment` bool The bending moment. -`frictionArm` ExpressionValueVariable +`frictionArm` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The friction arm. -`bendingReactionArm` ExpressionValueVariable +`bendingReactionArm` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The bending reaction arm. -`pinRadius` ExpressionValueVariable +`pinRadius` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The pin Radius. -`preTorque` ExpressionValueVariable +`preTorque` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The preTorque. @@ -112,7 +113,7 @@ public ExpressionValueVariable BendingReactionArm { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### FrictionArm @@ -124,7 +125,7 @@ public ExpressionValueVariable FrictionArm { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PinRadius @@ -136,7 +137,7 @@ public ExpressionValueVariable PinRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PreTorque @@ -148,5 +149,5 @@ public ExpressionValueVariable PreTorque { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FunctionAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FunctionAPI.md index f0eaccfde1..ae9e478d5a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FunctionAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.FunctionAPI.md @@ -1,4 +1,5 @@ -# Class FunctionAPI +# Class FunctionAPI + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class FunctionAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [FunctionAPI](VM.API.Pre.FunctionAPI.md) #### Extension Methods @@ -34,19 +35,19 @@ public static Obj CreateFunction(this SubSystemDocument document, string express #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create a function. -`expression` [string](https://learn.microsoft.com/dotnet/api/system.string) +`expression` string The expression of a function. -`arguments` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<\([string](https://learn.microsoft.com/dotnet/api/system.string), [Obj](VM.API.Pre.Obj.md)\)\> +`arguments` IEnumerable<\(string, [Obj](VM.API.Pre.Obj.md)\)\> The arguments of a function. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a function. @@ -54,7 +55,7 @@ The name of a function. The symmetric type of the new -`isInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isInterface` bool 'true' if it is interface body. Otherwise, 'false'. @@ -66,11 +67,11 @@ The new . diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.AddedRacewayType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.AddedRacewayType.md index 48990ba497..d8d887268a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.AddedRacewayType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.AddedRacewayType.md @@ -1,4 +1,5 @@ -# Enum AddedRacewayType +# Enum AddedRacewayType + Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.AssemblyManagerAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.AssemblyManagerAPI.md index a06d1fe6e7..585d98e117 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.AssemblyManagerAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.AssemblyManagerAPI.md @@ -1,4 +1,5 @@ -# Class AssemblyManagerAPI +# Class AssemblyManagerAPI + Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll @@ -11,7 +12,7 @@ public static class AssemblyManagerAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AssemblyManagerAPI](VM.API.Pre.GearTrain.AssemblyManagerAPI.md) #### Extension Methods @@ -35,29 +36,29 @@ public static void ApplyAssemblyBearing(this GearTrainDocument document, Obj ref #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The for assembly bearing apply. If null, the active document will be used. -`referenceBody` Obj +`referenceBody` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The reference body. The type is . -`bearingInfo` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[BearingInformationInAssemblyManager](VM.API.Pre.GearTrain.BearingInformationInAssemblyManager.md)\> +`bearingInfo` IEnumerable<[BearingInformationInAssemblyManager](VM.API.Pre.GearTrain.BearingInformationInAssemblyManager.md)\> The bearing information. If it is not given, default values will be used.. -`cycloidPinInfo` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[CycloidPinInformationInAssemblyManager](VM.API.Pre.GearTrain.CycloidPinInformationInAssemblyManager.md)\> +`cycloidPinInfo` IEnumerable<[CycloidPinInformationInAssemblyManager](VM.API.Pre.GearTrain.CycloidPinInformationInAssemblyManager.md)\> The cycloid information. If it is not given, default values will be used.. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'referenceBody' arguments are empty. - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if type of 'referenceBody' is not . @@ -75,11 +76,11 @@ public static void ApplyAssemblyIOShaft(this GearTrainDocument document, Obj ref #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The for assembly IO shaft apply. If null, the active document will be used. -`referenceBody` Obj +`referenceBody` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The reference body. The type is . @@ -87,33 +88,33 @@ The reference body. The type is +`inputInfo` IEnumerable<[ShaftInformationInAssemblyManager](VM.API.Pre.GearTrain.ShaftInformationInAssemblyManager.md)\> The input information. If it is not given, default values will be used. -`outputInfo` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[ShaftInformationInAssemblyManager](VM.API.Pre.GearTrain.ShaftInformationInAssemblyManager.md)\> +`outputInfo` IEnumerable<[ShaftInformationInAssemblyManager](VM.API.Pre.GearTrain.ShaftInformationInAssemblyManager.md)\> The output information. If it is not given, default values will be used. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'referenceBody' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of 'referenceVector' is 0. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'referenceBody' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'inputInfo' is not (, ). - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'outputInfo' is not (, ). @@ -128,7 +129,7 @@ public static void ApplyPowerFlow(this GearTrainDocument document, PowerFlowPara #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The for power apply. If null, the active document will be used. @@ -138,7 +139,7 @@ The power flow parameters. If it is not given, default values will be used. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'powerFlow' arguments are empty. @@ -153,11 +154,11 @@ public static void ApplyRequest(this GearTrainDocument document, IEnumerable for request apply. If null, the active document will be used. -`gearsetForceDisplay` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[bool](https://learn.microsoft.com/dotnet/api/system.boolean)\> +`gearsetForceDisplay` IEnumerable The flags whether using force display of gearset. @@ -167,7 +168,7 @@ The request parameters. If it is not given, default values will be used. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'request' arguments are empty. @@ -182,7 +183,7 @@ public static void SimulateInAssemblyManager(this GearTrainDocument doc) #### Parameters -`doc` GearTrainDocument +`doc` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The for simulate. If null, the active document will be used. @@ -197,7 +198,7 @@ public static void UpdateAssemblyManager(this GearTrainDocument doc) #### Parameters -`doc` GearTrainDocument +`doc` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The for assembly manager update. If null, the active document will be used. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.AttachLocationType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.AttachLocationType.md index dbdaf2bd1d..5a3800ef7f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.AttachLocationType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.AttachLocationType.md @@ -1,4 +1,5 @@ -# Enum AttachLocationType +# Enum AttachLocationType + Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.BearingAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.BearingAPI.md index 9edf826b24..4ebbf26b42 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.BearingAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.BearingAPI.md @@ -1,4 +1,5 @@ -# Class BearingAPI +# Class BearingAPI + Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll @@ -11,7 +12,7 @@ public static class BearingAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BearingAPI](VM.API.Pre.GearTrain.BearingAPI.md) #### Extension Methods @@ -33,13 +34,13 @@ public static void ApplyRollingBearing(this HiddenBearingDocument document) #### Parameters -`document` HiddenBearingDocument +`document` [HiddenBearingDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenBearingDocument.cs) The for bearing apply. If null, the active document will be used. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'bearing' arguments are empty. @@ -54,13 +55,13 @@ public static void ApplySlidingBearing(this HiddenSlidingBearingDocument documen #### Parameters -`document` HiddenSlidingBearingDocument +`document` [HiddenSlidingBearingDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenBearingDocument.cs) The for sliding bearing apply. If null, the active document will be used. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'slidingBearing' arguments are empty. @@ -75,99 +76,99 @@ public static Obj CreateBearingForAngularContactBall(this GearTrainDocument docu #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the bearing. -`bearingName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bearingName` string The name of the bearing. If empty, default name starts with 'Rolling_' will be generated and used. -`outerDiameterOfOuterRaceway` ExpressionValueVariable? +`outerDiameterOfOuterRaceway` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The outer diameter of outer raceway. The default value is 47. -`innerDiameterOfOuterRaceway` ExpressionValueVariable? +`innerDiameterOfOuterRaceway` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The inner diameter of outer raceway. The default value is 36.5. -`outerDiameterOfInnerRaceway` ExpressionValueVariable? +`outerDiameterOfInnerRaceway` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The outer diameter of inner raceway. The default value is 30.8. -`innerDiameterOfInnerRaceway` ExpressionValueVariable? +`innerDiameterOfInnerRaceway` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The inner diameter of inner raceway. The default value is 20. -`ballDiameter` ExpressionValueVariable? +`ballDiameter` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The ball diameter. The default value is 7.938. -`width` ExpressionValueVariable? +`width` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The width. The default value is 14. -`numberOfBall` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`numberOfBall` int The number of ball. The default value is 11. -`curvatureCenterOuter` ExpressionValueVariable? +`curvatureCenterOuter` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The curvature center of outer. The default value is 16.825. -`curvatureCenterInner` ExpressionValueVariable? +`curvatureCenterInner` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The curvature center of inner. The default value is 16.825. -`roundingRadius` ExpressionValueVariable? +`roundingRadius` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The rounding radius. The default value is 1. -`outerRacewayShoulderBore2` ExpressionValueVariable? +`outerRacewayShoulderBore2` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The second shoulder bore of outer raceway. The default value is 41.7. -`innerRacewayShoulderDiameter2` ExpressionValueVariable? +`innerRacewayShoulderDiameter2` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The second shoulder diameter of outer raceway. The default value is 25.9. -`actionPoint` ExpressionValueVariable? +`actionPoint` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The action point. The default value is 21. -`ballPitchDiameter` ExpressionValueVariable? +`ballPitchDiameter` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The ball pitch diameter. The default value is 33.65. -`ballCr` ExpressionValueVariable? +`ballCr` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The Cr. The default value is 14300. -`ballC0r` ExpressionValueVariable? +`ballC0r` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The C0r. The default value is 8150. -`ballF0` ExpressionValueVariable? +`ballF0` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The f0. The default value is 15. -`outerRacewayColor` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`outerRacewayColor` Color? The color of the outer raceway. -`innerRacewayColor` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`innerRacewayColor` Color? The color of the inner raceway. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. @@ -182,79 +183,79 @@ public static Obj CreateBearingForCylindricalRoller(this GearTrainDocument docum #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the bearing. -`bearingName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bearingName` string The name of the bearing. If empty, default name starts with 'Rolling_' will be generated and used. -`outerDiameterOfOuterRaceway` ExpressionValueVariable? +`outerDiameterOfOuterRaceway` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The outer diameter of outer raceway. The default value is 47. -`innerDiameterOfOuterRaceway` ExpressionValueVariable? +`innerDiameterOfOuterRaceway` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The inner diameter of outer raceway. The default value is 36.5. -`outerDiameterOfInnerRaceway` ExpressionValueVariable? +`outerDiameterOfInnerRaceway` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The outer diameter of inner raceway. The default value is 30.8. -`innerDiameterOfInnerRaceway` ExpressionValueVariable? +`innerDiameterOfInnerRaceway` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The inner diameter of inner raceway. The default value is 20. -`ballDiameter` ExpressionValueVariable? +`ballDiameter` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The ball diameter. The default value is 15. -`width` ExpressionValueVariable? +`width` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The width. The default value is 25. -`numberOfBall` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`numberOfBall` int The number of ball. The default value is 13. -`roundingRadius` ExpressionValueVariable? +`roundingRadius` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The rounding radius. The default value is 1.5. -`rollerLen` ExpressionValueVariable? +`rollerLen` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The roller length. The default value is 16. -`rollerPDia` ExpressionValueVariable? +`rollerPDia` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The roller pitch diameter. The default value is 73.5. -`rollerCr` ExpressionValueVariable? +`rollerCr` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The Cr. The default value is 112000. -`rollerC0r` ExpressionValueVariable? +`rollerC0r` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The C0r. The default value is 100000. -`outerRacewayColor` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`outerRacewayColor` Color? The color of the outer raceway. -`innerRacewayColor` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`innerRacewayColor` Color? The color of the inner raceway. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. @@ -269,87 +270,87 @@ public static Obj CreateBearingForRadialBall(this GearTrainDocument document, st #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the bearing. -`bearingName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bearingName` string The name of the bearing. If empty, default name starts with 'Rolling_' will be generated and used. -`outerDiameterOfOuterRaceway` ExpressionValueVariable? +`outerDiameterOfOuterRaceway` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The outer diameter of outer raceway. The default value is 32. -`innerDiameterOfOuterRaceway` ExpressionValueVariable? +`innerDiameterOfOuterRaceway` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The inner diameter of outer raceway. The default value is 28.3. -`outerDiameterOfInnerRaceway` ExpressionValueVariable? +`outerDiameterOfInnerRaceway` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The outer diameter of inner raceway. The default value is 23.8. -`innerDiameterOfInnerRaceway` ExpressionValueVariable? +`innerDiameterOfInnerRaceway` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The inner diameter of inner raceway. The default value is 20. -`ballDiameter` ExpressionValueVariable? +`ballDiameter` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The ball diameter. The default value is 3.5. -`width` ExpressionValueVariable? +`width` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The width. The default value is 7. -`numberOfBall` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`numberOfBall` int The number of ball. The default value is 13. -`curvatureCenterOuter` ExpressionValueVariable? +`curvatureCenterOuter` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The curvature center of outer. The default value is 13.025. -`curvatureCenterInner` ExpressionValueVariable? +`curvatureCenterInner` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The curvature center of inner. The default value is 13.025. -`roundingRadius` ExpressionValueVariable? +`roundingRadius` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The rounding radius. The default value is 0.3. -`ballPitchDiameter` ExpressionValueVariable? +`ballPitchDiameter` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? -The ball pitch diameter. The default value is 26.5. +The ball pitch diameter. The default value is 26.0. -`ballCr` ExpressionValueVariable? +`ballCr` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The Cr. The default value is 4030. -`ballC0r` ExpressionValueVariable? +`ballC0r` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The C0r. The default value is 2320. -`ballF0` ExpressionValueVariable? +`ballF0` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The f0. The default value is 15. -`outerRacewayColor` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`outerRacewayColor` Color? The color of the outer raceway. -`innerRacewayColor` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`innerRacewayColor` Color? The color of the inner raceway. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. @@ -364,111 +365,111 @@ public static Obj CreateBearingForTaperedRoller(this GearTrainDocument document, #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the bearing. -`bearingName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bearingName` string The name of the bearing. If empty, default name starts with 'Rolling_' will be generated and used. -`outerDiameterOfOuterRaceway` ExpressionValueVariable? +`outerDiameterOfOuterRaceway` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The outer diameter of outer raceway. The default value is 47. -`outerDiameterOfInnerRaceway` ExpressionValueVariable? +`outerDiameterOfInnerRaceway` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The outer diameter of inner raceway. The default value is 33.7. -`innerDiameterOfInnerRaceway` ExpressionValueVariable? +`innerDiameterOfInnerRaceway` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The inner diameter of inner raceway. The default value is 20. -`ballDiameter` ExpressionValueVariable? +`ballDiameter` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The ball diameter. The default value is 6.65. -`width` ExpressionValueVariable? +`width` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The width. The default value is 15.25. -`coneW` ExpressionValueVariable? +`coneW` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The width of cone. The default value is 14. -`cupW` ExpressionValueVariable? +`cupW` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The width of cup. The default value is 12. -`numberOfBall` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`numberOfBall` int The number of ball. The default value is 15. -`roundingRadius1` ExpressionValueVariable? +`roundingRadius1` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The first rounding radius. The default value is 1. -`roundingRadius2` ExpressionValueVariable? +`roundingRadius2` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The second rounding radius. The default value is 1. -`actionPoint` ExpressionValueVariable? +`actionPoint` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The action point. The default value is 11. -`rollerAlpha` ExpressionValueVariable? +`rollerAlpha` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The roller contact angle. The default value is 15.49851. -`rollerCP` ExpressionValueVariable? +`rollerCP` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The roller center point. The default value is 7.09849. -`rollerPR` ExpressionValueVariable? +`rollerPR` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The roller pitch radius. The default value is 33.7986. -`rollerLen` ExpressionValueVariable? +`rollerLen` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The roller length. The default value is 10. -`rollerBeta` ExpressionValueVariable? +`rollerBeta` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The tapered angle. The default value is 4.99702. -`rollerCr` ExpressionValueVariable? +`rollerCr` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The Cr. The default value is 0.27500. -`rollerC0r` ExpressionValueVariable? +`rollerC0r` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The C0r. The default value is 28000. -`rollerE` ExpressionValueVariable? +`rollerE` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The e. The default value is 35. -`rollerY` ExpressionValueVariable? +`rollerY` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The Y. The default value is 17. -`outerRacewayColor` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`outerRacewayColor` Color? The color of the outer raceway. -`innerRacewayColor` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`innerRacewayColor` Color? The color of the inner raceway. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. @@ -483,11 +484,11 @@ public static Obj CreateSlidingBearing(this GearTrainDocument document, string b #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the sliding bearing. -`bearingName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bearingName` string The name of the sliding bearing. If empty, default name starts with 'Sliding_' will be generated and used. @@ -495,35 +496,35 @@ The name of the sliding bearing. If empty, default name starts with 'Sliding_' w The sliding bearing type. The default value is CIRCULAR. -`arcAngle` ExpressionValueVariable? +`arcAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The arc angle. The default value is 80. -`length` ExpressionValueVariable? +`length` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The outer diameter of inner raceway. The default value is 10. -`thickness` ExpressionValueVariable? +`thickness` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The inner diameter of inner raceway. The default value is 5. -`innerRadius` ExpressionValueVariable? +`innerRadius` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The ball diameter. The default value is 30. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. @@ -539,35 +540,35 @@ public static Obj CreateSlidingBearing(this GearTrainDocument document, Obj slid #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the sliding bearing. -`slidingBearingCopy` Obj +`slidingBearingCopy` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The sliding bearing to be copied. The type is -`bearingName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bearingName` string The name of the sliding bearing. If empty, default name starts with 'Sliding_' will be generated and used. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'slidingBearingCopy' arguments are empty. - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if type of 'slidingBearingCopy' is not . @@ -582,83 +583,83 @@ public static Obj CreateStiffnessBearing(this GearTrainDocument document, string #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the stiffness bearing. -`bearingName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bearingName` string The name of the stiffness bearing. If empty, default name starts with 'Stiffness_' will be generated and used. -`dampingRatio` ExpressionValueVariable? +`dampingRatio` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The damping ratio. The default value is 0.00001. -`outerDiameterOfOuterRaceway` ExpressionValueVariable? +`outerDiameterOfOuterRaceway` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The outer diameter of outer raceway. The default value is 40. -`innerDiameterOfOuterRaceway` ExpressionValueVariable? +`innerDiameterOfOuterRaceway` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The inner diameter of outer raceway. The default value is 35. -`outerDiameterOfInnerRaceway` ExpressionValueVariable? +`outerDiameterOfInnerRaceway` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The outer diameter of inner raceway. The default value is 29. -`innerDiameterOfInnerRaceway` ExpressionValueVariable? +`innerDiameterOfInnerRaceway` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The inner diameter of inner raceway. The default value is 25. -`ballDiameter` ExpressionValueVariable? +`ballDiameter` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The ball diameter. The default value is 4. -`width` ExpressionValueVariable? +`width` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The width. The default value is 12. -`stiffness` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> +`stiffness` IEnumerable The stiffness. If it is not given, default values will be used. -`numberOfBall` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`numberOfBall` int The number of ball. The default value is 14. -`unloadedContactAngle` ExpressionValueVariable? +`unloadedContactAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The unloaded contact angle. The default value is 0. -`curvatureCenterOuter` ExpressionValueVariable? +`curvatureCenterOuter` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The curvature center of outer. The default value is 16. -`curvatureCenterInner` ExpressionValueVariable? +`curvatureCenterInner` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The curvature center of inner. The default value is 16. -`outerRacewayColor` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`outerRacewayColor` Color? The color of the outer raceway. -`innerRacewayColor` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`innerRacewayColor` Color? The color of the inner raceway. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'stiffness' argument is not null and the length of 'stiffness' is not 25. @@ -674,39 +675,39 @@ public static Obj CreateStiffnessBearing(this GearTrainDocument document, Obj be #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the stiffness bearing. -`bearingStiffnessCopy` Obj +`bearingStiffnessCopy` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The stiffness bearing to be copied. The type is -`bearingName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bearingName` string The name of the stiffness bearing. If empty, default name starts with 'Stiffness_' will be generated and used. -`outerRacewayColor` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`outerRacewayColor` Color? The color of the outer raceway. -`innerRacewayColor` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`innerRacewayColor` Color? The color of the inner raceway. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'bearingStiffnessCopy' arguments are empty. - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if type of 'bearingStiffnessCopy' is not . @@ -721,13 +722,13 @@ public static void UpdateBearing(this HiddenBearingDocument document) #### Parameters -`document` HiddenBearingDocument +`document` [HiddenBearingDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenBearingDocument.cs) The for bearing update. If null, the active document will be used. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. @@ -744,15 +745,15 @@ public static void UpdateBearingInEF(this HiddenDocumentMeshBase document, strin #### Parameters -`document` HiddenDocumentMeshBase +`document` [HiddenDocumentMeshBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) The for bearing update. If null, the active document will be used. -`racewayName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`racewayName` string The raceway name to be attached on rbe. -`rbeName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`rbeName` string The rbe name. @@ -762,11 +763,11 @@ The z axis. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'racewayName' or 'rbeName' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of 'zAxis' is 0. @@ -783,19 +784,19 @@ public static void UpdateBearingInEF(this HiddenDocumentMeshBase document, Obj b #### Parameters -`document` HiddenDocumentMeshBase +`document` [HiddenDocumentMeshBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) The for bearing update. If null, the active document will be used. -`bearing` Obj +`bearing` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The bearing. -`racewayType` RacewayGeometryInfo.RacewayType +`racewayType` [RacewayGeometryInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BearingRacewayGeometryInfo.cs).[RacewayType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BearingRacewayGeometryInfo.cs) The bearing raceway type. -`rbe` Obj +`rbe` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The rbe. @@ -805,11 +806,11 @@ The z axis. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'racewayName' or 'rbe' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of 'zAxis' is 0. @@ -826,15 +827,15 @@ public static void UpdateBearingInFE(this HiddenDocumentMeshBase document, strin #### Parameters -`document` HiddenDocumentMeshBase +`document` [HiddenDocumentMeshBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) The for bearing update. If null, the active document will be used. -`racewayName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`racewayName` string The raceway name to be attached on rbe. -`rbeName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`rbeName` string The rbe name. @@ -844,11 +845,11 @@ The z axis. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'racewayName' or 'rbeName' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of 'zAxis' is 0. @@ -865,19 +866,19 @@ public static void UpdateBearingInFE(this HiddenDocumentMeshBase document, Obj b #### Parameters -`document` HiddenDocumentMeshBase +`document` [HiddenDocumentMeshBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) The for bearing update. If null, the active document will be used. -`bearing` Obj +`bearing` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The bearing. -`racewayType` RacewayGeometryInfo.RacewayType +`racewayType` [RacewayGeometryInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BearingRacewayGeometryInfo.cs).[RacewayType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BearingRacewayGeometryInfo.cs) The bearing raceway type. -`rbe` Obj +`rbe` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The rbe. @@ -887,11 +888,11 @@ The z axis. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'racewayName' or 'rbe' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of 'zAxis' is 0. @@ -907,15 +908,15 @@ public static void UpdateBearingInShaftSet(this HiddenShaftSetDocument document, #### Parameters -`document` HiddenShaftSetDocument +`document` [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) The for bearing update. If null, the active document will be used. -`racewayName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`racewayName` string The raceway name to be attached on rbe. -`referenceOffset` ExpressionValueVariable +`referenceOffset` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The reference offset. @@ -933,11 +934,11 @@ The clearance parameter. If it is not given, default values will be used. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'racewayName' or 'clearanceInfo' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of 'zAxis' is 0. @@ -953,19 +954,19 @@ public static void UpdateBearingInShaftSet(this HiddenShaftSetDocument document, #### Parameters -`document` HiddenShaftSetDocument +`document` [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) The for bearing update. If null, the active document will be used. -`bearing` Obj? +`bearing` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)? The bearing. -`racewayType` RacewayGeometryInfo.RacewayType +`racewayType` [RacewayGeometryInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BearingRacewayGeometryInfo.cs).[RacewayType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BearingRacewayGeometryInfo.cs) The bearing raceway type. -`referenceOffset` ExpressionValueVariable +`referenceOffset` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The reference offset. @@ -983,11 +984,11 @@ The clearance parameter. If it is not given, default values will be used. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'racewayName' or 'clearanceInfo' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of 'zAxis' is 0. @@ -1002,13 +1003,13 @@ public static void UpdateSlidingBearing(this HiddenSlidingBearingDocument docume #### Parameters -`document` HiddenSlidingBearingDocument +`document` [HiddenSlidingBearingDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenBearingDocument.cs) The for sliding bearing update. If null, the active document will be used. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. @@ -1024,21 +1025,21 @@ public static void UpdateSlidingBearingInEF(this HiddenDocumentMeshBase document #### Parameters -`document` HiddenDocumentMeshBase +`document` [HiddenDocumentMeshBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) The for sliding bearing update. If null, the active document will be used. -`slidingName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`slidingName` string The sliding name to be attached on rbe. -`rbeName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`rbeName` string The rbe name. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'slidingName' or 'rbeName' arguments are empty. @@ -1055,21 +1056,21 @@ public static void UpdateSlidingBearingInEF(this HiddenDocumentMeshBase document #### Parameters -`document` HiddenDocumentMeshBase +`document` [HiddenDocumentMeshBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) The for sliding bearing update. If null, the active document will be used. -`slidingBearing` Obj +`slidingBearing` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The sliding bearing to be attached on rbe. -`rbeName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`rbeName` string The rbe name. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'slidingName' or 'rbeName' arguments are empty. @@ -1085,21 +1086,21 @@ public static void UpdateSlidingBearingInFE(this HiddenDocumentMeshBase document #### Parameters -`document` HiddenDocumentMeshBase +`document` [HiddenDocumentMeshBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) The for sliding bearing update. If null, the active document will be used. -`slidingName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`slidingName` string The sliding name to be attached on rbe. -`rbeName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`rbeName` string The rbe name. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'slidingName' or 'rbeName' arguments are empty. @@ -1115,21 +1116,21 @@ public static void UpdateSlidingBearingInFE(this HiddenDocumentMeshBase document #### Parameters -`document` HiddenDocumentMeshBase +`document` [HiddenDocumentMeshBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) The for sliding bearing update. If null, the active document will be used. -`slidingBearing` Obj +`slidingBearing` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The sliding bearing to be attached on rbe. -`rbeName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`rbeName` string The rbe name. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'slidingName' or 'rbeName' arguments are empty. @@ -1145,15 +1146,15 @@ public static void UpdateSlidingBearingInShaftSet(this HiddenShaftSetDocument do #### Parameters -`document` HiddenShaftSetDocument +`document` [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) The for sliding bearing update. If null, the active document will be used. -`slidingName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`slidingName` string The sliding name to be attached on rbe. -`referenceOffset` ExpressionValueVariable +`referenceOffset` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The reference offset. @@ -1161,17 +1162,17 @@ The reference offset. The attach location type. -`startAngle` ExpressionValueVariable +`startAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The start angle. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'slidingName' or 'clearanceInfo' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of 'zAxis' is 0. @@ -1187,15 +1188,15 @@ public static void UpdateSlidingBearingInShaftSet(this HiddenShaftSetDocument do #### Parameters -`document` HiddenShaftSetDocument +`document` [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) The for sliding bearing update. If null, the active document will be used. -`slidingBearing` Obj +`slidingBearing` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The sliding bearing to be attached on rbe. -`referenceOffset` ExpressionValueVariable +`referenceOffset` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The reference offset. @@ -1203,17 +1204,17 @@ The reference offset. The attach location type. -`startAngle` ExpressionValueVariable +`startAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The start angle. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'slidingName' or 'clearanceInfo' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of 'zAxis' is 0. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.BearingInformationInAssemblyManager.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.BearingInformationInAssemblyManager.md index 1e6248b644..9484c16f9d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.BearingInformationInAssemblyManager.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.BearingInformationInAssemblyManager.md @@ -1,4 +1,5 @@ -# Struct BearingInformationInAssemblyManager +# Struct BearingInformationInAssemblyManager + Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll @@ -43,7 +44,7 @@ public string AddedRacewayName { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### BearingName @@ -55,7 +56,7 @@ public string BearingName { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UseReferenceBody @@ -67,5 +68,5 @@ public bool UseReferenceBody { readonly get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.BearingParameters.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.BearingParameters.md index 7dd133ca83..f31c7539b9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.BearingParameters.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.BearingParameters.md @@ -1,4 +1,5 @@ -# Struct BearingParameters +# Struct BearingParameters + Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll @@ -29,11 +30,11 @@ public BearingParameters(string bodyName, string bearingName, Vector position) #### Parameters -`bodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bodyName` string The bodyName of the bearing parameters. -`bearingName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bearingName` string The bearingName of the bearing parameters. @@ -53,7 +54,7 @@ public string BearingName { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### BodyName @@ -65,7 +66,7 @@ public string BodyName { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Position diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.BodyToDTAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.BodyToDTAPI.md index c1af7e1b06..5d6d286f29 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.BodyToDTAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.BodyToDTAPI.md @@ -1,4 +1,5 @@ -# Class BodyToDTAPI +# Class BodyToDTAPI + Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll @@ -11,7 +12,7 @@ public static class BodyToDTAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BodyToDTAPI](VM.API.Pre.GearTrain.BodyToDTAPI.md) #### Extension Methods @@ -33,17 +34,17 @@ public static void ApplyBearingForBodyToDT(this GearTrainDocument document, IEnu #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the bearings. -`bearings` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[BearingParameters](VM.API.Pre.GearTrain.BearingParameters.md)\> +`bearings` IEnumerable<[BearingParameters](VM.API.Pre.GearTrain.BearingParameters.md)\> The bearings. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty or if the body of bearing is empty. @@ -58,17 +59,17 @@ public static void ApplyClutchForBodyToDT(this GearTrainDocument document, IEnum #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the clutchs. -`clutchs` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[ClutchParameters](VM.API.Pre.GearTrain.ClutchParameters.md)\> +`clutchs` IEnumerable<[ClutchParameters](VM.API.Pre.GearTrain.ClutchParameters.md)\> The clutchs. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty or if the body of clutch is empty. @@ -83,17 +84,17 @@ public static void ApplyGearSetForBodyToDT(this GearTrainDocument document, IEnu #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the gear set. -`gearSets` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[GearSetParameters](VM.API.Pre.GearTrain.GearSetParameters.md)\> +`gearSets` IEnumerable<[GearSetParameters](VM.API.Pre.GearTrain.GearSetParameters.md)\> The gear sets. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty or if the body of gearSet is empty. @@ -108,17 +109,17 @@ public static void ApplyHousingForBodyToDT(this GearTrainDocument document, IEnu #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the housings. -`housings` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[HousingParameters](VM.API.Pre.GearTrain.HousingParameters.md)\> +`housings` IEnumerable<[HousingParameters](VM.API.Pre.GearTrain.HousingParameters.md)\> The housings. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty or if the body of housing is empty. @@ -133,25 +134,25 @@ public static void ApplyShaftSetForBodyToDT(this GearTrainDocument document, IEn #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the simple shaft set. -`shaftSets` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[ShaftSetParameters](VM.API.Pre.GearTrain.ShaftSetParameters.md)\> +`shaftSets` IEnumerable<[ShaftSetParameters](VM.API.Pre.GearTrain.ShaftSetParameters.md)\> The simple shaft sets #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty or if the body of shaftset does not exist. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of 'rotateAxis' is 0. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'width' value equal to or less than 0. @@ -166,25 +167,25 @@ public static void AssembleItemsForBodyToDT(this GearTrainDocument document, IEn #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to assemble the items for the body to DT. -`gearSets` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[GearSetParameters](VM.API.Pre.GearTrain.GearSetParameters.md)\> +`gearSets` IEnumerable<[GearSetParameters](VM.API.Pre.GearTrain.GearSetParameters.md)\> The gear sets. -`bearings` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[BearingParameters](VM.API.Pre.GearTrain.BearingParameters.md)\> +`bearings` IEnumerable<[BearingParameters](VM.API.Pre.GearTrain.BearingParameters.md)\> The bearings. -`toleranceForAssembly` ExpressionValueVariable? +`toleranceForAssembly` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The tolerance for assembly. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty or if the body of 'gearSet', 'bearing' is empty. @@ -199,17 +200,17 @@ public static void RemoveBodyToDTAttribute(this GearTrainDocument document, IEnu #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the clutchs. -`clutchs` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`clutchs` IEnumerable<[Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)\> The clutchs. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document', 'clutchs' argument is empty. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.ClearanceParameters.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.ClearanceParameters.md index 74c28d5b65..8a25b60084 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.ClearanceParameters.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.ClearanceParameters.md @@ -1,4 +1,5 @@ -# Struct ClearanceParameters +# Struct ClearanceParameters + Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll @@ -31,7 +32,7 @@ public ClearanceInfo.AxialType AxialClearance { readonly get; set; } #### Property Value - ClearanceInfo.AxialType + [ClearanceInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GeometryInfoBase.cs).[AxialType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GeometryInfoBase.cs) ### DampingRatio @@ -43,7 +44,7 @@ public ExpressionValueVariable DampingRatio { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### LeftAxial @@ -55,7 +56,7 @@ public ExpressionValueVariable LeftAxial { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Penalty @@ -67,7 +68,7 @@ public ExpressionValueVariable Penalty { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PreloadAxial @@ -79,7 +80,7 @@ public ExpressionValueVariable PreloadAxial { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PreloadRadial @@ -91,7 +92,7 @@ public ExpressionValueVariable PreloadRadial { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Radial @@ -103,7 +104,7 @@ public ExpressionValueVariable Radial { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RadialClearance @@ -115,7 +116,7 @@ public ClearanceInfo.RadialType RadialClearance { readonly get; set; } #### Property Value - ClearanceInfo.RadialType + [ClearanceInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GeometryInfoBase.cs).[RadialType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GeometryInfoBase.cs) ### RightAxial @@ -127,5 +128,5 @@ public ExpressionValueVariable RightAxial { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.ClutchParameters.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.ClutchParameters.md index c3e4ebaa40..a91753a340 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.ClutchParameters.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.ClutchParameters.md @@ -1,4 +1,5 @@ -# Struct ClutchParameters +# Struct ClutchParameters + Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll @@ -29,11 +30,11 @@ public ClutchParameters(string bodyName, string clutchName, Vector position, Vec #### Parameters -`bodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bodyName` string The bodyName of the clutch parameters. -`clutchName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`clutchName` string The clutchName of the clutch parameters. @@ -57,7 +58,7 @@ public string BodyName { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ClutchName @@ -69,7 +70,7 @@ public string ClutchName { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Position diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.CommonAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.CommonAPI.md index 161dcde932..60bcd3d7b0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.CommonAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.CommonAPI.md @@ -1,4 +1,5 @@ -# Class CommonAPI +# Class CommonAPI + Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll @@ -11,7 +12,7 @@ public static class CommonAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CommonAPI](VM.API.Pre.GearTrain.CommonAPI.md) #### Extension Methods @@ -45,7 +46,7 @@ The opened document Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.CycloidPinInformationInAssemblyManager.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.CycloidPinInformationInAssemblyManager.md index 749d80817b..5e8c125f85 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.CycloidPinInformationInAssemblyManager.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.CycloidPinInformationInAssemblyManager.md @@ -1,4 +1,5 @@ -# Struct CycloidPinInformationInAssemblyManager +# Struct CycloidPinInformationInAssemblyManager + Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll @@ -43,7 +44,7 @@ public string CycloidPinGearSetName { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### HousingName @@ -55,7 +56,7 @@ public string HousingName { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ReferenceGearSetName @@ -67,7 +68,7 @@ public string ReferenceGearSetName { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UseReferenceBody @@ -79,5 +80,5 @@ public bool UseReferenceBody { readonly get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.CycloidalReducerAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.CycloidalReducerAPI.md index e31eddf0e0..d1477291de 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.CycloidalReducerAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.CycloidalReducerAPI.md @@ -1,4 +1,5 @@ -# Class CycloidalReducerAPI +# Class CycloidalReducerAPI + Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll @@ -11,7 +12,7 @@ public static class CycloidalReducerAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CycloidalReducerAPI](VM.API.Pre.GearTrain.CycloidalReducerAPI.md) #### Extension Methods @@ -35,7 +36,7 @@ public static Obj CreateCycloidalReducer(this GearTrainDocument document, Vector #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The to create the RV reducer. @@ -47,35 +48,35 @@ The reference position of the RV reducer. The position of the RV reducer. -`housing` Obj +`housing` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The base entity of the RV reducer. -`outputSharft` Obj +`outputSharft` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The output sharft of the RV reducer. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the RV reducer. If empty, default name starts with 'Cycloidal_Reducer' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document', 'housing', 'outputSharft' argument is empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'housing' is not and . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'outputSharft' is not . diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.DirectionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.DirectionType.md index 9213d50225..612a90a16b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.DirectionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.DirectionType.md @@ -1,4 +1,5 @@ -# Enum DirectionType +# Enum DirectionType + Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.DocumentAPIImpl.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.DocumentAPIImpl.md index fec3014f97..fcb0bc42a5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.DocumentAPIImpl.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.DocumentAPIImpl.md @@ -1,4 +1,5 @@ -# Class DocumentAPIImpl +# Class DocumentAPIImpl + Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll @@ -11,7 +12,7 @@ public static class DocumentAPIImpl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DocumentAPIImpl](VM.API.Pre.GearTrain.DocumentAPIImpl.md) #### Extension Methods @@ -33,11 +34,11 @@ public static T CreateNewGearTrainDocumentImpl(string newGearTrainFilePath, s #### Parameters -`newGearTrainFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newGearTrainFilePath` string The file path of new gear train. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. @@ -49,11 +50,11 @@ The gravity value. The unit information. -`iconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`iconSize` double The size of icon. -`advancedMode` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`advancedMode` bool The flag whether using advanced mode. @@ -61,7 +62,7 @@ The flag whether using advanced mode. The symetric plane. -`useSymmetric` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`useSymmetric` bool The flag whether using symmetric. @@ -73,11 +74,11 @@ The length unit of kernel. The direction of shaft. -`extension` [string](https://learn.microsoft.com/dotnet/api/system.string) +`extension` string The extension. -`documentType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentType` string The document type. @@ -95,7 +96,7 @@ The document type #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newMeshFilePath' argument is empty. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.EHDBearingAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.EHDBearingAPI.md index bbb7df3228..d6e0b47329 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.EHDBearingAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.EHDBearingAPI.md @@ -1,4 +1,5 @@ -# Class EHDBearingAPI +# Class EHDBearingAPI + Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll @@ -11,7 +12,7 @@ public static class EHDBearingAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [EHDBearingAPI](VM.API.Pre.GearTrain.EHDBearingAPI.md) #### Extension Methods @@ -36,15 +37,15 @@ public static Obj CreateEHDBearing(this GearTrainDocument document, Obj baseGeom #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the ehd bearing. -`baseGeometry` Obj +`baseGeometry` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The base geometry. The type is . -`actionGeometry` Obj +`actionGeometry` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The action geometry. The type is . @@ -60,51 +61,51 @@ The z axis. The x axis. -`baseRadius` ExpressionValueVariable +`baseRadius` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The base radius. -`actionRadius` ExpressionValueVariable +`actionRadius` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The action radius. -`width` ExpressionValueVariable +`width` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The width. -`ehdBearingName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`ehdBearingName` string The name of the ehd bearing. If empty, default name starts with 'EHDBearing_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'baseGeometry' or 'actionGeometry' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of zAxis' or 'xAxis' is 0. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if zAxis' is equal to 'xAxis'. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the 'baseRadius' is less than 'actionRadius'. - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if type of 'baseGeometry' is not . - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if type of 'actionGeometry' is not . @@ -122,15 +123,15 @@ public static Obj CreateEHDBearing(this GearTrainDocument document, Obj baseGeom #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the ehd bearing. -`baseGeometry` Obj +`baseGeometry` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The base geometry. The type is . -`actionGeometry` Obj +`actionGeometry` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The action geometry. The type is . @@ -158,55 +159,55 @@ The action z axis. The action x axis. -`baseRadius` ExpressionValueVariable +`baseRadius` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The base radius. -`actionRadius` ExpressionValueVariable +`actionRadius` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The action radius. -`width` ExpressionValueVariable +`width` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The width. -`ehdBearingName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`ehdBearingName` string The name of the ehd bearing. If empty, default name starts with 'EHDBearing_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'baseGeometry' or 'actionGeometry' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of baseZAxis' or 'baseXAxis' or 'actionZAxis' or 'actionXAxis' is 0. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if baseZAxis' is equal to 'baseXAxis'. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if actionZAxis' is equal to 'actionXAxis'. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the 'baseRadius' is less than 'actionRadius'. - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if type of 'baseGeometry' is not . - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if type of 'actionGeometry' is not . diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.GearSetAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.GearSetAPI.md index a38755f519..51b15ff9b3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.GearSetAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.GearSetAPI.md @@ -1,4 +1,5 @@ -# Class GearSetAPI +# Class GearSetAPI + Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll @@ -11,7 +12,7 @@ public static class GearSetAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [GearSetAPI](VM.API.Pre.GearTrain.GearSetAPI.md) #### Extension Methods @@ -33,23 +34,23 @@ public static IEnumerable CalculateBeamStiffness(this HiddenGearSetRackA #### Parameters -`document` HiddenGearSetRackAndPinionDocument +`document` [HiddenGearSetRackAndPinionDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenGearSetRackAndPinionDocument.cs) The for simulate. If null, the active document will be used. #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> + IEnumerable The 6 by 6 stiffness. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if 'feDataFilePath' is not found. @@ -63,21 +64,21 @@ public static void CalculateToothStiffness(this HiddenGearSetDocumentBase docume #### Parameters -`document` HiddenGearSetDocumentBase +`document` [HiddenGearSetDocumentBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenGearSetDocumentBase.cs) The for calculate. If null, the active document will be used. -`gearIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`gearIdx` int The gear index. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'gearIdx' argument is less than 0. @@ -92,29 +93,29 @@ public static void CalculateToothStiffness(this GearTrainDocument document, Obj #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The for simulate. If null, the active document will be used. -`gearset` Obj +`gearset` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The gearset. The type is . -`gearIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`gearIdx` int The gear index. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'gearset' arguments are empty. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'gearIdx' argument is less than 0. - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if type of 'gearset' is not . @@ -128,21 +129,21 @@ public static void CalculateToothStiffnessForCycloid(this HiddenGearSetCycloidPi #### Parameters -`document` HiddenGearSetCycloidPinDocument +`document` [HiddenGearSetCycloidPinDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenGearSetCycloidPinDocument.cs) The for calculate. If null, the active document will be used. -`gearIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`gearIdx` int The gear index. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'gearIdx' argument is less than 0. @@ -157,29 +158,29 @@ public static void CalculateToothStiffnessForCycloid(this GearTrainDocument docu #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The for simulate. If null, the active document will be used. -`gearset` Obj +`gearset` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The gearset. The type is . -`gearIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`gearIdx` int The gear index. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'gearset' arguments are empty. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'gearIdx' argument is less than 0. - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if type of 'gearset' is not . @@ -193,21 +194,21 @@ public static void CalculateToothStiffnessForRackAndPinion(this HiddenGearSetRac #### Parameters -`document` HiddenGearSetRackAndPinionDocument +`document` [HiddenGearSetRackAndPinionDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenGearSetRackAndPinionDocument.cs) The for calculate. If null, the active document will be used. -`gearIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`gearIdx` int The gear index. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'gearIdx' argument is less than 0. @@ -222,29 +223,29 @@ public static void CalculateToothStiffnessForRackAndPinion(this GearTrainDocumen #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The for simulate. If null, the active document will be used. -`gearset` Obj +`gearset` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The gearset. The type is . -`gearIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`gearIdx` int The gear index. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'gearset' arguments are empty. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'gearIdx' argument is less than 0. - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if type of 'gearset' is not . @@ -259,43 +260,43 @@ public static (double, IEnumerable, IEnumerable) CalculateWebSti #### Parameters -`document` HiddenGearSetDocumentBase +`document` [HiddenGearSetDocumentBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenGearSetDocumentBase.cs) The for simulate. If null, the active document will be used. -`cadDataFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`cadDataFilePath` string The cad data file path. -`gearIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`gearIdx` int The gear index. -`angle` ExpressionValueVariable +`angle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The angle. -`offset` ExpressionValueVariable +`offset` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The offset. #### Returns - \([double](https://learn.microsoft.com/dotnet/api/system.double), [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\>, [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\>\) + \(double, IEnumerable, IEnumerable\) The mass, moment of inertia(Ixx, Ixy, Ixz, Iyy, Iyz, Izz), 6 by 6 stiffness. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if 'feDataFilePath' is not found. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'gearIdx' argument is less than 0. @@ -310,43 +311,43 @@ public static (double, IEnumerable, IEnumerable) CalculateWebSti #### Parameters -`document` HiddenGearSetDocumentBase +`document` [HiddenGearSetDocumentBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenGearSetDocumentBase.cs) The for simulate. If null, the active document will be used. -`feDataFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`feDataFilePath` string The fe data file path. -`gearIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`gearIdx` int The gear index. -`angle` ExpressionValueVariable +`angle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The angle. -`offset` ExpressionValueVariable +`offset` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The offset. #### Returns - \([double](https://learn.microsoft.com/dotnet/api/system.double), [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\>, [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\>\) + \(double, IEnumerable, IEnumerable\) The mass, moment of inertia(Ixx, Ixy, Ixz, Iyy, Iyz, Izz), 6 by 6 stiffness. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if 'feDataFilePath' is not found. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'gearIdx' argument is less than 0. @@ -362,45 +363,45 @@ public static void ContactAnalysis(this HiddenGearSetDocumentBase document, int #### Parameters -`document` HiddenGearSetDocumentBase +`document` [HiddenGearSetDocumentBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenGearSetDocumentBase.cs) The for simulate. If null, the active document will be used. -`nGearPairIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nGearPairIndex` int The gear pair index. -`speed` ExpressionValueVariable +`speed` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The speed. -`torque` ExpressionValueVariable +`torque` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The torque. -`ratio` ExpressionValueVariable +`ratio` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The ratio. -`openPost` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`openPost` bool The flag for whether opening post processor. The default value is false. -`input` PropertyGearSetPlanetary.ContactAnalysisInputType +`input` [PropertyGearSetPlanetary](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearSetPlanetary.cs).[ContactAnalysisInputType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearSetPlanetary.cs) The input type. The default value is SunGear. -`output` PropertyGearSetPlanetary.ContactAnalysisInputType +`output` [PropertyGearSetPlanetary](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearSetPlanetary.cs).[ContactAnalysisInputType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearSetPlanetary.cs) The output type. The default value is Carrier. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'gearIdx' argument is less than 0. @@ -415,87 +416,87 @@ public static Obj CreateCrossHelicalGearSet(this GearTrainDocument document, str #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the cross helical gearset. -`gearsetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearsetName` string The name of the gearset. If empty, default name starts with 'CrossHelicalGearSet_' will be generated and used. -`helicalAngleType` BasicInvolute.HelicalAngleType +`helicalAngleType` [BasicInvolute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearInfo.cs).[HelicalAngleType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearInfo.cs) The helical angle type. The default value is Right. -`module` ExpressionValueVariable? +`module` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The module. The default value is 3.046. -`pressureAngle` ExpressionValueVariable? +`pressureAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The pressure angle. The default value is 20. -`helixAngle` ExpressionValueVariable? +`helixAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The helix angle. The default value is 10. -`centerDistance` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`centerDistance` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The center distance of each gear pair. The default value is 74. -`numberOfTeeth` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`numberOfTeeth` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The number of teeth of each gear. The default value is 18, 25. -`profileShift` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`profileShift` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The profile shift of each gear. The default value is 0,0. -`faceWidth` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`faceWidth` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The face width of each gear. The default value is 30, 30. -`gearName` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`gearName` IEnumerable The gear name of each gear. The default value is Gear1, Gear2. -`crossAxisAngle` ExpressionValueVariable? +`crossAxisAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The cross axis angle. The default value is 45. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the gearset. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'centerDistance' is not 1. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'numberOfTeeth' is not 2. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'profileShift' is not 2. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'faceWidth' is not 2. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'gearName' is not 2. @@ -512,35 +513,35 @@ public static Obj CreateCrossHelicalGearSet(this GearTrainDocument document, Obj #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the cross helical gearset. -`gearsetCopy` Obj +`gearsetCopy` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The cross helical gearset to be copied. The type is . -`gearsetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearsetName` string The name of the gearset. If empty, default name starts with 'CrossHelicalGearSet_' will be generated and used. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the gearset. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'gearsetCopy' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'gearsetCopy' is not . @@ -556,35 +557,35 @@ public static Obj CreateCrossHelicalGearSetWithKISSsoft(this GearTrainDocument d #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the cross helical gearset. -`modelFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`modelFilePath` string The KISS soft model file path. -`gearsetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearsetName` string The name of the gearset. If empty, default name starts with 'CrossHelicalGearSet_' will be generated and used. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the gearset. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'modelPath' arguments are empty. - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if 'modelPath' is not found. @@ -599,39 +600,39 @@ public static Obj CreateCustomGearSet(this GearTrainDocument document, string ge #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the rack and pinion gearset. -`gearsetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearsetName` string The name of the gearset. If empty, default name starts with 'CustomGearSet_' will be generated and used. -`numberOfGear` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`numberOfGear` int The number of gear. The default value is 2. -`gearName` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`gearName` IEnumerable The gear name of each gear. The default value is Gear1, Gear2. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the gearset. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'gearName' is not 'numberOfGear'. @@ -648,35 +649,35 @@ public static Obj CreateCustomGearSet(this GearTrainDocument document, Obj gears #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the custom gearset. -`gearsetCopy` Obj +`gearsetCopy` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The custom gearset to be copied. The type is . -`gearsetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearsetName` string The name of the gearset. If empty, default name starts with 'CustomGearSet_' will be generated and used. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the gearset. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'gearsetCopy' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'gearsetCopy' is not . @@ -692,75 +693,75 @@ public static Obj CreateCycloidPinGearSet(this GearTrainDocument document, strin #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the cycloid pin gearset. -`cycloidProfilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`cycloidProfilePath` string The cycloid profile path. -`gearsetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearsetName` string The name of the gearset. If empty, default name starts with 'CycloidPinGearSet_' will be generated and used. -`numberOfTeeth` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`numberOfTeeth` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The number of teeth of each gear. The default value is 39, 40. -`faceWidth` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`faceWidth` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The face width of each gear. The default value is 10, 10. -`gearName` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`gearName` IEnumerable The gear name of each gear. The default value is Cycloid, Pin. -`pinDiameterOfGear` ExpressionValueVariable? +`pinDiameterOfGear` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The pin diameter of gear. The default value is 6. -`pinPitchOfGear` ExpressionValueVariable? +`pinPitchOfGear` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The pin pitch of gear. The default value is 141. -`eccentricityOfGear` ExpressionValueVariable? +`eccentricityOfGear` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The eccentricity of gear. The default value is 1.4. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the gearset. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if 'modelPath' is not found. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'numberOfTeeth' is not 2. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'profileShift' is not 2. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'faceWidth' is not 2. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'gearName' is not 2. @@ -777,35 +778,35 @@ public static Obj CreateCycloidPinGearSet(this GearTrainDocument document, Obj g #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the cycloid pin gearset. -`gearsetCopy` Obj +`gearsetCopy` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The cycloid pin gearset to be copied. The type is . -`gearsetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearsetName` string The name of the gearset. If empty, default name starts with 'CycloidPinGearSet_' will be generated and used. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the gearset. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'gearsetCopy' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'gearsetCopy' is not . @@ -821,99 +822,99 @@ public static Obj CreateExternalGearSet(this GearTrainDocument document, string #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the external gearset. -`gearsetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearsetName` string The name of the gearset. If empty, default name starts with 'ExternalGearSet_' will be generated and used. -`gearType` BasicInvolute.GearType +`gearType` [BasicInvolute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearInfo.cs).[GearType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearInfo.cs) The gear type. The default value is Helical. -`helicalAngleType` BasicInvolute.HelicalAngleType +`helicalAngleType` [BasicInvolute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearInfo.cs).[HelicalAngleType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearInfo.cs) The helical angle type. The default value is Right. -`numberOfGear` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`numberOfGear` int The number of gear. The default value is 2. -`module` ExpressionValueVariable? +`module` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The module. The default value is 2.245. -`pressureAngle` ExpressionValueVariable? +`pressureAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The pressure angle. The default value is 17. -`helixAngle` ExpressionValueVariable? +`helixAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The helix angle. The default value is 29. -`centerDistance` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`centerDistance` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The center distance of each gear pair. The default value is 75. -`numberOfTeeth` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`numberOfTeeth` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The number of teeth of each gear. If the number of gear is 2, the default value is 17, 40. -`profileShift` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`profileShift` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The profile shift of each gear. If the number of gear is 2, the default value is 0.3441, 0.5426. -`faceWidth` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`faceWidth` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The face width of each gear. If the number of gear is 2, the default value is 31, 31. -`gearName` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`gearName` IEnumerable The gear name of each gear. If the number of gear is 2, the default value is Gear1, Gear2. -`useAdvanced` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`useAdvanced` bool The flag that indicates using advanced mode. The default value is false. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the gearset. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'numberOfGear' is less than 2. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'centerDistance' is not 'numberOfGear'-1. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'numberOfTeeth' is not 'numberOfGear'. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'profileShift' is not 'numberOfGear'. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'faceWidth' is not 'numberOfGear'. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'gearName' is not 'numberOfGear'. @@ -930,35 +931,35 @@ public static Obj CreateExternalGearSet(this GearTrainDocument document, Obj gea #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the external gearset. -`gearsetCopy` Obj +`gearsetCopy` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The external gearset to be copied. The type is . -`gearsetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearsetName` string The name of the gearset. If empty, default name starts with 'ExternalGearSet_' will be generated and used. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the gearset. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'gearsetCopy' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'gearsetCopy' is not . @@ -974,35 +975,35 @@ public static Obj CreateExternalGearSetWithKISSsoft(this GearTrainDocument docum #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the external gearset. -`modelFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`modelFilePath` string The KISS soft model file path. -`gearsetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearsetName` string The name of the gearset. If empty, default name starts with 'ExternalGearSet_' will be generated and used. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the gearset. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'modelPath' arguments are empty. - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if 'modelPath' is not found. @@ -1017,91 +1018,91 @@ public static Obj CreateInternalGearSet(this GearTrainDocument document, string #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the internal gearset. -`gearsetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearsetName` string The name of the gearset. If empty, default name starts with 'InternalGearSet_' will be generated and used. -`gearType` BasicInvolute.GearType +`gearType` [BasicInvolute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearInfo.cs).[GearType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearInfo.cs) The gear type. The default value is Helical. -`helicalAngleType` BasicInvolute.HelicalAngleType +`helicalAngleType` [BasicInvolute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearInfo.cs).[HelicalAngleType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearInfo.cs) The helical angle type. The default value is Right. -`module` ExpressionValueVariable? +`module` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The module. The default value is 2.245. -`pressureAngle` ExpressionValueVariable? +`pressureAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The pressure angle. The default value is 17. -`helixAngle` ExpressionValueVariable? +`helixAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The helix angle. The default value is 29. -`centerDistance` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`centerDistance` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The center distance of each gear pair. The default value is 26. -`numberOfTeeth` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`numberOfTeeth` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The number of teeth of each gear. The default value is 17, -40. -`profileShift` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`profileShift` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The profile shift of each gear. The default value is 0.3441, -0.5426. -`faceWidth` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`faceWidth` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The face width of each gear. The default value is 31, 31. -`gearName` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`gearName` IEnumerable The gear name of each gear. The default value is Pinion, RingGear. -`useAdvanced` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`useAdvanced` bool The flag that indicates using advanced mode. The default value is false. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the gearset. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'centerDistance' is not 1. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'numberOfTeeth' is not 2. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'profileShift' is not 2. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'faceWidth' is not 2. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'gearName' is not 2. @@ -1118,35 +1119,35 @@ public static Obj CreateInternalGearSet(this GearTrainDocument document, Obj gea #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the internal gearset. -`gearsetCopy` Obj +`gearsetCopy` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The internal gearset to be copied. . -`gearsetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearsetName` string The name of the gearset. If empty, default name starts with 'InternalGearSet_' will be generated and used. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the gearset. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'gearsetCopy' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'gearsetCopy' is not . @@ -1162,35 +1163,35 @@ public static Obj CreateInternalGearSetWithKISSsoft(this GearTrainDocument docum #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the internal gearset. -`modelFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`modelFilePath` string The KISS soft model file path. -`gearsetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearsetName` string The name of the gearset. If empty, default name starts with 'InternalGearSet_' will be generated and used. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the gearset. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'modelPath' arguments are empty. - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if 'modelPath' is not found. @@ -1206,91 +1207,91 @@ public static Obj CreatePlanetaryDPGearSet(this GearTrainDocument document, stri #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the double pinion planetary gearset. -`gearsetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearsetName` string The name of the gearset. If empty, default name starts with 'PlanetaryGearSet_' will be generated and used. -`gearType` BasicInvolute.GearType +`gearType` [BasicInvolute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearInfo.cs).[GearType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearInfo.cs) The gear type. The default value is Helical. -`helicalAngleType` BasicInvolute.HelicalAngleType +`helicalAngleType` [BasicInvolute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearInfo.cs).[HelicalAngleType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearInfo.cs) The helical angle type. The default value is Right. -`numberOfPinionGear` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`numberOfPinionGear` int The number of pinion gear. The default value is 5. -`module` ExpressionValueVariable? +`module` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The module. The default value is 1.5. -`pressureAngle` ExpressionValueVariable? +`pressureAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The pressure angle. The default value is 20. -`helixAngle` ExpressionValueVariable? +`helixAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The helix angle. The default value is 22. -`centerDistance` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`centerDistance` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The center distance of each gear pair. If the number of pinion gear is 5, The default value is 49.343, 25.076, 64.712, 0. -`numberOfTeeth` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`numberOfTeeth` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The number of teeth of each gear. If the number of pinion gear is 5, the default value is 46, 15, 16, -96. -`profileShift` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`profileShift` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The profile shift of each gear. If the number of pinion gear is 5, the default value is 0, 0, 0, 0. -`faceWidth` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`faceWidth` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The face width of each gear. If the number of pinion gear is 5, the default value is 10, 10, 10, 10. -`dogLegDirectionType` PropertyGearSetPlanetaryDP.DogLegDirectionType +`dogLegDirectionType` [PropertyGearSetPlanetaryDP](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearSetPlanetaryDP.cs).[DogLegDirectionType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearSetPlanetaryDP.cs) The dog leg direction type. The default value is Right.. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the gearset. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'numberOfPinionGear' is less than 2. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'centerDistance' is not 4. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'numberOfTeeth' is not 4. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'profileShift' is not 4. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'faceWidth' is not 4. @@ -1307,35 +1308,35 @@ public static Obj CreatePlanetaryDPGearSet(this GearTrainDocument document, Obj #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the double pinion planetary gearset. -`gearsetCopy` Obj +`gearsetCopy` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The double pinion planetary gearset to be copied. The type is . -`gearsetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearsetName` string The name of the gearset. If empty, default name starts with 'PlanetaryGearSet_' will be generated and used. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the gearset. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'gearsetCopy' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'gearsetCopy' is not . @@ -1351,91 +1352,91 @@ public static Obj CreatePlanetaryGearSet(this GearTrainDocument document, string #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the planetary gearset. -`gearsetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearsetName` string The name of the gearset. If empty, default name starts with 'PlanetaryGearSet_' will be generated and used. -`gearType` BasicInvolute.GearType +`gearType` [BasicInvolute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearInfo.cs).[GearType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearInfo.cs) The gear type. The default value is Helical. -`helicalAngleType` BasicInvolute.HelicalAngleType +`helicalAngleType` [BasicInvolute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearInfo.cs).[HelicalAngleType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearInfo.cs) The helical angle type. The default value is Right. -`numberOfPinionGear` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`numberOfPinionGear` int The number of pinion gear. The default value is 3. -`module` ExpressionValueVariable? +`module` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The module. The default value is 0.8. -`pressureAngle` ExpressionValueVariable? +`pressureAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The pressure angle. The default value is 20. -`helixAngle` ExpressionValueVariable? +`helixAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The helix angle. The default value is 0. -`centerDistance` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`centerDistance` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The center distance of each gear pair. If the number of pinion gear is 3, The default value is 10.6, 10.6, 10.6. -`numberOfTeeth` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`numberOfTeeth` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The number of teeth of each gear. If the number of pinion gear is 3, the default value is 11, 14, -40. -`profileShift` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`profileShift` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The profile shift of each gear. If the number of pinion gear is 3, the default value is 0.3125, 0.4055, -0.6725. -`faceWidth` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`faceWidth` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The face width of each gear. If the number of pinion gear is 3, the default value is 10, 10, 10. -`useAdvanced` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`useAdvanced` bool The flag that indicates using advanced mode. The default value is false. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the gearset. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'numberOfPinionGear' is less than 1. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'centerDistance' is not 3. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'numberOfTeeth' is not 3. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'profileShift' is not 3. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'faceWidth' is not 3. @@ -1452,35 +1453,35 @@ public static Obj CreatePlanetaryGearSet(this GearTrainDocument document, Obj ge #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the planetary gearset. -`gearsetCopy` Obj +`gearsetCopy` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The planetary gearset to be copied. The type is . -`gearsetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearsetName` string The name of the gearset. If empty, default name starts with 'PlanetaryGearSet_' will be generated and used. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the gearset. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'gearsetCopy' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'gearsetCopy' is not . @@ -1496,35 +1497,35 @@ public static Obj CreatePlanetaryGearSetWithKISSsoft(this GearTrainDocument docu #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the planetary gearset. -`modelFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`modelFilePath` string The KISS soft model file path. -`gearsetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearsetName` string The name of the gearset. If empty, default name starts with 'PlanetaryGearSet_' will be generated and used. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the gearset. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'modelPath' arguments are empty. - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if 'modelPath' is not found. @@ -1539,111 +1540,111 @@ public static Obj CreateRackAndPinionGearSet(this GearTrainDocument document, st #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the rack and pinion gearset. -`gearsetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearsetName` string The name of the gearset. If empty, default name starts with 'RackPSet_' will be generated and used. -`gearType` BasicInvolute.GearType +`gearType` [BasicInvolute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearInfo.cs).[GearType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearInfo.cs) The gear type. The default value is Helical. -`helicalAngleType` BasicInvolute.HelicalAngleType +`helicalAngleType` [BasicInvolute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearInfo.cs).[HelicalAngleType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearInfo.cs) The helical angle type. The default value is Right. -`module` ExpressionValueVariable? +`module` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The module. The default value is 2. -`pressureAngle` ExpressionValueVariable? +`pressureAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The pressure angle. The default value is 20. -`helixAngle` ExpressionValueVariable? +`helixAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The helix angle. The default value is 15. -`centerDistance` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`centerDistance` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The center distance of each gear pair. The default value is 18.5. -`numberOfTeeth` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`numberOfTeeth` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The number of teeth of each gear. The default value is 10, 32. -`profileShift` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`profileShift` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The profile shift of each gear. The default value is 0.5, 0. -`faceWidth` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`faceWidth` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The face width of each gear. The default value is 49, 49. -`gearName` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`gearName` IEnumerable The gear name of each gear. The default value is Pinion, Rack. -`useDifferentHelixAngle` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`useDifferentHelixAngle` bool The flag that indicates using different helix angle. The default value is true. -`rackHelixAngle` ExpressionValueVariable? +`rackHelixAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The rack helix angle. The default value is 5.0. -`rackType` Rack.BarType +`rackType` [Rack](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearRackInfo.cs).[BarType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearRackInfo.cs) The rack type. The default value is Circular. -`diameterOfRack` ExpressionValueVariable? +`diameterOfRack` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The diameter of rack. The default value is 28. -`heightOfRack` ExpressionValueVariable? +`heightOfRack` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The height of rack. The default value is 23. -`sideLength` ExpressionValueVariable? +`sideLength` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The side length. The default value is 9.1834. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the gearset. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'centerDistance' is not 1. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'numberOfTeeth' is not 2. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'profileShift' is not 2. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'faceWidth' is not 2. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'gearName' is not 2. @@ -1660,35 +1661,35 @@ public static Obj CreateRackAndPinionGearSet(this GearTrainDocument document, Ob #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the rack and pinion gearset. -`gearsetCopy` Obj +`gearsetCopy` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The rack and pinion gearset to be copied. The type is . -`gearsetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearsetName` string The name of the gearset. If empty, default name starts with 'RackPSet_' will be generated and used. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the gearset. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'gearsetCopy' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'gearsetCopy' is not . @@ -1703,83 +1704,83 @@ public static Obj CreateWormAndWormWheelGearSet(this GearTrainDocument document, #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the worm and worm wheel gearset. -`gearsetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearsetName` string The name of the gearset. If empty, default name starts with 'WormGearSet_' will be generated and used. -`helicalAngleType` BasicInvolute.HelicalAngleType +`helicalAngleType` [BasicInvolute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearInfo.cs).[HelicalAngleType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearInfo.cs) The helical angle type. The default value is Right. -`module` ExpressionValueVariable? +`module` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The module. The default value is 0.802183. -`pressureAngle` ExpressionValueVariable? +`pressureAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The pressure angle. The default value is 14.5. -`leadAngle` ExpressionValueVariable? +`leadAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The lead angle. The default value is 30. -`centerDistance` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`centerDistance` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The center distance of each gear pair. The default value is 14.2. -`numberOfTeeth` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`numberOfTeeth` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The number of teeth of each gear. The default value is 5, 22. -`profileShift` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`profileShift` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The profile shift of each gear. The default value is -0.75, 0.465. -`faceWidth` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`faceWidth` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The face width of each gear. The default value is 13, 9. -`gearName` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`gearName` IEnumerable The gear name of each gear. The default value is Worm, Wheel. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the gearset. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'centerDistance' is not 1. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'numberOfTeeth' is not 2. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'profileShift' is not 2. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'faceWidth' is not 2. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'gearName' is not 2. @@ -1796,35 +1797,35 @@ public static Obj CreateWormAndWormWheelGearSet(this GearTrainDocument document, #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the worm and worm wheel gearset. -`gearsetCopy` Obj +`gearsetCopy` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The worm and worm wheel gearset to be copied. The type is . -`gearsetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearsetName` string The name of the gearset. If empty, default name starts with 'WormGearSet_' will be generated and used. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the gearset. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'gearsetCopy' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'gearsetCopy' is not . @@ -1839,27 +1840,27 @@ public static bool MeshingGearSet(this GearTrainDocument document, Obj gearset) #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The for simulate. If null, the active document will be used. -`gearset` Obj +`gearset` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The gearset. The type is #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool The flag for success. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'gearset' arguments are empty. - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if type of 'gearset' is not . @@ -1876,19 +1877,19 @@ public static void UpdateGearInEF(this HiddenDocumentMeshBase document, Obj gear #### Parameters -`document` HiddenDocumentMeshBase +`document` [HiddenDocumentMeshBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) The for gear update. If null, the active document will be used. -`gearset` Obj +`gearset` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The gearset. The type is . -`gearIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`gearIdx` int The gear index. -`referenceOffset` ExpressionValueVariable +`referenceOffset` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The reference offset. @@ -1896,21 +1897,21 @@ The reference offset. The attach location type. -`bearing` Obj +`bearing` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The bearing. The type is . -`racewayType` RacewayGeometryInfo.RacewayType +`racewayType` [RacewayGeometryInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BearingRacewayGeometryInfo.cs).[RacewayType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BearingRacewayGeometryInfo.cs) The raceway type. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'gearset' or 'bearing' arguments are empty. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'gearIndex' is less than zero. @@ -1927,29 +1928,29 @@ public static void UpdateGearInEF(this HiddenDocumentMeshBase document, Obj gear #### Parameters -`document` HiddenDocumentMeshBase +`document` [HiddenDocumentMeshBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) The for gear update. If null, the active document will be used. -`gearset` Obj +`gearset` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The gearset. The type is . -`gearIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`gearIdx` int The gear index. -`connectable` Obj +`connectable` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The start rbe. The type is #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'connectable' arguments are empty. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'gearIndex' is less than zero. @@ -1966,19 +1967,19 @@ public static void UpdateGearInFE(this HiddenDocumentMeshBase document, Obj gear #### Parameters -`document` HiddenDocumentMeshBase +`document` [HiddenDocumentMeshBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) The for gear update. If null, the active document will be used. -`gearset` Obj +`gearset` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The gearset. The type is . -`gearIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`gearIdx` int The gear index. -`referenceOffset` ExpressionValueVariable +`referenceOffset` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The reference offset. @@ -1986,21 +1987,21 @@ The reference offset. The attach location type. -`bearing` Obj +`bearing` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The bearing. The type is . -`racewayType` RacewayGeometryInfo.RacewayType +`racewayType` [RacewayGeometryInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BearingRacewayGeometryInfo.cs).[RacewayType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BearingRacewayGeometryInfo.cs) The raceway type. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'gearset' or 'bearing' arguments are empty. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'gearIdx' argument is less than 0. @@ -2017,29 +2018,29 @@ public static void UpdateGearInFE(this HiddenDocumentMeshBase document, Obj gear #### Parameters -`document` HiddenDocumentMeshBase +`document` [HiddenDocumentMeshBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) The for gear update. If null, the active document will be used. -`gearset` Obj +`gearset` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The gearset. The type is . -`gearIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`gearIdx` int The gear index. -`connectable` Obj +`connectable` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The start rbe. The type is #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'connectable' arguments are empty. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'gearIdx' argument is less than 0. @@ -2056,19 +2057,19 @@ public static void UpdateGearInShaftSet(this HiddenShaftSetDocument document, Ob #### Parameters -`document` HiddenShaftSetDocument +`document` [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) The for gear update. If null, the active document will be used. -`gearset` Obj +`gearset` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The gearset. The type is . -`gearIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`gearIdx` int The gear index. -`referenceOffset` ExpressionValueVariable +`referenceOffset` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The reference offset. @@ -2076,11 +2077,11 @@ The reference offset. The attach location type. -`bearing` Obj +`bearing` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The bearing. The type is . -`racewayType` RacewayGeometryInfo.RacewayType +`racewayType` [RacewayGeometryInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BearingRacewayGeometryInfo.cs).[RacewayType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BearingRacewayGeometryInfo.cs) The raceway type. @@ -2090,11 +2091,11 @@ The clearance parameter. If it is not given, default values will be used. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'gearset' or 'bearing' arguments are empty. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'gearIndex' is less than zero. @@ -2111,15 +2112,15 @@ public static void UpdateGearInShaftSet(this HiddenShaftSetDocument document, Ob #### Parameters -`document` HiddenShaftSetDocument +`document` [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) The for gear update. If null, the active document will be used. -`gearset` Obj +`gearset` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The gearset. The type is . -`gearIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`gearIdx` int The gear index. @@ -2129,11 +2130,11 @@ The clearance parameter. If it is not given, default values will be used. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'gearset' or 'connectable' arguments are empty. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'gearIndex' is less than zero. @@ -2148,13 +2149,13 @@ public static void UpdateGearSet(this HiddenGearSetDocumentBase document) #### Parameters -`document` HiddenGearSetDocumentBase +`document` [HiddenGearSetDocumentBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenGearSetDocumentBase.cs) The for gearset update. If null, the active document will be used. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. @@ -2171,27 +2172,27 @@ public static void UpdateRackInEF(this HiddenDocumentMeshBase document, Obj gear #### Parameters -`document` HiddenDocumentMeshBase +`document` [HiddenDocumentMeshBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) The for gear update. If null, the active document will be used. -`gearset` Obj +`gearset` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The gearset. The type is . -`startConnectable` Obj +`startConnectable` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The start rbe. The type is -`endConnectable` Obj +`endConnectable` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The end rbe. The type is -`useStart` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`useStart` bool The flag whether using start rbe. -`useEnd` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`useEnd` bool The flag whether using end rbe. @@ -2199,25 +2200,25 @@ The flag whether using end rbe. The z axis. -`initialAngle` ExpressionValueVariable +`initialAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The initial angle. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'gearset' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of 'zAxis' is 0. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the 'useStart' is true and 'startConnectable' is empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the 'useEnd' is true and 'endConnectable' is empty. @@ -2234,27 +2235,27 @@ public static void UpdateRackInFE(this HiddenDocumentMeshBase document, Obj gear #### Parameters -`document` HiddenDocumentMeshBase +`document` [HiddenDocumentMeshBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) The for gear update. If null, the active document will be used. -`gearset` Obj +`gearset` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The gearset. The type is . -`startConnectable` Obj +`startConnectable` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The start rbe. The type is -`endConnectable` Obj +`endConnectable` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The end rbe. The type is -`useStart` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`useStart` bool The flag whether using start rbe. -`useEnd` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`useEnd` bool The flag whether using end rbe. @@ -2262,25 +2263,25 @@ The flag whether using end rbe. The z axis. -`initialAngle` ExpressionValueVariable +`initialAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The initial angle. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'gearset' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of 'zAxis' is 0. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the 'useStart' is true and 'startConnectable' is empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the 'useEnd' is true and 'endConnectable' is empty. @@ -2296,21 +2297,21 @@ public static void UpdateRackInShaftSet(this HiddenShaftSetDocument document, Ob #### Parameters -`document` HiddenShaftSetDocument +`document` [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) The for gear update. If null, the active document will be used. -`gearset` Obj +`gearset` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The gearset. The type is . -`initialAngle` ExpressionValueVariable +`initialAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The initial angle. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'gearName' or 'clearanceInfo' arguments are empty. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.GearSetParameters.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.GearSetParameters.md index befc87b35b..3f0b1a1fec 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.GearSetParameters.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.GearSetParameters.md @@ -1,4 +1,5 @@ -# Struct GearSetParameters +# Struct GearSetParameters + Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll @@ -29,11 +30,11 @@ public GearSetParameters(string bodyName, string gearSetName, Vector position) #### Parameters -`bodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bodyName` string The bodyName of the gearset parameters. -`gearSetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearSetName` string The gearSetName of the gearset parameters. @@ -53,7 +54,7 @@ public string BodyName { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GearSetName @@ -65,7 +66,7 @@ public string GearSetName { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Position diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.GearTrainDocumentAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.GearTrainDocumentAPI.md index 25d2cce5c6..6ea26b5493 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.GearTrainDocumentAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.GearTrainDocumentAPI.md @@ -1,4 +1,5 @@ -# Class GearTrainDocumentAPI +# Class GearTrainDocumentAPI + Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll @@ -11,7 +12,7 @@ public static class GearTrainDocumentAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [GearTrainDocumentAPI](VM.API.Pre.GearTrain.GearTrainDocumentAPI.md) #### Extension Methods @@ -32,11 +33,11 @@ public static GearTrainDocument CreateNewGearTrainDocument(string newGearTrainFi #### Parameters -`newGearTrainFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newGearTrainFilePath` string The file path of new gear train subsystem. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. The default value is Subsystem. @@ -48,11 +49,11 @@ The gravity value. The unit information. -`iconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`iconSize` double The size of icon. -`advancedMode` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`advancedMode` bool The flag whether using advanced mode. @@ -60,7 +61,7 @@ The flag whether using advanced mode. The symetric plane. -`useSymmetric` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`useSymmetric` bool The flag whether using symmetric. @@ -68,27 +69,27 @@ The flag whether using symmetric. The length unit of kernel. -`shaftDirectionX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`shaftDirectionX` double The x direction of shaft. -`shaftDirectionY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`shaftDirectionY` double The y direction of shaft. -`shaftDirectionZ` [double](https://learn.microsoft.com/dotnet/api/system.double) +`shaftDirectionZ` double The z direction of shaft. #### Returns - GearTrainDocument + [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The new DocumentChainedPath object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newLinkPathFilePath' argument is null. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.GearTrainSimulationAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.GearTrainSimulationAPI.md index 00d32f9835..1cb31c4d1d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.GearTrainSimulationAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.GearTrainSimulationAPI.md @@ -1,4 +1,5 @@ -# Class GearTrainSimulationAPI +# Class GearTrainSimulationAPI + Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll @@ -11,7 +12,7 @@ public static class GearTrainSimulationAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [GearTrainSimulationAPI](VM.API.Pre.GearTrain.GearTrainSimulationAPI.md) #### Extension Methods @@ -34,17 +35,17 @@ public static void ExportDFG(this GearTrainDocument document, string targetPath) #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The for exporting DFG file. If null, the active document will be used. -`targetPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`targetPath` string The file path to export DFG file exclude file extension. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'targetPath' arguments are empty. @@ -60,17 +61,17 @@ public static void ExportDFS(this GearTrainDocument document, string targetPath) #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The for exporting DFS file. If null, the active document will be used. -`targetPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`targetPath` string The file path to export DFS file exclude file extension. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'targetPath' arguments are empty. @@ -86,17 +87,59 @@ public static void ExportDFSXML(this GearTrainDocument document, string targetPa #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The for exporting DFSXML file. If null, the active document will be used. -`targetPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`targetPath` string The file path to export DFSXML file exclude file extension. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException + +Will be thrown if 'document' or 'targetPath' arguments are empty. + +### ExportMotionFiles\(GearTrainDocument, string, bool, bool, bool, bool\) + +Export motion files. + +```csharp +[NotNull(new string[] { "document" })] +[NotNullOrEmpty(new string[] { "targetPath" })] +public static void ExportMotionFiles(this GearTrainDocument document, string targetPath, bool writeDFS, bool writeXML, bool writeDFG, bool includeReferenceFiles) +``` + +#### Parameters + +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) + +The for exporting motion files. If null, the active document will be used. + +`targetPath` string + +The file path to export motion files exclude file extension. + +`writeDFS` bool + +The flag for whether to write on dfs or not. + +`writeXML` bool + +The flag for whether to write on dfsxml or not. + +`writeDFG` bool + +The flag for whether to write on dfg or not. + +`includeReferenceFiles` bool + +The flag for whether to include reference files or not. + +#### Exceptions + + ArgumentNullException Will be thrown if 'document' or 'targetPath' arguments are empty. @@ -111,17 +154,17 @@ public static void RunSimulation(this GearTrainDocument document, SimulationRun. #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The for simulate. If null, the active document will be used. -`simulationParameter` SimulationRun.SimulationParameter +`simulationParameter` [SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs).[SimulationParameter](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) The simulation parameter. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.HousingAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.HousingAPI.md index 2375f764ab..cde965bb00 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.HousingAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.HousingAPI.md @@ -1,4 +1,5 @@ -# Class HousingAPI +# Class HousingAPI + Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll @@ -11,7 +12,7 @@ public static class HousingAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [HousingAPI](VM.API.Pre.GearTrain.HousingAPI.md) #### Extension Methods @@ -33,23 +34,23 @@ public static Obj CreateEFHousing(this GearTrainDocument document, string housin #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the EF housing. -`housingName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`housingName` string The name of the EF housing. If empty, default name starts with 'Housing_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. @@ -64,23 +65,23 @@ public static Obj CreateFEHousing(this GearTrainDocument document, string housin #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The to create the FE housing. -`housingName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`housingName` string The name of the FE housing. If empty, default name starts with 'Housing_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. @@ -95,7 +96,7 @@ public static void UpdateBodyInFE(this HiddenDocumentFEBase document, BodyAnalys #### Parameters -`document` HiddenDocumentFEBase +`document` [HiddenDocumentFEBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) The to exist nodal body. @@ -105,7 +106,7 @@ The body analysis type. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'nodalBody' arguments are empty. @@ -120,7 +121,7 @@ public static void UpdateBodyInMeshFree(this HiddenDocumentMeshFreeBase document #### Parameters -`document` HiddenDocumentMeshFreeBase +`document` [HiddenDocumentMeshFreeBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentMeshFreeBase.cs) The to exist assembled body. @@ -128,29 +129,29 @@ The +`momentOfInertia` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The moment of inertia when 'massPropertyType' is User. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'assembledBody' arguments are empty. - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'massPropertyType' is User and 'mass' or 'momentOfInertia' are empty. - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if the length of 'momentOfInertia' is not 6. @@ -165,13 +166,13 @@ public static void UpdateDesignerInMesh(this HiddenDocumentMeshBase document) #### Parameters -`document` HiddenDocumentMeshBase +`document` [HiddenDocumentMeshBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) The to update designer. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.HousingParameters.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.HousingParameters.md index a6e106d4b6..5d8fef7318 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.HousingParameters.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.HousingParameters.md @@ -1,4 +1,5 @@ -# Struct HousingParameters +# Struct HousingParameters + Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll @@ -29,11 +30,11 @@ public HousingParameters(string bodyName, string housingName, Vector rotateAxis) #### Parameters -`bodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bodyName` string The bodyName of the housing parameters. -`housingName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`housingName` string The housingName of the housing parameters. @@ -53,7 +54,7 @@ public string BodyName { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### HousingName @@ -65,7 +66,7 @@ public string HousingName { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RotateAxis diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.InputShaftSetParameters.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.InputShaftSetParameters.md index 64922a1402..9ea42d0122 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.InputShaftSetParameters.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.InputShaftSetParameters.md @@ -1,4 +1,5 @@ -# Struct InputShaftSetParameters +# Struct InputShaftSetParameters + Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll @@ -31,7 +32,7 @@ public Obj InputShaftSet { readonly get; set; } #### Property Value - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) ### IsCW @@ -43,5 +44,5 @@ public bool IsCW { readonly get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.MotorDesignAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.MotorDesignAPI.md index 055a27d5ac..f46b88b437 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.MotorDesignAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.MotorDesignAPI.md @@ -1,4 +1,5 @@ -# Class MotorDesignAPI +# Class MotorDesignAPI + Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll @@ -11,7 +12,7 @@ public static class MotorDesignAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [MotorDesignAPI](VM.API.Pre.GearTrain.MotorDesignAPI.md) #### Extension Methods @@ -34,7 +35,7 @@ public static Obj CreateMotorDesigner(this GearTrainDocument document, Vector po #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the .. @@ -46,31 +47,31 @@ The position of the motor designer. The rotate axis of the motor designer. -`housingType` MotorDesigner.HousingType +`housingType` [MotorDesigner](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/MotorDesigner.cs).[HousingType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/MotorDesigner.cs) The housing type of the motor designer. -`statorMountingType` MotorDesigner.StatorMountingType +`statorMountingType` [MotorDesigner](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/MotorDesigner.cs).[StatorMountingType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/MotorDesigner.cs) The stator mounting type of the motor designer. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the motor designer. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) the new object created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of 'rotateAxis' is 0. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.MotorEMForceAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.MotorEMForceAPI.md index f00b294714..8e71c41536 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.MotorEMForceAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.MotorEMForceAPI.md @@ -1,4 +1,5 @@ -# Class MotorEMForceAPI +# Class MotorEMForceAPI + Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll @@ -11,7 +12,7 @@ public static class MotorEMForceAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [MotorEMForceAPI](VM.API.Pre.GearTrain.MotorEMForceAPI.md) #### Extension Methods @@ -35,15 +36,15 @@ public static Obj CreateMotorEMForce(this GearTrainDocument document, Obj stator #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the motor em force. -`statorBody` Obj +`statorBody` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The stator body. The type is . -`rotorBody` Obj +`rotorBody` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The rotor body. The type is . @@ -59,39 +60,39 @@ The z axis. The x axis. -`referenceOfRotational` Obj +`referenceOfRotational` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The reference of rotational. The type is . -`motorEMForceName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`motorEMForceName` string The name of the motor em force. If empty, default name starts with 'Motor_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'statorBody' or 'rotorBody' or 'referenceOfRotational' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of zAxis' or 'xAxis' is 0. - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if type of 'statorBody' is not . - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if type of 'rotorBody' is not . - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if type of 'referenceOfRotational' is not . @@ -108,15 +109,15 @@ public static Obj CreateMotorEMForceForANSYSMotion(this GearTrainDocument docume #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the motor em force for ANSYS Motion. -`statorBody` Obj +`statorBody` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The stator body. The type is . -`rotorBody` Obj +`rotorBody` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The rotor body. The type is . @@ -132,39 +133,39 @@ The z axis. The x axis. -`referenceOfRotational` Obj +`referenceOfRotational` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The reference of rotational. The type is . -`motorEMForceName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`motorEMForceName` string The name of the motor em force. If empty, default name starts with 'Motor_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'statorBody' or 'rotorBody' or 'referenceOfRotational' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of zAxis' or 'xAxis' is 0. - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if type of 'statorBody' is not . - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if type of 'rotorBody' is not . - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if type of 'referenceOfRotational' is not . @@ -181,15 +182,15 @@ public static Obj CreateMotorEMForceForJMAG(this GearTrainDocument document, Obj #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the motor em force for JMAG. -`statorBody` Obj +`statorBody` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The stator body. The type is . -`rotorBody` Obj +`rotorBody` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The rotor body. The type is . @@ -205,39 +206,39 @@ The z axis. The x axis. -`referenceOfRotational` Obj +`referenceOfRotational` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The reference of rotational. The type is . -`motorEMForceName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`motorEMForceName` string The name of the motor em force. If empty, default name starts with 'Motor_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'statorBody' or 'rotorBody' or 'referenceOfRotational' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of zAxis' or 'xAxis' is 0. - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if type of 'statorBody' is not . - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if type of 'rotorBody' is not . - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if type of 'referenceOfRotational' is not . diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.OutputShaftSetParameters.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.OutputShaftSetParameters.md index 2848bb663a..741da00c7e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.OutputShaftSetParameters.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.OutputShaftSetParameters.md @@ -1,4 +1,5 @@ -# Struct OutputShaftSetParameters +# Struct OutputShaftSetParameters + Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll @@ -31,7 +32,7 @@ public ExpressionValueVariable Efficiency { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### OutputShaftSet @@ -43,7 +44,7 @@ public Obj OutputShaftSet { readonly get; set; } #### Property Value - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) ### OutputTorqueFilePath @@ -55,7 +56,7 @@ public string OutputTorqueFilePath { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ReductionRatio @@ -67,7 +68,7 @@ public ExpressionValueVariable ReductionRatio { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Split @@ -79,5 +80,5 @@ public ExpressionValueVariable Split { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.PinionInstallMethodType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.PinionInstallMethodType.md index fd644686f6..e8cca1725e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.PinionInstallMethodType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.PinionInstallMethodType.md @@ -1,4 +1,5 @@ -# Enum PinionInstallMethodType +# Enum PinionInstallMethodType + Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.PowerFlowParameters.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.PowerFlowParameters.md index f6aa2c6fa8..e332a91595 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.PowerFlowParameters.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.PowerFlowParameters.md @@ -1,4 +1,5 @@ -# Struct PowerFlowParameters +# Struct PowerFlowParameters + Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll @@ -31,7 +32,7 @@ public ExpressionValueVariable Duration { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### EndTime @@ -43,7 +44,7 @@ public ExpressionValueVariable EndTime { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### GearPairs @@ -55,7 +56,7 @@ public IEnumerable GearPairs { readonly get; set; } #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) + IEnumerable<[Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)\> ### InputEndSpeed @@ -67,7 +68,7 @@ public ExpressionValueVariable InputEndSpeed { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### InputPower @@ -79,7 +80,7 @@ public ExpressionValueVariable InputPower { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### InputPowerFilePath @@ -91,7 +92,7 @@ public string InputPowerFilePath { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### InputShaftSet @@ -103,7 +104,7 @@ public Obj InputShaftSet { readonly get; set; } #### Property Value - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) ### InputShaftSetInfos @@ -115,7 +116,7 @@ public IEnumerable InputShaftSetInfos { readonly get; s #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[InputShaftSetParameters](VM.API.Pre.GearTrain.InputShaftSetParameters.md)\> + IEnumerable<[InputShaftSetParameters](VM.API.Pre.GearTrain.InputShaftSetParameters.md)\> ### InputSpeedFilePath @@ -127,7 +128,7 @@ public string InputSpeedFilePath { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### InputStartSpeed @@ -139,7 +140,7 @@ public ExpressionValueVariable InputStartSpeed { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### IsUseCW @@ -151,7 +152,7 @@ public bool IsUseCW { readonly get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MaxTorque @@ -163,7 +164,7 @@ public ExpressionValueVariable MaxTorque { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### NameOfResult @@ -175,7 +176,7 @@ public string NameOfResult { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NumberOfInterpolation @@ -187,7 +188,7 @@ public ExpressionValueVariable NumberOfInterpolation { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### OutputShaftSetInfos @@ -199,7 +200,7 @@ public IEnumerable OutputShaftSetInfos { readonly get; #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[OutputShaftSetParameters](VM.API.Pre.GearTrain.OutputShaftSetParameters.md)\> + IEnumerable<[OutputShaftSetParameters](VM.API.Pre.GearTrain.OutputShaftSetParameters.md)\> ### SamplingFrequency @@ -211,7 +212,7 @@ public ExpressionValueVariable SamplingFrequency { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TMScenarioFile @@ -223,7 +224,7 @@ public string TMScenarioFile { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeOfSimulation @@ -235,7 +236,7 @@ public PowerFlow.SimulationType TypeOfSimulation { readonly get; set; } #### Property Value - PowerFlow.SimulationType + [PowerFlow](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/PowerFlow.cs).[SimulationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/PowerFlow.cs) ### VehicleSimulatorResultFile @@ -247,5 +248,5 @@ public string VehicleSimulatorResultFile { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.RequestParameters.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.RequestParameters.md index cc56511a82..cd69f5cd37 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.RequestParameters.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.RequestParameters.md @@ -1,4 +1,5 @@ -# Struct RequestParameters +# Struct RequestParameters + Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll @@ -31,7 +32,7 @@ public Obj BaseMarker { readonly get; set; } #### Property Value - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) ### ForceActionEntitis @@ -43,7 +44,7 @@ public IEnumerable ForceActionEntitis { readonly get; set; } #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) + IEnumerable<[Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)\> ### ForceActionEntityNames @@ -55,7 +56,7 @@ public IEnumerable ForceActionEntityNames { readonly get; set; } #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + IEnumerable ### ForceDisplayEndTime @@ -67,7 +68,7 @@ public ExpressionValueVariable ForceDisplayEndTime { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ForceDisplayStartTime @@ -79,7 +80,7 @@ public ExpressionValueVariable ForceDisplayStartTime { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### KinematicActionEntitis @@ -91,7 +92,7 @@ public IEnumerable KinematicActionEntitis { readonly get; set; } #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) + IEnumerable<[Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)\> ### SamplingTimes @@ -103,7 +104,7 @@ public IEnumerable SamplingTimes { readonly get; set; } #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) + IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> ### SynchronizeSimulationTime @@ -115,5 +116,5 @@ public bool SynchronizeSimulationTime { readonly get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.ShaftAttachType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.ShaftAttachType.md index ac397f33a2..a00643957a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.ShaftAttachType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.ShaftAttachType.md @@ -1,4 +1,5 @@ -# Enum ShaftAttachType +# Enum ShaftAttachType + Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.ShaftInformationInAssemblyManager.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.ShaftInformationInAssemblyManager.md index ccc07a3d7c..79c42368ba 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.ShaftInformationInAssemblyManager.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.ShaftInformationInAssemblyManager.md @@ -1,4 +1,5 @@ -# Struct ShaftInformationInAssemblyManager +# Struct ShaftInformationInAssemblyManager + Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll @@ -31,7 +32,7 @@ public Obj BaseBody { readonly get; set; } #### Property Value - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) ### PowerLoad @@ -43,5 +44,5 @@ public Obj PowerLoad { readonly get; set; } #### Property Value - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.ShaftSetAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.ShaftSetAPI.md index 1e060fdc2f..b63d094be7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.ShaftSetAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.ShaftSetAPI.md @@ -1,4 +1,5 @@ -# Class ShaftSetAPI +# Class ShaftSetAPI + Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll @@ -11,7 +12,7 @@ public static class ShaftSetAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ShaftSetAPI](VM.API.Pre.GearTrain.ShaftSetAPI.md) #### Extension Methods @@ -33,15 +34,15 @@ public static void AddBearingToRBEInEFEntity(this HiddenDocumentMeshFreeBase doc #### Parameters -`document` HiddenDocumentMeshFreeBase +`document` [HiddenDocumentMeshFreeBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentMeshFreeBase.cs) The document to add bearing. -`bearingName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bearingName` string The bearing name. -`racewayName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`racewayName` string The raceway name. @@ -49,7 +50,7 @@ The raceway name. The z-axis. -`connectable` Obj +`connectable` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The start rbe. The type is @@ -59,15 +60,15 @@ The clearance parameter. If it is not given, default values will be used. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'bearingName' or 'racewayName' or 'connectable' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if magnitude of 'direction' is zero. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'connectable' is not . @@ -83,15 +84,15 @@ public static void AddBearingToRBEInEFEntity(this HiddenDocumentMeshFreeBase doc #### Parameters -`document` HiddenDocumentMeshFreeBase +`document` [HiddenDocumentMeshFreeBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentMeshFreeBase.cs) The document to add bearing. -`bearing` Obj +`bearing` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The bearing. The type is . -`racewayType` RacewayGeometryInfo.RacewayType +`racewayType` [RacewayGeometryInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BearingRacewayGeometryInfo.cs).[RacewayType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BearingRacewayGeometryInfo.cs) The raceway type. @@ -99,7 +100,7 @@ The raceway type. The z-axis. -`connectable` Obj +`connectable` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The start rbe. The type is . @@ -109,19 +110,19 @@ The clearance parameter. If it is not given, default values will be used. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'bearing' or 'connectable' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if magnitude of 'direction' is zero. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'bearing' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'connectable' is not . @@ -136,15 +137,15 @@ public static void AddBearingToRBEInFEEntity(this HiddenDocumentFEBase document, #### Parameters -`document` HiddenDocumentFEBase +`document` [HiddenDocumentFEBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) The document to add bearing. -`bearingName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bearingName` string The bearing name. -`racewayName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`racewayName` string The raceway name. @@ -152,7 +153,7 @@ The raceway name. The z-axis. -`connectable` Obj +`connectable` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The start rbe. The type is @@ -162,15 +163,15 @@ The clearance parameter. If it is not given, default values will be used. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'bearingName' or 'racewayName' or 'connectable' arguments are empty. - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if magnitude of 'direction' is zero. - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if type of 'connectable' is not . @@ -186,15 +187,15 @@ public static void AddBearingToRBEInFEEntity(this HiddenDocumentFEBase document, #### Parameters -`document` HiddenDocumentFEBase +`document` [HiddenDocumentFEBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) The document to add bearing. -`bearing` Obj +`bearing` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The bearing. The type is . -`racewayType` RacewayGeometryInfo.RacewayType +`racewayType` [RacewayGeometryInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BearingRacewayGeometryInfo.cs).[RacewayType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BearingRacewayGeometryInfo.cs) The raceway type. @@ -202,7 +203,7 @@ The raceway type. The z-axis. -`connectable` Obj +`connectable` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The start rbe. The type is @@ -212,19 +213,19 @@ The clearance parameter. If it is not given, default values will be used. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'bearing' or 'connectable' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if magnitude of 'direction' is zero. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'bearing' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'connectable' is not . @@ -240,19 +241,19 @@ public static void AddBearingToShaftset(this HiddenShaftSetDocument document, st #### Parameters -`document` HiddenShaftSetDocument +`document` [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) The document to add bearing. -`bearingName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bearingName` string The bearing name. -`racewayName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`racewayName` string The raceway name. -`offset` ExpressionValueVariable? +`offset` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The offset when attached to shaft. The default value is 0.0. @@ -270,7 +271,7 @@ The clearance parameter. If it is not given, default values will be used. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'bearingName' or 'racewayName' arguments are empty. @@ -287,19 +288,19 @@ public static void AddBearingToShaftset(this HiddenShaftSetDocument document, Ob #### Parameters -`document` HiddenShaftSetDocument +`document` [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) The document to add bearing. -`bearing` Obj +`bearing` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The bearing. The type is . -`racewayType` RacewayGeometryInfo.RacewayType +`racewayType` [RacewayGeometryInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BearingRacewayGeometryInfo.cs).[RacewayType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BearingRacewayGeometryInfo.cs) The raceway type. -`offset` ExpressionValueVariable? +`offset` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The offset when attached to shaft. The default value is 0.0. @@ -317,11 +318,11 @@ The clearance parameter. If it is not given, default values will be used. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'bearing' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'bearing' is not . @@ -335,15 +336,15 @@ public static void AddGearToRBEInEFEntity(this HiddenDocumentMeshFreeBase docume #### Parameters -`document` HiddenDocumentMeshFreeBase +`document` [HiddenDocumentMeshFreeBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentMeshFreeBase.cs) The document to add gear. -`gearSetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearSetName` string The gear set name. -`gearName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearName` string The gear name. @@ -351,7 +352,7 @@ The gear name. The z-axis. -`connectable` Obj +`connectable` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The rbe. The type is @@ -359,7 +360,7 @@ The rbe. The type is . @@ -413,15 +414,15 @@ public static void AddGearToRBEInEFEntity(this HiddenDocumentMeshFreeBase docume #### Parameters -`document` HiddenDocumentMeshFreeBase +`document` [HiddenDocumentMeshFreeBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentMeshFreeBase.cs) The document to add gear. -`gearset` Obj +`gearset` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The gear set. The type is . -`gearIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`gearIndex` int The gear index. The value is zero base. @@ -429,7 +430,7 @@ The gear index. The value is zero base. The z-axis. -`connectable` Obj +`connectable` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The rbe. The type is @@ -437,7 +438,7 @@ The rbe. The type is . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'connectable' is not . @@ -501,15 +502,15 @@ public static void AddGearToRBEInFEEntity(this HiddenDocumentFEBase document, st #### Parameters -`document` HiddenDocumentFEBase +`document` [HiddenDocumentFEBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) The document to add gear. -`gearSetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearSetName` string The gear set name. -`gearName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearName` string The gear name. @@ -517,7 +518,7 @@ The gear name. The z-axis. -`connectable` Obj +`connectable` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The rbe. The type is @@ -525,7 +526,7 @@ The rbe. The type is . @@ -579,15 +580,15 @@ public static void AddGearToRBEInFEEntity(this HiddenDocumentFEBase document, Ob #### Parameters -`document` HiddenDocumentFEBase +`document` [HiddenDocumentFEBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) The document to add gear. -`gearset` Obj +`gearset` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The gear set. The type is . -`gearIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`gearIndex` int The gear index. The value is zero base. @@ -595,7 +596,7 @@ The gear index. The value is zero base. The z-axis. -`connectable` Obj +`connectable` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The rbe. The type is @@ -603,7 +604,7 @@ The rbe. The type is . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'connectable' is not . @@ -669,15 +670,15 @@ public static void AddGearToShaftset(this HiddenShaftSetDocument document, strin #### Parameters -`document` HiddenShaftSetDocument +`document` [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) The document to add gear. -`gearSetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearSetName` string The gear set name. -`gearName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearName` string The gear name. @@ -685,7 +686,7 @@ The gear name. The attach type. The default value is Shaft. -`offset` ExpressionValueVariable? +`offset` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The offset when attached to shaft. The default value is 0.0. @@ -693,15 +694,15 @@ The offset when attached to shaft. The default value is 0.0. The location when attached to shaft. The default value is Left -`bearing` Obj? +`bearing` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)? The bearing. -`racewayType` RacewayGeometryInfo.RacewayType +`racewayType` [RacewayGeometryInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BearingRacewayGeometryInfo.cs).[RacewayType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BearingRacewayGeometryInfo.cs) The bearing raceway type. -`bearingOffset` ExpressionValueVariable? +`bearingOffset` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The offset when attached to bearing. The default value is 0.0 @@ -715,7 +716,7 @@ The clearance parameter. If it is not given, default values will be used. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'gearSetName' or 'gearName' arguments are empty. @@ -733,15 +734,15 @@ public static void AddGearToShaftset(this HiddenShaftSetDocument document, Obj g #### Parameters -`document` HiddenShaftSetDocument +`document` [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) The document to add gear. -`gearSet` Obj +`gearSet` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The gear set. The type is . -`gearIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`gearIndex` int The gear index. The value is zero base. @@ -749,7 +750,7 @@ The gear index. The value is zero base. The attach type. The default value is Shaft. -`offset` ExpressionValueVariable? +`offset` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The offset when attached to shaft. The default value is 0.0. @@ -757,15 +758,15 @@ The offset when attached to shaft. The default value is 0.0. The location when attached to shaft. The default value is Left -`bearing` Obj? +`bearing` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)? The bearing. -`racewayType` RacewayGeometryInfo.RacewayType +`racewayType` [RacewayGeometryInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BearingRacewayGeometryInfo.cs).[RacewayType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BearingRacewayGeometryInfo.cs) The bearing raceway type. -`bearingOffset` ExpressionValueVariable? +`bearingOffset` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The offset when attached to bearing. The default value is 0.0 @@ -779,19 +780,19 @@ The clearance parameter. If it is not given, default values will be used. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'gearSet' arguments are empty. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'gearIndex' is less than zero. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'gearIndex' is greater than or equal to gear's count. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'gearset' is not . @@ -805,15 +806,15 @@ public static void AddRackToRBEInEFEntity(this HiddenDocumentMeshFreeBase docume #### Parameters -`document` HiddenDocumentMeshFreeBase +`document` [HiddenDocumentMeshFreeBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentMeshFreeBase.cs) The document to add gear. -`gearSetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearSetName` string The gear set name. -`gearName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearName` string The gear name. @@ -821,41 +822,41 @@ The gear name. The z-axis. -`connectableStart` Obj +`connectableStart` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The start rbe. The type is -`connectableEnd` Obj +`connectableEnd` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The end rbe. The type is -`useStart` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`useStart` bool The flag for whether using start rbe. -`useEnd` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`useEnd` bool The flag for whether using end rbe. -`initialAngle` ExpressionValueVariable? +`initialAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The initial angle. The default value is 0.0. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'gearSetName' or 'gearName' or 'connectableStart' or 'connectableEnd' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if magnitude of 'direction' is zero. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'connectableStart' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'connectableEnd' is not . @@ -871,15 +872,15 @@ public static void AddRackToRBEInEFEntity(this HiddenDocumentMeshFreeBase docume #### Parameters -`document` HiddenDocumentMeshFreeBase +`document` [HiddenDocumentMeshFreeBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentMeshFreeBase.cs) The document to add gear. -`gearSetRackAndPinion` Obj +`gearSetRackAndPinion` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The gear set name. The type is . -`gearIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`gearIndex` int The gear name. @@ -887,53 +888,53 @@ The gear name. The z-axis. -`connectableStart` Obj +`connectableStart` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The start rbe. The type is -`connectableEnd` Obj +`connectableEnd` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The end rbe. The type is -`useStart` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`useStart` bool The flag for whether using start rbe. -`useEnd` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`useEnd` bool The flag for whether using end rbe. -`initialAngle` ExpressionValueVariable? +`initialAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The initial angle. The default value is 0.0. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'gearSetName' or 'gearName' or 'connectableStart' or 'connectableEnd' arguments are empty. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'gearIndex' is less than zero. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'gearIndex' is greater than or equal to gear's count. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if magnitude of 'direction' is zero. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'gearSetRackAndPinion' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'connectableStart' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'connectableEnd' is not . @@ -947,15 +948,15 @@ public static void AddRackToRBEInFEEntity(this HiddenDocumentFEBase document, st #### Parameters -`document` HiddenDocumentFEBase +`document` [HiddenDocumentFEBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) The document to add gear. -`gearSetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearSetName` string The gear set name. -`gearName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearName` string The gear name. @@ -963,41 +964,41 @@ The gear name. The z-axis. -`connectableStart` Obj +`connectableStart` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The start rbe. The type is -`connectableEnd` Obj +`connectableEnd` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The end rbe. The type is -`useStart` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`useStart` bool The flag for whether using start rbe. -`useEnd` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`useEnd` bool The flag for whether using end rbe. -`initialAngle` ExpressionValueVariable? +`initialAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The initial angle. The default value is 0.0. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'gearSetName' or 'gearName' or 'connectableStart' or 'connectableEnd' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if magnitude of 'direction' is zero. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'connectableStart' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'connectableEnd' is not . @@ -1013,15 +1014,15 @@ public static void AddRackToRBEInFEEntity(this HiddenDocumentFEBase document, Ob #### Parameters -`document` HiddenDocumentFEBase +`document` [HiddenDocumentFEBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) The document to add gear. -`gearSetRackAndPinion` Obj +`gearSetRackAndPinion` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The gear set name. The type is . -`gearIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`gearIndex` int The gear name. @@ -1029,87 +1030,91 @@ The gear name. The z-axis. -`connectableStart` Obj +`connectableStart` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The start rbe. The type is -`connectableEnd` Obj +`connectableEnd` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The end rbe. The type is -`useStart` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`useStart` bool The flag for whether using start rbe. -`useEnd` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`useEnd` bool The flag for whether using end rbe. -`initialAngle` ExpressionValueVariable? +`initialAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The initial angle. The default value is 0.0. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'gearSetRackAndPinion' or 'connectableStart' or 'connectableEnd' arguments are empty. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'gearIndex' is less than zero. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'gearIndex' is greater than or equal to gear's count. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if magnitude of 'direction' is zero. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'gearSetRackAndPinion' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'connectableStart' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'connectableEnd' is not . -### AddRackToShaftset\(HiddenShaftSetDocument, string, string, ExpressionValueVariable?\) +### AddRackToShaftset\(HiddenShaftSetDocument, string, string, ExpressionValueVariable?, int\) Add rack to shaftset. ```csharp [NotNull(new string[] { "document" })] [NotNullOrEmpty(new string[] { "gearSetName", "gearName" })] -public static void AddRackToShaftset(this HiddenShaftSetDocument document, string gearSetName, string gearName, ExpressionValueVariable? initialAngle = null) +public static void AddRackToShaftset(this HiddenShaftSetDocument document, string gearSetName, string gearName, ExpressionValueVariable? initialAngle = null, int gearIndex = 0) ``` #### Parameters -`document` HiddenShaftSetDocument +`document` [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) The document to add rack. -`gearSetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearSetName` string The gear set name. -`gearName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`gearName` string The rack name. -`initialAngle` ExpressionValueVariable? +`initialAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The initial angle. The default value is 0.0. +`gearIndex` int + +The gear index. The value is zero base. + #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'gearSetName' or 'gearName' arguments are empty. @@ -1127,37 +1132,37 @@ public static void AddRackToShaftset(this HiddenShaftSetDocument document, Obj g #### Parameters -`document` HiddenShaftSetDocument +`document` [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) The document to add rack. -`gearSetRackAndPinion` Obj +`gearSetRackAndPinion` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The rack and pinion gear set. The type is . -`gearIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`gearIndex` int The gear index. The value is zero base. -`initialAngle` ExpressionValueVariable? +`initialAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The initial angle. The default value is 0.0. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'gearSetRackAndPinion' arguments are empty. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'gearIndex' is less than zero. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'gearIndex' is greater than or equal to gear's count. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'gearSetRackAndPinion' is not . @@ -1172,11 +1177,11 @@ public static void AddSectionInSimpleShaftset(this HiddenShaftSetDocument docume #### Parameters -`document` HiddenShaftSetDocument +`document` [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) The document to add section. -`length` ExpressionValueVariable? +`length` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The added section length. The default value is 1.0. @@ -1184,21 +1189,21 @@ The added section length. The default value is 1.0. The cross section type. The default value is CIRCULAR -`diameters` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`diameters` IEnumerable<[ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\> The width when add to shaft. If it is null, default values based on cross section will be used. -`sectionName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`sectionName` string The name of the section. If empty, default name starts with 'Section_' will be generated and used. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'crossSection' and 'diameters' argument do not match. @@ -1213,15 +1218,15 @@ public static void AddSlidingBearingToRBEInEFEntity(this HiddenDocumentMeshFreeB #### Parameters -`document` HiddenDocumentMeshFreeBase +`document` [HiddenDocumentMeshFreeBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentMeshFreeBase.cs) The document to add sliding bearing. -`slidingBearingName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`slidingBearingName` string The sliding bearing name. -`connectable` Obj +`connectable` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The rbe. The type is . @@ -1231,11 +1236,11 @@ The contact type. The default value is outer fix. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'slidingBearingName' or 'connectable' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'connectable' is not . @@ -1251,15 +1256,15 @@ public static void AddSlidingBearingToRBEInEFEntity(this HiddenDocumentMeshFreeB #### Parameters -`document` HiddenDocumentMeshFreeBase +`document` [HiddenDocumentMeshFreeBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentMeshFreeBase.cs) The document to add sliding bearing. -`slidingBearing` Obj +`slidingBearing` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The sliding bearing. The type is -`connectable` Obj +`connectable` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The rbe. The type is . @@ -1269,15 +1274,15 @@ The contact type. The default value is outer fix. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'slidingBearing' or 'connectable' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'slidingBearing' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'connectable' is not . @@ -1292,15 +1297,15 @@ public static void AddSlidingBearingToRBEInFEEntity(this HiddenDocumentFEBase do #### Parameters -`document` HiddenDocumentFEBase +`document` [HiddenDocumentFEBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) The document to add sliding bearing. -`slidingBearingName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`slidingBearingName` string The sliding bearing name. -`connectable` Obj +`connectable` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The rbe. The type is . @@ -1310,11 +1315,11 @@ The contact type. The default value is outer fix. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'slidingBearingName' or 'connectable' arguments are empty. - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if type of 'connectable' is not . @@ -1330,15 +1335,15 @@ public static void AddSlidingBearingToRBEInFEEntity(this HiddenDocumentFEBase do #### Parameters -`document` HiddenDocumentFEBase +`document` [HiddenDocumentFEBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) The document to add sliding bearing. -`slidingBearing` Obj +`slidingBearing` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The sliding bearing. The type is -`connectable` Obj +`connectable` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The rbe. The type is . @@ -1348,15 +1353,15 @@ The contact type. The default value is outer fix. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'slidingBearing' or 'connectable' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'slidingBearing' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'connectable' is not . @@ -1372,11 +1377,11 @@ public static void AddSlidingBearingToShaftset(this HiddenShaftSetDocument docum #### Parameters -`document` HiddenShaftSetDocument +`document` [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) The document to add sliding bearing. -`slidingBearingName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`slidingBearingName` string The sliding bearing name. @@ -1384,7 +1389,7 @@ The sliding bearing name. The contact type. The default value is inner contact. -`offset` ExpressionValueVariable? +`offset` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The offset when attached to shaft. The default value is 0.0. @@ -1392,13 +1397,13 @@ The offset when attached to shaft. The default value is 0.0. The location when attached to shaft. The default value is Left -`startAngle` ExpressionValueVariable? +`startAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The start angle. The default value is 0.0. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'slidingBearingName' arguments are empty. @@ -1415,11 +1420,11 @@ public static void AddSlidingBearingToShaftset(this HiddenShaftSetDocument docum #### Parameters -`document` HiddenShaftSetDocument +`document` [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) The document to add sliding bearing. -`slidingBearing` Obj +`slidingBearing` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The sliding bearing. The type is @@ -1427,7 +1432,7 @@ The sliding bearing. The type is . @@ -1460,17 +1465,17 @@ public static void ComponentAnalysisInShaftSet(this HiddenShaftSetDocument docum #### Parameters -`document` HiddenShaftSetDocument +`document` [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) The for simulate. If null, the active document will be used. -`openPost` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`openPost` bool The flag for whether opening post processor. The default value is false. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. @@ -1485,17 +1490,17 @@ public static void ComponentAnalysisInShaftSet(this HiddenDocumentMeshBase docum #### Parameters -`document` HiddenDocumentMeshBase +`document` [HiddenDocumentMeshBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) The for simulate. If null, the active document will be used. -`openPost` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`openPost` bool The flag for whether opening post processor. The default value is false. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. @@ -1512,11 +1517,11 @@ public static void CreateConceptCarrier(this GearTrainDocument document, Obj gea #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to add concept carrier. -`gearSet` Obj +`gearSet` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The planetary gearset. The type is . @@ -1528,15 +1533,15 @@ The position. The default value is 0,0,0. The rotate axis. The default value is 0,1,0. -`pinionShaftLength` ExpressionValueVariable? +`pinionShaftLength` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The pinion shaft length. The default value is 100. -`pinionShaftDiameter` ExpressionValueVariable? +`pinionShaftDiameter` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The pinion shaft diameter. The default value is 20. -`carrierThickness` ExpressionValueVariable? +`carrierThickness` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The carrier thickness. The default value is 3. @@ -1544,38 +1549,38 @@ The carrier thickness. The default value is 3. The pinion install method type. The default value is Constraint. -`bearing` Obj? +`bearing` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)? The bearing when 'pinionInstallMethodType' is selected as bearing. The default value is null. The type is . -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the concept carrier. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'gearSet' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'rotateAxis' is not null and the magnitude of 'rotateAxis' is 0. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'pinionInstallMethodType' is Bearing and the 'bearing' is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'gearSet' is not planetary. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'gearSet' is not IGearSet gearSet. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'bearing' is not . @@ -1590,23 +1595,23 @@ public static Obj CreateEFShaftset(this GearTrainDocument document, string shaft #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the EF shaft set. -`shaftName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`shaftName` string The name of the EF shaft set. If empty, default name starts with 'ShaftSet_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. @@ -1621,23 +1626,23 @@ public static Obj CreateFEShaftset(this GearTrainDocument document, string shaft #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the FE shaft set. -`shaftName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`shaftName` string The name of the FE shaft set. If empty, default name starts with 'ShaftSet_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. @@ -1652,31 +1657,31 @@ public static Obj CreateMeasurePointToShaftset(this HiddenShaftSetDocument docum #### Parameters -`document` HiddenShaftSetDocument +`document` [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) The document to create measure point. -`measurePointName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`measurePointName` string The name of the measure point. If empty, default name starts with 'MeasurePt_' will be generated and used. -`offset` ExpressionValueVariable? +`offset` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The offset when add to shaft. The default value is 0.0. -`reference` PointEntityOnShaftSet.ReferenceType +`reference` [PointEntityOnShaftSet](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/PointEntityOnShaftSet.cs).[ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/PointEntityOnShaftSet.cs) The reference type. The default value is Start #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. @@ -1694,11 +1699,11 @@ public static Obj CreatePointLoadToRBE(this HiddenDocumentMeshBase document, Obj #### Parameters -`document` HiddenDocumentMeshBase +`document` [HiddenDocumentMeshBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) The document to create point load. -`connectable` Obj +`connectable` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The rbe. The type is . @@ -1706,47 +1711,47 @@ The rbe. The type is object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'connectable' argumenta are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if magnitude of 'direction' is zero. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'connectable' is not . @@ -1761,55 +1766,55 @@ public static Obj CreatePointLoadToShaftset(this HiddenShaftSetDocument document #### Parameters -`document` HiddenShaftSetDocument +`document` [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) The document to create point load. -`pointLoadName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`pointLoadName` string The name of the point load. If empty, default name starts with 'PointLoad_' will be generated and used. -`offset` ExpressionValueVariable? +`offset` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The offset when add to shaft. The default value is 0.0. -`reference` PointEntityOnShaftSet.ReferenceType +`reference` [PointEntityOnShaftSet](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/PointEntityOnShaftSet.cs).[ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/PointEntityOnShaftSet.cs) The reference type. The default value is Start -`width` ExpressionValueVariable? +`width` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The width when add to shaft. The default value is 1.0 -`forceX` ExpressionValueVariable? +`forceX` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The x-axis force. The default value is 10.0 -`forceY` ExpressionValueVariable? +`forceY` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The y-axis force. The default value is 10.0 -`forceZ` ExpressionValueVariable? +`forceZ` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The z-axis force. The default value is 10.0 -`torqueX` ExpressionValueVariable? +`torqueX` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The x-axis torque. The default value is 10.0 -`torqueY` ExpressionValueVariable? +`torqueY` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The y-axis torque. The default value is 10.0 #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. @@ -1827,11 +1832,11 @@ public static Obj CreatePowerLoadToRBE(this HiddenDocumentMeshBase document, Obj #### Parameters -`document` HiddenDocumentMeshBase +`document` [HiddenDocumentMeshBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) The document to create power load. -`connectable` Obj +`connectable` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The rbe. The type is . @@ -1839,35 +1844,35 @@ The rbe. The type is object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'document' is FE/EF housing. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if magnitude of 'direction' is zero. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'connectable' is not . @@ -1882,39 +1887,39 @@ public static Obj CreatePowerloadToShaftset(this HiddenShaftSetDocument document #### Parameters -`document` HiddenShaftSetDocument +`document` [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) The document to create power load. -`powerLoadName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`powerLoadName` string The name of the power load. If empty, default name starts with 'PowerLoad_' will be generated and used. -`offset` ExpressionValueVariable? +`offset` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The offset when add to shaft. The default value is 0.0. -`reference` PointEntityOnShaftSet.ReferenceType +`reference` [PointEntityOnShaftSet](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/PointEntityOnShaftSet.cs).[ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/PointEntityOnShaftSet.cs) The reference type. The default value is Start -`width` ExpressionValueVariable? +`width` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The width when add to shaft. The default value is 1.0 -`role` PowerLoad.PowerLoadType +`role` [PowerLoad](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/PowerLoad.cs).[PowerLoadType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/PowerLoad.cs) The role type. The default value is Input. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. @@ -1931,7 +1936,7 @@ public static Obj CreateSimpleShaftset(this GearTrainDocument document, Vector p #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the simple shaft set. @@ -1943,43 +1948,43 @@ The position The rotate axis. -`length` ExpressionValueVariable +`length` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The length of the simple shaft set -`diameter` ExpressionValueVariable +`diameter` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The diameter of the simple shaft set -`shaftName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`shaftName` string The name of the simple shaft set. If empty, default name starts with 'ShaftSet_' will be generated and used. -`numSection` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`numSection` int The number of section of the simple shaft set. The default value is 3. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the simple shaft set. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'rotateAxis' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of 'rotateAxis' is 0. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'length' or 'diameter' or 'numSection' value equal to or less than 0. @@ -1993,7 +1998,7 @@ public static Obj CreateSimpleShaftset(this GearTrainDocument document, Vector p #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the simple shaft set. @@ -2003,13 +2008,13 @@ The position #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. @@ -2023,19 +2028,19 @@ public static Obj CreateSimpleShaftset(this GearTrainDocument document) #### Parameters -`document` GearTrainDocument +`document` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document to create the simple shaft set. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. @@ -2053,11 +2058,11 @@ public static Obj CreateUnbalanceMassToRBE(this HiddenDocumentMeshBase document, #### Parameters -`document` HiddenDocumentMeshBase +`document` [HiddenDocumentMeshBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) The document to create unbalance mass. -`connectable` Obj +`connectable` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The rbe. The type is . @@ -2065,35 +2070,35 @@ The rbe. The type is object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'connectable' argumenta are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if magnitude of 'direction' is zero. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'connectable' is not . @@ -2108,43 +2113,43 @@ public static Obj CreateUnbalanceMassToShaftset(this HiddenShaftSetDocument docu #### Parameters -`document` HiddenShaftSetDocument +`document` [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) The document to create unbalance mass. -`unbalanceMassName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`unbalanceMassName` string The name of the unbalance mass. If empty, default name starts with 'UnbalanceMass_' will be generated and used. -`offset` ExpressionValueVariable? +`offset` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The offset when add to shaft. The default value is 0.0. -`reference` PointEntityOnShaftSet.ReferenceType +`reference` [PointEntityOnShaftSet](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/PointEntityOnShaftSet.cs).[ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/PointEntityOnShaftSet.cs) The reference type. The default value is Start -`width` ExpressionValueVariable? +`width` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The width when add to shaft. The default value is 1.0 -`mass` ExpressionValueVariable? +`mass` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The mass. The default value is 1.0 -`momentArm` ExpressionValueVariable? +`momentArm` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The moment arm. The default value is 0.0 #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. @@ -2160,7 +2165,7 @@ public static void ImportMeshIntoFEEntity(this HiddenDocumentFEBase document, TM #### Parameters -`document` HiddenDocumentFEBase +`document` [HiddenDocumentFEBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) The document to import mesh file. @@ -2168,19 +2173,19 @@ The document to import mesh file. The transformation matrix for a nodal body. -`feDataFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`feDataFilePath` string The fe data file path. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the nodal body. -`modalDataFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`modalDataFilePath` string The modal data file path. -`useUnit` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`useUnit` bool The unit flag. The default value is false @@ -2196,17 +2201,17 @@ The mass unit. The default value is kg. The time unit. The default value is sec. -`meshName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`meshName` string The mesh file name. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' arguments are empty. - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if 'feDataFilePath' does not exist. @@ -2222,7 +2227,7 @@ public static void ImportPartIntoEFEntity(this HiddenDocumentMeshFreeBase docume #### Parameters -`document` HiddenDocumentMeshFreeBase +`document` [HiddenDocumentMeshFreeBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentMeshFreeBase.cs) The document to import part file. @@ -2230,7 +2235,7 @@ The document to import part file. The transformation matrix for a assembled body. -`cadFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`cadFilePath` string The cad data file path. @@ -2242,7 +2247,7 @@ The cad import result type. The default value is Default. The cad import unit type. The default value is Auto. -`healing` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`healing` bool The healing flag. The default value is true. @@ -2250,21 +2255,21 @@ The healing flag. The default value is true. The cad import color. The default value is Default. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the assembled body. -`partName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`partName` string The part file name. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' arguments are empty. - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if 'cadFilePath' does not exist. @@ -2281,17 +2286,17 @@ public static void SplitSectionInSimpleShaftset(this HiddenShaftSetDocument docu #### Parameters -`document` HiddenShaftSetDocument +`document` [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) The document to add section. -`section` Obj +`section` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The section to be splitted. The type is CAD.Section. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'section' arguments are empty. @@ -2307,21 +2312,21 @@ public static void SplitSectionInSimpleShaftset(this HiddenShaftSetDocument docu #### Parameters -`document` HiddenShaftSetDocument +`document` [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) The document to add section. -`sectionIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`sectionIndex` int The section index. The value is zero base. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' or 'section' arguments are empty. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'sectionIndex' is less than zero or greater than length of section -1. @@ -2338,21 +2343,21 @@ public static void UpdatePointEntity(this HiddenShaftSetDocument document, Obj p #### Parameters -`document` HiddenShaftSetDocument +`document` [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) The to exist point entity. -`pointEntityOnShaftSet` Obj +`pointEntityOnShaftSet` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The point entity to exist on simple shaftset. The type is . #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' 'pointEntityOnShaftSet' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'pointEntityOnShaftSet' is not . @@ -2369,21 +2374,21 @@ public static void UpdatePointEntityOnRBE(this HiddenDocumentMeshBase document, #### Parameters -`document` HiddenDocumentMeshBase +`document` [HiddenDocumentMeshBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) The to exist point entity. -`pointEntityOnRBE` Obj +`pointEntityOnRBE` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The point entity to exist on RBE. The type is . #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' 'pointEntityOnRBE' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'pointEntityOnRBE' is not . @@ -2398,13 +2403,13 @@ public static void UpdateShaftSet(this HiddenShaftSetDocument document) #### Parameters -`document` HiddenShaftSetDocument +`document` [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) The to exist EF shaftset. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' argument is empty. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.ShaftSetParameters.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.ShaftSetParameters.md index dfba7fcff9..7f94fc5143 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.ShaftSetParameters.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.ShaftSetParameters.md @@ -1,4 +1,5 @@ -# Struct ShaftSetParameters +# Struct ShaftSetParameters + Namespace: [VM.API.Pre.GearTrain](VM.API.Pre.GearTrain.md) Assembly: VM.API.Pre.GearTrain.dll @@ -29,11 +30,11 @@ public ShaftSetParameters(string bodyName, string shaftSetName, Vector position, #### Parameters -`bodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bodyName` string The bodyName of the shaftset parameters. -`shaftSetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`shaftSetName` string The shaftSetName of the shaftset parameters. @@ -45,19 +46,19 @@ The position of the shaftset parameters. The rorateAxis of the shaftset parameters. -`powerLoad` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`powerLoad` bool The powerLoad of the shaftset parameters. -`role` PowerLoad.PowerLoadType +`role` [PowerLoad](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/PowerLoad.cs).[PowerLoadType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/PowerLoad.cs) The role of the shaftset parameters. -`offset` ExpressionValueVariable +`offset` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The offset of the shaftset parameters. -`width` ExpressionValueVariable +`width` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The of the shaftset parameters.. @@ -73,7 +74,7 @@ public string BodyName { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Offset @@ -85,7 +86,7 @@ public ExpressionValueVariable Offset { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Position @@ -109,7 +110,7 @@ public bool PowerLoad { readonly get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Role @@ -121,7 +122,7 @@ public PowerLoad.PowerLoadType Role { readonly get; set; } #### Property Value - PowerLoad.PowerLoadType + [PowerLoad](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/PowerLoad.cs).[PowerLoadType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/PowerLoad.cs) ### RotateAxis @@ -145,7 +146,7 @@ public string ShaftSetName { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Width @@ -157,5 +158,5 @@ public ExpressionValueVariable Width { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.md index d3e4ac4c80..a07610fffb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GearTrain.md @@ -1,4 +1,5 @@ -# Namespace VM.API.Pre.GearTrain +# Namespace VM.API.Pre.GearTrain + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GeometryAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GeometryAPI.md index 314eea4ec2..2d8293a651 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GeometryAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GeometryAPI.md @@ -1,4 +1,5 @@ -# Class GeometryAPI +# Class GeometryAPI + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class GeometryAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [GeometryAPI](VM.API.Pre.GeometryAPI.md) #### Extension Methods @@ -38,33 +39,33 @@ public static void ExportCAD(this IDocument document, string filePath, IEnumerab The document to export the geometry. -`filePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`filePath` string The file path of the geometry. -`objectList` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`objectList` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> The result type of the geometry. -`value` [string](https://learn.microsoft.com/dotnet/api/system.string) +`value` string The unit type of the geometry. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document', 'filePath' argument is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'document' is not and . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the exetension of 'filePath' is not 'sab', '.sat', 'CATPart', 'CATProduct', 'x_t', 'x_b', 'stp', 'step'. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'objectList' is not and . @@ -84,7 +85,7 @@ public static void ImportCAD(this IDocument document, string filePath, ResultTyp The document to import the geometry. -`filePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`filePath` string The file path of the geometry. @@ -96,7 +97,7 @@ The result type of the geometry. This parameter is unused. -`useHealing` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`useHealing` bool The flag of use healing of geometry. @@ -104,25 +105,25 @@ The flag of use healing of geometry. The color type of the geometry. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the geometry. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if 'filePath' file is not exist. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'document' is not and . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the exetension of 'filePath' is not 'sab', '.sat', 'CATPart', 'CATProduct', 'x_t', 'x_b', 'stp', 'step'. @@ -142,7 +143,7 @@ public static void ReplaceCAD(this IDocument document, string filePath, ResultTy The document to replace the geometry. -`filePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`filePath` string The file path of the geometry. @@ -154,7 +155,7 @@ The result type of the geometry. This parameter is unused. -`useHealing` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`useHealing` bool The flag of use healing of geometry. @@ -162,33 +163,33 @@ The flag of use healing of geometry. The color type of the geometry. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the geometry. -`replaceAllGeometries` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`replaceAllGeometries` bool The flag of replace all geometries of geometry. -`attributes` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`attributes` string\[\] The attributes of geometry. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if 'filePath' file is not exist. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'document' is not and . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the exetension of 'filePath' is not 'sab', '.sat', 'CATPart', 'CATProduct', 'x_t', 'x_b', 'stp', 'step'. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GroupAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GroupAPI.md index 4ab1168693..12c23df3a4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GroupAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.GroupAPI.md @@ -1,4 +1,5 @@ -# Class GroupAPI +# Class GroupAPI + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class GroupAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [GroupAPI](VM.API.Pre.GroupAPI.md) #### Extension Methods @@ -37,17 +38,17 @@ public static void ApplyGroup(this Obj group, IEnumerable objs) The target to apply update. -`objs` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`objs` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> The collection of objects. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'group' is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'group' is not . @@ -62,11 +63,11 @@ public static Obj CreateGroup(this SubSystemDocument subSystemDocument, IEnumera #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a group. -`objs` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`objs` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> The bodies of a group. @@ -78,11 +79,11 @@ The new < #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'subSystemDocument', 'objs' is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'objs' is not . diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.InputChannelInputType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.InputChannelInputType.md index 32f8b6b8b6..37872af7f0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.InputChannelInputType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.InputChannelInputType.md @@ -1,4 +1,5 @@ -# Enum InputChannelInputType +# Enum InputChannelInputType + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.LengthUnitType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.LengthUnitType.md index d32ead9434..95e0e8e6d6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.LengthUnitType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.LengthUnitType.md @@ -1,4 +1,5 @@ -# Enum LengthUnitType +# Enum LengthUnitType + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.BallPlacingAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.BallPlacingAPI.md index a0ff7fc24d..b38bb03dd3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.BallPlacingAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.BallPlacingAPI.md @@ -1,4 +1,5 @@ -# Class BallPlacingAPI +# Class BallPlacingAPI + Namespace: [VM.API.Pre.Links](VM.API.Pre.Links.md) Assembly: VM.API.Pre.Links.dll @@ -11,7 +12,7 @@ public static class BallPlacingAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BallPlacingAPI](VM.API.Pre.Links.BallPlacingAPI.md) #### Extension Methods @@ -32,23 +33,23 @@ public static Obj CreateBall(BallInfo ballInfo) #### Parameters -`ballInfo` BallInfo +`ballInfo` [BallInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOPBallPlacing/BallInfo.cs) The ball information to create ball. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the Name of 'ballInfo' is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the Radius of 'ballInfo' is equal to or less than 0. @@ -64,11 +65,11 @@ public static Obj CreateBallPlacing(this SubSystemDocument document, string path #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the ball placing. -`path` [string](https://learn.microsoft.com/dotnet/api/system.string) +`path` string The path to create the ball placing. @@ -76,47 +77,47 @@ The path to create the ball placing. The path type. The default value is Closed. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the . If empty, default name starts with 'BallPlacing_' will be generated and used. -`ballRadius` ExpressionValueVariable? +`ballRadius` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The ball radius. The default value is 2. -`numberOfBall` ExpressionValueVariable? +`numberOfBall` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The number of ball. The default value is 25. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color. The default value is '0xAAAABF' #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document', 'body' are null. - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if 'path' file path does not exist. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the extension of 'path' is not 'csv'. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'ballRadius' value equal to or less than 0. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'numberOfBall' is less than 2 or greater than 999. @@ -133,35 +134,35 @@ public static Obj CreateBallPlacingContact(this SubSystemDocument document, IEnu #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the ball placing contact. -`baseGeometries` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`baseGeometries` IEnumerable<[Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)\> The base geometries. -`ballPlacing` Obj +`ballPlacing` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The ball placing. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the . If empty, default name starts with 'BallPlacingContact_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document', 'baseGeometries', 'ballPlacing', 'ballPlacing' are null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if item type of 'baseGeometries' is not . @@ -175,7 +176,7 @@ public static Obj CreateBallScrew(this SubSystemDocument document, Vector shaftR #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) `shaftReferencePosition` Vector @@ -183,39 +184,39 @@ public static Obj CreateBallScrew(this SubSystemDocument document, Vector shaftR `axisX` Vector -`shaftLength` ExpressionValueVariable? +`shaftLength` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? -`shaftScrewStartAngle` ExpressionValueVariable? +`shaftScrewStartAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? -`shaftScrewStartPosition` ExpressionValueVariable? +`shaftScrewStartPosition` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? -`shaftScrewEndPosition` ExpressionValueVariable? +`shaftScrewEndPosition` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? -`nutLength` ExpressionValueVariable? +`nutLength` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? -`nutOD` ExpressionValueVariable? +`nutOD` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? -`nutStartPosition` ExpressionValueVariable? +`nutStartPosition` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? -`nutScrewStartPosition` ExpressionValueVariable? +`nutScrewStartPosition` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? -`nutScrewEndPosition` ExpressionValueVariable? +`nutScrewEndPosition` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? `handOfScrew` [ScrewHandType](VM.API.Pre.Links.ScrewHandType.md) -`lead` ExpressionValueVariable? +`lead` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? -`shaftPCD` ExpressionValueVariable? +`shaftPCD` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? -`nutPCD` ExpressionValueVariable? +`nutPCD` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? -`ballDiameter` ExpressionValueVariable? +`ballDiameter` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) ### CreateSurfaceWithCurvesets\(SubSystemDocument, string, Obj, Obj, Obj, ExpressionValueVariable?, ExpressionValueVariable?, string\) @@ -231,75 +232,75 @@ public static Obj CreateSurfaceWithCurvesets(this SubSystemDocument document, st #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the surface with curvesets. -`path` [string](https://learn.microsoft.com/dotnet/api/system.string) +`path` string The path to create the surface with curvesets. -`faceSet` Obj +`faceSet` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The face set. -`startCurveSet` Obj +`startCurveSet` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The start curveset. -`endCurveSet` Obj +`endCurveSet` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The end curveset. -`numberOfSlice` ExpressionValueVariable? +`numberOfSlice` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The number of slice. The default value is 19. -`cuttingPlaneRadius` ExpressionValueVariable? +`cuttingPlaneRadius` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The radius of cutting plane. The default value is 10. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the . If empty, default name starts with 'Surface_With_Curvesets_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document', 'faceSet', 'startCurveSet', 'endCurveSet' are null. - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if 'path' file path does not exist. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the extension of 'path' is not 'csv'. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if Object of 'startCurveSet' and Object of 'endCurveSet' are the same. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if item type of 'faceSet' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if item type of 'startCurveSet' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if item type of 'endCurveSet' is not . - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'numberOfSlice', 'cuttingPlaneRadius' values equal to or less than 0. @@ -315,17 +316,17 @@ public static void DeleteBall(Obj ball) #### Parameters -`ball` Obj +`ball` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The ball to delete ball. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'ball' is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if item type of 'ball' is not . @@ -341,29 +342,29 @@ public static void UpdateBall(Obj ball, BallInfo ballInfo) #### Parameters -`ball` Obj +`ball` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The ball to update ball. -`ballInfo` BallInfo +`ballInfo` [BallInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOPBallPlacing/BallInfo.cs) The ball information to update ball. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'ball' is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if item type of 'ball' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the Name of 'ballInfo' is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the Radius of 'ballInfo' is equal to or less than 0. @@ -379,25 +380,25 @@ public static void UpdateFaceSet(Obj faceset, ExpressionValueVariable maximumPen #### Parameters -`faceset` Obj +`faceset` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The faceset to update ball. -`maximumPenetration` ExpressionValueVariable +`maximumPenetration` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The maximum penetration. -`offset` ExpressionValueVariable +`offset` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The offset. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'faceset' is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if item type of 'faceset' is not . @@ -413,33 +414,33 @@ public static void UpdateSurfaceWithCurvesets(this Obj surfaceWithCurvesets, Exp #### Parameters -`surfaceWithCurvesets` Obj +`surfaceWithCurvesets` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The surface with curvesets to update ball. -`maximumPenetration` ExpressionValueVariable +`maximumPenetration` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The maximum penetration. -`offset` ExpressionValueVariable +`offset` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The offset. -`isUp` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isUp` bool The flag for up or down. -`slice` ExpressionValueVariable +`slice` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The slice. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'surfaceWithCurvesets' is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if item type of 'surfaceWithCurvesets' is not . diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.CPlacingConnectorAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.CPlacingConnectorAPI.md index 307995f4da..752c7a905e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.CPlacingConnectorAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.CPlacingConnectorAPI.md @@ -1,4 +1,5 @@ -# Class CPlacingConnectorAPI +# Class CPlacingConnectorAPI + Namespace: [VM.API.Pre.Links](VM.API.Pre.Links.md) Assembly: VM.API.Pre.Links.dll @@ -11,7 +12,7 @@ public static class CPlacingConnectorAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CPlacingConnectorAPI](VM.API.Pre.Links.CPlacingConnectorAPI.md) #### Extension Methods @@ -34,27 +35,27 @@ public static double CalculatePinStiffness(string pinFilePath, string pinName) #### Parameters -`pinFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`pinFilePath` string The pin file path. -`pinName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`pinName` string The pin name. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double The stiffness information that is calculated by this API. #### Exceptions - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if 'pinFilePath' file path does not exist. - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if type of 'pinName' argument is empty. @@ -70,35 +71,35 @@ public static List CalculatePulleyStiffness(string pulleyFilePath, str #### Parameters -`pulleyFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`pulleyFilePath` string The pulley file path. -`pulleyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`pulleyName` string The pulley name. -`pinFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`pinFilePath` string The pin file path #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\[\]\> + List The stiffness information that is calculated by this API. #### Exceptions - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if 'pulleyFilePath' file path does not exist. - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if type of 'pulleyName' argument is empty. - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if 'pinFilePath' file path does not exist. @@ -113,19 +114,19 @@ public static Dictionary CalculateSegmentStiffness(string se #### Parameters -`segmentFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`segmentFilePath` string The segment file path. #### Returns - [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), VectorBase\> + Dictionary The stiffness information that is calculated by this API. #### Exceptions - [FileNotFoundException](https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception) + FileNotFoundException Will be thrown if 'segmentFilePath' file path does not exist. @@ -141,31 +142,31 @@ public static Obj CreateCPlacingConnector(this SubSystemDocument document, Obj c #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the Chained placing connector. -`chainedPlacing` Obj +`chainedPlacing` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The chained placing. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the . If empty, default name starts with 'CPlacingConnector_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document', 'chainedPlacing' are null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if item type of 'chainedPlacing' is not . @@ -186,7 +187,7 @@ public static Obj CreatePin(this IChainedSegmentInfo document, Obj body, Vector The document to create the pin. -`body` Obj +`body` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The body to create the pin. @@ -198,23 +199,23 @@ The position to create the pin. The direction to create the pin. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the . If empty, default name starts with 'Pin_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document', 'body' are null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of 'direction' is 0. @@ -235,7 +236,7 @@ public static Obj CreatePulley(this IChainedPathInfo document, Obj body, Vector The document to create the pulley. -`body` Obj +`body` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The body to create the pulley. @@ -247,23 +248,23 @@ The position to create the pulley. The z-axis to create the pulley. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the . If empty, default name starts with 'Pulley_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document', 'body' are null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of 'axisZ' is 0. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.ChainedSystemAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.ChainedSystemAPI.md index 895a5f3fea..431c30aa67 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.ChainedSystemAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.ChainedSystemAPI.md @@ -1,4 +1,5 @@ -# Class ChainedSystemAPI +# Class ChainedSystemAPI + Namespace: [VM.API.Pre.Links](VM.API.Pre.Links.md) Assembly: VM.API.Pre.Links.dll @@ -11,7 +12,7 @@ public static class ChainedSystemAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ChainedSystemAPI](VM.API.Pre.Links.ChainedSystemAPI.md) #### Extension Methods @@ -35,67 +36,67 @@ public static IEnumerable AddObjectToActiveDocument(this Obj chainedPlacing #### Parameters -`chainedPlacing` Obj +`chainedPlacing` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The chained placing to add object. -`numberOfSegment` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`numberOfSegment` int The number of segment. -`numberOfSegmentData` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`numberOfSegmentData` int The number of segment data. -`preFixed` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`preFixed` IEnumerable The pre-fixed names. The length is 'numberOfSegmentData'. -`transforms` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`transforms` IEnumerable The segment transforms. The length is 'numberOfSegment'. -`segmentDocuments` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`segmentDocuments` IEnumerable The segment data documents. The length is 'numberOfSegmentData'. -`isCreate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isCreate` bool The create flag. If operation is modify state, You can put the value in 'false'. #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) + IEnumerable<[Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)\> The new segment list #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'chainedPlacing' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'chainedPlacing' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'preFixed', 'transforms', 'segmentDocuments' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'numberOfSegmentData' value is greater than 'numberOfSegment' value. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the length of 'preFixed' is not equal 'numberOfSegmentData' value. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the length of 'segmentDocuments' is not equal 'numberOfSegmentData' value. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the length of 'transforms' is not equal 'numberOfSegment' value. @@ -112,29 +113,29 @@ public static void ChangeObjectLayer(this Obj chainedPlacing, IEnumerable v #### Parameters -`chainedPlacing` Obj +`chainedPlacing` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The chained placing to change object. -`visibleObjects` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`visibleObjects` IEnumerable<[Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)\> The objects to be changed. -`visibleStates` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[bool](https://learn.microsoft.com/dotnet/api/system.boolean)\> +`visibleStates` IEnumerable The vislble flags. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'chainedPlacing' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'chainedPlacing' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'visibleObjects', 'visibleStates' argument is empty. @@ -148,31 +149,31 @@ public static Obj CreateCenter(this DocumentChainedPath document, string bodyNam #### Parameters -`document` DocumentChainedPath +`document` [DocumentChainedPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/DocumentChainedPath.cs) The document to create the center roller solid body. -`bodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bodyName` string The name of the . If empty, default name starts with 'BD_' will be generated and used. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the new flat roller geometry. The default value is '0xBFAAAA' -`isInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isInterface` bool 'true' if it is interface body. Otherwise, 'false'. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. @@ -186,23 +187,23 @@ public static Obj CreateCenter(this PartDocumentChainedPath document, Color? col #### Parameters -`document` PartDocumentChainedPath +`document` [PartDocumentChainedPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/PartDocumentChainedPath.cs) The document to create the center roller body. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the new flat roller geometry. The default value is '0xBFAAAA' #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. @@ -217,31 +218,31 @@ public static Obj CreateChainedSystem(this SubSystemDocument document, IEnumerab #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the chained system. -`pathList` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`pathList` IEnumerable<[Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)\> The path list. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the . If empty, default name starts with 'CPlacing_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' , 'pathList' are null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if item type of 'pathList' is not . @@ -255,31 +256,31 @@ public static Obj CreateDouble(this DocumentChainedPath document, string bodyNam #### Parameters -`document` DocumentChainedPath +`document` [DocumentChainedPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/DocumentChainedPath.cs) The document to create the double roller solid body. -`bodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bodyName` string The name of the . If empty, default name starts with 'BD_' will be generated and used. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the new flat roller geometry. The default value is '0xBFAAAA' -`isInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isInterface` bool 'true' if it is interface body. Otherwise, 'false'. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. @@ -293,23 +294,23 @@ public static Obj CreateDouble(this PartDocumentChainedPath document, Color? col #### Parameters -`document` PartDocumentChainedPath +`document` [PartDocumentChainedPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/PartDocumentChainedPath.cs) The document to create the double roller body. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the new flat roller geometry. The default value is '0xBFAAAA' #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. @@ -323,31 +324,31 @@ public static Obj CreateFlat(this DocumentChainedPath document, string bodyName #### Parameters -`document` DocumentChainedPath +`document` [DocumentChainedPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/DocumentChainedPath.cs) The document to create the flat roller solid body. -`bodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bodyName` string The name of the . If empty, default name starts with 'BD_' will be generated and used. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the new flat roller geometry. The default value is '0xBFAAAA' -`isInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isInterface` bool 'true' if it is interface body. Otherwise, 'false'. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. @@ -361,23 +362,23 @@ public static Obj CreateFlat(this PartDocumentChainedPath document, Color? color #### Parameters -`document` PartDocumentChainedPath +`document` [PartDocumentChainedPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/PartDocumentChainedPath.cs) The document to create the flat roller body. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the new flat roller geometry. The default value is '0xBFAAAA' #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. @@ -391,31 +392,31 @@ public static Obj CreateGeneral(this DocumentChainedPath document, string bodyNa #### Parameters -`document` DocumentChainedPath +`document` [DocumentChainedPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/DocumentChainedPath.cs) The document to create the general roller solid body. -`bodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bodyName` string The name of the . If empty, default name starts with 'BD_' will be generated and used. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the new flat roller geometry. The default value is '0xBFAAAA' -`isInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isInterface` bool 'true' if it is interface body. Otherwise, 'false'. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. @@ -429,23 +430,23 @@ public static Obj CreateGeneral(this PartDocumentChainedPath document, Color? co #### Parameters -`document` PartDocumentChainedPath +`document` [PartDocumentChainedPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/PartDocumentChainedPath.cs) The document to create the general roller body. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the new flat roller geometry. The default value is '0xBFAAAA' #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. @@ -459,31 +460,31 @@ public static Obj CreateSingle(this DocumentChainedPath document, string bodyNam #### Parameters -`document` DocumentChainedPath +`document` [DocumentChainedPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/DocumentChainedPath.cs) The document to create the single roller solid body. -`bodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bodyName` string The name of the . If empty, default name starts with 'BD_' will be generated and used. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the new flat roller geometry. The default value is '0xBFAAAA' -`isInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isInterface` bool 'true' if it is interface body. Otherwise, 'false'. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. @@ -497,23 +498,23 @@ public static Obj CreateSingle(this PartDocumentChainedPath document, Color? col #### Parameters -`document` PartDocumentChainedPath +`document` [PartDocumentChainedPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/PartDocumentChainedPath.cs) The document to create the single roller body. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the new flat roller geometry. The default value is '0xBFAAAA' #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. @@ -528,31 +529,31 @@ public static Obj CreateSprocket(this DocumentChainedPath document, string bodyN #### Parameters -`document` DocumentChainedPath +`document` [DocumentChainedPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/DocumentChainedPath.cs) The document to create the sprocket solid body. -`bodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bodyName` string The name of the . If empty, default name starts with 'BD_' will be generated and used. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the new flat roller geometry. The default value is '0xBFAAAA' -`isInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isInterface` bool 'true' if it is interface body. Otherwise, 'false'. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. @@ -567,23 +568,23 @@ public static Obj CreateSprocket(this PartDocumentChainedPath document, Color? c #### Parameters -`document` PartDocumentChainedPath +`document` [PartDocumentChainedPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/PartDocumentChainedPath.cs) The document to create the sprocket body. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the new flat roller geometry. The default value is '0xBFAAAA' #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. @@ -600,25 +601,25 @@ public static void DeleteObjectList(this Obj chainedPlacing, IEnumerable de #### Parameters -`chainedPlacing` Obj +`chainedPlacing` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The chained placing to delete object. -`deletedObjects` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`deletedObjects` IEnumerable<[Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)\> The objects to be deleted. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'chainedPlacing' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'chainedPlacing' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'deletedObjects' argument is empty. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.FEFilmAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.FEFilmAPI.md index 5f9629cdaf..f1cff8c694 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.FEFilmAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.FEFilmAPI.md @@ -1,4 +1,5 @@ -# Class FEFilmAPI +# Class FEFilmAPI + Namespace: [VM.API.Pre.Links](VM.API.Pre.Links.md) Assembly: VM.API.Pre.Links.dll @@ -11,7 +12,7 @@ public static class FEFilmAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [FEFilmAPI](VM.API.Pre.Links.FEFilmAPI.md) #### Extension Methods @@ -35,11 +36,11 @@ public static void AddPath(this Obj film, Obj designSubentity, WindingDirection #### Parameters -`film` Obj +`film` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The fe film to add path. -`designSubentity` Obj +`designSubentity` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The design subentity. @@ -47,25 +48,25 @@ The design subentity. The winding direction type. -`radius` ExpressionValueVariable +`radius` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The radius. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'film', 'designSubentity' are null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if item type of 'film' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if item type of 'designSubentity' is not or . - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if the 'radius' value is equal to or less than 0. @@ -80,17 +81,17 @@ public static void ChangeName(string oldName, string newName) #### Parameters -`oldName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`oldName` string The old name. -`newName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newName` string The new name. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'oldName', 'newName' are null. @@ -106,17 +107,17 @@ public static void ClearPath(this Obj film) #### Parameters -`film` Obj +`film` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The fe film to clear path. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'film' is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if item type of 'film' is not . @@ -131,27 +132,57 @@ public static Obj CreateFEFilm(this SubSystemDocument document, IEnumerable #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the fe film. -`paths` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`paths` IEnumerable<[Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)\> The paths to create the fe film. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the . If empty, default name starts with 'FEFilm_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document', 'paths' are null. +### GenerateFEFilm\(Obj, string\) + +Generate FE Film. + +```csharp +[NotNullObj(new string[] { "film" })] +[MatchTypeObj(new object[] { "film", typeof(FEFilm) })] +public static void GenerateFEFilm(this Obj film, string feBodyName = "") +``` + +#### Parameters + +`film` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) + +The fe film to generate. + +`feBodyName` string + +The fe body name. + +#### Exceptions + + ArgumentNullException + +Will be thrown if 'film' is null. + + ArgumentException + +Will be thrown if item type of 'film' is not . + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.HydroDynamicAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.HydroDynamicAPI.md index cd59aeb171..7b74d99946 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.HydroDynamicAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.HydroDynamicAPI.md @@ -1,4 +1,5 @@ -# Class HydroDynamicAPI +# Class HydroDynamicAPI + Namespace: [VM.API.Pre.Links](VM.API.Pre.Links.md) Assembly: VM.API.Pre.Links.dll @@ -11,7 +12,7 @@ public static class HydroDynamicAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [HydroDynamicAPI](VM.API.Pre.Links.HydroDynamicAPI.md) #### Extension Methods @@ -32,19 +33,19 @@ public static Obj CreateHydroForce(this SubSystemDocument document, Obj baseWate #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) -`baseWater` Obj +`baseWater` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) -`hullBody` Obj +`hullBody` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) -`actionEntities` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`actionEntities` IEnumerable<[Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)\> -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) ### CreateMasslessTrackLink\(SubSystemDocument, Obj, Obj, IEnumerable, ExpressionValueVariable?, ExpressionValueVariable?, string\) @@ -59,67 +60,67 @@ public static Obj CreateMasslessTrackLink(this SubSystemDocument document, Obj b #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the massless track link. -`baseEntity` Obj +`baseEntity` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The base entity. -`hullMarker` Obj +`hullMarker` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The hull marker. -`paths` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[PathData](VM.API.Pre.Links.PathData.md)\> +`paths` IEnumerable<[PathData](VM.API.Pre.Links.PathData.md)\> The path information. -`thickness` ExpressionValueVariable? +`thickness` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The thickness. -`width` ExpressionValueVariable? +`width` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The width. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the . If empty, default name starts with 'MTL_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document', 'baseEntity', 'hullMarker' are null. - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'paths' is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'baseEntity' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'hullMarker' is not . - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'thickness', 'width' value equal to or less than 0. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'Marker' of paths is not . - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if type of 'WindingRadius' of paths value equal to or less than 0. @@ -136,61 +137,61 @@ public static void CreateMultiMasslessTrackLink(this SubSystemDocument document, #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the massless track link. -`baseEntities` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`baseEntities` IEnumerable<[Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)\> The base entities. -`hullMarker` Obj +`hullMarker` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The hull marker. -`paths` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[PathData](VM.API.Pre.Links.PathData.md)\> +`paths` IEnumerable<[PathData](VM.API.Pre.Links.PathData.md)\> The path information. -`thickness` ExpressionValueVariable? +`thickness` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The thickness. -`width` ExpressionValueVariable? +`width` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The width. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the . If empty, default name starts with 'MTL_' will be generated and used. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document', 'baseEntities', 'hullMarker' are null. - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'paths' is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of Obj of 'baseEntities' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'hullMarker' is not . - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'thickness', 'width' value equal to or less than 0. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'Marker' of paths is not . - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if type of 'WindingRadius' of paths value equal to or less than 0. @@ -206,39 +207,39 @@ public static Obj CreateSoilInteraction(this SubSystemDocument document, Obj bas #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the soil interaction. -`baseEntity` Obj +`baseEntity` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The base entity. -`actionEntities` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`actionEntities` IEnumerable<[Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)\> The action entities. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the . If empty, default name starts with 'SoilInteraction_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document', 'baseEntity' are null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'baseEntity' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if item type of 'actionEntities' is not . @@ -253,21 +254,21 @@ public static Obj CreateThrustForce(this SubSystemDocument document, Obj baseWat #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) -`baseWater` Obj +`baseWater` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) -`body` Obj +`body` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) `position` Vector `thrustingAxis` Vector -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) ### CreateWater\(SubSystemDocument, Obj, Vector, Vector, Vector, ExpressionValueVariable?, ExpressionValueVariable?, ExpressionValueVariable?, string\) @@ -282,11 +283,11 @@ public static Obj CreateWater(this SubSystemDocument document, Obj body, Vector #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the water. -`body` Obj +`body` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The body. @@ -302,51 +303,51 @@ The z axis. The x axis. -`lengthInXAxis` ExpressionValueVariable? +`lengthInXAxis` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The length in x axis. -`widthInYAxis` ExpressionValueVariable? +`widthInYAxis` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The width in y axis. -`depthOfDeepWater` ExpressionValueVariable? +`depthOfDeepWater` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The depth of deep water. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the . If empty, default name starts with 'Water_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document', 'baseEntity' are null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'baseEntity' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'actionEntities' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of 'axisZ'. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of 'axisX'. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'axisZ' is equal to 'axisX'. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.LinksDocumentAPI.DocumentAPIImpl.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.LinksDocumentAPI.DocumentAPIImpl.md index 4078f78261..20ae3e24aa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.LinksDocumentAPI.DocumentAPIImpl.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.LinksDocumentAPI.DocumentAPIImpl.md @@ -1,4 +1,5 @@ -# Class LinksDocumentAPI.DocumentAPIImpl +# Class LinksDocumentAPI.DocumentAPIImpl + Namespace: [VM.API.Pre.Links](VM.API.Pre.Links.md) Assembly: VM.API.Pre.Links.dll @@ -11,7 +12,7 @@ public static class LinksDocumentAPI.DocumentAPIImpl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [LinksDocumentAPI.DocumentAPIImpl](VM.API.Pre.Links.LinksDocumentAPI.DocumentAPIImpl.md) #### Extension Methods @@ -33,11 +34,11 @@ public static T CreateNewLinksDocumentImpl(string newLinksSubsystemFilePath, #### Parameters -`newLinksSubsystemFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newLinksSubsystemFilePath` string The file path of new subsystem file path. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. The default value is Subsystem_LinksPath. @@ -53,11 +54,11 @@ The working plane. The default value is XZ. The length unit of kernel. The default value is mm. -`extension` [string](https://learn.microsoft.com/dotnet/api/system.string) +`extension` string The extension. -`documentType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentType` string The document type. @@ -75,7 +76,7 @@ The document type #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newLinksSubsystemFilePath' argument is null. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.LinksDocumentAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.LinksDocumentAPI.md index 25c10af7dc..c40d8f7500 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.LinksDocumentAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.LinksDocumentAPI.md @@ -1,4 +1,5 @@ -# Class LinksDocumentAPI +# Class LinksDocumentAPI + Namespace: [VM.API.Pre.Links](VM.API.Pre.Links.md) Assembly: VM.API.Pre.Links.dll @@ -11,7 +12,7 @@ public static class LinksDocumentAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [LinksDocumentAPI](VM.API.Pre.Links.LinksDocumentAPI.md) #### Extension Methods @@ -32,11 +33,11 @@ public static MeshDocumentChainedPath CreateNewPathMeshDocument(string newLinkPa #### Parameters -`newLinkPathFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newLinkPathFilePath` string The file path of new path mesh. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. The default value is MeshChainPath. @@ -54,13 +55,13 @@ The length unit of kernel. The default value is mm. #### Returns - MeshDocumentChainedPath + [MeshDocumentChainedPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/MeshDocumentChainedPath.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newLinkPathFilePath' argument is null. @@ -74,11 +75,11 @@ public static PartDocumentChainedPath CreateNewPathPartDocument(string newLinkPa #### Parameters -`newLinkPathFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newLinkPathFilePath` string The file path of new path part. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. The default value is PartChainPath. @@ -96,13 +97,13 @@ The length unit of kernel. The default value is mm. #### Returns - PartDocumentChainedPath + [PartDocumentChainedPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/PartDocumentChainedPath.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newLinkPathFilePath' argument is null. @@ -116,11 +117,11 @@ public static DocumentChainedPath CreateNewPathSubsystemDocument(string newLinkP #### Parameters -`newLinkPathFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newLinkPathFilePath` string The file path of new path subsystem. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. The default value is SubsystemChainPath. @@ -138,13 +139,13 @@ The length unit of kernel. The default value is mm. #### Returns - DocumentChainedPath + [DocumentChainedPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/DocumentChainedPath.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newLinkPathFilePath' argument is null. @@ -158,11 +159,11 @@ public static MeshDocumentChainedSegment CreateNewSegmentMeshDocument(string new #### Parameters -`newLinkSegmentFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newLinkSegmentFilePath` string The file path of new segment mesh. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. The default value is MeshChainSegment. @@ -180,13 +181,13 @@ The length unit of kernel. The default value is mm. #### Returns - MeshDocumentChainedSegment + [MeshDocumentChainedSegment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/MeshDocumentChainedSegment.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newLinkSegmentFilePath' argument is null. @@ -200,11 +201,11 @@ public static PartDocumentChainedSegment CreateNewSegmentPartDocument(string new #### Parameters -`newLinkSegmentFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newLinkSegmentFilePath` string The file path of new segment part. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. The default value is PartChainSegment. @@ -222,13 +223,13 @@ The length unit of kernel. The default value is mm. #### Returns - PartDocumentChainedSegment + [PartDocumentChainedSegment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/PartDocumentChainedSegment.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newLinkSegmentFilePath' argument is null. @@ -242,11 +243,11 @@ public static DocumentChainedSegment CreateNewSegmentSubsystemDocument(string ne #### Parameters -`newLinkSegmentFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`newLinkSegmentFilePath` string The file path of new segment subsystem. -`documentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentName` string The name of document. The default value is SubsystemChainSegment. @@ -264,13 +265,13 @@ The length unit of kernel. The default value is mm. #### Returns - DocumentChainedSegment + [DocumentChainedSegment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/DocumentChainedSegment.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'newLinkSegmentFilePath' argument is null. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.PathData.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.PathData.md index 2a42eb8075..799ac5220e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.PathData.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.PathData.md @@ -1,4 +1,5 @@ -# Struct PathData +# Struct PathData + Namespace: [VM.API.Pre.Links](VM.API.Pre.Links.md) Assembly: VM.API.Pre.Links.dll @@ -29,15 +30,15 @@ public PathData(MTL.PathData.PathType pathType, Obj marker, ExpressionValueVaria #### Parameters -`pathType` MTL.PathData.PathType +`pathType` [MTL](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTrackBase/MTL.cs).[PathData](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTrackBase/MTL.cs).[PathType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTrackBase/MTL.cs) The path type. -`marker` Obj +`marker` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The marker. -`windingRadius` ExpressionValueVariable +`windingRadius` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The winding radius. @@ -53,7 +54,7 @@ public Obj Marker { readonly get; set; } #### Property Value - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) ### TypeOfPath @@ -65,7 +66,7 @@ public MTL.PathData.PathType TypeOfPath { readonly get; set; } #### Property Value - MTL.PathData.PathType + [MTL](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTrackBase/MTL.cs).[PathData](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTrackBase/MTL.cs).[PathType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTrackBase/MTL.cs) ### WindingRadius @@ -77,5 +78,5 @@ public ExpressionValueVariable WindingRadius { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.ScrewHandType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.ScrewHandType.md index 97e27eddea..bdadcd4404 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.ScrewHandType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.ScrewHandType.md @@ -1,4 +1,5 @@ -# Enum ScrewHandType +# Enum ScrewHandType + Namespace: [VM.API.Pre.Links](VM.API.Pre.Links.md) Assembly: VM.API.Pre.Links.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.TrackedSystemAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.TrackedSystemAPI.md index d5fde4da85..cc85e1ac2e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.TrackedSystemAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.TrackedSystemAPI.md @@ -1,4 +1,5 @@ -# Class TrackedSystemAPI +# Class TrackedSystemAPI + Namespace: [VM.API.Pre.Links](VM.API.Pre.Links.md) Assembly: VM.API.Pre.Links.dll @@ -11,7 +12,7 @@ public static class TrackedSystemAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [TrackedSystemAPI](VM.API.Pre.Links.TrackedSystemAPI.md) #### Extension Methods @@ -35,39 +36,39 @@ public static IEnumerable AddPathObjectToDocument(this Obj trackPlacing, IE #### Parameters -`trackPlacing` Obj +`trackPlacing` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The track placing to add object. -`paths` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`paths` IEnumerable<[Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)\> The paths. -`pathDocuments` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`pathDocuments` IEnumerable The path data documents. #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) + IEnumerable<[Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)\> The new path list #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'trackPlacing' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'trackPlacing' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'paths', 'pathDocuments' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if length of 'paths' and length of 'pathDocuments' are not equal. @@ -81,31 +82,31 @@ public static Obj CreateDouble(this DocumentChainedSegment document, string body #### Parameters -`document` DocumentChainedSegment +`document` [DocumentChainedSegment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/DocumentChainedSegment.cs) The document to create the double shoe solid body. -`bodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bodyName` string The name of the . If empty, default name starts with 'BD_' will be generated and used. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the new flat roller geometry. The default value is '0xBFAAAA' -`isInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isInterface` bool 'true' if it is interface body. Otherwise, 'false'. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. @@ -119,23 +120,23 @@ public static Obj CreateDouble(this PartDocumentChainedSegment document, Color? #### Parameters -`document` PartDocumentChainedSegment +`document` [PartDocumentChainedSegment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/PartDocumentChainedSegment.cs) The document to create the double shoe body. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the new flat roller geometry. The default value is '0xBFAAAA' #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. @@ -149,31 +150,31 @@ public static Obj CreateSimple(this DocumentChainedSegment document, string body #### Parameters -`document` DocumentChainedSegment +`document` [DocumentChainedSegment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/DocumentChainedSegment.cs) The document to create the simple link solid body. -`bodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bodyName` string The name of the . If empty, default name starts with 'BD_' will be generated and used. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the new flat roller geometry. The default value is '0xBFAAAA' -`isInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isInterface` bool 'true' if it is interface body. Otherwise, 'false'. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. @@ -187,23 +188,23 @@ public static Obj CreateSimple(this PartDocumentChainedSegment document, Color? #### Parameters -`document` PartDocumentChainedSegment +`document` [PartDocumentChainedSegment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/PartDocumentChainedSegment.cs) The document to create the simple link body. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the new flat roller geometry. The default value is '0xBFAAAA' #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. @@ -217,31 +218,31 @@ public static Obj CreateSingle(this DocumentChainedSegment document, string body #### Parameters -`document` DocumentChainedSegment +`document` [DocumentChainedSegment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/DocumentChainedSegment.cs) The document to create the single shoe solid body. -`bodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bodyName` string The name of the . If empty, default name starts with 'BD_' will be generated and used. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the new flat roller geometry. The default value is '0xBFAAAA' -`isInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isInterface` bool 'true' if it is interface body. Otherwise, 'false'. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. @@ -255,23 +256,23 @@ public static Obj CreateSingle(this PartDocumentChainedSegment document, Color? #### Parameters -`document` PartDocumentChainedSegment +`document` [PartDocumentChainedSegment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/PartDocumentChainedSegment.cs) The document to create the single shoe body. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the new flat roller geometry. The default value is '0xBFAAAA' #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. @@ -286,23 +287,23 @@ public static Obj CreateTrackedSystem(this SubSystemDocument document, string na #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the tracked system. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the . If empty, default name starts with 'TPlacing_' will be generated and used. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. @@ -316,31 +317,31 @@ public static Obj CreateTriple(this DocumentChainedSegment document, string body #### Parameters -`document` DocumentChainedSegment +`document` [DocumentChainedSegment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/DocumentChainedSegment.cs) The document to create the triple shoe solid body. -`bodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bodyName` string The name of the . If empty, default name starts with 'BD_' will be generated and used. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the new flat roller geometry. The default value is '0xBFAAAA' -`isInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isInterface` bool 'true' if it is interface body. Otherwise, 'false'. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. @@ -354,23 +355,23 @@ public static Obj CreateTriple(this PartDocumentChainedSegment document, Color? #### Parameters -`document` PartDocumentChainedSegment +`document` [PartDocumentChainedSegment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/PartDocumentChainedSegment.cs) The document to create the triple shoe body. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the new flat roller geometry. The default value is '0xBFAAAA' #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. @@ -384,31 +385,31 @@ public static Obj CreateUserDefined(this DocumentChainedSegment document, string #### Parameters -`document` DocumentChainedSegment +`document` [DocumentChainedSegment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/DocumentChainedSegment.cs) The document to create the user-defined shoe solid body. -`bodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bodyName` string The name of the . If empty, default name starts with 'BD_' will be generated and used. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the new flat roller geometry. The default value is '0xBFAAAA' -`isInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isInterface` bool 'true' if it is interface body. Otherwise, 'false'. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. @@ -422,23 +423,23 @@ public static Obj CreateUserDefined(this PartDocumentChainedSegment document, Co #### Parameters -`document` PartDocumentChainedSegment +`document` [PartDocumentChainedSegment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/PartDocumentChainedSegment.cs) The document to create the user-defined shoe body. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the new flat roller geometry. The default value is '0xBFAAAA' #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. @@ -452,31 +453,31 @@ public static Obj CreateVType(this DocumentChainedSegment document, string bodyN #### Parameters -`document` DocumentChainedSegment +`document` [DocumentChainedSegment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/DocumentChainedSegment.cs) The document to create the V-type link solid body. -`bodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bodyName` string The name of the . If empty, default name starts with 'BD_' will be generated and used. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the new flat roller geometry. The default value is '0xBFAAAA' -`isInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isInterface` bool 'true' if it is interface body. Otherwise, 'false'. #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. @@ -490,23 +491,23 @@ public static Obj CreateVType(this PartDocumentChainedSegment document, Color? c #### Parameters -`document` PartDocumentChainedSegment +`document` [PartDocumentChainedSegment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/PartDocumentChainedSegment.cs) The document to create the V-type link body. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the new flat roller geometry. The default value is '0xBFAAAA' #### Returns - Obj + [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The new object that is created by this API. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. @@ -522,15 +523,15 @@ public static void ReplaceDesignPosition(this Obj segmentBody, Obj designPoint, #### Parameters -`segmentBody` Obj +`segmentBody` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The segment body. -`designPoint` Obj +`designPoint` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) The design point to be replaced. -`value` ExpressionValueVariable +`value` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The value to be replaced with axis. @@ -540,15 +541,15 @@ The transformation to be replaced. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'segmentBody','designPoint' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'segmentBody' is not or or or . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if type of 'designPoint' is not . @@ -563,9 +564,9 @@ public static void RestorePathToOriginPositionAndOrientation(this Obj trackPlaci #### Parameters -`trackPlacing` Obj +`trackPlacing` [Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs) -`paths` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`paths` IEnumerable<[Obj](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/API/VM.API.Pre/Models/Obj.cs)\> -`transforms` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`transforms` IEnumerable diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.md index 6c8892d177..077028d7a9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Links.md @@ -1,4 +1,5 @@ -# Namespace VM.API.Pre.Links +# Namespace VM.API.Pre.Links + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.MassUnitType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.MassUnitType.md index d188592cba..5221af16c5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.MassUnitType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.MassUnitType.md @@ -1,4 +1,5 @@ -# Enum MassUnitType +# Enum MassUnitType + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.MatchTypeObjAttribute.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.MatchTypeObjAttribute.md index 03e26338ab..4d8e560289 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.MatchTypeObjAttribute.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.MatchTypeObjAttribute.md @@ -1,4 +1,5 @@ -# Class MatchTypeObjAttribute +# Class MatchTypeObjAttribute + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -14,17 +15,17 @@ public class MatchTypeObjAttribute : ValidationAttribute #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Attribute](https://learn.microsoft.com/dotnet/api/system.attribute) ← -ValidationAttribute ← +object ← +Attribute ← +[ValidationAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs) ← [MatchTypeObjAttribute](VM.API.Pre.MatchTypeObjAttribute.md) #### Inherited Members -ValidationAttribute.CheckValidationCore\(Attribute\[\], MethodBase, object\[\]\), -ValidationAttribute.ValidationCondition\(ValidationAttribute, string, object\), -ValidationAttribute.ExecuteException\(string\), -ValidationAttribute.Names +[ValidationAttribute.CheckValidationCore\(Attribute\[\], MethodBase, object\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs), +[ValidationAttribute.ValidationCondition\(ValidationAttribute, string, object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs), +[ValidationAttribute.ExecuteException\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs), +[ValidationAttribute.Names](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs) #### Extension Methods @@ -52,7 +53,7 @@ public MatchTypeObjAttribute(params object[] list) #### Parameters -`list` [object](https://learn.microsoft.com/dotnet/api/system.object)\[\] +`list` object\[\] The target objects. @@ -81,15 +82,15 @@ public void CheckValidation(MethodBase method, object[] argument, Attribute[] tr #### Parameters -`method` [MethodBase](https://learn.microsoft.com/dotnet/api/system.reflection.methodbase) +`method` MethodBase The method. -`argument` [object](https://learn.microsoft.com/dotnet/api/system.object)\[\] +`argument` object\[\] The argument. -`triggers` [Attribute](https://learn.microsoft.com/dotnet/api/system.attribute)\[\] +`triggers` Attribute\[\] The triggers @@ -103,7 +104,7 @@ protected override void ExecuteException(string name) #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The argument name. @@ -117,21 +118,21 @@ protected override bool ValidationCondition(ValidationAttribute attribute, strin #### Parameters -`attribute` ValidationAttribute +`attribute` [ValidationAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs) The attribute. -`paramName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`paramName` string The parameter name. -`argument` [object](https://learn.microsoft.com/dotnet/api/system.object) +`argument` object The argument. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool The flag for success. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.MaterialAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.MaterialAPI.md index c64fa660e3..c739ca64c7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.MaterialAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.MaterialAPI.md @@ -1,4 +1,5 @@ -# Class MaterialAPI +# Class MaterialAPI + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class MaterialAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [MaterialAPI](VM.API.Pre.MaterialAPI.md) #### Extension Methods @@ -37,31 +38,31 @@ public static Obj CreateArrudaBoyce(this IDocument document, string name, Expres The document to create the arruda-boyce material. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the arruda-boyce material. -`density` ExpressionValueVariable +`density` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The density of the arruda-boyce material. -`dampingRatio` ExpressionValueVariable +`dampingRatio` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The stiffness proportional damping ratio for the nodal flexible and EasyFlex bodies. -`disableHScaleFactor` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`disableHScaleFactor` bool A value indicating whether to disable H Scale factor or not. -`mu` ExpressionValueVariable +`mu` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The mu to set the elastic constant which is corresponding to the shear modulus in the linear material. -`lambda` ExpressionValueVariable +`lambda` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The lambda to set the locking stretch. -`d` ExpressionValueVariable +`d` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The d to set the incompressibility parameter to determine a penalty of the volume constraint. @@ -73,11 +74,11 @@ The new . @@ -178,7 +179,7 @@ public static Obj CreateFoam(this IDocument document, string name) The document to create the foam material. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the foam material. @@ -205,47 +206,47 @@ public static Obj CreateISO(this IDocument document, string name, ExpressionValu The document to create the iso material. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the iso material. -`density` ExpressionValueVariable +`density` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The density of the iso material. -`dampingRatio` ExpressionValueVariable +`dampingRatio` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The stiffness proportional damping ratio for the nodal flexible and EasyFlex bodies. -`disableHScaleFactor` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`disableHScaleFactor` bool A value indicating whether to disable H Scale factor or not. -`youngsModulus` ExpressionValueVariable +`youngsModulus` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The Young's modulus of the iso material. -`shearModulus` ExpressionValueVariable +`shearModulus` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The shear modulus of the iso material. -`poissonRatio` ExpressionValueVariable +`poissonRatio` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The Poisson's ratio of the iso material. -`thermalExpansionCoefficient` ExpressionValueVariable +`thermalExpansionCoefficient` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The thermal expansion coefficient of the iso material. -`thermalConductivity` ExpressionValueVariable +`thermalConductivity` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The thermal conductivity of the iso material. -`specificHeat` ExpressionValueVariable +`specificHeat` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The specific heat of the iso material. -`referenceTemperature` ExpressionValueVariable +`referenceTemperature` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The initial temperature of the iso material. @@ -257,15 +258,15 @@ The new #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'density', 'dampingRatio', 'youngsModulus', 'shearModulus', 'poissonRatio' values less than 0. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException Will be thrown if 'poissonRatio' value is less than 0 or equal to 0.5 or more than 0.5. @@ -283,7 +284,7 @@ public static Obj CreateISO(this IDocument document, string name) The document to create the iso material. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the iso material. @@ -310,19 +311,19 @@ public static Obj CreateISONonlinearThermal(this IDocument document, string name The document to create the iso nonlinear thermal material. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the iso nonlinear thermal material. -`density` ExpressionValueVariable +`density` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The density of the iso nonlinear thermal material. -`dampingRatio` ExpressionValueVariable +`dampingRatio` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The stiffness proportional damping ratio for the nodal flexible and EasyFlex bodies. -`disableHScaleFactor` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`disableHScaleFactor` bool A value indicating whether to disable H Scale factor or not. @@ -330,7 +331,7 @@ A value indicating whether to disable H Scale factor or not. The Young's modulus spline of the iso nonlinear thermal material. -`poissonRatio` ExpressionValueVariable +`poissonRatio` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The Poisson's ratio of the iso nonlinear thermal material. @@ -346,7 +347,7 @@ The thermal conductivity spline of the iso nonlinear thermal material. The specific heat spline of the iso nonlinear thermal material. -`referenceTemperature` ExpressionValueVariable +`referenceTemperature` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The initial temperature of the iso nonlinear thermal material. @@ -358,15 +359,15 @@ The new . @@ -915,7 +916,7 @@ public static Obj CreatePlasticMultilinear(this IDocument document, string name, The document to create the plastic multi-linear material. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the plastic multi-linear material. @@ -944,7 +945,7 @@ public static Obj CreateSplineForMaterial(this Obj material, IEnumerable +`data` IEnumerable<[SplineData](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs).[Point](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs)\> The data of spline X, Y. @@ -956,19 +957,19 @@ The new o #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'material' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'material' argument is not empty and type of 'body' is not SolidBody or Body. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'material' is not and . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the document type of 'material' is not . diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.MeaureAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.MeaureAPI.md new file mode 100644 index 0000000000..053dcba9f9 --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.MeaureAPI.md @@ -0,0 +1,95 @@ +# Class MeaureAPI + + +Namespace: [VM.API.Pre](VM.API.Pre.md) +Assembly: VM.API.Pre.dll + +This class implements APIs for measure. + +```csharp +public static class MeaureAPI +``` + +#### Inheritance + +object ← +[MeaureAPI](VM.API.Pre.MeaureAPI.md) + +#### Extension Methods + +[LinkPropertyItemCache.GetLinkProperties\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkProperties\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkPropertiesAndValues\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkPropertiesAndValues\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkedObjects\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkedObjects\_\_1\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_) + +## Methods + +### GetMass\(SubSystemDocument, IEnumerable, out double, out double\[\]\) + +Get mass information given . + +```csharp +[NotNull(new string[] { "subSystemDocument", "objs" })] +public static void GetMass(this SubSystemDocument subSystemDocument, IEnumerable objs, out double mass, out double[] inertia) +``` + +#### Parameters + +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) + +The document to get mass. + +`objs` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> + +The collection of to get mass. + +`mass` double + +The total mass. + +`inertia` double\[\] + +The total inertia. + +#### Exceptions + + ArgumentNullException + +Will be thrown when the collection of objects is null. + +### GetMass\(SubSystemDocument, IEnumerable, TMatrix, out double, out double\[\]\) + +Get mass information given . + +```csharp +[NotNull(new string[] { "subSystemDocument", "objs" })] +public static void GetMass(this SubSystemDocument subSystemDocument, IEnumerable objs, TMatrix transform, out double mass, out double[] inertia) +``` + +#### Parameters + +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) + +The document to get mass. + +`objs` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> + +The collection of to get mass. + +`transform` TMatrix + +The transform. + +`mass` double + +The total mass. + +`inertia` double\[\] + +The total inertia. + +#### Exceptions + + ArgumentNullException + +Will be thrown when the collection of objects is null. + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.NotNullObjAttribute.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.NotNullObjAttribute.md index 9b8f3c1d64..3031b7f864 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.NotNullObjAttribute.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.NotNullObjAttribute.md @@ -1,4 +1,5 @@ -# Class NotNullObjAttribute +# Class NotNullObjAttribute + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -14,17 +15,17 @@ public class NotNullObjAttribute : ValidationAttribute #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Attribute](https://learn.microsoft.com/dotnet/api/system.attribute) ← -ValidationAttribute ← +object ← +Attribute ← +[ValidationAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs) ← [NotNullObjAttribute](VM.API.Pre.NotNullObjAttribute.md) #### Inherited Members -ValidationAttribute.CheckValidationCore\(Attribute\[\], MethodBase, object\[\]\), -ValidationAttribute.ValidationCondition\(ValidationAttribute, string, object\), -ValidationAttribute.ExecuteException\(string\), -ValidationAttribute.Names +[ValidationAttribute.CheckValidationCore\(Attribute\[\], MethodBase, object\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs), +[ValidationAttribute.ValidationCondition\(ValidationAttribute, string, object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs), +[ValidationAttribute.ExecuteException\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs), +[ValidationAttribute.Names](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs) #### Extension Methods @@ -52,7 +53,7 @@ public NotNullObjAttribute(params string[] names) #### Parameters -`names` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`names` string\[\] The target names. @@ -81,15 +82,15 @@ public void CheckValidation(MethodBase method, object[] argument, Attribute[] tr #### Parameters -`method` [MethodBase](https://learn.microsoft.com/dotnet/api/system.reflection.methodbase) +`method` MethodBase The method. -`argument` [object](https://learn.microsoft.com/dotnet/api/system.object)\[\] +`argument` object\[\] The argument. -`triggers` [Attribute](https://learn.microsoft.com/dotnet/api/system.attribute)\[\] +`triggers` Attribute\[\] The triggers @@ -103,7 +104,7 @@ protected override void ExecuteException(string name) #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The argument name. @@ -117,21 +118,21 @@ protected override bool ValidationCondition(ValidationAttribute attribute, strin #### Parameters -`attribute` ValidationAttribute +`attribute` [ValidationAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs) The attribute. -`paramName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`paramName` string The parameter name. -`argument` [object](https://learn.microsoft.com/dotnet/api/system.object) +`argument` object The argument. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool The flag for success. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Obj.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Obj.md index 32986af3bd..d5b203fc38 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Obj.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Obj.md @@ -1,4 +1,5 @@ -# Struct Obj +# Struct Obj + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -42,7 +43,7 @@ public Obj(string name) #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of object. @@ -56,7 +57,7 @@ public Obj(string name, IContainer container) #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the object. @@ -66,7 +67,7 @@ The container of the object. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'name' or 'container' arguments are empty. @@ -80,7 +81,7 @@ public Obj(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr The key of the object. @@ -144,7 +145,7 @@ public static implicit operator Obj(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr #### Returns @@ -172,7 +173,7 @@ public static implicit operator Obj(string name) #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ObjectControlAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ObjectControlAPI.md index 78147c069f..d875028d27 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ObjectControlAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ObjectControlAPI.md @@ -1,4 +1,5 @@ -# Class ObjectControlAPI +# Class ObjectControlAPI + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class ObjectControlAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ObjectControlAPI](VM.API.Pre.ObjectControlAPI.md) #### Extension Methods @@ -34,7 +35,7 @@ public static void RotateObjectsDegree(IEnumerable objs, Vector position, V #### Parameters -`objs` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`objs` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> The collection of to rotate. @@ -46,17 +47,17 @@ The position of the axis. The direction vetor of the rotation axis. -`rotateAngleDegree` [double](https://learn.microsoft.com/dotnet/api/system.double) +`rotateAngleDegree` double The rotation angle. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown when the collection of objects is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of 'direction' is 0. @@ -71,7 +72,7 @@ public static void TransformObjects(IEnumerable objs, TMatrix transform) #### Parameters -`objs` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`objs` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> The collection of to transform. @@ -81,7 +82,7 @@ The Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -29,15 +30,15 @@ public OgdenContents(ExpressionValueVariable mu, ExpressionValueVariable alpha, #### Parameters -`mu` ExpressionValueVariable +`mu` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The Mu. -`alpha` ExpressionValueVariable +`alpha` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The Alpha. -`d` ExpressionValueVariable +`d` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The D. @@ -53,7 +54,7 @@ public ExpressionValueVariable Alpha { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### D @@ -65,7 +66,7 @@ public ExpressionValueVariable D { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Mu @@ -77,5 +78,5 @@ public ExpressionValueVariable Mu { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.OperationAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.OperationAPI.md index 7f238a945a..37fccf18d8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.OperationAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.OperationAPI.md @@ -1,4 +1,5 @@ -# Class OperationAPI +# Class OperationAPI + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class OperationAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OperationAPI](VM.API.Pre.OperationAPI.md) #### Extension Methods @@ -33,7 +34,7 @@ public static void ChangeEnableState(this Obj enableObj, bool isEnable = true) `enableObj` [Obj](VM.API.Pre.Obj.md) -`isEnable` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isEnable` bool ### ChangeEnableState\(IEnumerable, bool\) @@ -44,9 +45,9 @@ public static void ChangeEnableState(this IEnumerable enableObjs, bool isEn #### Parameters -`enableObjs` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`enableObjs` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> -`isEnable` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isEnable` bool ### ChangeInterface\(Obj, bool\) @@ -59,7 +60,7 @@ public static void ChangeInterface(this Obj interfaceObj, bool isInterface = fal `interfaceObj` [Obj](VM.API.Pre.Obj.md) -`isInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isInterface` bool ### ChangeVisibleState\(Obj, bool\) @@ -72,7 +73,7 @@ public static void ChangeVisibleState(this Obj visibleObj, bool isVisible = true `visibleObj` [Obj](VM.API.Pre.Obj.md) -`isVisible` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isVisible` bool ### ChangeVisibleState\(IEnumerable, bool\) @@ -83,9 +84,9 @@ public static void ChangeVisibleState(this IEnumerable visibleObjs, bool is #### Parameters -`visibleObjs` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`visibleObjs` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> -`isVisible` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isVisible` bool ### Delete\(Obj\) @@ -104,11 +105,11 @@ The entity to be deleted. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'entity' arguments are empty. - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if document of 'entity' arguments are empty. @@ -132,7 +133,7 @@ public static void Duplicate(this IEnumerable entities) #### Parameters -`entities` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`entities` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> ### Flip\(Obj\) @@ -154,7 +155,7 @@ public static void Flip(this IEnumerable entities) #### Parameters -`entities` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`entities` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> ### SetTransparency\(Obj, ExpressionValueVariable\) @@ -167,7 +168,7 @@ public static void SetTransparency(this Obj body, ExpressionValueVariable transp `body` [Obj](VM.API.Pre.Obj.md) -`transparency` ExpressionValueVariable +`transparency` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### UpdateCADName\(Obj, string\) @@ -181,7 +182,7 @@ public static void UpdateCADName(this Obj cadBody, string strName) `cadBody` [Obj](VM.API.Pre.Obj.md) -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string ### UpdateName\(Obj, string\) @@ -195,7 +196,7 @@ public static void UpdateName(this Obj nameObj, string strName) `nameObj` [Obj](VM.API.Pre.Obj.md) -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string ### UpdateSymmetric\(Obj, bool\) @@ -208,5 +209,5 @@ public static void UpdateSymmetric(this Obj symMgr, bool symmetric = true) `symMgr` [Obj](VM.API.Pre.Obj.md) -`symmetric` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`symmetric` bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.OutputChannelInputType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.OutputChannelInputType.md index 11286b9bf5..8ce115ad06 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.OutputChannelInputType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.OutputChannelInputType.md @@ -1,4 +1,5 @@ -# Enum OutputChannelInputType +# Enum OutputChannelInputType + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.PythonCodeAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.PythonCodeAPI.md index c3f7c6c484..1f52818d11 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.PythonCodeAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.PythonCodeAPI.md @@ -1,4 +1,5 @@ -# Class PythonCodeAPI +# Class PythonCodeAPI + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class PythonCodeAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PythonCodeAPI](VM.API.Pre.PythonCodeAPI.md) #### Extension Methods @@ -36,7 +37,7 @@ public static Obj[] ImportPythonCode(this Document document, params string[] add The to import python code -`additionalCodes` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`additionalCodes` string\[\] Additional pathes to python codes. @@ -48,7 +49,7 @@ Array of the created The to import python code -`codes` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`codes` IEnumerable Pathes to python codes. @@ -78,7 +79,7 @@ Array of the created Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public class Relative #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Relative](VM.API.Pre.Relative.md) #### Derived @@ -46,7 +47,7 @@ public Relative(Driver.DriverType type) #### Parameters -`type` Driver.DriverType +`type` [Driver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Driver.cs).[DriverType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Driver.cs) The driver type. @@ -62,5 +63,5 @@ public Driver.DriverType Type { get; set; } #### Property Value - Driver.DriverType + [Driver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Driver.cs).[DriverType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Driver.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.RelativeFunction.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.RelativeFunction.md index d8facefd92..2599c3519a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.RelativeFunction.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.RelativeFunction.md @@ -1,4 +1,5 @@ -# Class RelativeFunction +# Class RelativeFunction + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public class RelativeFunction : Relative #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Relative](VM.API.Pre.Relative.md) ← [RelativeFunction](VM.API.Pre.RelativeFunction.md) @@ -55,15 +56,15 @@ public RelativeFunction(Obj function, DriverFunction.MotionType motionType, Expr The function of the relative. -`motionType` DriverFunction.MotionType +`motionType` [DriverFunction](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Driver.cs).[MotionType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Driver.cs) The motion type of the relative. -`initAngle` ExpressionValueVariable +`initAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The initial angle of the relative. -`initAngularVel` ExpressionValueVariable +`initAngularVel` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The init angular vel of the relative. @@ -91,7 +92,7 @@ public ExpressionValueVariable InitAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### InitAngularVel @@ -103,7 +104,7 @@ public ExpressionValueVariable InitAngularVel { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MotionType @@ -115,5 +116,5 @@ public DriverFunction.MotionType MotionType { get; set; } #### Property Value - DriverFunction.MotionType + [DriverFunction](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Driver.cs).[MotionType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Driver.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.RelativeInitialCondition.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.RelativeInitialCondition.md index f87b277e42..9edbd35f60 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.RelativeInitialCondition.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.RelativeInitialCondition.md @@ -1,4 +1,5 @@ -# Class RelativeInitialCondition +# Class RelativeInitialCondition + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public class RelativeInitialCondition : Relative #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Relative](VM.API.Pre.Relative.md) ← [RelativeInitialCondition](VM.API.Pre.RelativeInitialCondition.md) @@ -45,11 +46,11 @@ public RelativeInitialCondition(ExpressionValueVariable initAngle, ExpressionVal #### Parameters -`initAngle` ExpressionValueVariable +`initAngle` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The initial angle of the relative. -`initAngularVel` ExpressionValueVariable +`initAngularVel` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The init angular vel of the relative. @@ -65,7 +66,7 @@ public ExpressionValueVariable InitAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### InitAngularVel @@ -77,5 +78,5 @@ public ExpressionValueVariable InitAngularVel { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.RelativeUserSubroutine.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.RelativeUserSubroutine.md index 7a1046ee0c..d8f09ccafd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.RelativeUserSubroutine.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.RelativeUserSubroutine.md @@ -1,4 +1,5 @@ -# Class RelativeUserSubroutine +# Class RelativeUserSubroutine + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public class RelativeUserSubroutine : Relative #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Relative](VM.API.Pre.Relative.md) ← [RelativeUserSubroutine](VM.API.Pre.RelativeUserSubroutine.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.RequestAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.RequestAPI.md index 221e7d1f8e..c39c56036c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.RequestAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.RequestAPI.md @@ -1,4 +1,5 @@ -# Class RequestAPI +# Class RequestAPI + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class RequestAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [RequestAPI](VM.API.Pre.RequestAPI.md) #### Extension Methods @@ -33,11 +34,11 @@ public static Obj CreateConnectedEntityRequest(this SubSystemDocument subSystemD #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) `actionEntity` [Obj](VM.API.Pre.Obj.md) -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns @@ -52,11 +53,11 @@ public static void CreateEntitiesRequest(this SubSystemDocument subSystemDocumen #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) `actionEntities` [Obj](VM.API.Pre.Obj.md)\[\] -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string ### CreateEntityRequest\(SubSystemDocument, Obj, string\) @@ -69,11 +70,11 @@ public static Obj CreateEntityRequest(this SubSystemDocument subSystemDocument, #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) `actionEntity` [Obj](VM.API.Pre.Obj.md) -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns @@ -89,17 +90,17 @@ public static Obj CreateKinematicRequest(this SubSystemDocument subSystemDocumen #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) `actionEntity` [Obj](VM.API.Pre.Obj.md) -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string `baseEntity` [Obj](VM.API.Pre.Obj.md)? `referenceMarker` [Obj](VM.API.Pre.Obj.md)? -`outputType` RequestKinematic.OutputType? +`outputType` [RequestKinematic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/RequestKinematic.cs).[OutputType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/RequestKinematic.cs)? #### Returns @@ -115,15 +116,15 @@ public static Obj CreateStructuralRequest(this SubSystemDocument subSystemDocume #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) `actionEntity` [Obj](VM.API.Pre.Obj.md) -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string -`sideFilter` RequestStructure.SideFilter +`sideFilter` [RequestStructure](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/RequestStructure.cs).[SideFilter](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/RequestStructure.cs) -`outputType` RequestStructure.OutputType? +`outputType` [RequestStructure](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/RequestStructure.cs).[OutputType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/RequestStructure.cs)? #### Returns diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Restriction.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Restriction.md index 17d6a7e59f..3e4fbfb4f0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Restriction.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.Restriction.md @@ -1,4 +1,5 @@ -# Struct Restriction +# Struct Restriction + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -29,11 +30,11 @@ public Restriction(ExpressionValueVariable plus, ExpressionValueVariable minus) #### Parameters -`plus` ExpressionValueVariable +`plus` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The plus. -`minus` ExpressionValueVariable +`minus` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The minus. @@ -49,7 +50,7 @@ public ExpressionValueVariable Minus { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Plus @@ -61,5 +62,5 @@ public ExpressionValueVariable Plus { readonly get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ResultType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ResultType.md index 75b79b8543..52695bb66f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ResultType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ResultType.md @@ -1,4 +1,5 @@ -# Enum ResultType +# Enum ResultType + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ScenarioActivateType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ScenarioActivateType.md index 7e9bcaec0e..1259446498 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ScenarioActivateType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ScenarioActivateType.md @@ -1,4 +1,5 @@ -# Enum ScenarioActivateType +# Enum ScenarioActivateType + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ScenarioBodyType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ScenarioBodyType.md index 2de883eb43..7ac98c9b7c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ScenarioBodyType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ScenarioBodyType.md @@ -1,4 +1,5 @@ -# Enum ScenarioBodyType +# Enum ScenarioBodyType + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ScenarioFileType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ScenarioFileType.md index 70ea7132cd..bbd3444a00 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ScenarioFileType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ScenarioFileType.md @@ -1,4 +1,5 @@ -# Enum ScenarioFileType +# Enum ScenarioFileType + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ScenarioOutputType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ScenarioOutputType.md index 9e66e9b09a..9613b0f3ae 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ScenarioOutputType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.ScenarioOutputType.md @@ -1,4 +1,5 @@ -# Enum ScenarioOutputType +# Enum ScenarioOutputType + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.SetColorType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.SetColorType.md index 859b9a83ee..d363b1f31c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.SetColorType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.SetColorType.md @@ -1,4 +1,5 @@ -# Enum SetColorType +# Enum SetColorType + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.SheetThickenAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.SheetThickenAPI.md index 4d1f587a2a..ad39b88420 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.SheetThickenAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.SheetThickenAPI.md @@ -1,4 +1,5 @@ -# Class SheetThickenAPI +# Class SheetThickenAPI + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class SheetThickenAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SheetThickenAPI](VM.API.Pre.SheetThickenAPI.md) #### Extension Methods @@ -33,9 +34,9 @@ public static void GenerateSolidFromSheet(this IDocument document, IEnumerable +`sheets` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> -`thickness` ExpressionValueVariable? +`thickness` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? `direction` BuilderSheetThicken.DirectionType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.SimulationAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.SimulationAPI.md index fd958700d4..7aa1af9160 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.SimulationAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.SimulationAPI.md @@ -1,4 +1,5 @@ -# Class SimulationAPI +# Class SimulationAPI + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class SimulationAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SimulationAPI](VM.API.Pre.SimulationAPI.md) #### Extension Methods @@ -34,11 +35,11 @@ public static void ExportDFG(this DocumentAnalysis document, string targetPath) #### Parameters -`document` DocumentAnalysis +`document` [DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) The for exporting DFG file. If null, the active document will be used. -`targetPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`targetPath` string The file path to export DFG file exclude file extension. @@ -54,11 +55,11 @@ public static void ExportDFS(this DocumentAnalysis document, string targetPath) #### Parameters -`document` DocumentAnalysis +`document` [DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) The for exporting DFS file. If null, the active document will be used. -`targetPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`targetPath` string The file path to export DFS file exclude file extension. @@ -74,14 +75,50 @@ public static void ExportDFSXML(this DocumentAnalysis document, string targetPat #### Parameters -`document` DocumentAnalysis +`document` [DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) The for exporting DFSXML file. If null, the active document will be used. -`targetPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`targetPath` string The file path to export DFSXML file exclude file extension. +### ExportMotionFiles\(DocumentAnalysis, string, bool, bool, bool, bool\) + +Export motion files. + +```csharp +[NotNull(new string[] { "document" })] +[NotNullOrEmpty(new string[] { "targetPath" })] +public static void ExportMotionFiles(this DocumentAnalysis document, string targetPath, bool writeDFS, bool writeXML, bool writeDFG, bool includeReferenceFiles) +``` + +#### Parameters + +`document` [DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) + +The for exporting motion files. If null, the active document will be used. + +`targetPath` string + +The file path to export motion files exclude file extension. + +`writeDFS` bool + +The flag for whether to write on dfs or not. + +`writeXML` bool + +The flag for whether to write on dfsxml or not. + +`writeDFG` bool + +The flag for whether to write on dfg or not. + +`includeReferenceFiles` bool + +The flag for whether to include reference files or not. + ### RunSimulation\(DocumentAnalysis, SimulationParameter\) Run simulation. @@ -93,14 +130,32 @@ public static void RunSimulation(this DocumentAnalysis document, SimulationRun.S #### Parameters -`document` DocumentAnalysis +`document` [DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) The for simulate. If null, the active document will be used. -`simulationParameter` SimulationRun.SimulationParameter +`simulationParameter` [SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs).[SimulationParameter](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) The simulation parameter. +### SetAutoPostRunner\(SubSystemDocument, bool\) + +Sets the solver commands. + +```csharp +public static void SetAutoPostRunner(this SubSystemDocument subSystemDocument, bool autoPostRunner) +``` + +#### Parameters + +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) + +The document to set the solver commands. + +`autoPostRunner` bool + +The flag of auto post runner. + ### SetDynamicNumericalDamping\(SubSystemDocument, double\) Sets the dynamic numerical damping. @@ -111,14 +166,32 @@ public static void SetDynamicNumericalDamping(this SubSystemDocument subSystemDo #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to set the dynamic numerical damping. -`numericalDamping` [double](https://learn.microsoft.com/dotnet/api/system.double) +`numericalDamping` double The value of numerical damping. +### SetSolverCommands\(SubSystemDocument, string\) + +Sets the solver commands. + +```csharp +public static void SetSolverCommands(this SubSystemDocument subSystemDocument, string commands) +``` + +#### Parameters + +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) + +The document to set the solver commands. + +`commands` string + +The value of solver commands. + ### SetStaticNumericalDamping\(SubSystemDocument, double\) Sets the static numerical damping. @@ -129,11 +202,11 @@ public static void SetStaticNumericalDamping(this SubSystemDocument subSystemDoc #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to set the static numerical damping. -`numericalDamping` [double](https://learn.microsoft.com/dotnet/api/system.double) +`numericalDamping` double The value of numerical damping. @@ -147,11 +220,11 @@ public static void SetThermalNumericalDamping(this SubSystemDocument subSystemDo #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to set the thermal numerical damping. -`numericalDamping` [double](https://learn.microsoft.com/dotnet/api/system.double) +`numericalDamping` double The value of numerical damping. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.SimulationScenarioAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.SimulationScenarioAPI.md index 5df5362174..af0b501120 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.SimulationScenarioAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.SimulationScenarioAPI.md @@ -1,4 +1,5 @@ -# Class SimulationScenarioAPI +# Class SimulationScenarioAPI + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class SimulationScenarioAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SimulationScenarioAPI](VM.API.Pre.SimulationScenarioAPI.md) #### Extension Methods @@ -34,7 +35,7 @@ public static Obj CreateSimulationScenarioForActivate(this SubSystemDocument doc #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the simulation scenario. @@ -42,15 +43,15 @@ The document to create the simulation scenario. The enable target of the simulation scenario. -`referenceValue` ExpressionValueVariable? +`referenceValue` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The value of the simulation scenario. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the simulation scenario. -`sensorType` Scenario.Sensor +`sensorType` [Scenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs).[Sensor](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs) The sensor type of the simulation scenario. @@ -58,7 +59,7 @@ The sensor type of the simulation scenario. The function of the simulation scenario. -`sign` Scenario.Sign +`sign` [Scenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs).[Sign](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs) The sign type of the simulation scenario. @@ -66,7 +67,7 @@ The sign type of the simulation scenario. The action type of the simulation scenario. -`subTarget` Scenario.Motion +`subTarget` [Scenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs).[Motion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs) The sub target of the simulation scenario. @@ -78,15 +79,15 @@ The new . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'target' is not . @@ -102,7 +103,7 @@ public static Obj CreateSimulationScenarioForBody(this SubSystemDocument documen #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the simulation scenario. @@ -110,15 +111,15 @@ The document to create the simulation scenario. The enable target of the simulation scenario. -`referenceValue` ExpressionValueVariable? +`referenceValue` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The value of the simulation scenario. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the simulation scenario. -`sensorType` Scenario.Sensor +`sensorType` [Scenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs).[Sensor](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs) The sensor type of the simulation scenario. @@ -126,7 +127,7 @@ The sensor type of the simulation scenario. The function of the simulation scenario. -`sign` Scenario.Sign +`sign` [Scenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs).[Sign](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs) The sign type of the simulation scenario. @@ -142,15 +143,15 @@ The new . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'target' is not or if the type of target's analysisType is not . @@ -166,23 +167,23 @@ public static Obj CreateSimulationScenarioForFile(this SubSystemDocument documen #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the simulation scenario. -`targetFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`targetFilePath` string The ICF file path of the simulation scenario. -`referenceValue` ExpressionValueVariable? +`referenceValue` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The value of the simulation scenario. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the simulation scenario. -`sensorType` Scenario.Sensor +`sensorType` [Scenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs).[Sensor](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs) The sensor type of the simulation scenario. @@ -190,7 +191,7 @@ The sensor type of the simulation scenario. The function of the simulation scenario. -`sign` Scenario.Sign +`sign` [Scenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs).[Sign](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs) The sign type of the simulation scenario. @@ -206,11 +207,11 @@ The new . @@ -225,23 +226,23 @@ public static Obj CreateSimulationScenarioForOutput(this SubSystemDocument docum #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the simulation scenario. -`target` ExpressionValueVariable? +`target` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The action value of the simulation scenario. -`referenceValue` ExpressionValueVariable? +`referenceValue` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The value of the simulation scenario. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the simulation scenario. -`sensorType` Scenario.Sensor +`sensorType` [Scenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs).[Sensor](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs) The sensor type of the simulation scenario. @@ -249,7 +250,7 @@ The sensor type of the simulation scenario. The function of the simulation scenario. -`sign` Scenario.Sign +`sign` [Scenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs).[Sign](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs) The sign type of the simulation scenario. @@ -265,11 +266,11 @@ The new . @@ -284,19 +285,19 @@ public static Obj CreateSimulationScenarioForStop(this SubSystemDocument documen #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the simulation scenario. -`referenceValue` ExpressionValueVariable? +`referenceValue` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The value of the simulation scenario. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of the simulation scenario. -`sensorType` Scenario.Sensor +`sensorType` [Scenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs).[Sensor](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs) The sensor type of the simulation scenario. @@ -304,7 +305,7 @@ The sensor type of the simulation scenario. The function of the simulation scenario. -`sign` Scenario.Sign +`sign` [Scenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs).[Sign](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs) The sign type of the simulation scenario. @@ -316,11 +317,11 @@ The new . diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.SolidBodyAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.SolidBodyAPI.md index 50d9db8606..886e8095b6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.SolidBodyAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.SolidBodyAPI.md @@ -1,4 +1,5 @@ -# Class SolidBodyAPI +# Class SolidBodyAPI + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class SolidBodyAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SolidBodyAPI](VM.API.Pre.SolidBodyAPI.md) #### Extension Methods @@ -44,11 +45,11 @@ The body analysis type to be changed. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'solidBody' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'solidBody' argument is not empty and type of 'solidBody' is not . @@ -71,7 +72,7 @@ The < The transformation matrix for a marker. -`markerName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`markerName` string The name of the marker. If empty, default name starts with 'MK_' will be generated and used. @@ -87,7 +88,7 @@ the new #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'solidBody' is null. @@ -107,27 +108,27 @@ public static Obj CreateMeshFile(this Obj body, string pathMeshFile, string noda The to generate mesh file. -`pathMeshFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`pathMeshFile` string Generated mesh file path. -`nodalBodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`nodalBodyName` string The name of the new nodal body. If empty, default name will be generated. -`importMeshAfterCreate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`importMeshAfterCreate` bool The flag that indicates importing new mesh file into the or not. -`addToModel` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`addToModel` bool The flag that indicates adding new mesh file to the model. -`createGroup` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`createGroup` bool The flag that indicates creating new group by using the solid body and the new nodal body. -`groupName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`groupName` string The name of the new group. @@ -143,7 +144,7 @@ The new NodalBody entity if importMeshAfterCreate flag is true. Otherwise, empty #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if body or pathMeshFile arguments are empty. @@ -159,7 +160,7 @@ public static Obj CreateSolidBlock(this SubSystemDocument document, Vector posit #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the block solid body. @@ -167,19 +168,19 @@ The document to create the block solid body. The position to create the block solid body. -`width` ExpressionValueVariable +`width` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The width of the block. -`height` ExpressionValueVariable +`height` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The height of the block. -`depth` ExpressionValueVariable +`depth` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The depth of the blodk. -`bodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bodyName` string The name of the . If empty, default name starts with 'BD_' will be generated and used. If booleanOperationType argument is other than 'None', this argument must be the existing name. @@ -187,7 +188,7 @@ The name of the will be created. otherwise, New block geometry will be merged to the existing which has same name with 'name' argument. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the new block geometry. The default value is '0xBFAAAA' @@ -195,7 +196,7 @@ The color of the new block geometry. The default value is '0xBFAAAA' The symmetric type of the new . -`isInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isInterface` bool 'true' if it is interface body. Otherwise, 'false'. @@ -207,11 +208,11 @@ The new . If empty, default name starts with 'BD_' will be generated and used. If booleanOperationType argument is other than 'None', this argument must be the existing name. @@ -255,7 +256,7 @@ public static Obj CreateSolidCylinder(this SubSystemDocument document, Vector bo #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the cylinder solid body. @@ -267,11 +268,11 @@ The bottom position to create the cylinder solid body. The top position to create the cylinder solid body. -`radius` ExpressionValueVariable +`radius` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The radius of the cylinder. -`bodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bodyName` string The name of the . If empty, default name starts with 'BD_' will be generated and used. If booleanOperationType argument is other than 'None', this argument must be the existing name. @@ -279,7 +280,7 @@ The name of the will be created. otherwise, New cylinder geometry will be merged to the existing which has same name with 'name' argument. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the new cylinder geometry. The default value is '0xBFAAAA' @@ -287,7 +288,7 @@ The color of the new cylinder geometry. The default value is '0xBFAAAA' The symmetric type of the new . -`isInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isInterface` bool 'true' if it is interface body. Otherwise, 'false'. @@ -299,15 +300,15 @@ The new . If empty, default name starts with 'BD_' will be generated and used. If booleanOperationType argument is other than 'None', this argument must be the existing name. @@ -355,7 +356,7 @@ public static Obj CreateSolidSphere(this SubSystemDocument document, Vector cent #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the sphere solid body. @@ -363,11 +364,11 @@ The document to create the sphere solid body. The center position to create the sphere solid body. -`radius` ExpressionValueVariable +`radius` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The radius of the sphere. -`bodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bodyName` string The name of the . If empty, default name starts with 'BD_' will be generated and used. If booleanOperationType argument is other than 'None', this argument must be the existing name. @@ -375,7 +376,7 @@ The name of the will be created. otherwise, New sphere geometry will be merged to the existing which has same name with 'name' argument. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the new sphere geometry. The default value is '0xBFAAAA' @@ -383,7 +384,7 @@ The color of the new sphere geometry. The default value is '0xBFAAAA' The symmetric type of the new . -`isInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isInterface` bool 'true' if it is interface body. Otherwise, 'false'. @@ -395,11 +396,11 @@ The new . If empty, default name starts with 'BD_' will be generated and used. If booleanOperationType argument is other than 'None', this argument must be the existing name. @@ -443,7 +444,7 @@ public static Obj CreateSolidTriPlate(this SubSystemDocument document, Vector fi #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the triplate solid body. @@ -459,11 +460,11 @@ The second position to create the triplate solid body. The third position to create the triplate solid body. -`height` ExpressionValueVariable +`height` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The height of the triplate. -`bodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bodyName` string The name of the . If empty, default name starts with 'BD_' will be generated and used. If booleanOperationType argument is other than 'None', this argument must be the existing name. @@ -471,7 +472,7 @@ The name of the will be created. otherwise, New triplate geometry will be merged to the existing which has same name with 'name' argument. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the new triplate geometry. The default value is '0xBFAAAA' @@ -479,7 +480,7 @@ The color of the new triplate geometry. The default value is '0xBFAAAA' The symmetric type of the new . -`isInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isInterface` bool 'true' if it is interface body. Otherwise, 'false'. @@ -491,15 +492,15 @@ The new . If empty, default name starts with 'BD_' will be generated and used. If booleanOperationType argument is other than 'None', this argument must be the existing name. @@ -556,11 +557,11 @@ The body to be updated. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'body' arguments are empty. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'body' argument is not empty and type of 'body' is not or . diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.SplineAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.SplineAPI.md index cf73568a14..e11f4aeb4f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.SplineAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.SplineAPI.md @@ -1,4 +1,5 @@ -# Class SplineAPI +# Class SplineAPI + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class SplineAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SplineAPI](VM.API.Pre.SplineAPI.md) #### Extension Methods @@ -37,19 +38,19 @@ public static Obj CreateSpline(this IDocument document, string name, IEnumerable The document to create the spline. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The point X, Y of the spline. -`splineData` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`splineData` IEnumerable<[SplineData](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs).[Point](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs)\> The density of the spline. -`scaleX` ExpressionValueVariable? +`scaleX` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The X scale of spline. -`scaleY` ExpressionValueVariable? +`scaleY` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The Y scale of spline. @@ -65,7 +66,7 @@ The new #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document', 'splineData' is null. @@ -84,23 +85,23 @@ public static Obj CreateSpline3D(this IDocument document, string name, Expressio The document to create the spline3D. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The point X, Y of the spline3D. -`points` ExpressionValueVariable\[,\] +`points` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\[,\] The points of the spline3D. -`scaleX` ExpressionValueVariable? +`scaleX` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The X scale of spline3D. -`scaleY` ExpressionValueVariable? +`scaleY` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The Y scale of spline3D. -`scaleZ` ExpressionValueVariable? +`scaleZ` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The Z scale of spline3D. @@ -116,11 +117,11 @@ The new #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document', 'selectedSplineName' is null. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.SplitAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.SplitAPI.md index ecb5442f10..34cc7c2323 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.SplitAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.SplitAPI.md @@ -1,4 +1,5 @@ -# Class SplitAPI +# Class SplitAPI + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class SplitAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SplitAPI](VM.API.Pre.SplitAPI.md) #### Extension Methods @@ -37,7 +38,7 @@ public static void SplitFaceWithCirclePlane(this IDocument document, IEnumerable The to split a face with circle plane. -`targetFaces` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`targetFaces` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> The target faces of a face with circle plane. @@ -49,25 +50,25 @@ The point of a face with circle plane. The direction of a face with circle plane. -`radius` ExpressionValueVariable? +`radius` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The radius of a face with circle plane. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document', 'targetFaces' argument is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'document' is not and . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'targetFaces' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the 'radius' value is equal to or less than 0. @@ -87,7 +88,7 @@ public static void SplitFaceWithImprintFaceAndBody(this IDocument document, IEnu The to split a face with imprint using face and body. -`targetFaces` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`targetFaces` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> The target faces of a face with imprint. @@ -95,25 +96,25 @@ The target faces of a face with imprint. The tool body of a face with imprint. -`parametric` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`parametric` bool The flag of parametric of a face with imprint. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document', 'targetFaces', 'toolBody' argument is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'document' is not and . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'targetFaces' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'toolBody' is not and . @@ -141,25 +142,25 @@ The target body of a face with imprint. The tool body of a face with imprint. -`parametric` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`parametric` bool The flag of parametric of a face with imprint. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document', 'targetBody', 'toolBody' argument is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'document' is not and . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'targetBody', 'toolBody' is not and . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the 'toolBody' is equal to the 'targetBody'. @@ -178,29 +179,29 @@ public static void SplitFaceWithImprintTwoFaces(this IDocument document, IEnumer The to split a face with imprint using two faces. -`targetFaces` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`targetFaces` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> The target faces of a face with imprint. -`toolFaces` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`toolFaces` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> The tool faces of a face with imprint. -`parametric` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`parametric` bool The flag of parametric of a face with imprint. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document', 'targetFaces', 'toolFaces' argument is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'document' is not and . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'targetFaces', 'toolFaces' is not . @@ -219,7 +220,7 @@ public static void SplitFaceWithRectanglePlane(this IDocument document, IEnumera The to split a face with rectangle plane. -`targetFaces` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`targetFaces` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> The target faces of a face with rectangle plane. @@ -231,33 +232,33 @@ The point of a face with rectangle plane. The transform of a face with rectangle plane. -`width` ExpressionValueVariable? +`width` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The width of a face with rectangle plane. -`height` ExpressionValueVariable? +`height` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The height of a face with rectangle plane. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document', 'targetFaces' argument is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'document' is not and . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'targetFaces' is not . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the magnitude of transform X, Y, Z values is equal to 0. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if 'width', 'height' values are equal to or less than 0. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.StringAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.StringAPI.md index 279439cf79..3f84b68b19 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.StringAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.StringAPI.md @@ -1,4 +1,5 @@ -# Class StringAPI +# Class StringAPI + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class StringAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [StringAPI](VM.API.Pre.StringAPI.md) #### Extension Methods @@ -33,23 +34,23 @@ public static Obj CreateString(this SubSystemDocument document, string name = "" #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create the string. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of string. -`folderPath` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`folderPath` bool The flag of folder path. -`stringVal` [string](https://learn.microsoft.com/dotnet/api/system.string) +`stringVal` string The value of string. -`isInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isInterface` bool The flag of interface. @@ -61,7 +62,7 @@ The new < #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document' is null. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.SubsystemAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.SubsystemAPI.md index 4a014a0e4e..03c67d78d1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.SubsystemAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.SubsystemAPI.md @@ -1,4 +1,5 @@ -# Class SubsystemAPI +# Class SubsystemAPI + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class SubsystemAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SubsystemAPI](VM.API.Pre.SubsystemAPI.md) #### Extension Methods @@ -38,7 +39,7 @@ public static Obj CreateSubSystem(this Document document, string subsystemFilePa The document to create the subsystem. -`subsystemFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`subsystemFilePath` string The file path of imported subsystem document @@ -46,7 +47,7 @@ The file path of imported subsystem document The transformation matrix for a subsystem. -`subsystemName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`subsystemName` string The name of the subsystem. If empty, default name starts with 'SubSystem_' will be generated and used. @@ -58,11 +59,11 @@ The new Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class SwitchableBodyAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SwitchableBodyAPI](VM.API.Pre.SwitchableBodyAPI.md) #### Extension Methods @@ -33,11 +34,11 @@ public static Obj CreateSwitchableBody(this SubSystemDocument doc, IEnumerable to create a switchable body. -`bodies` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`bodies` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> The connectable bodies of a switchable body. @@ -45,7 +46,7 @@ The connectable bodies of a switchable body. The selected connectable body of a switchable body. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a switchable body. @@ -61,15 +62,15 @@ The new . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the element of 'bodies' does not contain 'selectedBody'. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.TimeUnitType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.TimeUnitType.md index e77b5f8559..abc69e3d92 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.TimeUnitType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.TimeUnitType.md @@ -1,4 +1,5 @@ -# Enum TimeUnitType +# Enum TimeUnitType + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.TireAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.TireAPI.md index eb64ac80cb..4e6b7bc1d2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.TireAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.TireAPI.md @@ -1,4 +1,5 @@ -# Class TireAPI +# Class TireAPI + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class TireAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [TireAPI](VM.API.Pre.TireAPI.md) #### Extension Methods @@ -34,15 +35,15 @@ public static Obj CreateTire(this SubSystemDocument subSystemDocument, string ro #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to create a tire force. -`roadFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`roadFile` string The road file of a tire force. -`tirePropertyFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`tirePropertyFile` string The tire property file of a tire force. @@ -50,43 +51,43 @@ The tire property file of a tire force. The transform of a tire force. -`side` WheelBodyBase.SideType +`side` [WheelBodyBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs).[SideType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs) The side of a tire force. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a leaf spring. -`cmOffset` ExpressionValueVariable? +`cmOffset` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The CM Offset of a tire force. -`mass` ExpressionValueVariable? +`mass` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The mass of a tire force. -`lxxlyy` ExpressionValueVariable? +`lxxlyy` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The lxxlyy of a tire force. -`lzz` ExpressionValueVariable? +`lzz` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The lzz of a tire force. -`wheelCenterOffset` ExpressionValueVariable? +`wheelCenterOffset` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The wheel center offset of a tire force. -`longitudinalVelocity` ExpressionValueVariable? +`longitudinalVelocity` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The longitudinal velocity of a tire force. -`spinVelocity` ExpressionValueVariable? +`spinVelocity` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)? The spin velocity of a tire force. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of a tire force. @@ -94,7 +95,7 @@ The color of a tire force. The symmetric type of the new . -`isInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isInterface` bool 'true' if it is interface body. Otherwise, 'false'. @@ -106,19 +107,19 @@ the new to reload a wheel body info. -`strBodyInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBodyInfo` string The string body information of a wheel. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'wheelBodyBase' is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'wheelBodyBase' is not . diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.TopologyAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.TopologyAPI.md index 723b96ea12..c4b81504d5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.TopologyAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.TopologyAPI.md @@ -1,4 +1,5 @@ -# Class TopologyAPI +# Class TopologyAPI + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class TopologyAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [TopologyAPI](VM.API.Pre.TopologyAPI.md) #### Extension Methods @@ -37,11 +38,11 @@ public static void ChangeEdgeColor(this IDocument document, IEnumerable edg The document to change the topology edge. -`edges` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`edges` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> The edges of the topology. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the topology. @@ -51,15 +52,15 @@ The falg of color setting of the topology. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document', 'edges' argument is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'document' is not and . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'edges' is not . @@ -78,11 +79,11 @@ public static void ChangeFaceColor(this IDocument document, IEnumerable fac The document to change the topology face. -`faces` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`faces` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> The faces of the topology. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)? +`color` Color? The color of the topology. @@ -92,15 +93,15 @@ The falg of color setting of the topology. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException Will be thrown if 'document', 'faces' argument is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'document' is not and . - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException Will be thrown if the type of 'faces' is not . diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.UserSubroutineAPI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.UserSubroutineAPI.md index 84fe76991c..271d016119 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.UserSubroutineAPI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.UserSubroutineAPI.md @@ -1,4 +1,5 @@ -# Class UserSubroutineAPI +# Class UserSubroutineAPI + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -11,7 +12,7 @@ public static class UserSubroutineAPI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [UserSubroutineAPI](VM.API.Pre.UserSubroutineAPI.md) #### Extension Methods @@ -34,35 +35,35 @@ public static Obj CreateUserSubroutine(this SubSystemDocument document, string f #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to create a user subroutine. -`functionName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`functionName` string The function name of a user subroutine. -`dllName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`dllName` string The dll name of the user subroutine. the input file type is 'dll' or 'so'. -`parameter` [string](https://learn.microsoft.com/dotnet/api/system.string) +`parameter` string The parameter of a user subroutine.. -`results` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[UserSubroutineResult](VM.API.Pre.UserSubroutineResult.md)\> +`results` IEnumerable<[UserSubroutineResult](VM.API.Pre.UserSubroutineResult.md)\> The results of a user subroutine. -`arguments` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Obj](VM.API.Pre.Obj.md)\> +`arguments` IEnumerable<[Obj](VM.API.Pre.Obj.md)\> The expressions of a user subroutine.. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of a user subroutine. -`isReportOnly` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isReportOnly` bool 'true' if it is report Only. Otherwise, 'false'. @@ -70,7 +71,7 @@ The name of a user subroutine. The symmetric type of the new -`isInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isInterface` bool 'true' if it is interface body. Otherwise, 'false'. @@ -82,15 +83,15 @@ The new . diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.UserSubroutineResult.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.UserSubroutineResult.md index 99ef81254e..10c8def049 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.UserSubroutineResult.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.UserSubroutineResult.md @@ -1,4 +1,5 @@ -# Struct UserSubroutineResult +# Struct UserSubroutineResult + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -29,11 +30,11 @@ public UserSubroutineResult(string name, bool usePerformanceIndex) #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name. -`usePerformanceIndex` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`usePerformanceIndex` bool The use performanceIndex. @@ -49,7 +50,7 @@ public string Name { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UsePerformanceIndex @@ -61,5 +62,5 @@ public bool UsePerformanceIndex { readonly get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.VectorFunctions.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.VectorFunctions.md index e97daf146d..ce6f90d95d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.VectorFunctions.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.VectorFunctions.md @@ -1,4 +1,5 @@ -# Struct VectorFunctions +# Struct VectorFunctions + Namespace: [VM.API.Pre](VM.API.Pre.md) Assembly: VM.API.Pre.dll @@ -31,7 +32,7 @@ public Function FunctionFX { readonly get; set; } #### Property Value - Function + [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) ### FunctionFY @@ -43,7 +44,7 @@ public Function FunctionFY { readonly get; set; } #### Property Value - Function + [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) ### FunctionFZ @@ -55,7 +56,7 @@ public Function FunctionFZ { readonly get; set; } #### Property Value - Function + [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) ### FunctionTX @@ -67,7 +68,7 @@ public Function FunctionTX { readonly get; set; } #### Property Value - Function + [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) ### FunctionTY @@ -79,7 +80,7 @@ public Function FunctionTY { readonly get; set; } #### Property Value - Function + [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) ### FunctionTZ @@ -91,5 +92,5 @@ public Function FunctionTZ { readonly get; set; } #### Property Value - Function + [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.md index 1dce9ce09f..e4e3fcd1f4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.API.Pre.md @@ -1,4 +1,5 @@ -# Namespace VM.API.Pre +# Namespace VM.API.Pre + ### Namespaces @@ -144,6 +145,10 @@ This class implements attribute for Object of argument is not null. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.AdditionModes.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.AdditionModes.md index 9bd2ea983a..4afbcde7eb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.AdditionModes.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.AdditionModes.md @@ -1,4 +1,5 @@ -# Enum AdditionModes +# Enum AdditionModes + Namespace: [VM](VM.md) Assembly: VM.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.AngleTypes.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.AngleTypes.md index 95f6247b04..5f57a2d789 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.AngleTypes.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.AngleTypes.md @@ -1,4 +1,5 @@ -# Enum AngleTypes +# Enum AngleTypes + Namespace: [VM](VM.md) Assembly: VM.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.AnonymousDisposable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.AnonymousDisposable.md index b36589988f..47fbf8ffff 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.AnonymousDisposable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.AnonymousDisposable.md @@ -1,4 +1,5 @@ -# Class AnonymousDisposable +# Class AnonymousDisposable + Namespace: [VM](VM.md) Assembly: VM.dll @@ -9,7 +10,7 @@ public sealed class AnonymousDisposable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnonymousDisposable](VM.AnonymousDisposable.md) #### Extension Methods @@ -28,7 +29,7 @@ public AnonymousDisposable(Action dispose) #### Parameters -`dispose` [Action](https://learn.microsoft.com/dotnet/api/system.action) +`dispose` Action ## Properties @@ -40,7 +41,7 @@ public bool IsDisposed { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -52,11 +53,11 @@ public static IDisposable Create(Action dispose) #### Parameters -`dispose` [Action](https://learn.microsoft.com/dotnet/api/system.action) +`dispose` Action #### Returns - [IDisposable](https://learn.microsoft.com/dotnet/api/system.idisposable) + IDisposable ### Dispose\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Builder.Pre.FE.BeamBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Builder.Pre.FE.BeamBody.md index b39f478f01..4734cd64e7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Builder.Pre.FE.BeamBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Builder.Pre.FE.BeamBody.md @@ -1,4 +1,5 @@ -# Class BeamBody +# Class BeamBody + Namespace: [VM.Builder.Pre.FE](VM.Builder.Pre.FE.md) Assembly: VM.Builder.Pre.FE.dll @@ -9,7 +10,7 @@ public class BeamBody : IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BeamBody](VM.Builder.Pre.FE.BeamBody.md) #### Implements @@ -50,7 +51,7 @@ public string MeshFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Name @@ -60,7 +61,7 @@ public string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NoOfBeamNodes @@ -70,7 +71,7 @@ public int NoOfBeamNodes { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NoOfCircularNodes @@ -80,7 +81,7 @@ public int NoOfCircularNodes { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NodalBody @@ -100,7 +101,7 @@ public PickedResult[] Parameters { get; set; } #### Property Value - PickedResult\[\] + [PickedResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/PickedResult.cs)\[\] ### Radius @@ -110,7 +111,7 @@ public double Radius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StartPoint diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Builder.Pre.FE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Builder.Pre.FE.md index 5ef236a2e1..13acbd933c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Builder.Pre.FE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Builder.Pre.FE.md @@ -1,4 +1,5 @@ -# Namespace VM.Builder.Pre.FE +# Namespace VM.Builder.Pre.FE + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Builders.Pre.Force.LeafBeamGroupBuilder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Builders.Pre.Force.LeafBeamGroupBuilder.md index ed498ece7b..96fe75dd87 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Builders.Pre.Force.LeafBeamGroupBuilder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Builders.Pre.Force.LeafBeamGroupBuilder.md @@ -1,4 +1,5 @@ -# Class LeafBeamGroupBuilder +# Class LeafBeamGroupBuilder + Namespace: [VM.Builders.Pre.Force](VM.Builders.Pre.Force.md) Assembly: VM.Operations.Pre.Force.dll @@ -9,12 +10,12 @@ public class LeafBeamGroupBuilder : BuilderBeamGroupMultiplePoints, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← -BuilderBeamGroupMultiplePointsBase ← -BuilderBeamGroupMultiplePoints ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[BuilderBeamGroupMultiplePointsBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBldBeamGroup/BuilderBeamGroupMultiplePoints.cs) ← +[BuilderBeamGroupMultiplePoints](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBldBeamGroup/BuilderBeamGroupMultiplePoints.cs) ← [LeafBeamGroupBuilder](VM.Builders.Pre.Force.LeafBeamGroupBuilder.md) #### Implements @@ -23,43 +24,43 @@ IBuilder #### Inherited Members -BuilderBeamGroupMultiplePointsBase.Validate\(IList\), -BuilderBeamGroupMultiplePointsBase.OnPostBuild\(ObjectBase, Document\), -BuilderBeamGroupMultiplePointsBase.GetBeamGroupBodyName\(Document, string, int\), -BuilderBeamGroupMultiplePointsBase.SetInputResultData\(\), -BuilderBeamGroupMultiplePointsBase.BeamGroupInfo, -BuilderBeamGroupMultiplePointsBase.BeamCrossSection, -BuilderBeamGroupMultiplePointsBase.NoOfElements, -BuilderBeamGroupMultiplePointsBase.MaterialProperty, -BuilderBeamGroupMultiplePointsBase.Color, -BuilderBeamGroupMultiplePointsBase.AddToDoc, -BuilderBeamGroupMultiplePointsBase.m\_bldrBeamInfoAry, -BuilderBeamGroupMultiplePointsBase.UseCustomize, -BuilderBeamGroupMultiplePointsBase.ResultBeamGroup, -BuilderBeamGroupMultiplePointsBase.ResultSolidBodies, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderBeamGroupMultiplePointsBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBldBeamGroup/BuilderBeamGroupMultiplePoints.cs), +[BuilderBeamGroupMultiplePointsBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBldBeamGroup/BuilderBeamGroupMultiplePoints.cs), +[BuilderBeamGroupMultiplePointsBase.GetBeamGroupBodyName\(Document, string, int\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBldBeamGroup/BuilderBeamGroupMultiplePoints.cs), +[BuilderBeamGroupMultiplePointsBase.SetInputResultData\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBldBeamGroup/BuilderBeamGroupMultiplePoints.cs), +[BuilderBeamGroupMultiplePointsBase.BeamGroupInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBldBeamGroup/BuilderBeamGroupMultiplePoints.cs), +[BuilderBeamGroupMultiplePointsBase.BeamCrossSection](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBldBeamGroup/BuilderBeamGroupMultiplePoints.cs), +[BuilderBeamGroupMultiplePointsBase.NoOfElements](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBldBeamGroup/BuilderBeamGroupMultiplePoints.cs), +[BuilderBeamGroupMultiplePointsBase.MaterialProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBldBeamGroup/BuilderBeamGroupMultiplePoints.cs), +[BuilderBeamGroupMultiplePointsBase.Color](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBldBeamGroup/BuilderBeamGroupMultiplePoints.cs), +[BuilderBeamGroupMultiplePointsBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBldBeamGroup/BuilderBeamGroupMultiplePoints.cs), +[BuilderBeamGroupMultiplePointsBase.m\_bldrBeamInfoAry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBldBeamGroup/BuilderBeamGroupMultiplePoints.cs), +[BuilderBeamGroupMultiplePointsBase.UseCustomize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBldBeamGroup/BuilderBeamGroupMultiplePoints.cs), +[BuilderBeamGroupMultiplePointsBase.ResultBeamGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBldBeamGroup/BuilderBeamGroupMultiplePoints.cs), +[BuilderBeamGroupMultiplePointsBase.ResultSolidBodies](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBldBeamGroup/BuilderBeamGroupMultiplePoints.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -77,7 +78,7 @@ public LeafBeamGroupBuilder(Leaf leaf, LeafInfo leafInfo, Vector[] positions = n #### Parameters -`leaf` Leaf +`leaf` [Leaf](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre.Force/Models/LeafSpring/Leaf.Linker.cs) `leafInfo` LeafInfo @@ -85,7 +86,7 @@ public LeafBeamGroupBuilder(Leaf leaf, LeafInfo leafInfo, Vector[] positions = n `repositionMatrix` TMatrix -`useCustomize` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`useCustomize` bool ## Properties @@ -97,7 +98,7 @@ public Leaf Leaf { get; } #### Property Value - Leaf + [Leaf](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre.Force/Models/LeafSpring/Leaf.Linker.cs) ### LeafInfo @@ -141,13 +142,13 @@ protected override string GetBeamGroupBodyName(Document document, string beamGro `document` Document -`beamGroupName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`beamGroupName` string -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SetInputResultData\(\) @@ -157,5 +158,5 @@ protected override bool SetInputResultData() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Builders.Pre.Force.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Builders.Pre.Force.md index f887906a15..ebabb37831 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Builders.Pre.Force.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Builders.Pre.Force.md @@ -1,4 +1,5 @@ -# Namespace VM.Builders.Pre.Force +# Namespace VM.Builders.Pre.Force + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamBase.md index 39d71d42f6..9bcddbd47d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamBase.md @@ -1,4 +1,5 @@ -# Class BuilderParamBase +# Class BuilderParamBase + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -11,7 +12,7 @@ public abstract class BuilderParamBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderParamBase](VM.CAD.Builders.BuilderParamBase.md) #### Derived @@ -73,7 +74,7 @@ public string TypeName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -103,7 +104,7 @@ public virtual string ToXmlString() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The builder parameter xml string. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamBlock.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamBlock.md index 868bba4388..c19622fe4a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamBlock.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamBlock.md @@ -1,4 +1,5 @@ -# Class BuilderParamBlock +# Class BuilderParamBlock + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -11,7 +12,7 @@ public class BuilderParamBlock : BuilderParamTransform #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderParamBase](VM.CAD.Builders.BuilderParamBase.md) ← [BuilderParamColorGeom](VM.CAD.Builders.BuilderParamColorGeom.md) ← [BuilderParamTransform](VM.CAD.Builders.BuilderParamTransform.md) ← @@ -54,7 +55,7 @@ public double Depth { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Height @@ -66,7 +67,7 @@ public double Height { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Width @@ -78,5 +79,5 @@ public double Width { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamColorGeom.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamColorGeom.md index 74c8592146..b2507ceb79 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamColorGeom.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamColorGeom.md @@ -1,4 +1,5 @@ -# Class BuilderParamColorGeom +# Class BuilderParamColorGeom + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -9,7 +10,7 @@ public abstract class BuilderParamColorGeom : BuilderParamBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderParamBase](VM.CAD.Builders.BuilderParamBase.md) ← [BuilderParamColorGeom](VM.CAD.Builders.BuilderParamColorGeom.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamCone.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamCone.md index ace9498357..9ee08aac8f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamCone.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamCone.md @@ -1,4 +1,5 @@ -# Class BuilderParamCone +# Class BuilderParamCone + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -9,7 +10,7 @@ public class BuilderParamCone : BuilderParamCylinder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderParamBase](VM.CAD.Builders.BuilderParamBase.md) ← [BuilderParamColorGeom](VM.CAD.Builders.BuilderParamColorGeom.md) ← [BuilderParamCylinder](VM.CAD.Builders.BuilderParamCylinder.md) ← @@ -56,5 +57,5 @@ public double TopRadius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamCopy.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamCopy.md index bd7e9b4bd5..ee31dddf7f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamCopy.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamCopy.md @@ -1,4 +1,5 @@ -# Class BuilderParamCopy +# Class BuilderParamCopy + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -9,7 +10,7 @@ public class BuilderParamCopy : BuilderParamBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderParamBase](VM.CAD.Builders.BuilderParamBase.md) ← [BuilderParamCopy](VM.CAD.Builders.BuilderParamCopy.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamCylinder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamCylinder.md index fc300d6331..655871827c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamCylinder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamCylinder.md @@ -1,4 +1,5 @@ -# Class BuilderParamCylinder +# Class BuilderParamCylinder + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -9,7 +10,7 @@ public class BuilderParamCylinder : BuilderParamColorGeom #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderParamBase](VM.CAD.Builders.BuilderParamBase.md) ← [BuilderParamColorGeom](VM.CAD.Builders.BuilderParamColorGeom.md) ← [BuilderParamCylinder](VM.CAD.Builders.BuilderParamCylinder.md) @@ -63,7 +64,7 @@ public double RadiusMajor { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TopPosition diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamEllipseCone.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamEllipseCone.md index 54076b2767..8ea0542a56 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamEllipseCone.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamEllipseCone.md @@ -1,4 +1,5 @@ -# Class BuilderParamEllipseCone +# Class BuilderParamEllipseCone + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -9,7 +10,7 @@ public class BuilderParamEllipseCone : BuilderParamCone #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderParamBase](VM.CAD.Builders.BuilderParamBase.md) ← [BuilderParamColorGeom](VM.CAD.Builders.BuilderParamColorGeom.md) ← [BuilderParamCylinder](VM.CAD.Builders.BuilderParamCylinder.md) ← @@ -54,5 +55,5 @@ public double RadiusMinor { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamEllipseCylinder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamEllipseCylinder.md index 648d9128c7..51cdd1f2c3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamEllipseCylinder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamEllipseCylinder.md @@ -1,4 +1,5 @@ -# Class BuilderParamEllipseCylinder +# Class BuilderParamEllipseCylinder + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -9,7 +10,7 @@ public class BuilderParamEllipseCylinder : BuilderParamCylinder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderParamBase](VM.CAD.Builders.BuilderParamBase.md) ← [BuilderParamColorGeom](VM.CAD.Builders.BuilderParamColorGeom.md) ← [BuilderParamCylinder](VM.CAD.Builders.BuilderParamCylinder.md) ← @@ -52,5 +53,5 @@ public double RadiusMinor { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamExtrude.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamExtrude.md index 392f1ee259..d94f5e1cf2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamExtrude.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamExtrude.md @@ -1,4 +1,5 @@ -# Class BuilderParamExtrude +# Class BuilderParamExtrude + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -11,7 +12,7 @@ public class BuilderParamExtrude : BuilderParamColorGeom #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderParamBase](VM.CAD.Builders.BuilderParamBase.md) ← [BuilderParamColorGeom](VM.CAD.Builders.BuilderParamColorGeom.md) ← [BuilderParamExtrude](VM.CAD.Builders.BuilderParamExtrude.md) @@ -64,7 +65,7 @@ public List ChamferInfos { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ChamferInfo](VM.CAD.Builders.ChamferInfo.md)\> + List<[ChamferInfo](VM.CAD.Builders.ChamferInfo.md)\> ### Depth @@ -76,7 +77,7 @@ public double Depth { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DrawInfos @@ -88,5 +89,5 @@ public List DrawInfos { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[DrawInfo](VM.CAD.Builders.DrawInfo.md)\> + List<[DrawInfo](VM.CAD.Builders.DrawInfo.md)\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamImport.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamImport.md index 466a80e5c4..8c0d18501e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamImport.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamImport.md @@ -1,4 +1,5 @@ -# Class BuilderParamImport +# Class BuilderParamImport + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -11,7 +12,7 @@ public class BuilderParamImport : BuilderParamTransform #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderParamBase](VM.CAD.Builders.BuilderParamBase.md) ← [BuilderParamColorGeom](VM.CAD.Builders.BuilderParamColorGeom.md) ← [BuilderParamTransform](VM.CAD.Builders.BuilderParamTransform.md) ← @@ -54,7 +55,7 @@ public string ImportInfo { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NameAttribute @@ -66,7 +67,7 @@ public string NameAttribute { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Scale @@ -78,5 +79,5 @@ public double Scale { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamImprint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamImprint.md index 11cd86544b..48c31bb5ad 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamImprint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamImprint.md @@ -1,4 +1,5 @@ -# Class BuilderParamImprint +# Class BuilderParamImprint + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -9,7 +10,7 @@ public class BuilderParamImprint : BuilderParamPair #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderParamBase](VM.CAD.Builders.BuilderParamBase.md) ← [BuilderParamColorGeom](VM.CAD.Builders.BuilderParamColorGeom.md) ← [BuilderParamPair](VM.CAD.Builders.BuilderParamPair.md) ← @@ -51,7 +52,7 @@ public List TargetFace { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> + List ### ToolFace @@ -61,5 +62,5 @@ public List ToolFace { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> + List diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamIntersect.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamIntersect.md index aec46a7f08..f6c8b307ec 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamIntersect.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamIntersect.md @@ -1,4 +1,5 @@ -# Class BuilderParamIntersect +# Class BuilderParamIntersect + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -11,7 +12,7 @@ public class BuilderParamIntersect : BuilderParamPair #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderParamBase](VM.CAD.Builders.BuilderParamBase.md) ← [BuilderParamColorGeom](VM.CAD.Builders.BuilderParamColorGeom.md) ← [BuilderParamPair](VM.CAD.Builders.BuilderParamPair.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamMulti.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamMulti.md index 2c22633d4e..8058172d6b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamMulti.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamMulti.md @@ -1,4 +1,5 @@ -# Class BuilderParamMulti +# Class BuilderParamMulti + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -11,7 +12,7 @@ public abstract class BuilderParamMulti : BuilderParamColorGeom #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderParamBase](VM.CAD.Builders.BuilderParamBase.md) ← [BuilderParamColorGeom](VM.CAD.Builders.BuilderParamColorGeom.md) ← [BuilderParamMulti](VM.CAD.Builders.BuilderParamMulti.md) @@ -58,7 +59,7 @@ public List Builders { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[BuilderParamBase](VM.CAD.Builders.BuilderParamBase.md)\> + List<[BuilderParamBase](VM.CAD.Builders.BuilderParamBase.md)\> ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamMultiIntersect.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamMultiIntersect.md index 57f4d24f6e..87b1afd117 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamMultiIntersect.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamMultiIntersect.md @@ -1,4 +1,5 @@ -# Class BuilderParamMultiIntersect +# Class BuilderParamMultiIntersect + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -9,7 +10,7 @@ public class BuilderParamMultiIntersect : BuilderParamMulti #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderParamBase](VM.CAD.Builders.BuilderParamBase.md) ← [BuilderParamColorGeom](VM.CAD.Builders.BuilderParamColorGeom.md) ← [BuilderParamMulti](VM.CAD.Builders.BuilderParamMulti.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamMultiSubtract.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamMultiSubtract.md index 4189958234..5ab9662ae8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamMultiSubtract.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamMultiSubtract.md @@ -1,4 +1,5 @@ -# Class BuilderParamMultiSubtract +# Class BuilderParamMultiSubtract + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -9,7 +10,7 @@ public class BuilderParamMultiSubtract : BuilderParamMulti #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderParamBase](VM.CAD.Builders.BuilderParamBase.md) ← [BuilderParamColorGeom](VM.CAD.Builders.BuilderParamColorGeom.md) ← [BuilderParamMulti](VM.CAD.Builders.BuilderParamMulti.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamMultiUnite.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamMultiUnite.md index c9a7c32b49..f936ea8ddb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamMultiUnite.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamMultiUnite.md @@ -1,4 +1,5 @@ -# Class BuilderParamMultiUnite +# Class BuilderParamMultiUnite + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -9,7 +10,7 @@ public class BuilderParamMultiUnite : BuilderParamMulti #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderParamBase](VM.CAD.Builders.BuilderParamBase.md) ← [BuilderParamColorGeom](VM.CAD.Builders.BuilderParamColorGeom.md) ← [BuilderParamMulti](VM.CAD.Builders.BuilderParamMulti.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamPair.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamPair.md index 666385b807..d941b1c2f3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamPair.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamPair.md @@ -1,4 +1,5 @@ -# Class BuilderParamPair +# Class BuilderParamPair + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -9,7 +10,7 @@ public abstract class BuilderParamPair : BuilderParamColorGeom #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderParamBase](VM.CAD.Builders.BuilderParamBase.md) ← [BuilderParamColorGeom](VM.CAD.Builders.BuilderParamColorGeom.md) ← [BuilderParamPair](VM.CAD.Builders.BuilderParamPair.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamPlane.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamPlane.md index 002049acb4..206dbc588f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamPlane.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamPlane.md @@ -1,4 +1,5 @@ -# Class BuilderParamPlane +# Class BuilderParamPlane + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -11,7 +12,7 @@ public abstract class BuilderParamPlane : BuilderParamTransform #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderParamBase](VM.CAD.Builders.BuilderParamBase.md) ← [BuilderParamColorGeom](VM.CAD.Builders.BuilderParamColorGeom.md) ← [BuilderParamTransform](VM.CAD.Builders.BuilderParamTransform.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamPlaneCircle.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamPlaneCircle.md index 45c380f7e0..6fce4709a5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamPlaneCircle.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamPlaneCircle.md @@ -1,4 +1,5 @@ -# Class BuilderParamPlaneCircle +# Class BuilderParamPlaneCircle + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -9,7 +10,7 @@ public class BuilderParamPlaneCircle : BuilderParamPlane #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderParamBase](VM.CAD.Builders.BuilderParamBase.md) ← [BuilderParamColorGeom](VM.CAD.Builders.BuilderParamColorGeom.md) ← [BuilderParamTransform](VM.CAD.Builders.BuilderParamTransform.md) ← @@ -51,5 +52,5 @@ public double Radius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamPlaneRectangle.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamPlaneRectangle.md index 00fc516189..158101738b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamPlaneRectangle.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamPlaneRectangle.md @@ -1,4 +1,5 @@ -# Class BuilderParamPlaneRectangle +# Class BuilderParamPlaneRectangle + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -9,7 +10,7 @@ public class BuilderParamPlaneRectangle : BuilderParamPlane #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderParamBase](VM.CAD.Builders.BuilderParamBase.md) ← [BuilderParamColorGeom](VM.CAD.Builders.BuilderParamColorGeom.md) ← [BuilderParamTransform](VM.CAD.Builders.BuilderParamTransform.md) ← @@ -51,7 +52,7 @@ public double Height { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Width @@ -61,5 +62,5 @@ public double Width { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamSheetThicken.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamSheetThicken.md index 66ed8dd30c..117cffecf2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamSheetThicken.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamSheetThicken.md @@ -1,4 +1,5 @@ -# Class BuilderParamSheetThicken +# Class BuilderParamSheetThicken + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -11,7 +12,7 @@ public class BuilderParamSheetThicken : BuilderParamBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderParamBase](VM.CAD.Builders.BuilderParamBase.md) ← [BuilderParamSheetThicken](VM.CAD.Builders.BuilderParamSheetThicken.md) @@ -74,5 +75,5 @@ public double Thickness { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamSphere.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamSphere.md index d495354935..c2c8ac6dfc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamSphere.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamSphere.md @@ -1,4 +1,5 @@ -# Class BuilderParamSphere +# Class BuilderParamSphere + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -9,7 +10,7 @@ public class BuilderParamSphere : BuilderParamColorGeom #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderParamBase](VM.CAD.Builders.BuilderParamBase.md) ← [BuilderParamColorGeom](VM.CAD.Builders.BuilderParamColorGeom.md) ← [BuilderParamSphere](VM.CAD.Builders.BuilderParamSphere.md) @@ -58,5 +59,5 @@ public double Radius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamSubtract.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamSubtract.md index deeadda9d1..d8df626211 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamSubtract.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamSubtract.md @@ -1,4 +1,5 @@ -# Class BuilderParamSubtract +# Class BuilderParamSubtract + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -9,7 +10,7 @@ public class BuilderParamSubtract : BuilderParamPair #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderParamBase](VM.CAD.Builders.BuilderParamBase.md) ← [BuilderParamColorGeom](VM.CAD.Builders.BuilderParamColorGeom.md) ← [BuilderParamPair](VM.CAD.Builders.BuilderParamPair.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamTorus.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamTorus.md index 1311f8b70e..8e79381996 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamTorus.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamTorus.md @@ -1,4 +1,5 @@ -# Class BuilderParamTorus +# Class BuilderParamTorus + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -9,7 +10,7 @@ public class BuilderParamTorus : BuilderParamColorGeom #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderParamBase](VM.CAD.Builders.BuilderParamBase.md) ← [BuilderParamColorGeom](VM.CAD.Builders.BuilderParamColorGeom.md) ← [BuilderParamTorus](VM.CAD.Builders.BuilderParamTorus.md) @@ -58,7 +59,7 @@ public double RadiusMajor { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RadiusMinor @@ -68,7 +69,7 @@ public double RadiusMinor { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UpDirection diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamTransform.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamTransform.md index dc52be9a97..f7144f7b6b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamTransform.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamTransform.md @@ -1,4 +1,5 @@ -# Class BuilderParamTransform +# Class BuilderParamTransform + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -11,7 +12,7 @@ public abstract class BuilderParamTransform : BuilderParamColorGeom #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderParamBase](VM.CAD.Builders.BuilderParamBase.md) ← [BuilderParamColorGeom](VM.CAD.Builders.BuilderParamColorGeom.md) ← [BuilderParamTransform](VM.CAD.Builders.BuilderParamTransform.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamTriPlate.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamTriPlate.md index 45c5870f82..b3ac876fc4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamTriPlate.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamTriPlate.md @@ -1,4 +1,5 @@ -# Class BuilderParamTriPlate +# Class BuilderParamTriPlate + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -9,7 +10,7 @@ public class BuilderParamTriPlate : BuilderParamColorGeom #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderParamBase](VM.CAD.Builders.BuilderParamBase.md) ← [BuilderParamColorGeom](VM.CAD.Builders.BuilderParamColorGeom.md) ← [BuilderParamTriPlate](VM.CAD.Builders.BuilderParamTriPlate.md) @@ -58,7 +59,7 @@ public double Height { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SecondPosition diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamUnite.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamUnite.md index 7cbbc4a1c0..bf472d5c42 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamUnite.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamUnite.md @@ -1,4 +1,5 @@ -# Class BuilderParamUnite +# Class BuilderParamUnite + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -9,7 +10,7 @@ public class BuilderParamUnite : BuilderParamPair #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderParamBase](VM.CAD.Builders.BuilderParamBase.md) ← [BuilderParamColorGeom](VM.CAD.Builders.BuilderParamColorGeom.md) ← [BuilderParamPair](VM.CAD.Builders.BuilderParamPair.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamUserDefined.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamUserDefined.md index f770062cbf..4cb596d774 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamUserDefined.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.BuilderParamUserDefined.md @@ -1,4 +1,5 @@ -# Class BuilderParamUserDefined +# Class BuilderParamUserDefined + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -11,7 +12,7 @@ public class BuilderParamUserDefined : BuilderParamBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderParamBase](VM.CAD.Builders.BuilderParamBase.md) ← [BuilderParamUserDefined](VM.CAD.Builders.BuilderParamUserDefined.md) @@ -50,7 +51,7 @@ public string BuildXml { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -64,7 +65,7 @@ public override string ToXmlString() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The builder parameter xml string. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.ChamferInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.ChamferInfo.md index 89c28380cf..af81877cf2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.ChamferInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.ChamferInfo.md @@ -1,4 +1,5 @@ -# Class ChamferInfo +# Class ChamferInfo + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -11,7 +12,7 @@ public abstract class ChamferInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ChamferInfo](VM.CAD.Builders.ChamferInfo.md) #### Derived @@ -44,7 +45,7 @@ public double LeftRange { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Radius @@ -56,7 +57,7 @@ public double Radius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RightRange @@ -68,5 +69,5 @@ public double RightRange { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.ChamferInfoEdge.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.ChamferInfoEdge.md index 36f7dfcc1f..9036140653 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.ChamferInfoEdge.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.ChamferInfoEdge.md @@ -1,4 +1,5 @@ -# Class ChamferInfoEdge +# Class ChamferInfoEdge + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -11,7 +12,7 @@ public class ChamferInfoEdge : ChamferInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ChamferInfo](VM.CAD.Builders.ChamferInfo.md) ← [ChamferInfoEdge](VM.CAD.Builders.ChamferInfoEdge.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.ColorInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.ColorInfo.md index 86bdd6a211..b590079266 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.ColorInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.ColorInfo.md @@ -1,4 +1,5 @@ -# Class ColorInfo +# Class ColorInfo + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -9,7 +10,7 @@ public class ColorInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ColorInfo](VM.CAD.Builders.ColorInfo.md) #### Extension Methods @@ -36,7 +37,7 @@ public int A { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### B @@ -46,7 +47,7 @@ public int B { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### EdgeInfo @@ -56,7 +57,7 @@ public List EdgeInfo { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[TopologyInfo](VM.CAD.Builders.TopologyInfo.md)\> + List<[TopologyInfo](VM.CAD.Builders.TopologyInfo.md)\> ### FaceInfo @@ -66,7 +67,7 @@ public List FaceInfo { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[TopologyInfo](VM.CAD.Builders.TopologyInfo.md)\> + List<[TopologyInfo](VM.CAD.Builders.TopologyInfo.md)\> ### G @@ -76,7 +77,7 @@ public int G { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### R @@ -86,5 +87,5 @@ public int R { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DrawInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DrawInfo.md index d06035f011..639bd578ad 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DrawInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DrawInfo.md @@ -1,4 +1,5 @@ -# Class DrawInfo +# Class DrawInfo + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -11,7 +12,7 @@ public abstract class DrawInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DrawInfo](VM.CAD.Builders.DrawInfo.md) #### Derived diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DrawInfoArc.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DrawInfoArc.md index 5aa59354ff..a794f14300 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DrawInfoArc.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DrawInfoArc.md @@ -1,4 +1,5 @@ -# Class DrawInfoArc +# Class DrawInfoArc + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -11,7 +12,7 @@ public class DrawInfoArc : DrawInfoTwoPoint #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DrawInfo](VM.CAD.Builders.DrawInfo.md) ← [DrawInfoTwoPoint](VM.CAD.Builders.DrawInfoTwoPoint.md) ← [DrawInfoArc](VM.CAD.Builders.DrawInfoArc.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DrawInfoLine.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DrawInfoLine.md index 3042688b99..82ca6f26a9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DrawInfoLine.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DrawInfoLine.md @@ -1,4 +1,5 @@ -# Class DrawInfoLine +# Class DrawInfoLine + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -11,7 +12,7 @@ public class DrawInfoLine : DrawInfoTwoPoint #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DrawInfo](VM.CAD.Builders.DrawInfo.md) ← [DrawInfoTwoPoint](VM.CAD.Builders.DrawInfoTwoPoint.md) ← [DrawInfoLine](VM.CAD.Builders.DrawInfoLine.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DrawInfoPointList.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DrawInfoPointList.md index 456915e886..206f1eb3f4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DrawInfoPointList.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DrawInfoPointList.md @@ -1,4 +1,5 @@ -# Class DrawInfoPointList +# Class DrawInfoPointList + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -11,7 +12,7 @@ public class DrawInfoPointList : DrawInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DrawInfo](VM.CAD.Builders.DrawInfo.md) ← [DrawInfoPointList](VM.CAD.Builders.DrawInfoPointList.md) @@ -41,7 +42,7 @@ public bool Closed { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Points @@ -53,5 +54,5 @@ public List Points { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DrawInfoTwoPoint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DrawInfoTwoPoint.md index 8dcc5b4d92..24561b1e0f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DrawInfoTwoPoint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DrawInfoTwoPoint.md @@ -1,4 +1,5 @@ -# Class DrawInfoTwoPoint +# Class DrawInfoTwoPoint + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -11,7 +12,7 @@ public abstract class DrawInfoTwoPoint : DrawInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DrawInfo](VM.CAD.Builders.DrawInfo.md) ← [DrawInfoTwoPoint](VM.CAD.Builders.DrawInfoTwoPoint.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DriveTrain.BuilderParamGear.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DriveTrain.BuilderParamGear.md index cf43d95a82..88b9c6aaca 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DriveTrain.BuilderParamGear.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DriveTrain.BuilderParamGear.md @@ -1,4 +1,5 @@ -# Class BuilderParamGear +# Class BuilderParamGear + Namespace: [VM.CAD.Builders.DriveTrain](VM.CAD.Builders.DriveTrain.md) Assembly: VM.CAD.Builders.DriveTrain.dll @@ -11,9 +12,9 @@ public abstract class BuilderParamGear : BuilderParamColorGeom #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderParamBase ← -BuilderParamColorGeom ← +object ← +[BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ← +[BuilderParamColorGeom](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamColorGeom.cs) ← [BuilderParamGear](VM.CAD.Builders.DriveTrain.BuilderParamGear.md) #### Derived @@ -23,13 +24,13 @@ BuilderParamColorGeom ← #### Inherited Members -BuilderParamColorGeom.Color, -BuilderParamBase.ToXmlString\(\), -BuilderParamBase.FinalizeParameter\(\), -BuilderParamBase.SetTypeName\(\), -BuilderParamBase.Key, -BuilderParamBase.TypeName, -BuilderParamBase.Transparency +[BuilderParamColorGeom.Color](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamColorGeom.cs), +[BuilderParamBase.ToXmlString\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.FinalizeParameter\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.SetTypeName\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.Key](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.TypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.Transparency](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) #### Extension Methods @@ -65,7 +66,7 @@ public double FaceWidth { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### HelixAngle @@ -75,7 +76,7 @@ public double HelixAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### HelixDir @@ -85,7 +86,7 @@ public double HelixDir { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MatchAngle @@ -95,7 +96,7 @@ public double MatchAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NumOfTeeth @@ -105,7 +106,7 @@ public int NumOfTeeth { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Orientation @@ -125,7 +126,7 @@ public double PitchRadius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Splines @@ -135,5 +136,5 @@ public List Splines { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List<[SplineInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/SplineInfo.cs)\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DriveTrain.BuilderParamGearForGearTrain.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DriveTrain.BuilderParamGearForGearTrain.md index 12936f3a5d..4b5495cc62 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DriveTrain.BuilderParamGearForGearTrain.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DriveTrain.BuilderParamGearForGearTrain.md @@ -1,4 +1,5 @@ -# Class BuilderParamGearForGearTrain +# Class BuilderParamGearForGearTrain + Namespace: [VM.CAD.Builders.DriveTrain](VM.CAD.Builders.DriveTrain.md) Assembly: VM.CAD.Builders.DriveTrain.dll @@ -9,9 +10,9 @@ public class BuilderParamGearForGearTrain : BuilderParamGear #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderParamBase ← -BuilderParamColorGeom ← +object ← +[BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ← +[BuilderParamColorGeom](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamColorGeom.cs) ← [BuilderParamGear](VM.CAD.Builders.DriveTrain.BuilderParamGear.md) ← [BuilderParamGearForGearTrain](VM.CAD.Builders.DriveTrain.BuilderParamGearForGearTrain.md) @@ -26,13 +27,13 @@ BuilderParamColorGeom ← [BuilderParamGear.CenterPosition](VM.CAD.Builders.DriveTrain.BuilderParamGear.md\#VM\_CAD\_Builders\_DriveTrain\_BuilderParamGear\_CenterPosition), [BuilderParamGear.Orientation](VM.CAD.Builders.DriveTrain.BuilderParamGear.md\#VM\_CAD\_Builders\_DriveTrain\_BuilderParamGear\_Orientation), [BuilderParamGear.Splines](VM.CAD.Builders.DriveTrain.BuilderParamGear.md\#VM\_CAD\_Builders\_DriveTrain\_BuilderParamGear\_Splines), -BuilderParamColorGeom.Color, -BuilderParamBase.ToXmlString\(\), -BuilderParamBase.FinalizeParameter\(\), -BuilderParamBase.SetTypeName\(\), -BuilderParamBase.Key, -BuilderParamBase.TypeName, -BuilderParamBase.Transparency +[BuilderParamColorGeom.Color](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamColorGeom.cs), +[BuilderParamBase.ToXmlString\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.FinalizeParameter\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.SetTypeName\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.Key](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.TypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.Transparency](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) #### Extension Methods @@ -58,7 +59,7 @@ public bool IsCenterRotated { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsInternal @@ -68,7 +69,7 @@ public int IsInternal { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### RootCircleRadius @@ -78,7 +79,7 @@ public double RootCircleRadius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ShapeName @@ -88,7 +89,7 @@ public string ShapeName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TipCircleRadius @@ -98,7 +99,7 @@ public double TipCircleRadius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### WebRadius @@ -108,5 +109,5 @@ public double WebRadius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DriveTrain.BuilderParamMotorBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DriveTrain.BuilderParamMotorBase.md index b41e94b591..7509d894e2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DriveTrain.BuilderParamMotorBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DriveTrain.BuilderParamMotorBase.md @@ -1,4 +1,5 @@ -# Class BuilderParamMotorBase +# Class BuilderParamMotorBase + Namespace: [VM.CAD.Builders.DriveTrain](VM.CAD.Builders.DriveTrain.md) Assembly: VM.CAD.Builders.DriveTrain.dll @@ -9,9 +10,9 @@ public abstract class BuilderParamMotorBase : BuilderParamColorGeom #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderParamBase ← -BuilderParamColorGeom ← +object ← +[BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ← +[BuilderParamColorGeom](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamColorGeom.cs) ← [BuilderParamMotorBase](VM.CAD.Builders.DriveTrain.BuilderParamMotorBase.md) #### Derived @@ -22,13 +23,13 @@ BuilderParamColorGeom ← #### Inherited Members -BuilderParamColorGeom.Color, -BuilderParamBase.ToXmlString\(\), -BuilderParamBase.FinalizeParameter\(\), -BuilderParamBase.SetTypeName\(\), -BuilderParamBase.Key, -BuilderParamBase.TypeName, -BuilderParamBase.Transparency +[BuilderParamColorGeom.Color](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamColorGeom.cs), +[BuilderParamBase.ToXmlString\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.FinalizeParameter\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.SetTypeName\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.Key](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.TypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.Transparency](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) #### Extension Methods @@ -54,7 +55,7 @@ public double Depth { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RotateAxis diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DriveTrain.BuilderParamMotorHousing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DriveTrain.BuilderParamMotorHousing.md index 405f23c02f..9c82f3939e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DriveTrain.BuilderParamMotorHousing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DriveTrain.BuilderParamMotorHousing.md @@ -1,4 +1,5 @@ -# Class BuilderParamMotorHousing +# Class BuilderParamMotorHousing + Namespace: [VM.CAD.Builders.DriveTrain](VM.CAD.Builders.DriveTrain.md) Assembly: VM.CAD.Builders.DriveTrain.dll @@ -9,9 +10,9 @@ public class BuilderParamMotorHousing : BuilderParamMotorBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderParamBase ← -BuilderParamColorGeom ← +object ← +[BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ← +[BuilderParamColorGeom](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamColorGeom.cs) ← [BuilderParamMotorBase](VM.CAD.Builders.DriveTrain.BuilderParamMotorBase.md) ← [BuilderParamMotorHousing](VM.CAD.Builders.DriveTrain.BuilderParamMotorHousing.md) @@ -20,13 +21,13 @@ BuilderParamColorGeom ← [BuilderParamMotorBase.Depth](VM.CAD.Builders.DriveTrain.BuilderParamMotorBase.md\#VM\_CAD\_Builders\_DriveTrain\_BuilderParamMotorBase\_Depth), [BuilderParamMotorBase.StartPosition](VM.CAD.Builders.DriveTrain.BuilderParamMotorBase.md\#VM\_CAD\_Builders\_DriveTrain\_BuilderParamMotorBase\_StartPosition), [BuilderParamMotorBase.RotateAxis](VM.CAD.Builders.DriveTrain.BuilderParamMotorBase.md\#VM\_CAD\_Builders\_DriveTrain\_BuilderParamMotorBase\_RotateAxis), -BuilderParamColorGeom.Color, -BuilderParamBase.ToXmlString\(\), -BuilderParamBase.FinalizeParameter\(\), -BuilderParamBase.SetTypeName\(\), -BuilderParamBase.Key, -BuilderParamBase.TypeName, -BuilderParamBase.Transparency +[BuilderParamColorGeom.Color](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamColorGeom.cs), +[BuilderParamBase.ToXmlString\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.FinalizeParameter\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.SetTypeName\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.Key](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.TypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.Transparency](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) #### Extension Methods @@ -52,7 +53,7 @@ public double Hr { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### IsFront @@ -62,7 +63,7 @@ public bool IsFront { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsMeasureBottomSide @@ -72,7 +73,7 @@ public bool IsMeasureBottomSide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsMeasureRearCoverCenter @@ -82,7 +83,7 @@ public bool IsMeasureRearCoverCenter { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsMeasureTopSide @@ -92,7 +93,7 @@ public bool IsMeasureTopSide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsSeparated @@ -102,7 +103,7 @@ public bool IsSeparated { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### L1 @@ -112,7 +113,7 @@ public double L1 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### L10 @@ -122,7 +123,7 @@ public double L10 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### L11 @@ -132,7 +133,7 @@ public double L11 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### L2 @@ -142,7 +143,7 @@ public double L2 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### L3 @@ -152,7 +153,7 @@ public double L3 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### L4 @@ -162,7 +163,7 @@ public double L4 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### L5 @@ -172,7 +173,7 @@ public double L5 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### L6 @@ -182,7 +183,7 @@ public double L6 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### L7 @@ -192,7 +193,7 @@ public double L7 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### L8 @@ -202,7 +203,7 @@ public double L8 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### L9 @@ -212,7 +213,7 @@ public double L9 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MTGBoltDiameter @@ -222,7 +223,7 @@ public double MTGBoltDiameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MeasureBottomSideLowerPosition @@ -252,7 +253,7 @@ public double MeasureRBECircleRadius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MeasureRearCoverCenterPosition @@ -292,7 +293,7 @@ public int NumberOfMountingBolt { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfRib @@ -302,7 +303,7 @@ public int NumberOfRib { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### RibType @@ -312,7 +313,7 @@ public string RibType { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### StatorDepth @@ -322,7 +323,7 @@ public double StatorDepth { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StatorIsExistMounting @@ -332,7 +333,7 @@ public bool StatorIsExistMounting { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### StatorMPCR @@ -342,7 +343,7 @@ public double StatorMPCR { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StatorNumberOfMounting @@ -352,7 +353,7 @@ public int StatorNumberOfMounting { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### StatorRmo @@ -362,7 +363,7 @@ public double StatorRmo { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StatorRotateAngle @@ -372,7 +373,7 @@ public double StatorRotateAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StatorStartPosition @@ -392,7 +393,7 @@ public double T1 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### T2 @@ -402,7 +403,7 @@ public double T2 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### T3 @@ -412,7 +413,7 @@ public double T3 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### T4 @@ -422,7 +423,7 @@ public double T4 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### T5 @@ -432,7 +433,7 @@ public double T5 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Wr @@ -442,5 +443,5 @@ public double Wr { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DriveTrain.BuilderParamMotorRotor.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DriveTrain.BuilderParamMotorRotor.md index 516c5422e4..6b6d9a2c5a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DriveTrain.BuilderParamMotorRotor.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DriveTrain.BuilderParamMotorRotor.md @@ -1,4 +1,5 @@ -# Class BuilderParamMotorRotor +# Class BuilderParamMotorRotor + Namespace: [VM.CAD.Builders.DriveTrain](VM.CAD.Builders.DriveTrain.md) Assembly: VM.CAD.Builders.DriveTrain.dll @@ -9,9 +10,9 @@ public class BuilderParamMotorRotor : BuilderParamMotorBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderParamBase ← -BuilderParamColorGeom ← +object ← +[BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ← +[BuilderParamColorGeom](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamColorGeom.cs) ← [BuilderParamMotorBase](VM.CAD.Builders.DriveTrain.BuilderParamMotorBase.md) ← [BuilderParamMotorRotor](VM.CAD.Builders.DriveTrain.BuilderParamMotorRotor.md) @@ -20,13 +21,13 @@ BuilderParamColorGeom ← [BuilderParamMotorBase.Depth](VM.CAD.Builders.DriveTrain.BuilderParamMotorBase.md\#VM\_CAD\_Builders\_DriveTrain\_BuilderParamMotorBase\_Depth), [BuilderParamMotorBase.StartPosition](VM.CAD.Builders.DriveTrain.BuilderParamMotorBase.md\#VM\_CAD\_Builders\_DriveTrain\_BuilderParamMotorBase\_StartPosition), [BuilderParamMotorBase.RotateAxis](VM.CAD.Builders.DriveTrain.BuilderParamMotorBase.md\#VM\_CAD\_Builders\_DriveTrain\_BuilderParamMotorBase\_RotateAxis), -BuilderParamColorGeom.Color, -BuilderParamBase.ToXmlString\(\), -BuilderParamBase.FinalizeParameter\(\), -BuilderParamBase.SetTypeName\(\), -BuilderParamBase.Key, -BuilderParamBase.TypeName, -BuilderParamBase.Transparency +[BuilderParamColorGeom.Color](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamColorGeom.cs), +[BuilderParamBase.ToXmlString\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.FinalizeParameter\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.SetTypeName\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.Key](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.TypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.Transparency](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) #### Extension Methods @@ -52,7 +53,7 @@ public double InnerDiameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### OuterDiameter @@ -62,5 +63,5 @@ public double OuterDiameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DriveTrain.BuilderParamMotorStator.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DriveTrain.BuilderParamMotorStator.md index ec6f0967e9..8419c01de3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DriveTrain.BuilderParamMotorStator.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DriveTrain.BuilderParamMotorStator.md @@ -1,4 +1,5 @@ -# Class BuilderParamMotorStator +# Class BuilderParamMotorStator + Namespace: [VM.CAD.Builders.DriveTrain](VM.CAD.Builders.DriveTrain.md) Assembly: VM.CAD.Builders.DriveTrain.dll @@ -9,9 +10,9 @@ public class BuilderParamMotorStator : BuilderParamMotorBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderParamBase ← -BuilderParamColorGeom ← +object ← +[BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ← +[BuilderParamColorGeom](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamColorGeom.cs) ← [BuilderParamMotorBase](VM.CAD.Builders.DriveTrain.BuilderParamMotorBase.md) ← [BuilderParamMotorStator](VM.CAD.Builders.DriveTrain.BuilderParamMotorStator.md) @@ -20,13 +21,13 @@ BuilderParamColorGeom ← [BuilderParamMotorBase.Depth](VM.CAD.Builders.DriveTrain.BuilderParamMotorBase.md\#VM\_CAD\_Builders\_DriveTrain\_BuilderParamMotorBase\_Depth), [BuilderParamMotorBase.StartPosition](VM.CAD.Builders.DriveTrain.BuilderParamMotorBase.md\#VM\_CAD\_Builders\_DriveTrain\_BuilderParamMotorBase\_StartPosition), [BuilderParamMotorBase.RotateAxis](VM.CAD.Builders.DriveTrain.BuilderParamMotorBase.md\#VM\_CAD\_Builders\_DriveTrain\_BuilderParamMotorBase\_RotateAxis), -BuilderParamColorGeom.Color, -BuilderParamBase.ToXmlString\(\), -BuilderParamBase.FinalizeParameter\(\), -BuilderParamBase.SetTypeName\(\), -BuilderParamBase.Key, -BuilderParamBase.TypeName, -BuilderParamBase.Transparency +[BuilderParamColorGeom.Color](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamColorGeom.cs), +[BuilderParamBase.ToXmlString\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.FinalizeParameter\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.SetTypeName\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.Key](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.TypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.Transparency](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) #### Extension Methods @@ -52,7 +53,7 @@ public double Bs0 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Bs1 @@ -62,7 +63,7 @@ public double Bs1 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Bs2 @@ -72,7 +73,7 @@ public double Bs2 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GeometryMethod @@ -82,7 +83,7 @@ public int GeometryMethod { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Hs0 @@ -92,7 +93,7 @@ public double Hs0 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Hs1 @@ -102,7 +103,7 @@ public double Hs1 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Hs2 @@ -112,7 +113,7 @@ public double Hs2 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ImportBuilder @@ -122,7 +123,7 @@ public string ImportBuilder { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### InnerDiameter @@ -132,7 +133,7 @@ public double InnerDiameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### IsExistMounting @@ -142,7 +143,7 @@ public bool IsExistMounting { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MPCR @@ -152,7 +153,7 @@ public double MPCR { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NumberOfMounting @@ -162,7 +163,7 @@ public int NumberOfMounting { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfSlot @@ -172,7 +173,7 @@ public int NumberOfSlot { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### OuterDiameter @@ -182,7 +183,7 @@ public double OuterDiameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Rmf @@ -192,7 +193,7 @@ public double Rmf { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Rmi @@ -202,7 +203,7 @@ public double Rmi { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Rmo @@ -212,7 +213,7 @@ public double Rmo { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RotateAngle @@ -222,7 +223,7 @@ public double RotateAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Rs @@ -232,5 +233,5 @@ public double Rs { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DriveTrain.BuilderParamRack.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DriveTrain.BuilderParamRack.md index 4eeb498cd0..5ce397b499 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DriveTrain.BuilderParamRack.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DriveTrain.BuilderParamRack.md @@ -1,4 +1,5 @@ -# Class BuilderParamRack +# Class BuilderParamRack + Namespace: [VM.CAD.Builders.DriveTrain](VM.CAD.Builders.DriveTrain.md) Assembly: VM.CAD.Builders.DriveTrain.dll @@ -9,9 +10,9 @@ public class BuilderParamRack : BuilderParamGear #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderParamBase ← -BuilderParamColorGeom ← +object ← +[BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ← +[BuilderParamColorGeom](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamColorGeom.cs) ← [BuilderParamGear](VM.CAD.Builders.DriveTrain.BuilderParamGear.md) ← [BuilderParamRack](VM.CAD.Builders.DriveTrain.BuilderParamRack.md) @@ -26,13 +27,13 @@ BuilderParamColorGeom ← [BuilderParamGear.CenterPosition](VM.CAD.Builders.DriveTrain.BuilderParamGear.md\#VM\_CAD\_Builders\_DriveTrain\_BuilderParamGear\_CenterPosition), [BuilderParamGear.Orientation](VM.CAD.Builders.DriveTrain.BuilderParamGear.md\#VM\_CAD\_Builders\_DriveTrain\_BuilderParamGear\_Orientation), [BuilderParamGear.Splines](VM.CAD.Builders.DriveTrain.BuilderParamGear.md\#VM\_CAD\_Builders\_DriveTrain\_BuilderParamGear\_Splines), -BuilderParamColorGeom.Color, -BuilderParamBase.ToXmlString\(\), -BuilderParamBase.FinalizeParameter\(\), -BuilderParamBase.SetTypeName\(\), -BuilderParamBase.Key, -BuilderParamBase.TypeName, -BuilderParamBase.Transparency +[BuilderParamColorGeom.Color](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamColorGeom.cs), +[BuilderParamBase.ToXmlString\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.FinalizeParameter\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.SetTypeName\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.Key](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.TypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.Transparency](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) #### Extension Methods @@ -58,7 +59,7 @@ public double Diameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Height @@ -68,7 +69,7 @@ public double Height { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ModuleT @@ -78,7 +79,7 @@ public double ModuleT { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SegmentIndex @@ -88,7 +89,7 @@ public int SegmentIndex { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### SideLength @@ -98,5 +99,5 @@ public double SideLength { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DriveTrain.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DriveTrain.md index 92c3299ac7..c53f1d8d34 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DriveTrain.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.DriveTrain.md @@ -1,4 +1,5 @@ -# Namespace VM.CAD.Builders.DriveTrain +# Namespace VM.CAD.Builders.DriveTrain + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.KeyInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.KeyInfo.md index 8ac4874936..2443478bb9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.KeyInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.KeyInfo.md @@ -1,4 +1,5 @@ -# Struct KeyInfo +# Struct KeyInfo + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -21,7 +22,7 @@ public string Key { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Operators @@ -35,7 +36,7 @@ public static implicit operator KeyInfo(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr The key to convert. @@ -59,5 +60,5 @@ The Namespace: [VM.CAD.Builders.Links](VM.CAD.Builders.Links.md) Assembly: VM.CAD.Builders.Links.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.Links.BuilderParamLink.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.Links.BuilderParamLink.md index adc482b56d..ff17249b64 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.Links.BuilderParamLink.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.Links.BuilderParamLink.md @@ -1,4 +1,5 @@ -# Class BuilderParamLink +# Class BuilderParamLink + Namespace: [VM.CAD.Builders.Links](VM.CAD.Builders.Links.md) Assembly: VM.CAD.Builders.Links.dll @@ -11,10 +12,10 @@ public class BuilderParamLink : BuilderParamTransform #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderParamBase ← -BuilderParamColorGeom ← -BuilderParamTransform ← +object ← +[BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ← +[BuilderParamColorGeom](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamColorGeom.cs) ← +[BuilderParamTransform](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamTransform.cs) ← [BuilderParamLink](VM.CAD.Builders.Links.BuilderParamLink.md) #### Derived @@ -24,14 +25,14 @@ BuilderParamTransform ← #### Inherited Members -BuilderParamTransform.Transform, -BuilderParamColorGeom.Color, -BuilderParamBase.ToXmlString\(\), -BuilderParamBase.FinalizeParameter\(\), -BuilderParamBase.SetTypeName\(\), -BuilderParamBase.Key, -BuilderParamBase.TypeName, -BuilderParamBase.Transparency +[BuilderParamTransform.Transform](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamTransform.cs), +[BuilderParamColorGeom.Color](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamColorGeom.cs), +[BuilderParamBase.ToXmlString\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.FinalizeParameter\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.SetTypeName\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.Key](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.TypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.Transparency](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) #### Extension Methods @@ -67,7 +68,7 @@ public double InnerGauge { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### LinkGeometry @@ -77,7 +78,7 @@ public BuilderParamMultiUnite LinkGeometry { get; set; } #### Property Value - BuilderParamMultiUnite + [BuilderParamMultiUnite](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamMultiUnite.cs) ### LinkHeight1 @@ -87,7 +88,7 @@ public double LinkHeight1 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### LinkHeight2 @@ -97,7 +98,7 @@ public double LinkHeight2 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### LinkPitch @@ -107,7 +108,7 @@ public double LinkPitch { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### LinkTransform @@ -137,7 +138,7 @@ public double OuterGauge { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### PinBooleanType @@ -157,7 +158,7 @@ public double PinDiameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### PinWidth @@ -167,7 +168,7 @@ public double PinWidth { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -179,11 +180,11 @@ protected void AddCylinder(double diameter, double xPosition, double zPosition, #### Parameters -`diameter` [double](https://learn.microsoft.com/dotnet/api/system.double) +`diameter` double -`xPosition` [double](https://learn.microsoft.com/dotnet/api/system.double) +`xPosition` double -`zPosition` [double](https://learn.microsoft.com/dotnet/api/system.double) +`zPosition` double `booleanType` [BooleanType](VM.CAD.Builders.Links.BooleanType.md) @@ -195,7 +196,7 @@ public void AddSubtractBuilderParam(BuilderParamBase builderParam) #### Parameters -`builderParam` BuilderParamBase +`builderParam` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### AddSubtractBuilderParam\(IEnumerable\) @@ -205,7 +206,7 @@ public void AddSubtractBuilderParam(IEnumerable builderParams) #### Parameters -`builderParams` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`builderParams` IEnumerable<[BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs)\> ### AddUniteBuilderParam\(BuilderParamBase\) @@ -215,7 +216,7 @@ public void AddUniteBuilderParam(BuilderParamBase builderParam) #### Parameters -`builderParam` BuilderParamBase +`builderParam` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### AddUniteBuilderParam\(IEnumerable\) @@ -225,5 +226,5 @@ public void AddUniteBuilderParam(IEnumerable builderParams) #### Parameters -`builderParams` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`builderParams` IEnumerable<[BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs)\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.Links.BuilderParamLinkSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.Links.BuilderParamLinkSimple.md index 4a6ccce1e2..b84e7b0cbc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.Links.BuilderParamLinkSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.Links.BuilderParamLinkSimple.md @@ -1,4 +1,5 @@ -# Class BuilderParamLinkSimple +# Class BuilderParamLinkSimple + Namespace: [VM.CAD.Builders.Links](VM.CAD.Builders.Links.md) Assembly: VM.CAD.Builders.Links.dll @@ -9,10 +10,10 @@ public class BuilderParamLinkSimple : BuilderParamLink #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderParamBase ← -BuilderParamColorGeom ← -BuilderParamTransform ← +object ← +[BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ← +[BuilderParamColorGeom](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamColorGeom.cs) ← +[BuilderParamTransform](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamTransform.cs) ← [BuilderParamLink](VM.CAD.Builders.Links.BuilderParamLink.md) ← [BuilderParamLinkSimple](VM.CAD.Builders.Links.BuilderParamLinkSimple.md) @@ -35,14 +36,14 @@ BuilderParamTransform ← [BuilderParamLink.PinBooleanType](VM.CAD.Builders.Links.BuilderParamLink.md\#VM\_CAD\_Builders\_Links\_BuilderParamLink\_PinBooleanType), [BuilderParamLink.BushBooleanType](VM.CAD.Builders.Links.BuilderParamLink.md\#VM\_CAD\_Builders\_Links\_BuilderParamLink\_BushBooleanType), [BuilderParamLink.LinkGeometry](VM.CAD.Builders.Links.BuilderParamLink.md\#VM\_CAD\_Builders\_Links\_BuilderParamLink\_LinkGeometry), -BuilderParamTransform.Transform, -BuilderParamColorGeom.Color, -BuilderParamBase.ToXmlString\(\), -BuilderParamBase.FinalizeParameter\(\), -BuilderParamBase.SetTypeName\(\), -BuilderParamBase.Key, -BuilderParamBase.TypeName, -BuilderParamBase.Transparency +[BuilderParamTransform.Transform](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamTransform.cs), +[BuilderParamColorGeom.Color](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamColorGeom.cs), +[BuilderParamBase.ToXmlString\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.FinalizeParameter\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.SetTypeName\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.Key](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.TypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.Transparency](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) #### Extension Methods @@ -68,7 +69,7 @@ public double BushDiameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.Links.BuilderParamLinkV.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.Links.BuilderParamLinkV.md index c42c0e601a..9ac74c6637 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.Links.BuilderParamLinkV.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.Links.BuilderParamLinkV.md @@ -1,4 +1,5 @@ -# Class BuilderParamLinkV +# Class BuilderParamLinkV + Namespace: [VM.CAD.Builders.Links](VM.CAD.Builders.Links.md) Assembly: VM.CAD.Builders.Links.dll @@ -9,10 +10,10 @@ public class BuilderParamLinkV : BuilderParamLink #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderParamBase ← -BuilderParamColorGeom ← -BuilderParamTransform ← +object ← +[BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ← +[BuilderParamColorGeom](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamColorGeom.cs) ← +[BuilderParamTransform](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamTransform.cs) ← [BuilderParamLink](VM.CAD.Builders.Links.BuilderParamLink.md) ← [BuilderParamLinkV](VM.CAD.Builders.Links.BuilderParamLinkV.md) @@ -35,14 +36,14 @@ BuilderParamTransform ← [BuilderParamLink.PinBooleanType](VM.CAD.Builders.Links.BuilderParamLink.md\#VM\_CAD\_Builders\_Links\_BuilderParamLink\_PinBooleanType), [BuilderParamLink.BushBooleanType](VM.CAD.Builders.Links.BuilderParamLink.md\#VM\_CAD\_Builders\_Links\_BuilderParamLink\_BushBooleanType), [BuilderParamLink.LinkGeometry](VM.CAD.Builders.Links.BuilderParamLink.md\#VM\_CAD\_Builders\_Links\_BuilderParamLink\_LinkGeometry), -BuilderParamTransform.Transform, -BuilderParamColorGeom.Color, -BuilderParamBase.ToXmlString\(\), -BuilderParamBase.FinalizeParameter\(\), -BuilderParamBase.SetTypeName\(\), -BuilderParamBase.Key, -BuilderParamBase.TypeName, -BuilderParamBase.Transparency +[BuilderParamTransform.Transform](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamTransform.cs), +[BuilderParamColorGeom.Color](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamColorGeom.cs), +[BuilderParamBase.ToXmlString\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.FinalizeParameter\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.SetTypeName\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.Key](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.TypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.Transparency](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) #### Extension Methods @@ -68,7 +69,7 @@ public double BushBossRadius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### BushInnerDiameter @@ -78,7 +79,7 @@ public double BushInnerDiameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### BushOuterDiameter @@ -88,7 +89,7 @@ public double BushOuterDiameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### BushWidth @@ -98,7 +99,7 @@ public double BushWidth { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ChamferLength1 @@ -108,7 +109,7 @@ public double ChamferLength1 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ChamferLength2 @@ -118,7 +119,7 @@ public double ChamferLength2 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### LinkDepth1 @@ -128,7 +129,7 @@ public double LinkDepth1 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### LinkDepth2 @@ -138,7 +139,7 @@ public double LinkDepth2 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### LinkDistance1 @@ -148,7 +149,7 @@ public double LinkDistance1 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### LinkDistance2 @@ -158,7 +159,7 @@ public double LinkDistance2 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### LinkDistance3 @@ -168,7 +169,7 @@ public double LinkDistance3 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### LinkDistance4 @@ -178,7 +179,7 @@ public double LinkDistance4 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### PinBossRadius @@ -188,7 +189,7 @@ public double PinBossRadius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.Links.BuilderParamRoller.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.Links.BuilderParamRoller.md index f3deeddfdb..c2c85a4dc1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.Links.BuilderParamRoller.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.Links.BuilderParamRoller.md @@ -1,4 +1,5 @@ -# Class BuilderParamRoller +# Class BuilderParamRoller + Namespace: [VM.CAD.Builders.Links](VM.CAD.Builders.Links.md) Assembly: VM.CAD.Builders.Links.dll @@ -9,22 +10,22 @@ public class BuilderParamRoller : BuilderParamTransform #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderParamBase ← -BuilderParamColorGeom ← -BuilderParamTransform ← +object ← +[BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ← +[BuilderParamColorGeom](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamColorGeom.cs) ← +[BuilderParamTransform](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamTransform.cs) ← [BuilderParamRoller](VM.CAD.Builders.Links.BuilderParamRoller.md) #### Inherited Members -BuilderParamTransform.Transform, -BuilderParamColorGeom.Color, -BuilderParamBase.ToXmlString\(\), -BuilderParamBase.FinalizeParameter\(\), -BuilderParamBase.SetTypeName\(\), -BuilderParamBase.Key, -BuilderParamBase.TypeName, -BuilderParamBase.Transparency +[BuilderParamTransform.Transform](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamTransform.cs), +[BuilderParamColorGeom.Color](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamColorGeom.cs), +[BuilderParamBase.ToXmlString\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.FinalizeParameter\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.SetTypeName\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.Key](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.TypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.Transparency](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) #### Extension Methods @@ -70,7 +71,7 @@ public List Cylinders { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List<[BuilderParamCylinder](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamCylinder.cs)\> ### Profile @@ -80,5 +81,5 @@ public List Profile { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.Links.BuilderParamShoe.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.Links.BuilderParamShoe.md index c63828985c..41d6767df4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.Links.BuilderParamShoe.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.Links.BuilderParamShoe.md @@ -1,4 +1,5 @@ -# Class BuilderParamShoe +# Class BuilderParamShoe + Namespace: [VM.CAD.Builders.Links](VM.CAD.Builders.Links.md) Assembly: VM.CAD.Builders.Links.dll @@ -9,22 +10,22 @@ public class BuilderParamShoe : BuilderParamTransform #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderParamBase ← -BuilderParamColorGeom ← -BuilderParamTransform ← +object ← +[BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ← +[BuilderParamColorGeom](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamColorGeom.cs) ← +[BuilderParamTransform](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamTransform.cs) ← [BuilderParamShoe](VM.CAD.Builders.Links.BuilderParamShoe.md) #### Inherited Members -BuilderParamTransform.Transform, -BuilderParamColorGeom.Color, -BuilderParamBase.ToXmlString\(\), -BuilderParamBase.FinalizeParameter\(\), -BuilderParamBase.SetTypeName\(\), -BuilderParamBase.Key, -BuilderParamBase.TypeName, -BuilderParamBase.Transparency +[BuilderParamTransform.Transform](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamTransform.cs), +[BuilderParamColorGeom.Color](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamColorGeom.cs), +[BuilderParamBase.ToXmlString\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.FinalizeParameter\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.SetTypeName\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.Key](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.TypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.Transparency](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) #### Extension Methods @@ -50,7 +51,7 @@ public List Cylinders { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List<[BuilderParamCylinder](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamCylinder.cs)\> ### ExtrudeAxis @@ -70,7 +71,7 @@ public List Points { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### Width @@ -80,7 +81,7 @@ public double Width { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### WorkPlane diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.Links.BuilderParamSprocket.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.Links.BuilderParamSprocket.md index e95286df12..e864e0f1f4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.Links.BuilderParamSprocket.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.Links.BuilderParamSprocket.md @@ -1,4 +1,5 @@ -# Class BuilderParamSprocket +# Class BuilderParamSprocket + Namespace: [VM.CAD.Builders.Links](VM.CAD.Builders.Links.md) Assembly: VM.CAD.Builders.Links.dll @@ -9,22 +10,22 @@ public class BuilderParamSprocket : BuilderParamTransform #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderParamBase ← -BuilderParamColorGeom ← -BuilderParamTransform ← +object ← +[BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ← +[BuilderParamColorGeom](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamColorGeom.cs) ← +[BuilderParamTransform](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamTransform.cs) ← [BuilderParamSprocket](VM.CAD.Builders.Links.BuilderParamSprocket.md) #### Inherited Members -BuilderParamTransform.Transform, -BuilderParamColorGeom.Color, -BuilderParamBase.ToXmlString\(\), -BuilderParamBase.FinalizeParameter\(\), -BuilderParamBase.SetTypeName\(\), -BuilderParamBase.Key, -BuilderParamBase.TypeName, -BuilderParamBase.Transparency +[BuilderParamTransform.Transform](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamTransform.cs), +[BuilderParamColorGeom.Color](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamColorGeom.cs), +[BuilderParamBase.ToXmlString\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.FinalizeParameter\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.SetTypeName\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.Key](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.TypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.Transparency](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) #### Extension Methods @@ -70,7 +71,7 @@ public int NumberOfTooth { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Points @@ -80,7 +81,7 @@ public List Points { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### ShaftRadius @@ -90,7 +91,7 @@ public double ShaftRadius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ShaftWidth @@ -100,7 +101,7 @@ public double ShaftWidth { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SprocketWidth @@ -110,7 +111,7 @@ public double SprocketWidth { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UseShaft @@ -120,7 +121,7 @@ public bool UseShaft { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### WorkPlane diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.Links.LinkType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.Links.LinkType.md index 5f03769d6a..741b7e7dde 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.Links.LinkType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.Links.LinkType.md @@ -1,4 +1,5 @@ -# Enum LinkType +# Enum LinkType + Namespace: [VM.CAD.Builders.Links](VM.CAD.Builders.Links.md) Assembly: VM.CAD.Builders.Links.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.Links.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.Links.md index 2abf833597..62fcd3f4b8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.Links.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.Links.md @@ -1,4 +1,5 @@ -# Namespace VM.CAD.Builders.Links +# Namespace VM.CAD.Builders.Links + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.SheetThickenDirection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.SheetThickenDirection.md index bbd8339d87..6c7b5708a5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.SheetThickenDirection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.SheetThickenDirection.md @@ -1,4 +1,5 @@ -# Enum SheetThickenDirection +# Enum SheetThickenDirection + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.SplineInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.SplineInfo.md index fb8e4175e4..3543529ba5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.SplineInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.SplineInfo.md @@ -1,4 +1,5 @@ -# Class SplineInfo +# Class SplineInfo + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -9,7 +10,7 @@ public class SplineInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SplineInfo](VM.CAD.Builders.SplineInfo.md) #### Extension Methods @@ -36,7 +37,7 @@ public List Left { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### Right @@ -46,5 +47,5 @@ public List Right { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.TopologyInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.TopologyInfo.md index bfec8901dd..9d5e8531e6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.TopologyInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.TopologyInfo.md @@ -1,4 +1,5 @@ -# Struct TopologyInfo +# Struct TopologyInfo + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -17,7 +18,7 @@ public int A { readonly get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### B @@ -27,7 +28,7 @@ public int B { readonly get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### G @@ -37,7 +38,7 @@ public int G { readonly get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Index @@ -47,7 +48,7 @@ public int Index { readonly get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### R @@ -57,5 +58,5 @@ public int R { readonly get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.TransparencyInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.TransparencyInfo.md index bc5d8b72ed..616a931059 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.TransparencyInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.TransparencyInfo.md @@ -1,4 +1,5 @@ -# Struct TransparencyInfo +# Struct TransparencyInfo + Namespace: [VM.CAD.Builders](VM.CAD.Builders.md) Assembly: VM.CAD.Builders.dll @@ -17,7 +18,7 @@ public double Transp { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Operators @@ -33,7 +34,7 @@ public static implicit operator double(TransparencyInfo info) #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### implicit operator TransparencyInfo\(double\) @@ -43,7 +44,7 @@ public static implicit operator TransparencyInfo(double transparency) #### Parameters -`transparency` [double](https://learn.microsoft.com/dotnet/api/system.double) +`transparency` double #### Returns diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.md index 50aaa283a1..ca06b031af 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Builders.md @@ -1,4 +1,5 @@ -# Namespace VM.CAD.Builders +# Namespace VM.CAD.Builders + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Convert.Translator.LicenseInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Convert.Translator.LicenseInfo.md new file mode 100644 index 0000000000..fe0782c111 --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Convert.Translator.LicenseInfo.md @@ -0,0 +1,42 @@ +# Struct Translator.LicenseInfo + + +Namespace: [VM.CAD.Convert](VM.CAD.Convert.md) +Assembly: VM.CAD.Convert.dll + +```csharp +public struct Translator.LicenseInfo +``` + +## Fields + +### ActualFeature + +```csharp +public bool ActualFeature +``` + +#### Field Value + + bool + +### LicenseInformation + +```csharp +public string LicenseInformation +``` + +#### Field Value + + string + +### ManagerKey + +```csharp +public string ManagerKey +``` + +#### Field Value + + string + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Convert.Translator.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Convert.Translator.md new file mode 100644 index 0000000000..1f9fc902e1 --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Convert.Translator.md @@ -0,0 +1,55 @@ +# Class Translator + + +Namespace: [VM.CAD.Convert](VM.CAD.Convert.md) +Assembly: VM.CAD.Convert.dll + +```csharp +public class Translator +``` + +#### Inheritance + +object ← +[Translator](VM.CAD.Convert.Translator.md) + +#### Extension Methods + +[LinkPropertyItemCache.GetLinkProperties\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkProperties\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkPropertiesAndValues\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkPropertiesAndValues\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkedObjects\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkedObjects\_\_1\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_) + +## Constructors + +### Translator\(\) + +```csharp +public Translator() +``` + +## Methods + +### Translate\(string, string, string, string, string, bool\) + +```csharp +public static int Translate(string strKey, string strideConvertPath, string hoopsExchangeDirectory, string fileFrom, string fileTo, bool heal) +``` + +#### Parameters + +`strKey` string + +`strideConvertPath` string + +`hoopsExchangeDirectory` string + +`fileFrom` string + +`fileTo` string + +`heal` bool + +#### Returns + + int + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Convert.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Convert.md new file mode 100644 index 0000000000..67c947a624 --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Convert.md @@ -0,0 +1,11 @@ +# Namespace VM.CAD.Convert + + +### Classes + + [Translator](VM.CAD.Convert.Translator.md) + +### Structs + + [Translator.LicenseInfo](VM.CAD.Convert.Translator.LicenseInfo.md) + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Application.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Application.md index eb25c4086b..67d26f78db 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Application.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Application.md @@ -1,4 +1,5 @@ -# Class Application +# Class Application + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -11,7 +12,7 @@ public sealed class Application : KernelObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [KernelObject](VM.CAD.Kernel.KernelObject.md) ← [Application](VM.CAD.Kernel.Application.md) @@ -38,11 +39,11 @@ public Application(UIntPtr key, bool isLock = true) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr The key of the application object. -`isLock` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isLock` bool If true, lock reference of the application object. otherwise, false. @@ -64,7 +65,7 @@ Information of the documet to open. #### Returns - \([Document](VM.CAD.Kernel.Document.md) [doc](https://learn.microsoft.com/dotnet/api/system.valuetuple\-vm.cad.kernel.document,system.uint32\-.doc), [uint](https://learn.microsoft.com/dotnet/api/system.uint32) [returnCode](https://learn.microsoft.com/dotnet/api/system.valuetuple\-vm.cad.kernel.document,system.uint32\-.returncode)\) + \([Document](VM.CAD.Kernel.Document.md) doc, uint returnCode\) The opened document. @@ -82,17 +83,17 @@ public void SetLogLevel(int nKernelLogLevel, int nTranslatorLogLevel) #### Parameters -`nKernelLogLevel` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nKernelLogLevel` int Kernel message log level -`nTranslatorLogLevel` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nTranslatorLogLevel` int Translator message log level #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException Failed to set log level. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Body.WrtieMessage.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Body.WrtieMessage.md index 8d30bd5056..99a7685837 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Body.WrtieMessage.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Body.WrtieMessage.md @@ -1,4 +1,5 @@ -# Delegate Body.WrtieMessage +# Delegate Body.WrtieMessage + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -9,7 +10,7 @@ public delegate void Body.WrtieMessage(string strMessage) #### Parameters -`strMessage` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMessage` string #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Body.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Body.md index 522154fdcc..e3b7259608 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Body.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Body.md @@ -1,4 +1,5 @@ -# Class Body +# Class Body + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -9,7 +10,7 @@ public sealed class Body : Entity, IHasID, IFacetable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [KernelObject](VM.CAD.Kernel.KernelObject.md) ← [Entity](VM.CAD.Kernel.Entity.md) ← [Body](VM.CAD.Kernel.Body.md) @@ -42,7 +43,7 @@ public Body(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr ## Methods @@ -62,7 +63,7 @@ public void GetEdgeKernelProxy(Identifier pid, out UIntPtr edgeProxy) `pid` Identifier -`edgeProxy` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`edgeProxy` UIntPtr ### GetFaceKernelProxy\(Identifier, out UIntPtr\) @@ -74,7 +75,7 @@ public void GetFaceKernelProxy(Identifier nPID, out UIntPtr faceProxy) `nPID` Identifier -`faceProxy` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`faceProxy` UIntPtr ### GetGeomInfo\(double, out Vector\[\], out uint\[\], bool\) @@ -84,17 +85,17 @@ public bool GetGeomInfo(double lengthFactor, out Vector[] position, out uint[] c #### Parameters -`lengthFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`lengthFactor` double `position` Vector\[\] -`connectivities` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`connectivities` uint\[\] -`bCreateFacetDictionary` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bCreateFacetDictionary` bool #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetVoidCount\(\) @@ -104,7 +105,7 @@ public uint GetVoidCount() #### Returns - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### GetVoidPoints\(double, out uint\) @@ -114,9 +115,9 @@ public Vector[] GetVoidPoints(double offset, out uint countFailed) #### Parameters -`offset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`offset` double -`countFailed` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`countFailed` uint #### Returns @@ -130,13 +131,13 @@ public int HasDefect(Action actWriteMessage, bool bDetailedInformation = #### Parameters -`actWriteMessage` [Action](https://learn.microsoft.com/dotnet/api/system.action\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`actWriteMessage` Action -`bDetailedInformation` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDetailedInformation` bool #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### RemoveUnusedPoints\(Vector\[\], uint\[\]\) @@ -148,7 +149,7 @@ public void RemoveUnusedPoints(Vector[] aryPosTria, uint[] aryConTria) `aryPosTria` Vector\[\] -`aryConTria` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`aryConTria` uint\[\] ### Repair\(SimplifyOption, SimplifyOption, double, Action, bool\) @@ -162,15 +163,15 @@ public int Repair(SimplifyOption simplifySurface = SimplifyOption.ForceSimplify, `simplifyCurve` [SimplifyOption](VM.CAD.Kernel.SimplifyOption.md) -`dDesiredGap` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDesiredGap` double -`actWriteMessage` [Action](https://learn.microsoft.com/dotnet/api/system.action\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`actWriteMessage` Action -`bDetailedInformation` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDetailedInformation` bool #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### UpdateDisplay\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.BoundingBox.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.BoundingBox.md index aded49b7c5..e42eb996dc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.BoundingBox.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.BoundingBox.md @@ -1,4 +1,5 @@ -# Struct BoundingBox +# Struct BoundingBox + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.CADImport.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.CADImport.md index 6653b01474..276556f3af 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.CADImport.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.CADImport.md @@ -1,4 +1,5 @@ -# Class CADImport +# Class CADImport + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -11,7 +12,7 @@ public static class CADImport #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CADImport](VM.CAD.Kernel.CADImport.md) #### Extension Methods @@ -32,7 +33,7 @@ public static string GetTranslateFilter() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The filter for CADImport diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.ConversionMethod.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.ConversionMethod.md index df93a6ec52..191062b04a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.ConversionMethod.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.ConversionMethod.md @@ -1,4 +1,5 @@ -# Enum ConversionMethod +# Enum ConversionMethod + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Display.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Display.md index da83599b45..3253772259 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Display.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Display.md @@ -1,4 +1,5 @@ -# Class Display +# Class Display + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -11,7 +12,7 @@ public class Display #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Display](VM.CAD.Kernel.Display.md) #### Extension Methods @@ -38,7 +39,7 @@ public string @default { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### description @@ -48,7 +49,7 @@ public string description { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### items @@ -58,7 +59,7 @@ public string items { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### name @@ -68,7 +69,7 @@ public string name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### type @@ -78,5 +79,5 @@ public string type { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Document.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Document.md index 9931e52f5d..09a9e9c07f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Document.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Document.md @@ -1,4 +1,5 @@ -# Class Document +# Class Document + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -9,7 +10,7 @@ public class Document : KernelObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [KernelObject](VM.CAD.Kernel.KernelObject.md) ← [Document](VM.CAD.Kernel.Document.md) @@ -41,9 +42,9 @@ public Document(UIntPtr key, bool isLock = true) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr -`isLock` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isLock` bool ## Properties @@ -67,19 +68,19 @@ public void DisplayTmpDirection(double dFromX, double dFromY, double dFromZ, dou #### Parameters -`dFromX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dFromX` double -`dFromY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dFromY` double -`dFromZ` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dFromZ` double -`dToX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dToX` double -`dToY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dToY` double -`dToZ` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dToZ` double -`dIconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dIconSize` double ### DisplayTmpOrientation\(double, double, double, double, double, double, double, double, double, double\) @@ -89,25 +90,25 @@ public void DisplayTmpOrientation(double dOriginX, double dOriginY, double dOrig #### Parameters -`dOriginX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOriginX` double -`dOriginY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOriginY` double -`dOriginZ` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOriginZ` double -`dZPointX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dZPointX` double -`dZPointY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dZPointY` double -`dZPointZ` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dZPointZ` double -`dXPointX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dXPointX` double -`dXPointY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dXPointY` double -`dXPointZ` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dXPointZ` double -`dIconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dIconSize` double ### DisplayTmpTransform\(double, double, double, double, double, double, double, double, double, double\) @@ -117,23 +118,23 @@ public void DisplayTmpTransform(double dOriginX, double dOriginY, double dOrigin #### Parameters -`dOriginX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOriginX` double -`dOriginY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOriginY` double -`dOriginZ` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOriginZ` double -`dZPointX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dZPointX` double -`dZPointY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dZPointY` double -`dZPointZ` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dZPointZ` double -`dXPointX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dXPointX` double -`dXPointY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dXPointY` double -`dXPointZ` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dXPointZ` double -`dIconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dIconSize` double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Edge.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Edge.md index 4f11dd7db7..ca177c8156 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Edge.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Edge.md @@ -1,4 +1,5 @@ -# Class Edge +# Class Edge + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -9,7 +10,7 @@ public class Edge : Topology, ITopology, IHasID, ISelected #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [KernelObject](VM.CAD.Kernel.KernelObject.md) ← [Entity](VM.CAD.Kernel.Entity.md) ← [Topology](VM.CAD.Kernel.Topology.md) ← @@ -55,9 +56,9 @@ public Edge(UIntPtr key, bool isLock = true) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr -`isLock` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isLock` bool ## Properties @@ -69,7 +70,7 @@ public bool IsCircle { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -101,7 +102,7 @@ public Vector GetPointOnEdge(double u) #### Parameters -`u` [double](https://learn.microsoft.com/dotnet/api/system.double) +`u` double #### Returns @@ -115,7 +116,7 @@ public Vector GetTangentialDirection(double u) #### Parameters -`u` [double](https://learn.microsoft.com/dotnet/api/system.double) +`u` double #### Returns @@ -129,9 +130,9 @@ public static bool IsEdge(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Entity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Entity.md index bf33388d4a..849f844b6a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Entity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Entity.md @@ -1,4 +1,5 @@ -# Class Entity +# Class Entity + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -9,7 +10,7 @@ public abstract class Entity : KernelObject, IHasID #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [KernelObject](VM.CAD.Kernel.KernelObject.md) ← [Entity](VM.CAD.Kernel.Entity.md) @@ -50,9 +51,9 @@ protected Entity(UIntPtr key, bool isLock = true) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr -`isLock` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isLock` bool ## Properties diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Environment.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Environment.md index f1fe6b62fb..404a1a2ee6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Environment.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Environment.md @@ -1,4 +1,5 @@ -# Class Environment +# Class Environment + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -11,7 +12,7 @@ public class Environment #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Environment](VM.CAD.Kernel.Environment.md) #### Extension Methods @@ -38,7 +39,7 @@ public bool isMerge { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### isRelatePath @@ -48,7 +49,7 @@ public bool isRelatePath { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### mergeSeparator @@ -58,7 +59,7 @@ public string mergeSeparator { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### name @@ -68,7 +69,7 @@ public string name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### value @@ -78,5 +79,5 @@ public string value { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Environments.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Environments.md index 85000eedf3..174a706af7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Environments.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Environments.md @@ -1,4 +1,5 @@ -# Class Environments +# Class Environments + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -11,7 +12,7 @@ public class Environments #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Environments](VM.CAD.Kernel.Environments.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Export.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Export.md index 770ce8e926..eb68810d0d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Export.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Export.md @@ -1,4 +1,5 @@ -# Class Export +# Class Export + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -11,7 +12,7 @@ public class Export #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Export](VM.CAD.Kernel.Export.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Face.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Face.md index d39765cfc5..639bda80aa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Face.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Face.md @@ -1,4 +1,5 @@ -# Class Face +# Class Face + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -9,7 +10,7 @@ public class Face : Topology, ITopology, IHasID, ISelected #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [KernelObject](VM.CAD.Kernel.KernelObject.md) ← [Entity](VM.CAD.Kernel.Entity.md) ← [Topology](VM.CAD.Kernel.Topology.md) ← @@ -55,9 +56,9 @@ public Face(UIntPtr key, bool isLock = true) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr -`isLock` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isLock` bool ## Properties @@ -69,7 +70,7 @@ public bool IsCylinder { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsPlane @@ -79,7 +80,7 @@ public bool IsPlane { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsSphere @@ -89,7 +90,7 @@ public bool IsSphere { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -131,9 +132,9 @@ public Vector GetNormalDirection(double u, double v) #### Parameters -`u` [double](https://learn.microsoft.com/dotnet/api/system.double) +`u` double -`v` [double](https://learn.microsoft.com/dotnet/api/system.double) +`v` double #### Returns @@ -147,9 +148,9 @@ public Vector GetPointOnFace(double u, double v) #### Parameters -`u` [double](https://learn.microsoft.com/dotnet/api/system.double) +`u` double -`v` [double](https://learn.microsoft.com/dotnet/api/system.double) +`v` double #### Returns @@ -173,9 +174,9 @@ public static bool IsFace(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.FacetGeomInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.FacetGeomInfo.md index af6f70cb9f..93f444421a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.FacetGeomInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.FacetGeomInfo.md @@ -1,4 +1,5 @@ -# Struct FacetGeomInfo +# Struct FacetGeomInfo + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -27,7 +28,7 @@ public uint[] Connectivities #### Field Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] + uint\[\] ### LengthOfEachFace @@ -37,7 +38,7 @@ public uint[] LengthOfEachFace #### Field Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] + uint\[\] ### MidPoints @@ -67,7 +68,7 @@ public uint[] NumOfConnectivities #### Field Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] + uint\[\] ### StartingSeqOfEachFace @@ -77,7 +78,7 @@ public uint[] StartingSeqOfEachFace #### Field Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] + uint\[\] ### Vertices diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Filter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Filter.md index 9ed3d57bcc..517e3a6946 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Filter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Filter.md @@ -1,4 +1,5 @@ -# Class Filter +# Class Filter + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -11,7 +12,7 @@ public class Filter #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Filter](VM.CAD.Kernel.Filter.md) #### Extension Methods @@ -38,7 +39,7 @@ public string description { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### extension diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.IFacetable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.IFacetable.md index 2add99e2fd..234724d8c9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.IFacetable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.IFacetable.md @@ -1,4 +1,5 @@ -# Interface IFacetable +# Interface IFacetable + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.IFacetableExtension.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.IFacetableExtension.md index f1a43ff7b5..cae054b15f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.IFacetableExtension.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.IFacetableExtension.md @@ -1,4 +1,5 @@ -# Class IFacetableExtension +# Class IFacetableExtension + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -9,7 +10,7 @@ public static class IFacetableExtension #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [IFacetableExtension](VM.CAD.Kernel.IFacetableExtension.md) #### Extension Methods @@ -30,9 +31,9 @@ public static void SetGeometryOption(this IFacetable target, string argument, st `target` [IFacetable](VM.CAD.Kernel.IFacetable.md) -`argument` [string](https://learn.microsoft.com/dotnet/api/system.string) +`argument` string -`defaultArgument` [string](https://learn.microsoft.com/dotnet/api/system.string) +`defaultArgument` string -`lengthFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`lengthFactor` double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.ISession.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.ISession.md index 36bb63fd92..bf62f0c025 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.ISession.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.ISession.md @@ -1,4 +1,5 @@ -# Interface ISession +# Interface ISession + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.ITopology.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.ITopology.md index 72bf77c3d7..e74a3d134a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.ITopology.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.ITopology.md @@ -1,4 +1,5 @@ -# Interface ITopology +# Interface ITopology + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -28,5 +29,5 @@ UIntPtr ParentBodyKey { get; } #### Property Value - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.InterfaceParameterExtension.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.InterfaceParameterExtension.md index c6ea7a3414..b3e39f06c3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.InterfaceParameterExtension.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.InterfaceParameterExtension.md @@ -1,4 +1,5 @@ -# Class InterfaceParameterExtension +# Class InterfaceParameterExtension + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -9,7 +10,7 @@ public static class InterfaceParameterExtension #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [InterfaceParameterExtension](VM.CAD.Kernel.InterfaceParameterExtension.md) #### Extension Methods @@ -28,9 +29,9 @@ public static T[] GetArrayData(this UIntPtr pArr, ulong nSize) #### Parameters -`pArr` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pArr` UIntPtr -`nSize` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nSize` ulong #### Returns @@ -48,7 +49,7 @@ public static T[] GetArrayData(this UIntPtr pArr) #### Parameters -`pArr` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pArr` UIntPtr #### Returns @@ -66,11 +67,11 @@ public static ulong GetArrayElementCount(this UIntPtr pArr) #### Parameters -`pArr` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pArr` UIntPtr #### Returns - [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) + ulong ### SetArrayData\(UIntPtr, T\[\]\) @@ -80,7 +81,7 @@ public static void SetArrayData(this UIntPtr pArr, T[] arr) #### Parameters -`pArr` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pArr` UIntPtr `arr` T\[\] diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Kernel.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Kernel.md index a38630a892..64b4f0c510 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Kernel.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Kernel.md @@ -1,4 +1,5 @@ -# Class Kernel +# Class Kernel + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -9,7 +10,7 @@ public class Kernel : KernelObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [KernelObject](VM.CAD.Kernel.KernelObject.md) ← [Kernel](VM.CAD.Kernel.Kernel.md) @@ -41,9 +42,9 @@ public Kernel(UIntPtr key, bool isLock = true) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr -`isLock` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isLock` bool ## Methods @@ -55,9 +56,9 @@ public IDisposable UseSession(string strSessionName) #### Parameters -`strSessionName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSessionName` string #### Returns - [IDisposable](https://learn.microsoft.com/dotnet/api/system.idisposable) + IDisposable diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.KernelExtension.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.KernelExtension.md index c6db9bac08..0171669f12 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.KernelExtension.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.KernelExtension.md @@ -1,4 +1,5 @@ -# Class KernelExtension +# Class KernelExtension + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -9,7 +10,7 @@ public class KernelExtension : KernelObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [KernelObject](VM.CAD.Kernel.KernelObject.md) ← [KernelExtension](VM.CAD.Kernel.KernelExtension.md) @@ -45,9 +46,9 @@ public KernelExtension(UIntPtr key, bool isLock = true) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr -`isLock` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isLock` bool ## Methods @@ -59,9 +60,9 @@ public static T Create(UIntPtr key, bool bLock = true) where T : KernelExtens #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr -`bLock` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bLock` bool #### Returns diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.KernelObject.delGetFrom-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.KernelObject.delGetFrom-1.md index 69c8ecb4fb..096d92720b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.KernelObject.delGetFrom-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.KernelObject.delGetFrom-1.md @@ -1,4 +1,5 @@ -# Delegate KernelObject.delGetFrom +# Delegate KernelObject.delGetFrom + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -13,7 +14,7 @@ protected delegate int KernelObject.delGetFrom(out TResult result) #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int #### Type Parameters diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.KernelObject.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.KernelObject.md index 39ca18e0a0..a0c0d7a08b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.KernelObject.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.KernelObject.md @@ -1,4 +1,5 @@ -# Class KernelObject +# Class KernelObject + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -9,7 +10,7 @@ public abstract class KernelObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [KernelObject](VM.CAD.Kernel.KernelObject.md) #### Derived @@ -40,9 +41,9 @@ protected KernelObject(UIntPtr key, bool isLock = true) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr -`isLock` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isLock` bool ## Fields @@ -54,7 +55,7 @@ protected const int VMK_ARGUMENT_NULL = 1 #### Field Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### VMK\_ARGUMENT\_TYPE @@ -64,7 +65,7 @@ protected const int VMK_ARGUMENT_TYPE = 2 #### Field Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### VMK\_OK @@ -74,7 +75,7 @@ protected const int VMK_OK = 0 #### Field Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Properties @@ -86,7 +87,7 @@ public UIntPtr Key { get; } #### Property Value - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ## Methods @@ -116,7 +117,7 @@ protected static void Execute(Func function) #### Parameters -`function` [Func](https://learn.microsoft.com/dotnet/api/system.func\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`function` Func ### GetFrom\(delGetFrom, bool\) @@ -128,7 +129,7 @@ protected static TResult GetFrom(KernelObject.delGetFrom getFr `getFrom` [KernelObject](VM.CAD.Kernel.KernelObject.md).[delGetFrom](VM.CAD.Kernel.KernelObject.delGetFrom\-1.md) -`checkFunctionReturnValue` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`checkFunctionReturnValue` bool #### Returns diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Layer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Layer.md index 9b6cadddc3..f9e8aca18e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Layer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Layer.md @@ -1,4 +1,5 @@ -# Class Layer +# Class Layer + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -9,7 +10,7 @@ public class Layer : KernelObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [KernelObject](VM.CAD.Kernel.KernelObject.md) ← [Layer](VM.CAD.Kernel.Layer.md) @@ -41,9 +42,9 @@ public Layer(UIntPtr key, bool isLock = true) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr -`isLock` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isLock` bool ## Methods @@ -55,7 +56,7 @@ public void Add(UIntPtr keyObject) #### Parameters -`keyObject` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`keyObject` UIntPtr ### Remove\(UIntPtr\) @@ -65,7 +66,7 @@ public void Remove(UIntPtr keyObject) #### Parameters -`keyObject` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`keyObject` UIntPtr ### SetVisibility\(LayerVisibility\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.LayerManager.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.LayerManager.md index 7e3dd16326..5136468990 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.LayerManager.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.LayerManager.md @@ -1,4 +1,5 @@ -# Class LayerManager +# Class LayerManager + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -9,7 +10,7 @@ public class LayerManager : KernelObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [KernelObject](VM.CAD.Kernel.KernelObject.md) ← [LayerManager](VM.CAD.Kernel.LayerManager.md) @@ -41,9 +42,9 @@ public LayerManager(UIntPtr key, bool isLock = true) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr -`isLock` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isLock` bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.LayerVisibility.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.LayerVisibility.md index 99ac0f2f3f..b8c339c44f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.LayerVisibility.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.LayerVisibility.md @@ -1,4 +1,5 @@ -# Enum LayerVisibility +# Enum LayerVisibility + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.OpenDocumentInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.OpenDocumentInfo.md index a1a7a66ee6..2a71a69fa3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.OpenDocumentInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.OpenDocumentInfo.md @@ -1,4 +1,5 @@ -# Class OpenDocumentInfo +# Class OpenDocumentInfo + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -9,7 +10,7 @@ public class OpenDocumentInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OpenDocumentInfo](VM.CAD.Kernel.OpenDocumentInfo.md) #### Extension Methods @@ -56,7 +57,7 @@ public string FilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### LoadPrior242Sp3Files @@ -66,7 +67,7 @@ public bool LoadPrior242Sp3Files { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Offset @@ -76,5 +77,5 @@ public long Offset { get; set; } #### Property Value - [long](https://learn.microsoft.com/dotnet/api/system.int64) + long diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Option.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Option.md index 889ed062bb..da8f80799e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Option.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Option.md @@ -1,4 +1,5 @@ -# Class Option +# Class Option + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -11,7 +12,7 @@ public class Option #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Option](VM.CAD.Kernel.Option.md) #### Extension Methods @@ -48,7 +49,7 @@ public string @default { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### items @@ -58,7 +59,7 @@ public string items { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### name @@ -68,5 +69,5 @@ public string name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Options.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Options.md index b06c418600..88914da9a9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Options.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Options.md @@ -1,4 +1,5 @@ -# Class Options +# Class Options + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -11,7 +12,7 @@ public class Options #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Options](VM.CAD.Kernel.Options.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Render.Canvas.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Render.Canvas.md index 0d75643165..f7a10b8285 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Render.Canvas.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Render.Canvas.md @@ -1,4 +1,5 @@ -# Class Canvas +# Class Canvas + Namespace: [VM.CAD.Kernel.Render](VM.CAD.Kernel.Render.md) Assembly: VM.CAD.Kernel.dll @@ -9,7 +10,7 @@ public sealed class Canvas : KernelObject, IDrawReference #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [KernelObject](VM.CAD.Kernel.KernelObject.md) ← [Canvas](VM.CAD.Kernel.Render.Canvas.md) @@ -40,7 +41,7 @@ public bool BackplaneCull { set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Color @@ -52,7 +53,7 @@ public Color Color { set; } #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### Document @@ -100,7 +101,7 @@ public double LineWeight { set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TextSize @@ -112,7 +113,7 @@ public double TextSize { set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Transparency @@ -124,7 +125,7 @@ public double Transparency { set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### WireframeMode @@ -136,7 +137,7 @@ public bool WireframeMode { set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -176,7 +177,7 @@ public static Canvas Create(IDocument3D doc, bool ThreadSafeCanvas = true) The document -`ThreadSafeCanvas` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`ThreadSafeCanvas` bool true if to create thread-safe canvas, otherwise false. @@ -194,7 +195,7 @@ public static Canvas Create(UIntPtr key, IDocument3D doc, bool ThreadSafeCanvas #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr The key of the canvas @@ -202,7 +203,7 @@ The key of the canvas The document -`ThreadSafeCanvas` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`ThreadSafeCanvas` bool true if to create thread-safe canvas, otherwise false. @@ -220,7 +221,7 @@ public void DisplayTheFront(double dDepthRange = -1) #### Parameters -`dDepthRange` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDepthRange` double The depth range. If it is negative value, default value will be used. @@ -248,7 +249,7 @@ The third point #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### DrawArrow\(Vector, Vector, double\) @@ -268,13 +269,13 @@ The start point The end point -`dArrowSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dArrowSize` double The arrow size. If dArrowSize is negative or zero value, default value will be used. #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### DrawCircle\(Vector, double, Vector, bool\) @@ -290,7 +291,7 @@ public UIntPtr DrawCircle(Vector vecCenter, double dRad, Vector vecNormal, bool The center point -`dRad` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRad` double The radius @@ -298,13 +299,13 @@ The radius The normal vector -`bFill` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bFill` bool The fill flag #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### DrawCylinder\(Vector, Vector, double, bool, bool\) @@ -324,18 +325,18 @@ The start point The end point -`dRad` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRad` double The radius -`bFirstCap` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bFirstCap` bool if first cap and second cap is true, "both"; if first cap is true and second cap is false, "first"; if first cap is false and second cap is true, "second"; if first cap and second cap is false, "none" -`bSecondCap` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bSecondCap` bool if first cap and second cap is true, "both"; if first cap is true and second cap is false, "first"; @@ -344,7 +345,7 @@ if first cap and second cap is true, "both"; #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### DrawCylinder\(Vector, Vector, double, string\) @@ -364,17 +365,17 @@ The start point The end point -`dRad` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRad` double The radius -`strCapOption` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCapOption` string String specifying which ends to cap, either "first", "second", "none", or "both" #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### DrawDimension\(Vector, string\) @@ -390,13 +391,13 @@ public UIntPtr DrawDimension(Vector vecCenter, string strText) The center position. -`strText` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strText` string The string text. #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### DrawIcon\(IconInfo\) @@ -426,7 +427,7 @@ public void DrawIcon(IconInfo iconInfo, double dScale) The icon information -`dScale` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dScale` double The scale @@ -450,7 +451,7 @@ The end point #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### DrawMarker\(Vector\) @@ -468,7 +469,7 @@ The center point #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### DrawMesh\(int, int, ICollection\) @@ -480,21 +481,21 @@ public UIntPtr DrawMesh(int nRows, int nColumns, ICollection points) #### Parameters -`nRows` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nRows` int The rows numner -`nColumns` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nColumns` int The columns number -`points` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1) +`points` ICollection The collection of points #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### DrawMesh\(int, int, Vector\[\]\) @@ -506,11 +507,11 @@ public UIntPtr DrawMesh(int nRows, int nColumns, Vector[] points) #### Parameters -`nRows` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nRows` int The rows numner -`nColumns` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nColumns` int The columns number @@ -520,7 +521,7 @@ The array of points #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### DrawNurbs\(int, int, int, int, ICollection, ICollection, ICollection, ICollection\) @@ -532,41 +533,41 @@ public UIntPtr DrawNurbs(int u_degree, int v_degree, int u_count, int v_count, I #### Parameters -`u_degree` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`u_degree` int Degree of the surface in the u direction -`v_degree` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`v_degree` int Degree of the surface in the v direction -`u_count` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`u_count` int Number of valid control points in the u direction -`v_count` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`v_count` int Number of valid control points in the v direction -`ctrlPts` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1) +`ctrlPts` ICollection Vector of x-y-z triplets for the coordinates of the control points -`weights` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[float](https://learn.microsoft.com/dotnet/api/system.single)\> +`weights` ICollection Control point weights -`u_knots` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[float](https://learn.microsoft.com/dotnet/api/system.single)\> +`u_knots` ICollection Knot sequence in the u direction -`v_knots` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[float](https://learn.microsoft.com/dotnet/api/system.single)\> +`v_knots` ICollection Knot sequence in the v direction #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### DrawNurbs\(int, int, int, int, Vector\[\], float\[\], float\[\], float\[\]\) @@ -578,19 +579,19 @@ public UIntPtr DrawNurbs(int u_degree, int v_degree, int u_count, int v_count, V #### Parameters -`u_degree` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`u_degree` int Degree of the surface in the u direction -`v_degree` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`v_degree` int Degree of the surface in the v direction -`u_count` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`u_count` int Number of valid control points in the u direction -`v_count` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`v_count` int Number of valid control points in the v direction @@ -598,21 +599,21 @@ Number of valid control points in the v direction Vector of x-y-z triplets for the coordinates of the control points -`weights` [float](https://learn.microsoft.com/dotnet/api/system.single)\[\] +`weights` float\[\] Control point weights -`u_knots` [float](https://learn.microsoft.com/dotnet/api/system.single)\[\] +`u_knots` float\[\] Knot sequence in the u direction -`v_knots` [float](https://learn.microsoft.com/dotnet/api/system.single)\[\] +`v_knots` float\[\] Knot sequence in the v direction #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### DrawPolygon\(ICollection\) @@ -624,13 +625,13 @@ public UIntPtr DrawPolygon(ICollection colPoint) #### Parameters -`colPoint` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1) +`colPoint` ICollection The collection of points #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### DrawPolygon\(Vector\[\]\) @@ -648,7 +649,7 @@ The array of points #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### DrawPolyline\(ICollection\) @@ -660,13 +661,13 @@ public UIntPtr DrawPolyline(ICollection colPoint) #### Parameters -`colPoint` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1) +`colPoint` ICollection The collection of points #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### DrawPolyline\(Vector\[\]\) @@ -684,7 +685,7 @@ The array of points #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### DrawShell\(ICollection, ICollection, double\) @@ -696,21 +697,21 @@ public UIntPtr DrawShell(ICollection points, ICollection connectivi #### Parameters -`points` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1) +`points` ICollection The collection of points. -`connectivities` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`connectivities` ICollection The collection of connectivities. -`dScale` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dScale` double The scale to draw. #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### DrawShell\(Vector\[\], int\[\], double\) @@ -726,17 +727,17 @@ public UIntPtr DrawShell(Vector[] points, int[] connectivities, double dScale = The array of points. -`connectivities` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`connectivities` int\[\] The array of connectivities. -`dScale` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dScale` double The scale factor to draw. #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### DrawShellWithFaceNormal\(ICollection, ICollection, ICollection\) @@ -748,21 +749,21 @@ public UIntPtr DrawShellWithFaceNormal(ICollection points, ICollection +`points` ICollection The collection of points. -`connectivities` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`connectivities` ICollection The collection of connectivities. -`faceNormals` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1) +`faceNormals` ICollection The collection of face normal vectors. #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### DrawShellWithFaceNormal\(Vector\[\], int\[\], Vector\[\]\) @@ -778,7 +779,7 @@ public UIntPtr DrawShellWithFaceNormal(Vector[] points, int[] connectivities, Ve The array of points. -`connectivities` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`connectivities` int\[\] The array of connectivities. @@ -788,7 +789,7 @@ The array of face normal vectors. #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### DrawShellWithVertexNormal\(ICollection, ICollection, ICollection\) @@ -800,21 +801,21 @@ public UIntPtr DrawShellWithVertexNormal(ICollection points, ICollection #### Parameters -`points` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1) +`points` ICollection The collection of points. -`connectivities` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`connectivities` ICollection The collection of connectivities. -`vertexNormals` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1) +`vertexNormals` ICollection The collection of vertex normal vectors. #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### DrawShellWithVertexNormal\(Vector\[\], int\[\], Vector\[\]\) @@ -830,7 +831,7 @@ public UIntPtr DrawShellWithVertexNormal(Vector[] points, int[] connectivities, The array of points. -`connectivities` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`connectivities` int\[\] The array of connectivities. @@ -840,7 +841,7 @@ The array of vertex normal vectors. #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### DrawSphere\(Vector, double\) @@ -856,13 +857,13 @@ public UIntPtr DrawSphere(Vector vecCenter, double dRad) The center point -`dRad` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRad` double The radius #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### DrawSphere\(Vector, double, Vector, Vector\) @@ -878,7 +879,7 @@ public UIntPtr DrawSphere(Vector vecCenter, double dRad, Vector vecAxis, Vector The center point -`dRad` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRad` double The radius @@ -892,7 +893,7 @@ The orthogonal vector #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### DrawText\(Vector, string\) @@ -908,13 +909,13 @@ public UIntPtr DrawText(Vector vecCenter, string strText) The center position of text -`strText` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strText` string The text #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### DrawWireCylinder\(Vector, Vector, double\) @@ -934,13 +935,13 @@ The start point The end point -`dRad` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRad` double The radius #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### DrawWireSphere\(Vector, double\) @@ -956,13 +957,13 @@ public UIntPtr DrawWireSphere(Vector vecCenter, double dRad) The center point -`dRad` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRad` double The radius #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### DrawWireSphere\(Vector, double, Vector, Vector\) @@ -978,7 +979,7 @@ public UIntPtr DrawWireSphere(Vector vecCenter, double dRad, Vector vecAxis, Vec The center point -`dRad` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRad` double The radius @@ -992,7 +993,7 @@ The orthogonal vector #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### EndGeometryEdit\(\) @@ -1012,23 +1013,23 @@ public void FastDrawShell(UIntPtr points, ulong nPoints, UIntPtr connectivities, #### Parameters -`points` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`points` UIntPtr The points array -`nPoints` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nPoints` ulong The number of points -`connectivities` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`connectivities` UIntPtr The connectivities array -`nConnectivities` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nConnectivities` ulong The number of connectivities -`dScale` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dScale` double The scale @@ -1042,19 +1043,19 @@ public void FastDrawShellWithFaceNormal(UIntPtr points, ulong nPoints, UIntPtr c #### Parameters -`points` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`points` UIntPtr The points array -`nPoints` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nPoints` ulong The number of points -`connectivities` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`connectivities` UIntPtr The connectivities array -`nConnectivities` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nConnectivities` ulong The number of connectivities @@ -1088,7 +1089,7 @@ public T GetExtension(string strExtensionName) where T : KernelExtension #### Parameters -`strExtensionName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strExtensionName` string The name of the canvas extension. @@ -1114,7 +1115,7 @@ public Canvas GetSubCanvas(string strCanvasName) #### Parameters -`strCanvasName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCanvasName` string The canvas name @@ -1144,7 +1145,7 @@ public void SetMarkerSymbol(MarkerType type, double dSize = -1) The type of the marker to draw. -`dSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dSize` double The marker size. If it is negative value, default value will be used. @@ -1172,15 +1173,15 @@ public void SetScale(double dX, double dY, double dZ) #### Parameters -`dX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dX` double The X coordinate of scale -`dY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dY` double The Y coordinate of scale -`dZ` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dZ` double The Z coordinate of scale @@ -1194,11 +1195,11 @@ public void SetWireframeMode(bool bWireframe, bool bVisibleEdge) #### Parameters -`bWireframe` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWireframe` bool Whether use wire frame mode -`bVisibleEdge` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bVisibleEdge` bool Whether visible edge @@ -1212,7 +1213,7 @@ public void StartGeometryEdit(UIntPtr pKeyGeom) #### Parameters -`pKeyGeom` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pKeyGeom` UIntPtr The geometry key @@ -1226,31 +1227,31 @@ public void TrimNurbs(int degree, int cpcount, ICollection ctrlPts, ICol #### Parameters -`degree` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`degree` int Degree of the curve -`cpcount` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`cpcount` int Number of valid points in control_points -`ctrlPts` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1) +`ctrlPts` ICollection The points -`weights` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[float](https://learn.microsoft.com/dotnet/api/system.single)\> +`weights` ICollection Control point weights -`knots` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[float](https://learn.microsoft.com/dotnet/api/system.single)\> +`knots` ICollection Knot sequence -`start_u` [double](https://learn.microsoft.com/dotnet/api/system.double) +`start_u` double Start parameter -`end_u` [double](https://learn.microsoft.com/dotnet/api/system.double) +`end_u` double End parameter @@ -1264,11 +1265,11 @@ public void TrimNurbs(int degree, int cpcount, Vector[] ctrlPts, float[] weights #### Parameters -`degree` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`degree` int Degree of the curve -`cpcount` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`cpcount` int Number of valid points in control_points @@ -1276,19 +1277,19 @@ Number of valid points in control_points The points -`weights` [float](https://learn.microsoft.com/dotnet/api/system.single)\[\] +`weights` float\[\] Control point weights -`knots` [float](https://learn.microsoft.com/dotnet/api/system.single)\[\] +`knots` float\[\] Knot sequence -`start_u` [double](https://learn.microsoft.com/dotnet/api/system.double) +`start_u` double Start parameter -`end_u` [double](https://learn.microsoft.com/dotnet/api/system.double) +`end_u` double End parameter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Render.IDrawReference.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Render.IDrawReference.md index 9bcfda158f..340743da72 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Render.IDrawReference.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Render.IDrawReference.md @@ -1,4 +1,5 @@ -# Interface IDrawReference +# Interface IDrawReference + Namespace: [VM.CAD.Kernel.Render](VM.CAD.Kernel.Render.md) Assembly: VM.CAD.Kernel.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Render.IconInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Render.IconInfo.md index 3155655411..e62ed87a12 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Render.IconInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Render.IconInfo.md @@ -1,4 +1,5 @@ -# Class IconInfo +# Class IconInfo + Namespace: [VM.CAD.Kernel.Render](VM.CAD.Kernel.Render.md) Assembly: VM.CAD.Kernel.dll @@ -11,7 +12,7 @@ public class IconInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [IconInfo](VM.CAD.Kernel.Render.IconInfo.md) #### Extension Methods @@ -40,7 +41,7 @@ public string Key { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Scale @@ -52,7 +53,7 @@ public double Scale { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Transforms @@ -76,5 +77,5 @@ public string Type { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Render.LightInterpolationOptionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Render.LightInterpolationOptionType.md index 1305cdb202..f39071c9bc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Render.LightInterpolationOptionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Render.LightInterpolationOptionType.md @@ -1,4 +1,5 @@ -# Enum LightInterpolationOptionType +# Enum LightInterpolationOptionType + Namespace: [VM.CAD.Kernel.Render](VM.CAD.Kernel.Render.md) Assembly: VM.CAD.Kernel.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Render.LineType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Render.LineType.md index d48135d0f8..24fc436860 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Render.LineType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Render.LineType.md @@ -1,4 +1,5 @@ -# Enum LineType +# Enum LineType + Namespace: [VM.CAD.Kernel.Render](VM.CAD.Kernel.Render.md) Assembly: VM.CAD.Kernel.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Render.MarkerType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Render.MarkerType.md index 3c7db2d266..00b788d96f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Render.MarkerType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Render.MarkerType.md @@ -1,4 +1,5 @@ -# Enum MarkerType +# Enum MarkerType + Namespace: [VM.CAD.Kernel.Render](VM.CAD.Kernel.Render.md) Assembly: VM.CAD.Kernel.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Render.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Render.md index b9754a8bfb..e820ee07c3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Render.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Render.md @@ -1,4 +1,5 @@ -# Namespace VM.CAD.Kernel.Render +# Namespace VM.CAD.Kernel.Render + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.RoadFileCanvas.MessageFn.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.RoadFileCanvas.MessageFn.md index abbb72a7be..6415ad2c8c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.RoadFileCanvas.MessageFn.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.RoadFileCanvas.MessageFn.md @@ -1,4 +1,5 @@ -# Delegate RoadFileCanvas.MessageFn +# Delegate RoadFileCanvas.MessageFn + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -9,9 +10,9 @@ public delegate void RoadFileCanvas.MessageFn(int severety, string message) #### Parameters -`severety` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`severety` int -`message` [string](https://learn.microsoft.com/dotnet/api/system.string) +`message` string #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.RoadFileCanvas.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.RoadFileCanvas.md index 22244eff52..39f559c2ae 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.RoadFileCanvas.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.RoadFileCanvas.md @@ -1,4 +1,5 @@ -# Class RoadFileCanvas +# Class RoadFileCanvas + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -9,7 +10,7 @@ public class RoadFileCanvas : KernelExtension #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [KernelObject](VM.CAD.Kernel.KernelObject.md) ← [KernelExtension](VM.CAD.Kernel.KernelExtension.md) ← [RoadFileCanvas](VM.CAD.Kernel.RoadFileCanvas.md) @@ -43,9 +44,9 @@ public RoadFileCanvas(UIntPtr key, bool isLock = true) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr -`isLock` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isLock` bool ## Properties @@ -67,7 +68,7 @@ public int Segments { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -79,9 +80,9 @@ public static RoadFileCanvas Create(UIntPtr key, bool bLock = true) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr -`bLock` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bLock` bool #### Returns @@ -95,9 +96,9 @@ public void Open(string strRoadFile, double dFactorFromMeter) #### Parameters -`strRoadFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRoadFile` string -`dFactorFromMeter` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dFactorFromMeter` double ### SetDetailedSegment\(int\) @@ -107,7 +108,7 @@ public void SetDetailedSegment(int nSeg) #### Parameters -`nSeg` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nSeg` int ### SetTransformation\(Vector, double\) @@ -119,5 +120,5 @@ public void SetTransformation(Vector offset, double rotateAngleDeg) `offset` Vector -`rotateAngleDeg` [double](https://learn.microsoft.com/dotnet/api/system.double) +`rotateAngleDeg` double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Session.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Session.md index 395c4fa441..9df3eaed24 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Session.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Session.md @@ -1,4 +1,5 @@ -# Class Session +# Class Session + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -11,7 +12,7 @@ public sealed class Session : KernelObject, ISession #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [KernelObject](VM.CAD.Kernel.KernelObject.md) ← [Session](VM.CAD.Kernel.Session.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.SimplifyOption.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.SimplifyOption.md index 88676256ed..c6cd36040e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.SimplifyOption.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.SimplifyOption.md @@ -1,4 +1,5 @@ -# Enum SimplifyOption +# Enum SimplifyOption + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Topology.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Topology.md index 5b131abc23..b4c03581e3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Topology.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Topology.md @@ -1,4 +1,5 @@ -# Class Topology +# Class Topology + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -9,7 +10,7 @@ public abstract class Topology : Entity, ITopology, IHasID, ISelected #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [KernelObject](VM.CAD.Kernel.KernelObject.md) ← [Entity](VM.CAD.Kernel.Entity.md) ← [Topology](VM.CAD.Kernel.Topology.md) @@ -55,9 +56,9 @@ protected Topology(UIntPtr key, bool isLock = true) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr -`isLock` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isLock` bool ## Properties @@ -69,7 +70,7 @@ public bool IsSelected { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ParentBodyKey @@ -79,7 +80,7 @@ public UIntPtr ParentBodyKey { get; } #### Property Value - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ## Methods @@ -107,7 +108,7 @@ public static TopologyType GetTopologyType(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr #### Returns diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.TopologyType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.TopologyType.md index 3394620761..929091fd96 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.TopologyType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.TopologyType.md @@ -1,4 +1,5 @@ -# Enum TopologyType +# Enum TopologyType + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Translate.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Translate.md index f5606c5584..9d5148a44f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Translate.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Translate.md @@ -1,4 +1,5 @@ -# Class Translate +# Class Translate + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -11,7 +12,7 @@ public class Translate #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Translate](VM.CAD.Kernel.Translate.md) #### Extension Methods @@ -68,7 +69,7 @@ public string name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### target @@ -78,5 +79,5 @@ public string target { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Vertex.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Vertex.md index d3d5512622..87c878e23d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Vertex.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.Vertex.md @@ -1,4 +1,5 @@ -# Class Vertex +# Class Vertex + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -9,7 +10,7 @@ public class Vertex : Topology, ITopology, IHasID, ISelected #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [KernelObject](VM.CAD.Kernel.KernelObject.md) ← [Entity](VM.CAD.Kernel.Entity.md) ← [Topology](VM.CAD.Kernel.Topology.md) ← @@ -55,9 +56,9 @@ public Vertex(UIntPtr key, bool isLock = true) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr -`isLock` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isLock` bool ## Methods @@ -79,9 +80,9 @@ public static bool IsVertex(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.extension.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.extension.md index 143c4f9e9b..0ceae3bbad 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.extension.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.extension.md @@ -1,4 +1,5 @@ -# Class extension +# Class extension + Namespace: [VM.CAD.Kernel](VM.CAD.Kernel.md) Assembly: VM.CAD.Kernel.dll @@ -11,7 +12,7 @@ public class extension #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [extension](VM.CAD.Kernel.extension.md) #### Extension Methods @@ -38,5 +39,5 @@ public string value { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.md index a742cb884d..7b041ff9ad 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CAD.Kernel.md @@ -1,4 +1,5 @@ -# Namespace VM.CAD.Kernel +# Namespace VM.CAD.Kernel + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.ExtendedObservableCollection-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.ExtendedObservableCollection-1.md index 340e48a6f5..f5cd33815d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.ExtendedObservableCollection-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.ExtendedObservableCollection-1.md @@ -1,4 +1,5 @@ -# Class ExtendedObservableCollection +# Class ExtendedObservableCollection + Namespace: [VM.Collections](VM.Collections.md) Assembly: VM.dll @@ -13,9 +14,9 @@ public class ExtendedObservableCollection : ObservableCollection #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Collection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.collection\-1) ← -[ObservableCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.observablecollection\-1) ← +object ← +Collection ← +ObservableCollection ← [ExtendedObservableCollection](VM.Collections.ExtendedObservableCollection\-1.md) #### Extension Methods @@ -34,7 +35,7 @@ public ExtendedObservableCollection(bool isResetToRemove = false) #### Parameters -`isResetToRemove` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isResetToRemove` bool ## Properties @@ -46,7 +47,7 @@ public bool IsResetToRemove { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -58,7 +59,7 @@ public void AddRange(IEnumerable collection) #### Parameters -`collection` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`collection` IEnumerable ### ClearItems\(\) @@ -74,7 +75,7 @@ protected override void OnCollectionChanged(NotifyCollectionChangedEventArgs e) #### Parameters -`e` [NotifyCollectionChangedEventArgs](https://learn.microsoft.com/dotnet/api/system.collections.specialized.notifycollectionchangedeventargs) +`e` NotifyCollectionChangedEventArgs ### SuspendNotifications\(\) @@ -84,7 +85,7 @@ public IDisposable SuspendNotifications() #### Returns - [IDisposable](https://learn.microsoft.com/dotnet/api/system.idisposable) + IDisposable ### CollectionChanged @@ -94,5 +95,5 @@ public override event NotifyCollectionChangedEventHandler CollectionChanged #### Event Type - [NotifyCollectionChangedEventHandler](https://learn.microsoft.com/dotnet/api/system.collections.specialized.notifycollectionchangedeventhandler) + NotifyCollectionChangedEventHandler diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.IdentifierCollection-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.IdentifierCollection-1.md index 8f9222520b..dd2d6ec803 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.IdentifierCollection-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.IdentifierCollection-1.md @@ -1,4 +1,5 @@ -# Class IdentifierCollection +# Class IdentifierCollection + Namespace: [VM.Collections](VM.Collections.md) Assembly: VM.dll @@ -13,9 +14,9 @@ public class IdentifierCollection : KeyedCollection wh #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Collection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.collection\-1) ← -[KeyedCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.keyedcollection\-2) ← +object ← +Collection ← +KeyedCollection ← [IdentifierCollection](VM.Collections.IdentifierCollection\-1.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.InheritableDictionary-2.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.InheritableDictionary-2.md index ade79bd704..0f2815c803 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.InheritableDictionary-2.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.InheritableDictionary-2.md @@ -1,4 +1,5 @@ -# Class InheritableDictionary +# Class InheritableDictionary + Namespace: [VM.Collections](VM.Collections.md) Assembly: VM.dll @@ -15,8 +16,8 @@ public abstract class InheritableDictionary : Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2) ← +object ← +Dictionary ← [InheritableDictionary](VM.Collections.InheritableDictionary\-2.md) #### Extension Methods @@ -41,7 +42,7 @@ public InheritableDictionary(int capacity) #### Parameters -`capacity` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`capacity` int ### InheritableDictionary\(IEqualityComparer\) @@ -51,7 +52,7 @@ public InheritableDictionary(IEqualityComparer comparer) #### Parameters -`comparer` [IEqualityComparer](https://learn.microsoft.com/dotnet/api/system.collections.generic.iequalitycomparer\-1) +`comparer` IEqualityComparer ### InheritableDictionary\(int, IEqualityComparer\) @@ -61,9 +62,9 @@ public InheritableDictionary(int capacity, IEqualityComparer comparer) #### Parameters -`capacity` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`capacity` int -`comparer` [IEqualityComparer](https://learn.microsoft.com/dotnet/api/system.collections.generic.iequalitycomparer\-1) +`comparer` IEqualityComparer ### InheritableDictionary\(IDictionary\) @@ -73,7 +74,7 @@ public InheritableDictionary(IDictionary dictionary) #### Parameters -`dictionary` [IDictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary\-2) +`dictionary` IDictionary ### InheritableDictionary\(IDictionary, IEqualityComparer\) @@ -83,9 +84,9 @@ public InheritableDictionary(IDictionary dictionary, IEqualityComp #### Parameters -`dictionary` [IDictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary\-2) +`dictionary` IDictionary -`comparer` [IEqualityComparer](https://learn.microsoft.com/dotnet/api/system.collections.generic.iequalitycomparer\-1) +`comparer` IEqualityComparer ### InheritableDictionary\(SerializationInfo, StreamingContext\) @@ -95,9 +96,9 @@ protected InheritableDictionary(SerializationInfo serializationInfo, StreamingCo #### Parameters -`serializationInfo` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`serializationInfo` SerializationInfo -`streamingContext` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`streamingContext` StreamingContext ## Properties @@ -161,7 +162,7 @@ public bool Remove(TKey key) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RemoveItem\(TKey\) @@ -175,5 +176,5 @@ protected virtual bool RemoveItem(TKey key) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.InheritableHashSet-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.InheritableHashSet-1.md index c6043641b8..5808b038bc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.InheritableHashSet-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.InheritableHashSet-1.md @@ -1,4 +1,5 @@ -# Class InheritableHashSet +# Class InheritableHashSet + Namespace: [VM.Collections](VM.Collections.md) Assembly: VM.dll @@ -13,8 +14,8 @@ public abstract class InheritableHashSet : HashSet #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[HashSet](https://learn.microsoft.com/dotnet/api/system.collections.generic.hashset\-1) ← +object ← +HashSet ← [InheritableHashSet](VM.Collections.InheritableHashSet\-1.md) #### Extension Methods @@ -39,7 +40,7 @@ public InheritableHashSet(IEnumerable collection) #### Parameters -`collection` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`collection` IEnumerable ### InheritableHashSet\(IEqualityComparer\) @@ -49,7 +50,7 @@ public InheritableHashSet(IEqualityComparer comparer) #### Parameters -`comparer` [IEqualityComparer](https://learn.microsoft.com/dotnet/api/system.collections.generic.iequalitycomparer\-1) +`comparer` IEqualityComparer ### InheritableHashSet\(IEnumerable, IEqualityComparer\) @@ -59,9 +60,9 @@ public InheritableHashSet(IEnumerable collection, IEqualityComparer compar #### Parameters -`collection` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`collection` IEnumerable -`comparer` [IEqualityComparer](https://learn.microsoft.com/dotnet/api/system.collections.generic.iequalitycomparer\-1) +`comparer` IEqualityComparer ### InheritableHashSet\(SerializationInfo, StreamingContext\) @@ -71,9 +72,9 @@ protected InheritableHashSet(SerializationInfo serializationInfo, StreamingConte #### Parameters -`serializationInfo` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`serializationInfo` SerializationInfo -`streamingContext` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`streamingContext` StreamingContext ## Methods @@ -89,7 +90,7 @@ public bool Add(T item) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### AddItem\(T\) @@ -103,7 +104,7 @@ protected virtual bool AddItem(T item) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Clear\(\) @@ -129,7 +130,7 @@ public bool Remove(T item) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RemoveItem\(T\) @@ -143,5 +144,5 @@ protected virtual bool RemoveItem(T item) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.InheritableList-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.InheritableList-1.md index 267c1814bf..91d0fa709d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.InheritableList-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.InheritableList-1.md @@ -1,4 +1,5 @@ -# Class InheritableList +# Class InheritableList + Namespace: [VM.Collections](VM.Collections.md) Assembly: VM.dll @@ -13,8 +14,8 @@ public abstract class InheritableList : List #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) ← +object ← +List ← [InheritableList](VM.Collections.InheritableList\-1.md) #### Extension Methods @@ -39,7 +40,7 @@ public InheritableList(int capacity) #### Parameters -`capacity` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`capacity` int ### InheritableList\(IEnumerable\) @@ -49,7 +50,7 @@ public InheritableList(IEnumerable collection) #### Parameters -`collection` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`collection` IEnumerable ## Properties @@ -83,7 +84,7 @@ public void AddRange(IEnumerable collection) #### Parameters -`collection` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`collection` IEnumerable ### Clear\(\) @@ -105,7 +106,7 @@ public void Insert(int index, T item) #### Parameters -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int `item` T @@ -117,7 +118,7 @@ protected virtual void InsertItem(int index, T item) #### Parameters -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int `item` T @@ -129,9 +130,9 @@ public void InsertRange(int index, IEnumerable collection) #### Parameters -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int -`collection` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`collection` IEnumerable ### Remove\(T\) @@ -145,7 +146,7 @@ public bool Remove(T item) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RemoveAll\(Predicate\) @@ -155,11 +156,11 @@ public int RemoveAll(Predicate match) #### Parameters -`match` [Predicate](https://learn.microsoft.com/dotnet/api/system.predicate\-1) +`match` Predicate #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### RemoveAt\(int\) @@ -169,7 +170,7 @@ public void RemoveAt(int index) #### Parameters -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int ### RemoveItem\(int\) @@ -179,7 +180,7 @@ protected virtual void RemoveItem(int index) #### Parameters -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int ### RemoveRange\(int, int\) @@ -189,9 +190,9 @@ public void RemoveRange(int index, int count) #### Parameters -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int -`count` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`count` int ### SetItem\(int, T\) @@ -201,7 +202,7 @@ protected virtual void SetItem(int index, T item) #### Parameters -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int `item` T diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.ObservableConcurrentDictionary-2.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.ObservableConcurrentDictionary-2.md index 8c295cc436..66f51a8172 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.ObservableConcurrentDictionary-2.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.ObservableConcurrentDictionary-2.md @@ -1,4 +1,5 @@ -# Class ObservableConcurrentDictionary +# Class ObservableConcurrentDictionary + Namespace: [VM.Collections](VM.Collections.md) Assembly: VM.dll @@ -15,7 +16,7 @@ public class ObservableConcurrentDictionary #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ObservableConcurrentDictionary](VM.Collections.ObservableConcurrentDictionary\-2.md) #### Extension Methods @@ -42,7 +43,7 @@ public int Count { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### IsReadOnly @@ -52,7 +53,7 @@ public bool IsReadOnly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Keys @@ -62,7 +63,7 @@ public ICollection Keys { get; } #### Property Value - [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1) + ICollection ### Values @@ -72,7 +73,7 @@ public ICollection Values { get; } #### Property Value - [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1) + ICollection ### this\[TKey\] @@ -94,7 +95,7 @@ protected void <>OnPropertyChanged(PropertyChangedEventArgs eventArgs) #### Parameters -`eventArgs` [PropertyChangedEventArgs](https://learn.microsoft.com/dotnet/api/system.componentmodel.propertychangedeventargs) +`eventArgs` PropertyChangedEventArgs ### Add\(TKey, TValue\) @@ -122,11 +123,11 @@ public bool Contains(KeyValuePair item) #### Parameters -`item` [KeyValuePair](https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair\-2) +`item` KeyValuePair #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ContainsKey\(TKey\) @@ -140,7 +141,7 @@ public bool ContainsKey(TKey key) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CopyTo\(KeyValuePair\[\], int\) @@ -150,9 +151,9 @@ public void CopyTo(KeyValuePair[] array, int arrayIndex) #### Parameters -`array` [KeyValuePair](https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair\-2)\[\] +`array` KeyValuePair\[\] -`arrayIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`arrayIndex` int ### GetEnumerator\(\) @@ -162,7 +163,7 @@ public IEnumerator GetEnumerator() #### Returns - [IEnumerator](https://learn.microsoft.com/dotnet/api/system.collections.ienumerator) + IEnumerator ### Remove\(TKey\) @@ -176,7 +177,7 @@ public bool Remove(TKey key) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TryGetValue\(TKey, out TValue\) @@ -192,7 +193,7 @@ public bool TryGetValue(TKey key, out TValue value) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CollectionChanged @@ -202,7 +203,7 @@ public event NotifyCollectionChangedEventHandler CollectionChanged #### Event Type - [NotifyCollectionChangedEventHandler](https://learn.microsoft.com/dotnet/api/system.collections.specialized.notifycollectionchangedeventhandler) + NotifyCollectionChangedEventHandler ### PropertyChanged @@ -212,5 +213,5 @@ public event PropertyChangedEventHandler PropertyChanged #### Event Type - [PropertyChangedEventHandler](https://learn.microsoft.com/dotnet/api/system.componentmodel.propertychangedeventhandler) + PropertyChangedEventHandler diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.ObservableHashSet-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.ObservableHashSet-1.md index 36d6b4d8a1..d28c799e47 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.ObservableHashSet-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.ObservableHashSet-1.md @@ -1,4 +1,5 @@ -# Class ObservableHashSet +# Class ObservableHashSet + Namespace: [VM.Collections](VM.Collections.md) Assembly: VM.dll @@ -17,8 +18,8 @@ The type of elements in the hash set. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[HashSet](https://learn.microsoft.com/dotnet/api/system.collections.generic.hashset\-1) ← +object ← +HashSet ← [ObservableHashSet](VM.Collections.ObservableHashSet\-1.md) #### Extension Methods @@ -43,7 +44,7 @@ public ObservableHashSet(IEnumerable collection) #### Parameters -`collection` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`collection` IEnumerable ### ObservableHashSet\(IEqualityComparer\) @@ -53,7 +54,7 @@ public ObservableHashSet(IEqualityComparer comparer) #### Parameters -`comparer` [IEqualityComparer](https://learn.microsoft.com/dotnet/api/system.collections.generic.iequalitycomparer\-1) +`comparer` IEqualityComparer ### ObservableHashSet\(IEnumerable, IEqualityComparer\) @@ -63,9 +64,9 @@ public ObservableHashSet(IEnumerable collection, IEqualityComparer compare #### Parameters -`collection` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`collection` IEnumerable -`comparer` [IEqualityComparer](https://learn.microsoft.com/dotnet/api/system.collections.generic.iequalitycomparer\-1) +`comparer` IEqualityComparer ## Methods @@ -85,7 +86,7 @@ The element to add to the set. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the element is added to the object; false if the element is already present. @@ -113,7 +114,7 @@ public void ExceptWith(IEnumerable other) #### Parameters -`other` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`other` IEnumerable The collection of items to remove from the object. @@ -127,7 +128,7 @@ public void IntersectWith(IEnumerable other) #### Parameters -`other` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`other` IEnumerable The collection to compare to the current object. @@ -147,7 +148,7 @@ The element to remove. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the element is successfully found and removed; otherwise, false. This method returns false if item is not found in the object. @@ -167,7 +168,7 @@ public void SymmetricExceptWith(IEnumerable other) #### Parameters -`other` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`other` IEnumerable The collection to compare to the current object. @@ -181,7 +182,7 @@ public void UnionWith(IEnumerable other) #### Parameters -`other` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`other` IEnumerable The collection to compare to the current object. @@ -193,5 +194,5 @@ public event NotifyCollectionChangedEventHandler CollectionChanged #### Event Type - [NotifyCollectionChangedEventHandler](https://learn.microsoft.com/dotnet/api/system.collections.specialized.notifycollectionchangedeventhandler) + NotifyCollectionChangedEventHandler diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.ObservableKeyedCollection-2.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.ObservableKeyedCollection-2.md index 4c8fe717d5..8e55944c32 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.ObservableKeyedCollection-2.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.ObservableKeyedCollection-2.md @@ -1,4 +1,5 @@ -# Class ObservableKeyedCollection +# Class ObservableKeyedCollection + Namespace: [VM.Collections](VM.Collections.md) Assembly: VM.dll @@ -15,9 +16,9 @@ public class ObservableKeyedCollection : ObservableKeyedCollectionB #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Collection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.collection\-1) ← -[KeyedCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.keyedcollection\-2) ← +object ← +Collection ← +KeyedCollection ← [ObservableKeyedCollectionBase](VM.Collections.ObservableKeyedCollectionBase\-2.md) ← [ObservableKeyedCollection](VM.Collections.ObservableKeyedCollection\-2.md) @@ -50,7 +51,7 @@ public ObservableKeyedCollection(Func getKeyForItem) #### Parameters -`getKeyForItem` [Func](https://learn.microsoft.com/dotnet/api/system.func\-2) +`getKeyForItem` Func ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.ObservableKeyedCollectionBase-2.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.ObservableKeyedCollectionBase-2.md index 8bfb84d730..67a44fb163 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.ObservableKeyedCollectionBase-2.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.ObservableKeyedCollectionBase-2.md @@ -1,4 +1,5 @@ -# Class ObservableKeyedCollectionBase +# Class ObservableKeyedCollectionBase + Namespace: [VM.Collections](VM.Collections.md) Assembly: VM.dll @@ -15,9 +16,9 @@ public abstract class ObservableKeyedCollectionBase : KeyedCollecti #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Collection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.collection\-1) ← -[KeyedCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.keyedcollection\-2) ← +object ← +Collection ← +KeyedCollection ← [ObservableKeyedCollectionBase](VM.Collections.ObservableKeyedCollectionBase\-2.md) #### Extension Methods @@ -44,7 +45,7 @@ protected void <>OnPropertyChanged(PropertyChangedEventArgs eventArgs) #### Parameters -`eventArgs` [PropertyChangedEventArgs](https://learn.microsoft.com/dotnet/api/system.componentmodel.propertychangedeventargs) +`eventArgs` PropertyChangedEventArgs ### AddRange\(IEnumerable\) @@ -54,7 +55,7 @@ public void AddRange(IEnumerable items) #### Parameters -`items` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`items` IEnumerable ### ClearItems\(\) @@ -70,7 +71,7 @@ protected override void InsertItem(int index, TItem item) #### Parameters -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int `item` TItem @@ -82,7 +83,7 @@ protected virtual void OnCollectionChanged(NotifyCollectionChangedEventArgs e) #### Parameters -`e` [NotifyCollectionChangedEventArgs](https://learn.microsoft.com/dotnet/api/system.collections.specialized.notifycollectionchangedeventargs) +`e` NotifyCollectionChangedEventArgs ### RemoveItem\(int\) @@ -92,7 +93,7 @@ protected override void RemoveItem(int index) #### Parameters -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int ### SetItem\(int, TItem\) @@ -102,7 +103,7 @@ protected override void SetItem(int index, TItem newitem) #### Parameters -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int `newitem` TItem @@ -120,7 +121,7 @@ public bool TryGetValue(TKey key, out TItem item) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CollectionChanged @@ -130,7 +131,7 @@ public event NotifyCollectionChangedEventHandler CollectionChanged #### Event Type - [NotifyCollectionChangedEventHandler](https://learn.microsoft.com/dotnet/api/system.collections.specialized.notifycollectionchangedeventhandler) + NotifyCollectionChangedEventHandler ### PropertyChanged @@ -140,5 +141,5 @@ public event PropertyChangedEventHandler PropertyChanged #### Event Type - [PropertyChangedEventHandler](https://learn.microsoft.com/dotnet/api/system.componentmodel.propertychangedeventhandler) + PropertyChangedEventHandler diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.ObservableValuesDictionary-2.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.ObservableValuesDictionary-2.md index 288d89fc77..02958db4d0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.ObservableValuesDictionary-2.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.ObservableValuesDictionary-2.md @@ -1,4 +1,5 @@ -# Class ObservableValuesDictionary +# Class ObservableValuesDictionary + Namespace: [VM.Collections](VM.Collections.md) Assembly: VM.dll @@ -15,7 +16,7 @@ public class ObservableValuesDictionary #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ObservableValuesDictionary](VM.Collections.ObservableValuesDictionary\-2.md) #### Extension Methods @@ -42,7 +43,7 @@ public int Count { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### IsReadOnly @@ -52,7 +53,7 @@ public bool IsReadOnly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Keys @@ -62,7 +63,7 @@ public ICollection Keys { get; } #### Property Value - [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1) + ICollection ### Values @@ -72,7 +73,7 @@ public ReadOnlyObservableCollection Values { get; } #### Property Value - [ReadOnlyObservableCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlyobservablecollection\-1) + ReadOnlyObservableCollection ### this\[TKey\] @@ -112,11 +113,11 @@ public bool Contains(KeyValuePair item) #### Parameters -`item` [KeyValuePair](https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair\-2) +`item` KeyValuePair #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ContainsKey\(TKey\) @@ -130,7 +131,7 @@ public bool ContainsKey(TKey key) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ContainsValue\(TValue\) @@ -144,7 +145,7 @@ public bool ContainsValue(TValue value) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CopyTo\(KeyValuePair\[\], int\) @@ -154,9 +155,9 @@ public void CopyTo(KeyValuePair[] array, int arrayIndex) #### Parameters -`array` [KeyValuePair](https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair\-2)\[\] +`array` KeyValuePair\[\] -`arrayIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`arrayIndex` int ### GetEnumerator\(\) @@ -166,7 +167,7 @@ public IEnumerator GetEnumerator() #### Returns - [IEnumerator](https://learn.microsoft.com/dotnet/api/system.collections.ienumerator) + IEnumerator ### Remove\(TKey\) @@ -180,7 +181,7 @@ public virtual bool Remove(TKey key) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TryGetValue\(TKey, out TValue\) @@ -196,5 +197,5 @@ public bool TryGetValue(TKey key, out TValue value) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.md index a2a2241972..01cd6802a4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Collections.md @@ -1,4 +1,5 @@ -# Namespace VM.Collections +# Namespace VM.Collections + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CommandBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CommandBase.md index 2fee01b879..23a69f800c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CommandBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.CommandBase.md @@ -1,4 +1,5 @@ -# Class CommandBase +# Class CommandBase + Namespace: [VM](VM.md) Assembly: VM.dll @@ -9,7 +10,7 @@ public abstract class CommandBase : ObservableObject, IObservableObject, IDispos #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ObservableObject](VM.ObservableObject.md) ← [CommandBase](VM.CommandBase.md) @@ -48,7 +49,7 @@ public CommandBase(Func canExecute) #### Parameters -`canExecute` [Func](https://learn.microsoft.com/dotnet/api/system.func\-2)<[object](https://learn.microsoft.com/dotnet/api/system.object), [bool](https://learn.microsoft.com/dotnet/api/system.boolean)\> +`canExecute` Func ## Properties @@ -60,7 +61,7 @@ public string Description { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IsExecuting @@ -70,7 +71,7 @@ protected bool IsExecuting { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -82,11 +83,11 @@ public bool CanExecute(object parameter) #### Parameters -`parameter` [object](https://learn.microsoft.com/dotnet/api/system.object) +`parameter` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OnCanExecuteChanged\(\) @@ -108,7 +109,7 @@ public virtual event EventHandler CanExecuteChanged #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler) + EventHandler ### ShouldExecute @@ -118,5 +119,5 @@ public event EventHandler ShouldExecute #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler) + EventHandler diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Coordinate.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Coordinate.md index 1c6f582716..49b59cb532 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Coordinate.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Coordinate.md @@ -1,4 +1,5 @@ -# Enum Coordinate +# Enum Coordinate + Namespace: [VM](VM.md) Assembly: VM.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.DataPoint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.DataPoint.md index e88761109b..3a97113261 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.DataPoint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.DataPoint.md @@ -1,4 +1,5 @@ -# Class DataPoint +# Class DataPoint + Namespace: [VM](VM.md) Assembly: VM.dll @@ -9,7 +10,7 @@ public class DataPoint : ObservableObject, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ObservableObject](VM.ObservableObject.md) ← [DataPoint](VM.DataPoint.md) @@ -57,7 +58,7 @@ public double X { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y @@ -67,5 +68,5 @@ public double Y { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.DeferredAction.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.DeferredAction.md index 69680c5640..1b6c63314b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.DeferredAction.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.DeferredAction.md @@ -1,4 +1,5 @@ -# Class DeferredAction +# Class DeferredAction + Namespace: [VM](VM.md) Assembly: VM.dll @@ -9,7 +10,7 @@ public class DeferredAction #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DeferredAction](VM.DeferredAction.md) #### Extension Methods @@ -34,7 +35,7 @@ public static DeferredAction Create(Action action) #### Parameters -`action` [Action](https://learn.microsoft.com/dotnet/api/system.action) +`action` Action #### Returns @@ -48,7 +49,7 @@ public void Defer(TimeSpan delay) #### Parameters -`delay` [TimeSpan](https://learn.microsoft.com/dotnet/api/system.timespan) +`delay` TimeSpan ### Dispose\(\) @@ -64,7 +65,7 @@ protected virtual void Dispose(bool disposing) #### Parameters -`disposing` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`disposing` bool ### \~DeferredAction\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.DependencyResolveAttribute.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.DependencyResolveAttribute.md index 0114090612..ad156e2c0a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.DependencyResolveAttribute.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.DependencyResolveAttribute.md @@ -1,4 +1,5 @@ -# Class DependencyResolveAttribute +# Class DependencyResolveAttribute + Namespace: [VM](VM.md) Assembly: VM.dll @@ -10,8 +11,8 @@ public class DependencyResolveAttribute : Attribute #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Attribute](https://learn.microsoft.com/dotnet/api/system.attribute) ← +object ← +Attribute ← [DependencyResolveAttribute](VM.DependencyResolveAttribute.md) #### Extension Methods @@ -30,7 +31,7 @@ public DependencyResolveAttribute(Type interfaceType) #### Parameters -`interfaceType` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`interfaceType` Type ## Properties @@ -42,5 +43,5 @@ public Type InterfaceType { get; } #### Property Value - [Type](https://learn.microsoft.com/dotnet/api/system.type) + Type diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.EntitySelectionMode.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.EntitySelectionMode.md index 0829cad5d0..53f6f3fdc0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.EntitySelectionMode.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.EntitySelectionMode.md @@ -1,4 +1,5 @@ -# Enum EntitySelectionMode +# Enum EntitySelectionMode + Namespace: [VM](VM.md) Assembly: VM.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.EventArgs-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.EventArgs-1.md index 7465f8e8ea..c3b13c1e50 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.EventArgs-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.EventArgs-1.md @@ -1,4 +1,5 @@ -# Class EventArgs +# Class EventArgs + Namespace: [VM](VM.md) Assembly: VM.dll @@ -13,8 +14,8 @@ public class EventArgs : EventArgs #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) ← +object ← +EventArgs ← [EventArgs](VM.EventArgs\-1.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.ExtendedMemberInfo-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.ExtendedMemberInfo-1.md index b07af55449..65dcff7182 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.ExtendedMemberInfo-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.ExtendedMemberInfo-1.md @@ -1,4 +1,5 @@ -# Class ExtendedMemberInfo +# Class ExtendedMemberInfo + Namespace: [VM](VM.md) Assembly: VM.dll @@ -13,7 +14,7 @@ public abstract class ExtendedMemberInfo where T : MemberInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ExtendedMemberInfo](VM.ExtendedMemberInfo\-1.md) #### Extension Methods @@ -56,7 +57,7 @@ public bool HasAttribute() where TAttribute : Attribute #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Type Parameters @@ -74,7 +75,7 @@ public bool TryGetAttributeInstance(out TAttribute attribute) where #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Type Parameters diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.ExtendedTypeInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.ExtendedTypeInfo.md index 94f11698b1..05693798f4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.ExtendedTypeInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.ExtendedTypeInfo.md @@ -1,4 +1,5 @@ -# Class ExtendedTypeInfo +# Class ExtendedTypeInfo + Namespace: [VM](VM.md) Assembly: VM.dll @@ -9,7 +10,7 @@ public class ExtendedTypeInfo : ExtendedMemberInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ExtendedMemberInfo](VM.ExtendedMemberInfo\-1.md) ← [ExtendedTypeInfo](VM.ExtendedTypeInfo.md) @@ -35,7 +36,7 @@ public ExtendedTypeInfo(TypeInfo type) #### Parameters -`type` [TypeInfo](https://learn.microsoft.com/dotnet/api/system.reflection.typeinfo) +`type` TypeInfo ## Properties @@ -47,7 +48,7 @@ public Type Type { get; } #### Property Value - [Type](https://learn.microsoft.com/dotnet/api/system.type) + Type ### TypeInfo @@ -57,7 +58,7 @@ public TypeInfo TypeInfo { get; } #### Property Value - [TypeInfo](https://learn.microsoft.com/dotnet/api/system.reflection.typeinfo) + TypeInfo ## Methods @@ -69,9 +70,9 @@ public void AddOnChangedMethod(string propertyName, Action onChanged) #### Parameters -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string -`onChanged` [Action](https://learn.microsoft.com/dotnet/api/system.action\-1)<[object](https://learn.microsoft.com/dotnet/api/system.object)\> +`onChanged` Action ### TryGetOnChangedMethod\(string, out Action\) @@ -81,11 +82,11 @@ public bool TryGetOnChangedMethod(string propertyName, out Action onChan #### Parameters -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string -`onChanged` [Action](https://learn.microsoft.com/dotnet/api/system.action\-1)<[object](https://learn.microsoft.com/dotnet/api/system.object)\> +`onChanged` Action #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IDataPoint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IDataPoint.md index d89a093143..f9072d298b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IDataPoint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IDataPoint.md @@ -1,4 +1,5 @@ -# Interface IDataPoint +# Interface IDataPoint + Namespace: [VM](VM.md) Assembly: VM.dll @@ -23,7 +24,7 @@ double X { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y @@ -33,5 +34,5 @@ double Y { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IDeletable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IDeletable.md index 578935135f..dba4159aab 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IDeletable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IDeletable.md @@ -1,4 +1,5 @@ -# Interface IDeletable +# Interface IDeletable + Namespace: [VM](VM.md) Assembly: VM.dll @@ -23,5 +24,5 @@ bool CanDelete { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IDirectionBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IDirectionBase.md index 52113d6e42..88d02b94fe 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IDirectionBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IDirectionBase.md @@ -1,4 +1,5 @@ -# Interface IDirectionBase +# Interface IDirectionBase + Namespace: [VM](VM.md) Assembly: VM.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IDirectionExpression.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IDirectionExpression.md index 54e5971325..110c343bcd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IDirectionExpression.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IDirectionExpression.md @@ -1,4 +1,5 @@ -# Interface IDirectionExpression +# Interface IDirectionExpression + Namespace: [VM](VM.md) Assembly: VM.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IDisposableObject.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IDisposableObject.md index efc136f13f..d8602ed77e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IDisposableObject.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IDisposableObject.md @@ -1,4 +1,5 @@ -# Interface IDisposableObject +# Interface IDisposableObject + Namespace: [VM](VM.md) Assembly: VM.dll @@ -23,7 +24,7 @@ bool IsDisposed { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TryDisposing @@ -33,7 +34,7 @@ bool TryDisposing { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Disposed @@ -43,7 +44,7 @@ event EventHandler Disposed #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler) + EventHandler ### Disposing @@ -53,5 +54,5 @@ event EventHandler Disposing #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler) + EventHandler diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IEnabled.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IEnabled.md index ed19043bdf..cd450db9ee 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IEnabled.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IEnabled.md @@ -1,4 +1,5 @@ -# Interface IEnabled +# Interface IEnabled + Namespace: [VM](VM.md) Assembly: VM.dll @@ -23,5 +24,5 @@ bool IsEnabled { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IExpanded.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IExpanded.md index 9bd4504cc0..a797815032 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IExpanded.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IExpanded.md @@ -1,4 +1,5 @@ -# Interface IExpanded +# Interface IExpanded + Namespace: [VM](VM.md) Assembly: VM.dll @@ -23,5 +24,5 @@ bool IsExpanded { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IExpression.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IExpression.md index 3ff1e77126..11031b7efd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IExpression.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IExpression.md @@ -1,4 +1,5 @@ -# Interface IExpression +# Interface IExpression + Namespace: [VM](VM.md) Assembly: VM.dll @@ -23,5 +24,5 @@ string String { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IExpressionEvaluator.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IExpressionEvaluator.md index a203531c7b..b6927e5057 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IExpressionEvaluator.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IExpressionEvaluator.md @@ -1,4 +1,5 @@ -# Interface IExpressionEvaluator +# Interface IExpressionEvaluator + Namespace: [VM](VM.md) Assembly: VM.dll @@ -23,11 +24,11 @@ object Evaluate(string expression) #### Parameters -`expression` [string](https://learn.microsoft.com/dotnet/api/system.string) +`expression` string #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### TryEvaluate\(string, out T\) @@ -37,13 +38,13 @@ bool TryEvaluate(string expression, out T result) #### Parameters -`expression` [string](https://learn.microsoft.com/dotnet/api/system.string) +`expression` string `result` T #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Type Parameters diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IFileSupport.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IFileSupport.md index 2322ce6e4e..145780563a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IFileSupport.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IFileSupport.md @@ -1,4 +1,5 @@ -# Interface IFileSupport +# Interface IFileSupport + Namespace: [VM](VM.md) Assembly: VM.dll @@ -23,7 +24,7 @@ string FileName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Filter @@ -33,5 +34,5 @@ string Filter { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasBindingValueConverter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasBindingValueConverter.md index cee8dfda52..80eec20484 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasBindingValueConverter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasBindingValueConverter.md @@ -1,4 +1,5 @@ -# Interface IHasBindingValueConverter +# Interface IHasBindingValueConverter + Namespace: [VM](VM.md) Assembly: VM.dll @@ -27,7 +28,7 @@ object Convert() #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The converted value. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasBindingValueConverterParam.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasBindingValueConverterParam.md index 8fc5abb402..9665bbceac 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasBindingValueConverterParam.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasBindingValueConverterParam.md @@ -1,4 +1,5 @@ -# Interface IHasBindingValueConverterParam +# Interface IHasBindingValueConverterParam + Namespace: [VM](VM.md) Assembly: VM.dll @@ -27,13 +28,13 @@ object Convert(params object[] parameter) #### Parameters -`parameter` [object](https://learn.microsoft.com/dotnet/api/system.object)\[\] +`parameter` object\[\] Parameters to convert. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The converted value. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasComment.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasComment.md index d171f8328c..daa44b25f7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasComment.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasComment.md @@ -1,4 +1,5 @@ -# Interface IHasComment +# Interface IHasComment + Namespace: [VM](VM.md) Assembly: VM.dll @@ -23,5 +24,5 @@ string Comment { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasExpressionEvaluator.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasExpressionEvaluator.md index 8bb037e85d..483618ce92 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasExpressionEvaluator.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasExpressionEvaluator.md @@ -1,4 +1,5 @@ -# Interface IHasExpressionEvaluator +# Interface IHasExpressionEvaluator + Namespace: [VM](VM.md) Assembly: VM.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasFilter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasFilter.md index a3a2b71b77..773b69ab14 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasFilter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasFilter.md @@ -1,4 +1,5 @@ -# Interface IHasFilter +# Interface IHasFilter + Namespace: [VM](VM.md) Assembly: VM.dll @@ -23,5 +24,5 @@ Predicate Filter { get; } #### Property Value - [Predicate](https://learn.microsoft.com/dotnet/api/system.predicate\-1)<[object](https://learn.microsoft.com/dotnet/api/system.object)\> + Predicate diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasFilterPropertyName.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasFilterPropertyName.md index 8cc526ae0b..4966559951 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasFilterPropertyName.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasFilterPropertyName.md @@ -1,4 +1,5 @@ -# Interface IHasFilterPropertyName +# Interface IHasFilterPropertyName + Namespace: [VM](VM.md) Assembly: VM.dll @@ -23,5 +24,5 @@ string FilterPropertyName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasID.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasID.md index d3e03fbd3e..d0f5ed518b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasID.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasID.md @@ -1,4 +1,5 @@ -# Interface IHasID +# Interface IHasID + Namespace: [VM](VM.md) Assembly: VM.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasName.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasName.md index fef395d8eb..72863c2619 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasName.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasName.md @@ -1,4 +1,5 @@ -# Interface IHasName +# Interface IHasName + Namespace: [VM](VM.md) Assembly: VM.dll @@ -23,7 +24,7 @@ string DisplayName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### FullName @@ -33,7 +34,7 @@ string FullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Name @@ -43,5 +44,5 @@ string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasParent-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasParent-1.md index e78b213094..bf34ab5530 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasParent-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasParent-1.md @@ -1,4 +1,5 @@ -# Interface IHasParent +# Interface IHasParent + Namespace: [VM](VM.md) Assembly: VM.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasParent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasParent.md index 925614c68c..e2664e55b6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasParent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IHasParent.md @@ -1,4 +1,5 @@ -# Interface IHasParent +# Interface IHasParent + Namespace: [VM](VM.md) Assembly: VM.dll @@ -23,5 +24,5 @@ object Parent { get; } #### Property Value - [object](https://learn.microsoft.com/dotnet/api/system.object) + object diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IIdentifier.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IIdentifier.md index 662c4973ec..744b13fab0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IIdentifier.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IIdentifier.md @@ -1,4 +1,5 @@ -# Interface IIdentifier +# Interface IIdentifier + Namespace: [VM](VM.md) Assembly: VM.dll @@ -23,5 +24,5 @@ uint First { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IIdentifierResolver.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IIdentifierResolver.md index 2fde4be5b3..e005726a75 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IIdentifierResolver.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IIdentifierResolver.md @@ -1,4 +1,5 @@ -# Interface IIdentifierResolver +# Interface IIdentifierResolver + Namespace: [VM](VM.md) Assembly: VM.dll @@ -27,18 +28,18 @@ bool TryResolve(string identifier, out object target) #### Parameters -`identifier` [string](https://learn.microsoft.com/dotnet/api/system.string) +`identifier` string The identifier of the target to find. -`target` [object](https://learn.microsoft.com/dotnet/api/system.object) +`target` object When this method returns, it contains the target associated with the specified identifier, if any, otherwise it contains the default value for the format of the target parameter. This parameter is passed uninitialized. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the element with the specified identifier is found; otherwise, false. @@ -52,18 +53,18 @@ bool TryResolve(UIntPtr key, out object target) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr The key of the target to find. -`target` [object](https://learn.microsoft.com/dotnet/api/system.object) +`target` object When this method returns, it contains the target associated with the specified key, if any, otherwise it contains the default value for the format of the target parameter. This parameter is passed uninitialized. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the element with the specified key is found; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IOMatrix.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IOMatrix.md index 0ea66401b8..9286da2298 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IOMatrix.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IOMatrix.md @@ -1,4 +1,5 @@ -# Interface IOMatrix +# Interface IOMatrix + Namespace: [VM](VM.md) Assembly: VM.dll @@ -27,7 +28,7 @@ double[] Array { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### XVector @@ -97,7 +98,7 @@ Vector GetDirectionVector(int axis) #### Parameters -`axis` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`axis` int The type of axis. @@ -137,7 +138,7 @@ void RotateAxisDeg(Coordinate c, double dAngle) The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -151,11 +152,11 @@ void RotateAxisDeg(int nCoord, double dAngle) #### Parameters -`nCoord` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nCoord` int The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -173,7 +174,7 @@ void RotateAxisDeg(Vector axis, double dAngle) The rotation axis. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -191,7 +192,7 @@ void RotateAxisRad(Coordinate c, double dAngle) The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -205,11 +206,11 @@ void RotateAxisRad(int nCoord, double dAngle) #### Parameters -`nCoord` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nCoord` int The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -227,7 +228,7 @@ void RotateAxisRad(Vector axis, double dAngle) The rotation axis. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -241,7 +242,7 @@ void RotateXDeg(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -255,7 +256,7 @@ void RotateXRad(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -269,7 +270,7 @@ void RotateYDeg(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -283,7 +284,7 @@ void RotateYRad(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -297,7 +298,7 @@ void RotateZDeg(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -311,7 +312,7 @@ void RotateZRad(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -361,7 +362,7 @@ void SetOrientation(double[] arr) #### Parameters -`arr` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arr` double\[\] The data of orientation. @@ -379,15 +380,15 @@ void SetOrientationEADeg(RotationAxes ea, double dAlpha, double dBeta, double dG The type of euler angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of euler angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of euler angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of euler angle. @@ -405,15 +406,15 @@ void SetOrientationEARad(RotationAxes ea, double dAlpha, double dBeta, double dG The type of euler angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of euler angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of euler angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of euler angle. @@ -431,15 +432,15 @@ void SetOrientationFixedAngleDeg(RotationAxes ea, double dAlpha, double dBeta, d The type of fixed angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of fixed angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of fixed angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of fixed angle. @@ -457,15 +458,15 @@ void SetOrientationFixedAngleRad(RotationAxes ea, double dAlpha, double dBeta, d The type of fixed angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of fixed angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of fixed angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of fixed angle. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IObjectExtensions.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IObjectExtensions.md index fd5fce7c26..0fc0e4fd18 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IObjectExtensions.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IObjectExtensions.md @@ -1,4 +1,5 @@ -# Class IObjectExtensions +# Class IObjectExtensions + Namespace: [VM](VM.md) Assembly: VM.Operations.Pre.dll @@ -11,7 +12,7 @@ public static class IObjectExtensions #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [IObjectExtensions](VM.IObjectExtensions.md) #### Extension Methods @@ -36,11 +37,11 @@ public static void OperationSetValue(this IObject target, string propertyName, o Target -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string Member name -`value` [object](https://learn.microsoft.com/dotnet/api/system.object) +`value` object Value @@ -58,17 +59,17 @@ public static bool TryOperationSetValue(this IObject target, string propertyName Target -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string Member name -`value` [object](https://learn.microsoft.com/dotnet/api/system.object) +`value` object Value #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool Result diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IObservableObject.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IObservableObject.md index 114496a0aa..7d321d2c27 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IObservableObject.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IObservableObject.md @@ -1,4 +1,5 @@ -# Interface IObservableObject +# Interface IObservableObject + Namespace: [VM](VM.md) Assembly: VM.dll @@ -27,7 +28,7 @@ void RaisePropertyChanged(string propertyName) #### Parameters -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string ### RaisePropertyChanged\(string, object, object\) @@ -37,9 +38,9 @@ void RaisePropertyChanged(string propertyName, object oldValue, object newValue) #### Parameters -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string -`oldValue` [object](https://learn.microsoft.com/dotnet/api/system.object) +`oldValue` object -`newValue` [object](https://learn.microsoft.com/dotnet/api/system.object) +`newValue` object diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IOpenFileService.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IOpenFileService.md index 096288a388..554ffeab5a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IOpenFileService.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IOpenFileService.md @@ -1,4 +1,5 @@ -# Interface IOpenFileService +# Interface IOpenFileService + Namespace: [VM](VM.md) Assembly: VM.dll @@ -27,7 +28,7 @@ IReadOnlyCollection FileNames { get; } #### Property Value - [IReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + IReadOnlyCollection ### IsMultiSelect @@ -37,7 +38,7 @@ bool IsMultiSelect { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -49,5 +50,5 @@ bool ShowDialog() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IOrientationBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IOrientationBase.md index aba85eeb30..d657413bb3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IOrientationBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IOrientationBase.md @@ -1,4 +1,5 @@ -# Interface IOrientationBase +# Interface IOrientationBase + Namespace: [VM](VM.md) Assembly: VM.dll @@ -33,7 +34,7 @@ IList RotationAngles { get; } #### Property Value - [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> + IList ### RotationAxes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IOutput.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IOutput.md index 01b731fd42..13d90ad872 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IOutput.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IOutput.md @@ -1,4 +1,5 @@ -# Interface IOutput +# Interface IOutput + Namespace: [VM](VM.md) Assembly: VM.dll @@ -35,11 +36,11 @@ void Write(string category, string message) #### Parameters -`category` [string](https://learn.microsoft.com/dotnet/api/system.string) +`category` string The category of the message. -`message` [string](https://learn.microsoft.com/dotnet/api/system.string) +`message` string The message to output. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IPointBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IPointBase.md index 8dadd6f63b..136532edf3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IPointBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IPointBase.md @@ -1,4 +1,5 @@ -# Interface IPointBase +# Interface IPointBase + Namespace: [VM](VM.md) Assembly: VM.dll @@ -23,7 +24,7 @@ bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Value @@ -45,7 +46,7 @@ double X { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y @@ -57,7 +58,7 @@ double Y { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Z @@ -69,7 +70,7 @@ double Z { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -85,5 +86,5 @@ bool IsParametric(ReferenceTypes type) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IPointExpression.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IPointExpression.md index 7b404f6260..dbe095998e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IPointExpression.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IPointExpression.md @@ -1,4 +1,5 @@ -# Interface IPointExpression +# Interface IPointExpression + Namespace: [VM](VM.md) Assembly: VM.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IPostDeserialized.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IPostDeserialized.md index 0fac413c8c..49beeb5a93 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IPostDeserialized.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IPostDeserialized.md @@ -1,4 +1,5 @@ -# Interface IPostDeserialized +# Interface IPostDeserialized + Namespace: [VM](VM.md) Assembly: VM.dll @@ -23,5 +24,5 @@ void OnPostDeserialized(StreamingContext context) #### Parameters -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.ISaveFileService.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.ISaveFileService.md index 84c0281e3c..d008c43b7c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.ISaveFileService.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.ISaveFileService.md @@ -1,4 +1,5 @@ -# Interface ISaveFileService +# Interface ISaveFileService + Namespace: [VM](VM.md) Assembly: VM.dll @@ -27,5 +28,5 @@ bool ShowDialog() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IScenarioDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IScenarioDocument.md index 7550024b7a..200c4183c7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IScenarioDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IScenarioDocument.md @@ -1,4 +1,5 @@ -# Interface IScenarioDocument +# Interface IScenarioDocument + Namespace: [VM](VM.md) Assembly: VM.dll @@ -33,7 +34,7 @@ string GetName() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetPath\(\) @@ -43,7 +44,7 @@ string GetPath() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetScenarioValue\(\) @@ -53,5 +54,5 @@ Array GetScenarioValue() #### Returns - [Array](https://learn.microsoft.com/dotnet/api/system.array) + Array diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.ISelected.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.ISelected.md index 2d48b8ffd5..00f40e2b96 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.ISelected.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.ISelected.md @@ -1,4 +1,5 @@ -# Interface ISelected +# Interface ISelected + Namespace: [VM](VM.md) Assembly: VM.dll @@ -23,5 +24,5 @@ bool IsSelected { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.ITransformBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.ITransformBase.md index 844e3ef344..0fb2faeed0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.ITransformBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.ITransformBase.md @@ -1,4 +1,5 @@ -# Interface ITransformBase +# Interface ITransformBase + Namespace: [VM](VM.md) Assembly: VM.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.ITransformExpression.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.ITransformExpression.md index 812aded521..80905dc52a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.ITransformExpression.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.ITransformExpression.md @@ -1,4 +1,5 @@ -# Interface ITransformExpression +# Interface ITransformExpression + Namespace: [VM](VM.md) Assembly: VM.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IVisible.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IVisible.md index 2a8f28966f..296a7945c6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IVisible.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.IVisible.md @@ -1,4 +1,5 @@ -# Interface IVisible +# Interface IVisible + Namespace: [VM](VM.md) Assembly: VM.dll @@ -23,5 +24,5 @@ bool IsVisible { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Identifier.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Identifier.md index fdb10d3017..a6881ffa79 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Identifier.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Identifier.md @@ -1,4 +1,5 @@ -# Struct Identifier +# Struct Identifier + Namespace: [VM](VM.md) Assembly: VM.dll @@ -37,7 +38,7 @@ public int CompareTo(Identifier other) #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### CompareTo\(object\) @@ -47,11 +48,11 @@ public int CompareTo(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Equals\(Identifier\) @@ -65,7 +66,7 @@ public bool Equals(Identifier other) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Equals\(object\) @@ -75,11 +76,11 @@ public override bool Equals(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetHashCode\(\) @@ -89,7 +90,7 @@ public override int GetHashCode() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetNextIdentifier\(Identifier\) @@ -113,7 +114,7 @@ public override string ToString() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Operators @@ -131,7 +132,7 @@ public static bool operator ==(Identifier left, Identifier right) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### operator \>\(Identifier, Identifier\) @@ -147,7 +148,7 @@ public static bool operator >(Identifier left, Identifier right) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### operator \>=\(Identifier, Identifier\) @@ -163,7 +164,7 @@ public static bool operator >=(Identifier left, Identifier right) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### operator \!=\(Identifier, Identifier\) @@ -179,7 +180,7 @@ public static bool operator !=(Identifier left, Identifier right) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### operator <\(Identifier, Identifier\) @@ -195,7 +196,7 @@ public static bool operator <(Identifier left, Identifier right) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### operator <=\(Identifier, Identifier\) @@ -211,5 +212,5 @@ public static bool operator <=(Identifier left, Identifier right) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.KeyValue-2.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.KeyValue-2.md index f4f178cfef..9ceaff861b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.KeyValue-2.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.KeyValue-2.md @@ -1,4 +1,5 @@ -# Class KeyValue +# Class KeyValue + Namespace: [VM](VM.md) Assembly: VM.dll @@ -15,7 +16,7 @@ public class KeyValue : ObservableObject, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ObservableObject](VM.ObservableObject.md) ← [KeyValue](VM.KeyValue\-2.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AddToDocEventArgs.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AddToDocEventArgs.md index bdb767aeee..e90bd818e2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AddToDocEventArgs.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AddToDocEventArgs.md @@ -1,4 +1,5 @@ -# Class AddToDocEventArgs +# Class AddToDocEventArgs + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public sealed class AddToDocEventArgs : EventArgs #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) ← +object ← +EventArgs ← [AddToDocEventArgs](VM.Managed.AddToDocEventArgs.md) #### Extension Methods @@ -37,11 +38,11 @@ public AddToDocEventArgs(Document doc, bool bBackup, bool bLoading) The document. -`bBackup` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bBackup` bool The backup flag. -`bLoading` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bLoading` bool The loading flag. @@ -69,7 +70,7 @@ public bool IsBackup { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsLoading @@ -81,5 +82,5 @@ public bool IsLoading { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AnalysisParameterDynamic.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AnalysisParameterDynamic.md index 5dd18accf3..b888f50760 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AnalysisParameterDynamic.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AnalysisParameterDynamic.md @@ -1,4 +1,5 @@ -# Class AnalysisParameterDynamic +# Class AnalysisParameterDynamic + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,7 +12,7 @@ public class AnalysisParameterDynamic #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisParameterDynamic](VM.Managed.AnalysisParameterDynamic.md) #### Derived @@ -45,7 +46,7 @@ public double ConvergenceErrorTolerance { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DurabilityResultFile @@ -57,7 +58,7 @@ public string DurabilityResultFile { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### DurabilityStepSkipFactor @@ -69,7 +70,7 @@ public uint DurabilityStepSkipFactor { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### ErrorToleranceFactorForNRResidual @@ -81,7 +82,7 @@ public double ErrorToleranceFactorForNRResidual { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### InitialStepSize @@ -93,7 +94,7 @@ public double InitialStepSize { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### LoadingConditionEndTime @@ -105,7 +106,7 @@ public double LoadingConditionEndTime { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### LoadingConditionResultFile @@ -117,7 +118,7 @@ public string LoadingConditionResultFile { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### LoadingConditionStartTime @@ -129,7 +130,7 @@ public double LoadingConditionStartTime { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MaximumConvergence @@ -141,7 +142,7 @@ public int MaximumConvergence { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### MaximumStepSize @@ -153,7 +154,7 @@ public double MaximumStepSize { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MinimumStepSize @@ -165,7 +166,7 @@ public double MinimumStepSize { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NumberOfRepeatedLoad @@ -177,7 +178,7 @@ public uint NumberOfRepeatedLoad { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### NumericalDampingValue @@ -189,7 +190,7 @@ public double NumericalDampingValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### OwnerLinkContainer @@ -213,7 +214,7 @@ public double StabilizationTime { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StepFactorValue @@ -225,7 +226,7 @@ public double StepFactorValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UseErrorToleranceFactorForNRResidual @@ -237,7 +238,7 @@ public bool UseErrorToleranceFactorForNRResidual { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseStabilizationTime @@ -249,7 +250,7 @@ public bool UseStabilizationTime { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AnalysisParameterEigenvalue.AnalysisType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AnalysisParameterEigenvalue.AnalysisType.md index 7ef14e24bc..58fd6ecf1b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AnalysisParameterEigenvalue.AnalysisType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AnalysisParameterEigenvalue.AnalysisType.md @@ -1,4 +1,5 @@ -# Enum AnalysisParameterEigenvalue.AnalysisType +# Enum AnalysisParameterEigenvalue.AnalysisType + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AnalysisParameterEigenvalue.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AnalysisParameterEigenvalue.md index 7d9d022f08..14aa81b383 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AnalysisParameterEigenvalue.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AnalysisParameterEigenvalue.md @@ -1,4 +1,5 @@ -# Class AnalysisParameterEigenvalue +# Class AnalysisParameterEigenvalue + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,7 +12,7 @@ public class AnalysisParameterEigenvalue #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisParameterEigenvalue](VM.Managed.AnalysisParameterEigenvalue.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AnalysisParameterStatic.JacobianEvaluationType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AnalysisParameterStatic.JacobianEvaluationType.md index 6db4db0e50..4d71abaa53 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AnalysisParameterStatic.JacobianEvaluationType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AnalysisParameterStatic.JacobianEvaluationType.md @@ -1,4 +1,5 @@ -# Enum AnalysisParameterStatic.JacobianEvaluationType +# Enum AnalysisParameterStatic.JacobianEvaluationType + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AnalysisParameterStatic.SolvingType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AnalysisParameterStatic.SolvingType.md index abb7ac11bf..378de36f00 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AnalysisParameterStatic.SolvingType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AnalysisParameterStatic.SolvingType.md @@ -1,4 +1,5 @@ -# Enum AnalysisParameterStatic.SolvingType +# Enum AnalysisParameterStatic.SolvingType + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AnalysisParameterStatic.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AnalysisParameterStatic.md index d9f65c34ad..081803314f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AnalysisParameterStatic.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AnalysisParameterStatic.md @@ -1,4 +1,5 @@ -# Class AnalysisParameterStatic +# Class AnalysisParameterStatic + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,7 +12,7 @@ public class AnalysisParameterStatic : AnalysisParameterDynamic #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisParameterDynamic](VM.Managed.AnalysisParameterDynamic.md) ← [AnalysisParameterStatic](VM.Managed.AnalysisParameterStatic.md) @@ -63,7 +64,7 @@ public int MaximumInterGlobalLoop { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### OutputFileFlag @@ -75,7 +76,7 @@ public bool OutputFileFlag { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SkipInitialResult @@ -85,7 +86,7 @@ public bool SkipInitialResult { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TypeForSolving @@ -121,7 +122,7 @@ public bool UseLinearAnalysis { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseNonLinearAnalysisWithoutRigidMode @@ -133,5 +134,5 @@ public bool UseNonLinearAnalysisWithoutRigidMode { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AnalysisParameterThermal.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AnalysisParameterThermal.md index 846f190626..92b1f078a4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AnalysisParameterThermal.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AnalysisParameterThermal.md @@ -1,4 +1,5 @@ -# Class AnalysisParameterThermal +# Class AnalysisParameterThermal + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,7 +12,7 @@ public class AnalysisParameterThermal : AnalysisParameterDynamic #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisParameterDynamic](VM.Managed.AnalysisParameterDynamic.md) ← [AnalysisParameterThermal](VM.Managed.AnalysisParameterThermal.md) @@ -63,5 +64,5 @@ public bool UseSteadyStateAnalysis { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Application.BinderInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Application.BinderInfo.md index 2b42677d64..99af8dc3ca 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Application.BinderInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Application.BinderInfo.md @@ -1,4 +1,5 @@ -# Class Application.BinderInfo +# Class Application.BinderInfo + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class Application.BinderInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Application.BinderInfo](VM.Managed.Application.BinderInfo.md) #### Extension Methods @@ -30,9 +31,9 @@ public BinderInfo(string strClass, string strAssembly) #### Parameters -`strClass` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strClass` string -`strAssembly` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strAssembly` string ### BinderInfo\(string\) @@ -42,7 +43,7 @@ public BinderInfo(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string ## Fields @@ -54,7 +55,7 @@ public string AssemblyName #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ClassName @@ -64,5 +65,5 @@ public string ClassName #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Application.PostOpenDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Application.PostOpenDocument.md index 105b7ebdcc..7bf655e2c0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Application.PostOpenDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Application.PostOpenDocument.md @@ -1,4 +1,5 @@ -# Delegate Application.PostOpenDocument +# Delegate Application.PostOpenDocument + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Application.PriorityType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Application.PriorityType.md index aae79c9ef8..40395f50bf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Application.PriorityType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Application.PriorityType.md @@ -1,4 +1,5 @@ -# Enum Application.PriorityType +# Enum Application.PriorityType + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Application.StartOption.WriteMessage.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Application.StartOption.WriteMessage.md index 152e99c594..f84219e327 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Application.StartOption.WriteMessage.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Application.StartOption.WriteMessage.md @@ -1,4 +1,5 @@ -# Delegate Application.StartOption.WriteMessage +# Delegate Application.StartOption.WriteMessage + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public delegate void Application.StartOption.WriteMessage(string A_0) #### Parameters -`A_0` [string](https://learn.microsoft.com/dotnet/api/system.string) +`A_0` string #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Application.StartOption.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Application.StartOption.md index 7c86234844..b673b2d655 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Application.StartOption.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Application.StartOption.md @@ -1,4 +1,5 @@ -# Class Application.StartOption +# Class Application.StartOption + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public sealed class Application.StartOption #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Application.StartOption](VM.Managed.Application.StartOption.md) #### Extension Methods @@ -32,15 +33,15 @@ public StartOption(string strTranslatorDirectory, string strKernelCoreModulePath #### Parameters -`strTranslatorDirectory` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strTranslatorDirectory` string The translator directory. -`strKernelCoreModulePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strKernelCoreModulePath` string The kernel core module path. -`strHoopsExchangeDirectory` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strHoopsExchangeDirectory` string The Hoops Exchange path. @@ -64,7 +65,7 @@ public bool GenerateHoopsCode { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### HoopsExchangeDirectory @@ -76,7 +77,7 @@ public string HoopsExchangeDirectory { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### KernelCoreModulePath @@ -88,7 +89,7 @@ public string KernelCoreModulePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### KernelMessageCallback @@ -112,7 +113,7 @@ public int KernelMessageLogLevel { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### StrideConvertPath @@ -124,7 +125,7 @@ public string StrideConvertPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### StrideDependencies @@ -136,7 +137,7 @@ public string StrideDependencies { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TranslatorDirectory @@ -148,7 +149,7 @@ public string TranslatorDirectory { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TranslatorMessageCallback @@ -172,7 +173,7 @@ public int TranslatorMessageLogLevel { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### UsePID @@ -184,5 +185,5 @@ public bool UsePID { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Application.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Application.md index 830b38f39c..1df5e7ca7b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Application.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Application.md @@ -1,4 +1,5 @@ -# Class Application +# Class Application + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public abstract class Application : IHasVerifyLevel #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Application](VM.Managed.Application.md) #### Implements @@ -36,12 +37,42 @@ public Application(IApplication* pApp) #### Parameters -`pApp` [IApplication](VM.DAFUL.IApplication.md)\* +`pApp` IApplication\* The info of application. ## Properties +### AlertMessageHandler + +```csharp +public static Action AlertMessageHandler { get; set; } +``` + +#### Property Value + + Action + +### AskOkCancelHandler + +```csharp +public static Func AskOkCancelHandler { get; set; } +``` + +#### Property Value + + Func + +### AskOkCancelWithSimpleTextHandler + +```csharp +public static Func AskOkCancelWithSimpleTextHandler { get; set; } +``` + +#### Property Value + + Func + ### ConversionMethod ```csharp @@ -84,7 +115,17 @@ public ICollection Documents { get; } #### Property Value - [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[Document](VM.Managed.Document.md)\> + ICollection<[Document](VM.Managed.Document.md)\> + +### InformationMessageHandler + +```csharp +public static Action InformationMessageHandler { get; set; } +``` + +#### Property Value + + Action ### Kernel @@ -106,7 +147,7 @@ public static bool LoadPrior242Sp3Files { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OEMMode @@ -116,7 +157,7 @@ public static bool OEMMode { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ShowOEMError @@ -126,7 +167,7 @@ public static bool ShowOEMError { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SupportLegacyACISBasedFile @@ -136,10 +177,144 @@ public static bool SupportLegacyACISBasedFile { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool + +### WarningMessageHandler + +```csharp +public static Action WarningMessageHandler { get; set; } +``` + +#### Property Value + + Action ## Methods +### AskOkCancel\(string\) + +Ask OK/Cancel message + +```csharp +public static bool AskOkCancel(string message) +``` + +#### Parameters + +`message` string + +The message to show. + +#### Returns + + bool + +true if Ok. Otherwise, false. + +### AskOkCancel\(string, bool\) + +Ask OK/Cancel message + +```csharp +public static bool AskOkCancel(string message, bool bActiveCancel) +``` + +#### Parameters + +`message` string + +The message to show. + +`bActiveCancel` bool + +If true, the Cancel button is active. + +#### Returns + + bool + +true if Ok. Otherwise, false. + +### AskOkCancel\(string, string\) + +Ask OK/Cancel message + +```csharp +public static bool AskOkCancel(string message, string title) +``` + +#### Parameters + +`message` string + +The message to show. + +`title` string + +The title + +#### Returns + + bool + +true if Ok. Otherwise, false. + +### AskOkCancel\(string, string, bool\) + +Ask OK/Cancel message + +```csharp +public static bool AskOkCancel(string message, string title, bool bActiveCancel) +``` + +#### Parameters + +`message` string + +The message to show. + +`title` string + +The title + +`bActiveCancel` bool + +If true, the Cancel button is active. + +#### Returns + + bool + +true if Ok. Otherwise, false. + +### AskOkCancelWithSimpleText\(string, string, string\) + +Ask OK/Cancel message with simple text + +```csharp +public static bool AskOkCancelWithSimpleText(string simpleText, string message, string title) +``` + +#### Parameters + +`simpleText` string + +The simple text message + +`message` string + +The message to show + +`title` string + +The title + +#### Returns + + bool + +true if Ok. Otherwise, false. + ### CreateDocument\(DocumentType, Type, string\[\], DocCreateInfo\) Creates the document. @@ -154,11 +329,11 @@ public Document3D CreateDocument(DocumentType type, Type typeDoc, string[] arIco The type of document. -`typeDoc` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`typeDoc` Type The system type of document. -`arIconFiles` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arIconFiles` string\[\] Icon files. @@ -186,7 +361,7 @@ public Document CreateDocument(DocumentType type, Type typeDoc) The type of document. -`typeDoc` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`typeDoc` Type The system type of document. @@ -205,7 +380,7 @@ protected virtual void Dispose(bool A_0) #### Parameters -`A_0` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`A_0` bool ### Dispose\(\) @@ -232,11 +407,11 @@ public string GetTranslateFilter(string strFilter) #### Parameters -`strFilter` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilter` string #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetTranslateForExportFilter\(string\) @@ -246,11 +421,11 @@ public string GetTranslateForExportFilter(string strFilter) #### Parameters -`strFilter` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilter` string #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### InitPlugins\(string\[\]\) @@ -262,7 +437,7 @@ public abstract void InitPlugins(string[] arStrPluginPath) #### Parameters -`arStrPluginPath` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arStrPluginPath` string\[\] The path of plugin. @@ -276,7 +451,7 @@ public Document3D OpenDocument(string strFilePath, DocumentType type, string[] a #### Parameters -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string The path of opened document. @@ -284,7 +459,7 @@ The path of opened document. The type of document. -`arIconFiles` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arIconFiles` string\[\] Icon files. @@ -308,7 +483,7 @@ public Document3D OpenTemplateBasedDocument(string strFilePath, DocumentType typ #### Parameters -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string The path of opened document. @@ -316,7 +491,7 @@ The path of opened document. The type of document. -`arIconFiles` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arIconFiles` string\[\] Icon files. @@ -340,7 +515,7 @@ public Document3D OpenXmlDocument(string strFilePath, DocumentType type, string[ #### Parameters -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string The path of opened document. @@ -348,7 +523,7 @@ The path of opened document. The type of document. -`arIconFiles` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arIconFiles` string\[\] Icon files. @@ -372,7 +547,7 @@ public static void SetAxisSetting(bool bUseRotate, AxisLocation enLocation) #### Parameters -`bUseRotate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseRotate` bool Use rotate in axis area @@ -388,9 +563,9 @@ public static void SetBinderDictionary(Dictionary +`dicBinder` Dictionary -`dicBinderForCollection` [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [Application](VM.Managed.Application.md).[BinderInfo](VM.Managed.Application.BinderInfo.md)\> +`dicBinderForCollection` Dictionary ### SetDoubleFormat\(int\) @@ -402,7 +577,7 @@ public static void SetDoubleFormat(int nValue) #### Parameters -`nValue` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nValue` int The value. @@ -414,9 +589,9 @@ public void SetInforceBuild(string strFile, bool bOnOff) #### Parameters -`strFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFile` string -`bOnOff` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bOnOff` bool ### SetKernelLogLevel\(int, int\) @@ -428,11 +603,11 @@ public void SetKernelLogLevel(int nKernelLogLevel, int nTranslatorLogLevel) #### Parameters -`nKernelLogLevel` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nKernelLogLevel` int Log level for the kernel messages. -`nTranslatorLogLevel` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nTranslatorLogLevel` int Log level for the translator messages. @@ -460,15 +635,111 @@ public static void SetNavigationSetting(NavigationKeys oRotateMain, NavigationKe `oCenterSub` [NavigationKeys](VM.Managed.NavigationKeys.md) -`bZoomInMouseDown` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bZoomInMouseDown` bool + +`bZoomInWheelDown` bool + +`bTrackball` bool + +`nRotateSpeed` int + +`nZoomSpeed` int + +### ShowAlert\(string\) + +Show alert message + +```csharp +public static void ShowAlert(string message) +``` + +#### Parameters + +`message` string + +The message to show + +### ShowAlert\(string, string\) + +Show alert message + +```csharp +public static void ShowAlert(string message, string title) +``` + +#### Parameters + +`message` string + +The message to show + +`title` string + +The title + +### ShowInformation\(string\) + +Show information message + +```csharp +public static void ShowInformation(string message) +``` + +#### Parameters + +`message` string + +The message to show + +### ShowInformation\(string, string\) + +Show information message + +```csharp +public static void ShowInformation(string message, string title) +``` + +#### Parameters + +`message` string + +The message to show + +`title` string + +The title + +### ShowWarning\(string\) + +Show warning message + +```csharp +public static void ShowWarning(string message) +``` + +#### Parameters + +`message` string + +The message to show + +### ShowWarning\(string, string\) + +Show warning message + +```csharp +public static void ShowWarning(string message, string title) +``` + +#### Parameters -`bZoomInWheelDown` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`message` string -`bTrackball` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +The message to show -`nRotateSpeed` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`title` string -`nZoomSpeed` [int](https://learn.microsoft.com/dotnet/api/system.int32) +The title ### Start\(string, StartOption\) @@ -480,7 +751,7 @@ public static Application Start(string strKernelPath, Application.StartOption ob #### Parameters -`strKernelPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strKernelPath` string The path of kernel. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Assembly.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Assembly.md index 7cd1590aa9..fc251cc9d0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Assembly.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Assembly.md @@ -1,4 +1,5 @@ -# Class Assembly +# Class Assembly + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public abstract class Assembly : Object, IObservableObject, IDi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Assembly](VM.Managed.Assembly.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), [IAttributeContainer](VM.Managed.IAttributeContainer.md) #### Inherited Members @@ -129,7 +130,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -174,11 +175,11 @@ protected Assembly(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. @@ -194,7 +195,7 @@ protected override bool ClearChildInfoBeforeDeserialize { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OriginalDocument @@ -218,9 +219,9 @@ public static void AddReplacedFile(string strSourceFile, string strReplacingFile #### Parameters -`strSourceFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSourceFile` string -`strReplacingFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strReplacingFile` string ### Instantiate\(string\) @@ -232,13 +233,13 @@ public virtual LinkedList Instantiate(string strCategory) #### Parameters -`strCategory` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategory` string The category name. #### Returns - [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1)<[Reference](VM.Managed.Reference.md)\> + LinkedList<[Reference](VM.Managed.Reference.md)\> ### Instantiate\(\) @@ -250,7 +251,7 @@ public virtual LinkedList Instantiate() #### Returns - [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1)<[Reference](VM.Managed.Reference.md)\> + LinkedList<[Reference](VM.Managed.Reference.md)\> ### LinkAddedToDocument\(object, AddToDocEventArgs\) @@ -262,7 +263,7 @@ protected override void LinkAddedToDocument(object objNotifier, AddToDocEventArg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -280,7 +281,7 @@ protected override void LinkRequestDestroy(object obNotifier, LinkEventArgs arg) #### Parameters -`obNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obNotifier` object The linked object. @@ -298,7 +299,7 @@ protected override void LinkRequestUpdate(object obNotifier, LinkEventArgs arg) #### Parameters -`obNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obNotifier` object The linked object. @@ -314,5 +315,5 @@ public static void RemoveReplacedFile(string strFile) #### Parameters -`strFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFile` string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeBase.md index a9602d6c71..7a37ef56a5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeBase.md @@ -1,4 +1,5 @@ -# Class AttributeBase +# Class AttributeBase + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public abstract class AttributeBase : LinkContainer, IObservableObject, IDisposa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [AttributeBase](VM.Managed.AttributeBase.md) @@ -98,7 +99,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -139,7 +140,7 @@ protected override void LinkRequestUpdate(object obNotifier, LinkEventArgs arg) #### Parameters -`obNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeCADBodyNameProperty.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeCADBodyNameProperty.md index 5799f4fc2b..414e08dff6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeCADBodyNameProperty.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeCADBodyNameProperty.md @@ -1,4 +1,5 @@ -# Class AttributeCADBodyNameProperty +# Class AttributeCADBodyNameProperty + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public sealed class AttributeCADBodyNameProperty : AttributeBase, IObservableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [AttributeBase](VM.Managed.AttributeBase.md) ← [AttributeCADBodyNameProperty](VM.Managed.AttributeCADBodyNameProperty.md) @@ -83,7 +84,7 @@ public AttributeCADBodyNameProperty(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string ### AttributeCADBodyNameProperty\(\) @@ -101,5 +102,5 @@ public virtual string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeCanNotOpenWithNewPreprocessor.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeCanNotOpenWithNewPreprocessor.md index 13efc64844..5d410eca4c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeCanNotOpenWithNewPreprocessor.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeCanNotOpenWithNewPreprocessor.md @@ -1,4 +1,5 @@ -# Class AttributeCanNotOpenWithNewPreprocessor +# Class AttributeCanNotOpenWithNewPreprocessor + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class AttributeCanNotOpenWithNewPreprocessor : AttributeBase, IObservable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [AttributeBase](VM.Managed.AttributeBase.md) ← [AttributeCanNotOpenWithNewPreprocessor](VM.Managed.AttributeCanNotOpenWithNewPreprocessor.md) @@ -78,7 +79,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -117,5 +118,5 @@ public uint Count { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeCollection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeCollection.md index 88280a0a66..ea5fc47ccf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeCollection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeCollection.md @@ -1,4 +1,5 @@ -# Class AttributeCollection +# Class AttributeCollection + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public sealed class AttributeCollection : LinkContainer, IObservableObject, IDis #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [AttributeCollection](VM.Managed.AttributeCollection.md) @@ -93,7 +94,7 @@ public int Count { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### IsExternable @@ -105,7 +106,7 @@ public override bool IsExternable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Keys @@ -117,7 +118,7 @@ public ICollection Keys { get; } #### Property Value - [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + ICollection ### Values @@ -129,7 +130,7 @@ public ICollection Values { get; } #### Property Value - [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[AttributeBase](VM.Managed.AttributeBase.md)\> + ICollection<[AttributeBase](VM.Managed.AttributeBase.md)\> ### this\[string\] @@ -153,7 +154,7 @@ public void Add(string strKey, AttributeBase attr) #### Parameters -`strKey` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strKey` string The object to use as the key of the element to add. @@ -163,15 +164,15 @@ The object to use as the value of the element to add. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException strKey is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException An element with the same key already exists in the . - [NotSupportedException](https://learn.microsoft.com/dotnet/api/system.notsupportedexception) + NotSupportedException The is read-only. @@ -185,7 +186,7 @@ public void Clear() #### Exceptions - [NotSupportedException](https://learn.microsoft.com/dotnet/api/system.notsupportedexception) + NotSupportedException The is read-only. @@ -199,19 +200,19 @@ public bool ContainsKey(string strKey) #### Parameters -`strKey` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strKey` string The key to locate in the . #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the contains an element with the key; otherwise, false. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException strKey is null. @@ -225,7 +226,7 @@ public IEnumerator> GetEnumerator() #### Returns - [IEnumerator](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator\-1)<[KeyValuePair](https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [AttributeBase](VM.Managed.AttributeBase.md)\>\> + IEnumerator\> A that can be used to iterate through the collection. @@ -242,7 +243,7 @@ public XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -256,7 +257,7 @@ protected override sealed void LinkRequestDestroy(object obNotifier, LinkEventAr #### Parameters -`obNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obNotifier` object The linked object. @@ -274,7 +275,7 @@ protected override sealed void LinkRequestUpdate(object obNotifier, LinkEventArg #### Parameters -`obNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obNotifier` object The linked object. @@ -292,7 +293,7 @@ public void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -306,23 +307,23 @@ public bool Remove(string strKey) #### Parameters -`strKey` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strKey` string The key of the element to remove. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the element is successfully removed; otherwise, false. This method also returns false if strKey was not found in the original . #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException strKey is null. - [NotSupportedException](https://learn.microsoft.com/dotnet/api/system.notsupportedexception) + NotSupportedException The is read-only. @@ -336,7 +337,7 @@ public bool TryGetValue(string strKey, out AttributeBase value) #### Parameters -`strKey` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strKey` string The key whose value to get. @@ -346,13 +347,13 @@ When this method returns, the value associated with the specified key, if the ke #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the object that implements contains an element with the specified key; otherwise, false. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException strKey is null. @@ -366,7 +367,7 @@ public void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeDoNotMakeHistory.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeDoNotMakeHistory.md index bf11f87294..7098e9ba61 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeDoNotMakeHistory.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeDoNotMakeHistory.md @@ -1,4 +1,5 @@ -# Class AttributeDoNotMakeHistory +# Class AttributeDoNotMakeHistory + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class AttributeDoNotMakeHistory : AttributeBase, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [AttributeBase](VM.Managed.AttributeBase.md) ← [AttributeDoNotMakeHistory](VM.Managed.AttributeDoNotMakeHistory.md) @@ -78,7 +79,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeFaceNormal.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeFaceNormal.md index e2bb556d72..7e6be8a198 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeFaceNormal.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeFaceNormal.md @@ -1,4 +1,5 @@ -# Class AttributeFaceNormal +# Class AttributeFaceNormal + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class AttributeFaceNormal : AttributeBase, IObservableObject, IDisposable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [AttributeBase](VM.Managed.AttributeBase.md) ← [AttributeFaceNormal](VM.Managed.AttributeFaceNormal.md) @@ -78,7 +79,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -109,7 +110,7 @@ public AttributeFaceNormal(bool bOpposite) #### Parameters -`bOpposite` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bOpposite` bool The opposite state. @@ -133,5 +134,5 @@ public bool IsOpposite { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeFacetRefinementBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeFacetRefinementBase.md index dd4601255b..3d8a20fe33 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeFacetRefinementBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeFacetRefinementBase.md @@ -1,4 +1,5 @@ -# Class AttributeFacetRefinementBase +# Class AttributeFacetRefinementBase + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class AttributeFacetRefinementBase : AttributeBase, IObservableObject, ID #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [AttributeBase](VM.Managed.AttributeBase.md) ← [AttributeFacetRefinementBase](VM.Managed.AttributeFacetRefinementBase.md) @@ -82,7 +83,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -129,27 +130,27 @@ The angular tolerance. The facet aspect ratio. -`bUseMaximumGridLine` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseMaximumGridLine` bool if set to true [use maximum grid line]. -`bUseMaximumFacetSize` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseMaximumFacetSize` bool if set to true [use maximum facet size]. -`bUseSurfaceAngularTolerance` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseSurfaceAngularTolerance` bool if set to true [use surface angular tolerance]. -`bUseFacetAspectRatio` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseFacetAspectRatio` bool if set to true [use facet aspect ratio]. -`bDoNotUseGRID_TO_EDGES` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDoNotUseGRID_TO_EDGES` bool if set to true [unuse GRID_TO_EDGE. -`bDoNotUseApprox_eval` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDoNotUseApprox_eval` bool if set to true [unuse approximated evaluation]. @@ -175,23 +176,23 @@ The angular tolerance. The facet aspect ratio. -`bUseMaximumFacetSize` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseMaximumFacetSize` bool if set to true [use maximum facet size]. -`bUseSurfaceAngularTolerance` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseSurfaceAngularTolerance` bool if set to true [use surface angular tolerance]. -`bUseFacetAspectRatio` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseFacetAspectRatio` bool if set to true [use facet aspect ratio]. -`bDoNotUseGRID_TO_EDGES` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDoNotUseGRID_TO_EDGES` bool if set to true [unuse GRID_TO_EDGE. -`bDoNotUseApprox_eval` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDoNotUseApprox_eval` bool if set to true [unuse approximated evaluation]. @@ -215,7 +216,7 @@ protected bool m_bDoNotUseApprox_eval #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_bDoNotUseGRID\_TO\_EDGES @@ -227,7 +228,7 @@ protected bool m_bDoNotUseGRID_TO_EDGES #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_bUseDefaultValues @@ -239,7 +240,7 @@ protected bool m_bUseDefaultValues #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_bUseFaceOption @@ -251,7 +252,7 @@ protected bool m_bUseFaceOption #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_bUseFacetAspectRatio @@ -263,7 +264,7 @@ protected bool m_bUseFacetAspectRatio #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_bUseMaximumFacetSize @@ -275,7 +276,7 @@ protected bool m_bUseMaximumFacetSize #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_bUseMaximumGridLine @@ -287,7 +288,7 @@ protected bool m_bUseMaximumGridLine #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_bUseMinimumUGridLine @@ -299,7 +300,7 @@ protected bool m_bUseMinimumUGridLine #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_bUseMinimumVGridLine @@ -311,7 +312,7 @@ protected bool m_bUseMinimumVGridLine #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_bUseRepairPatch @@ -323,7 +324,7 @@ protected bool m_bUseRepairPatch #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_bUseSurfaceAngularTolerance @@ -335,7 +336,7 @@ protected bool m_bUseSurfaceAngularTolerance #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_bUseSurfaceTolerance @@ -347,7 +348,7 @@ protected bool m_bUseSurfaceTolerance #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_childAngularTolerance @@ -445,7 +446,7 @@ public virtual bool DrawGlobalBody { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### FacetAspectRatio @@ -457,7 +458,7 @@ public ExpressionValueVariable FacetAspectRatio { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MaximumFacetSize @@ -469,7 +470,7 @@ public ExpressionValueVariable MaximumFacetSize { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MaximumGridLine @@ -481,7 +482,7 @@ public ExpressionValueVariable MaximumGridLine { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MinimumUGridLine @@ -493,7 +494,7 @@ public ExpressionValueVariable MinimumUGridLine { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MinimumVGridLine @@ -505,7 +506,7 @@ public ExpressionValueVariable MinimumVGridLine { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### SurfaceAngularTolerance @@ -517,7 +518,7 @@ public ExpressionValueVariable SurfaceAngularTolerance { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### SurfaceTolerance @@ -529,7 +530,7 @@ public ExpressionValueVariable SurfaceTolerance { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### UseApprox\_eval @@ -541,7 +542,7 @@ public bool UseApprox_eval { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseDefaultValues @@ -553,7 +554,7 @@ public bool UseDefaultValues { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseFaceOption @@ -565,7 +566,7 @@ public bool UseFaceOption { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseFacetAspectRatio @@ -577,7 +578,7 @@ public bool UseFacetAspectRatio { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseGRID\_TO\_EDGES @@ -589,7 +590,7 @@ public bool UseGRID_TO_EDGES { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseMaximumFacetSize @@ -601,7 +602,7 @@ public bool UseMaximumFacetSize { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseMaximumGridLine @@ -613,7 +614,7 @@ public bool UseMaximumGridLine { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseMinimumUGridLine @@ -625,7 +626,7 @@ public bool UseMinimumUGridLine { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseMinimumVGridLine @@ -637,7 +638,7 @@ public bool UseMinimumVGridLine { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseRepairPatch @@ -649,7 +650,7 @@ public bool UseRepairPatch { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseSurfaceAngularTolerance @@ -661,7 +662,7 @@ public bool UseSurfaceAngularTolerance { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseSurfaceTolerance @@ -673,7 +674,7 @@ public bool UseSurfaceTolerance { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -713,7 +714,7 @@ public FacetOption GetFacetOption() #### Returns - FacetOption + [FacetOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/FacetOption.cs) ### GetXml\(AttributeFacetRefinementBase\) @@ -731,7 +732,7 @@ The old attribute. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetXml\(\) @@ -741,7 +742,7 @@ public string GetXml() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Initialize\(\) @@ -761,7 +762,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -779,7 +780,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeHideFromNavigator.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeHideFromNavigator.md index 4bd1d91f5b..9bc089f68b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeHideFromNavigator.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeHideFromNavigator.md @@ -1,4 +1,5 @@ -# Class AttributeHideFromNavigator +# Class AttributeHideFromNavigator + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class AttributeHideFromNavigator : AttributeBase, IObservableObject, IDis #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [AttributeBase](VM.Managed.AttributeBase.md) ← [AttributeHideFromNavigator](VM.Managed.AttributeHideFromNavigator.md) @@ -78,7 +79,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeIconColor.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeIconColor.md index c76366926d..833cc28eb3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeIconColor.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeIconColor.md @@ -1,4 +1,5 @@ -# Class AttributeIconColor +# Class AttributeIconColor + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -12,9 +13,9 @@ public class AttributeIconColor : AttributeBase, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [AttributeBase](VM.Managed.AttributeBase.md) ← [AttributeIconColor](VM.Managed.AttributeIconColor.md) @@ -79,7 +80,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -110,7 +111,7 @@ public AttributeIconColor(Color color) #### Parameters -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) +`color` Color The color. @@ -134,7 +135,7 @@ public int A { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### B @@ -146,7 +147,7 @@ public int B { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Color @@ -156,7 +157,7 @@ public Color Color { get; } #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### G @@ -168,7 +169,7 @@ public int G { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### R @@ -180,5 +181,5 @@ public int R { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeInvisible.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeInvisible.md index 8282bffcd4..2f68df3f79 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeInvisible.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeInvisible.md @@ -1,4 +1,5 @@ -# Class AttributeInvisible +# Class AttributeInvisible + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class AttributeInvisible : AttributeBase, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [AttributeBase](VM.Managed.AttributeBase.md) ← [AttributeInvisible](VM.Managed.AttributeInvisible.md) @@ -78,7 +79,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeLocalObject-2.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeLocalObject-2.md index ff6fd85da0..67d081a50b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeLocalObject-2.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeLocalObject-2.md @@ -1,4 +1,5 @@ -# Class AttributeLocalObject +# Class AttributeLocalObject + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -18,9 +19,9 @@ public class AttributeLocalObject : AttributeBase, IObservable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [AttributeBase](VM.Managed.AttributeBase.md) ← [AttributeLocalObject](VM.Managed.AttributeLocalObject\-2.md) @@ -85,7 +86,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeMeshFreeGeometryOutputProperty.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeMeshFreeGeometryOutputProperty.md index 108a649b94..290606b208 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeMeshFreeGeometryOutputProperty.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeMeshFreeGeometryOutputProperty.md @@ -1,4 +1,5 @@ -# Class AttributeMeshFreeGeometryOutputProperty +# Class AttributeMeshFreeGeometryOutputProperty + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -12,9 +13,9 @@ public class AttributeMeshFreeGeometryOutputProperty : AttributeFacetRefinementB #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [AttributeBase](VM.Managed.AttributeBase.md) ← [AttributeFacetRefinementBase](VM.Managed.AttributeFacetRefinementBase.md) ← @@ -128,7 +129,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -175,31 +176,31 @@ The angular tolerance. The facet aspect ratio. -`bUseMaximumGridLine` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseMaximumGridLine` bool if set to true [use maximum grid line]. -`bUseMaximumFacetSize` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseMaximumFacetSize` bool if set to true [use maximum facet size]. -`bUseSurfaceAngularTolerance` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseSurfaceAngularTolerance` bool if set to true [use surface angular tolerance]. -`bUseFacetAspectRatio` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseFacetAspectRatio` bool if set to true [use facet aspect ratio]. -`bDoNotUseGRID_TO_EDGES` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDoNotUseGRID_TO_EDGES` bool if set to true [unuse GRID_TO_EDGE. -`bDoNotUseApprox_eval` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDoNotUseApprox_eval` bool if set to true [unuse approximated evaluation]. -`bUseDefaultSetting` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseDefaultSetting` bool if set to true [use default setting values]. @@ -229,27 +230,27 @@ The angular tolerance. The facet aspect ratio. -`bUseMaximumFacetSize` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseMaximumFacetSize` bool if set to true [use maximum facet size]. -`bUseSurfaceAngularTolerance` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseSurfaceAngularTolerance` bool if set to true [use surface angular tolerance]. -`bUseFacetAspectRatio` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseFacetAspectRatio` bool if set to true [use facet aspect ratio]. -`bDoNotUseGRID_TO_EDGES` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDoNotUseGRID_TO_EDGES` bool if set to true [unuse GRID_TO_EDGE. -`bDoNotUseApprox_eval` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDoNotUseApprox_eval` bool if set to true [unuse approximated evaluation]. -`bUseDefaultSetting` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseDefaultSetting` bool if set to true [use default setting values]. @@ -275,7 +276,7 @@ protected bool m_bUseDefaultSetting #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_eOutputType @@ -311,5 +312,5 @@ public bool UseDefaultSetting { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeMultiSubEntity-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeMultiSubEntity-1.md index 08f888c119..a50dd9c6f8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeMultiSubEntity-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeMultiSubEntity-1.md @@ -1,4 +1,5 @@ -# Class AttributeMultiSubEntity +# Class AttributeMultiSubEntity + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -17,9 +18,9 @@ The type of the sub entity. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeMultiSubEntity](VM.Managed.AttributeMultiSubEntity\-1.md) @@ -84,7 +85,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -129,7 +130,7 @@ public TSubEntity[] SubEntities { get; set; } #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception SubEntity list is null. or @@ -149,7 +150,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeNotDelete.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeNotDelete.md index a18118f897..460c28e33b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeNotDelete.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeNotDelete.md @@ -1,4 +1,5 @@ -# Class AttributeNotDelete +# Class AttributeNotDelete + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class AttributeNotDelete : AttributeBase, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [AttributeBase](VM.Managed.AttributeBase.md) ← [AttributeNotDelete](VM.Managed.AttributeNotDelete.md) @@ -78,7 +79,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeObjectFeature.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeObjectFeature.md index 3678c9096d..1faba67a4b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeObjectFeature.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeObjectFeature.md @@ -1,4 +1,5 @@ -# Class AttributeObjectFeature +# Class AttributeObjectFeature + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class AttributeObjectFeature : AttributeBase, IObservableObject, IDisposa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [AttributeBase](VM.Managed.AttributeBase.md) ← [AttributeObjectFeature](VM.Managed.AttributeObjectFeature.md) @@ -78,7 +79,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -109,7 +110,7 @@ public AttributeObjectFeature(bool bCanDelete) #### Parameters -`bCanDelete` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bCanDelete` bool if set to true [can delete]. @@ -133,5 +134,5 @@ public bool CanDelete { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeRigidOnly.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeRigidOnly.md index 1ba10ec16b..9492d8df58 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeRigidOnly.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeRigidOnly.md @@ -1,4 +1,5 @@ -# Class AttributeRigidOnly +# Class AttributeRigidOnly + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class AttributeRigidOnly : AttributeBase, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [AttributeBase](VM.Managed.AttributeBase.md) ← [AttributeRigidOnly](VM.Managed.AttributeRigidOnly.md) @@ -78,7 +79,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeSubEntity-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeSubEntity-1.md index fd91f7c81a..0b7919aeed 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeSubEntity-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeSubEntity-1.md @@ -1,4 +1,5 @@ -# Class AttributeSubEntity +# Class AttributeSubEntity + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -17,9 +18,9 @@ The type of the sub entity. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeSubEntity](VM.Managed.AttributeSubEntity\-1.md) @@ -84,7 +85,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeSymbolColor.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeSymbolColor.md index 1f9e1c37f0..f4694cc83e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeSymbolColor.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeSymbolColor.md @@ -1,4 +1,5 @@ -# Class AttributeSymbolColor +# Class AttributeSymbolColor + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class AttributeSymbolColor : AttributeBase, IObservableObject, IDisposabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [AttributeBase](VM.Managed.AttributeBase.md) ← [AttributeSymbolColor](VM.Managed.AttributeSymbolColor.md) @@ -78,7 +79,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -109,7 +110,7 @@ public AttributeSymbolColor(Color color) #### Parameters -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) +`color` Color The color. @@ -131,7 +132,7 @@ public Color Color { get; set; } #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ## Methods @@ -143,7 +144,7 @@ public virtual void GetObjectData(SerializationInfo info, StreamingContext conte #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeUneditable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeUneditable.md index c0ba0fa60a..f39aef54d1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeUneditable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeUneditable.md @@ -1,4 +1,5 @@ -# Class AttributeUneditable +# Class AttributeUneditable + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class AttributeUneditable : AttributeBase, IObservableObject, IDisposable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [AttributeBase](VM.Managed.AttributeBase.md) ← [AttributeUneditable](VM.Managed.AttributeUneditable.md) @@ -78,7 +79,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeValue-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeValue-1.md index ec635dc369..64e9465113 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeValue-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeValue-1.md @@ -1,4 +1,5 @@ -# Class AttributeValue +# Class AttributeValue + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -15,9 +16,9 @@ public class AttributeValue : AttributeBase, IObservableObject, IDisposa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [AttributeBase](VM.Managed.AttributeBase.md) ← [AttributeValue](VM.Managed.AttributeValue\-1.md) @@ -82,7 +83,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeVolume.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeVolume.md index 893a075b4a..edfc40d4cf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeVolume.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AttributeVolume.md @@ -1,4 +1,5 @@ -# Class AttributeVolume +# Class AttributeVolume + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class AttributeVolume : AttributeBase, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [AttributeBase](VM.Managed.AttributeBase.md) ← [AttributeVolume](VM.Managed.AttributeVolume.md) @@ -78,7 +79,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -109,7 +110,7 @@ public AttributeVolume(double value) #### Parameters -`value` [double](https://learn.microsoft.com/dotnet/api/system.double) +`value` double The value. @@ -133,5 +134,5 @@ public double Volume { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AxisLocation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AxisLocation.md index 39eb0e6282..966706d0df 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AxisLocation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.AxisLocation.md @@ -1,4 +1,5 @@ -# Enum AxisLocation +# Enum AxisLocation + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.ApplyOperation.ApplyCallback.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.ApplyOperation.ApplyCallback.md index 39f358167c..de26084393 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.ApplyOperation.ApplyCallback.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.ApplyOperation.ApplyCallback.md @@ -1,4 +1,5 @@ -# Delegate ApplyOperation.ApplyCallback +# Delegate ApplyOperation.ApplyCallback + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public delegate bool ApplyOperation.ApplyCallback() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.ApplyOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.ApplyOperation.md index 7b969975a7..69688f5107 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.ApplyOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.ApplyOperation.md @@ -1,4 +1,5 @@ -# Class ApplyOperation +# Class ApplyOperation + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class ApplyOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OperationBase](VM.Managed.Operation.OperationBase.md) ← [ApplyOperation](VM.Managed.CAD.ApplyOperation.md) @@ -85,7 +86,7 @@ public ApplyOperation(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string ## Fields @@ -113,7 +114,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Success @@ -123,7 +124,7 @@ public bool Success { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.AttributeAccuracyForMassCalculate.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.AttributeAccuracyForMassCalculate.md index 5bfaa417c6..a42e4a422c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.AttributeAccuracyForMassCalculate.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.AttributeAccuracyForMassCalculate.md @@ -1,4 +1,5 @@ -# Class AttributeAccuracyForMassCalculate +# Class AttributeAccuracyForMassCalculate + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class AttributeAccuracyForMassCalculate : AttributeBase, IObservableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [AttributeBase](VM.Managed.AttributeBase.md) ← [AttributeAccuracyForMassCalculate](VM.Managed.CAD.AttributeAccuracyForMassCalculate.md) @@ -78,7 +79,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -109,7 +110,7 @@ public AttributeAccuracyForMassCalculate(double dAccuracy) #### Parameters -`dAccuracy` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAccuracy` double The accuracy. @@ -133,5 +134,5 @@ public double Accuracy { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.AttributeBodyInformation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.AttributeBodyInformation.md index c4e4fca4ee..81bac97e60 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.AttributeBodyInformation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.AttributeBodyInformation.md @@ -1,4 +1,5 @@ -# Class AttributeBodyInformation +# Class AttributeBodyInformation + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class AttributeBodyInformation : AttributeBase, IObservableObject, IDispo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [AttributeBase](VM.Managed.AttributeBase.md) ← [AttributeBodyInformation](VM.Managed.CAD.AttributeBodyInformation.md) @@ -78,7 +79,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -109,7 +110,7 @@ public AttributeBodyInformation(int nIndex) #### Parameters -`nIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIndex` int The index. @@ -133,5 +134,5 @@ public int Index { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.AttributeBodyModifiedTime.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.AttributeBodyModifiedTime.md index c884f37262..c598fdee16 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.AttributeBodyModifiedTime.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.AttributeBodyModifiedTime.md @@ -1,4 +1,5 @@ -# Class AttributeBodyModifiedTime +# Class AttributeBodyModifiedTime + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class AttributeBodyModifiedTime : AttributeBase, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [AttributeBase](VM.Managed.AttributeBase.md) ← [AttributeBodyModifiedTime](VM.Managed.CAD.AttributeBodyModifiedTime.md) @@ -78,7 +79,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -119,7 +120,7 @@ public string GINFTimeModified { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GeomTimeModified @@ -131,5 +132,5 @@ public string GeomTimeModified { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.AttributeTopologyInformation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.AttributeTopologyInformation.md index 77d7216b9d..eded4fe6ea 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.AttributeTopologyInformation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.AttributeTopologyInformation.md @@ -1,4 +1,5 @@ -# Class AttributeTopologyInformation +# Class AttributeTopologyInformation + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class AttributeTopologyInformation : AttributeBase, IObservableObject, ID #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [AttributeBase](VM.Managed.AttributeBase.md) ← [AttributeTopologyInformation](VM.Managed.CAD.AttributeTopologyInformation.md) @@ -78,7 +79,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -109,11 +110,11 @@ public AttributeTopologyInformation(string strName, string strType) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The name. -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The type. @@ -137,7 +138,7 @@ public string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Type @@ -149,5 +150,5 @@ public string Type { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.BuildCADException.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.BuildCADException.md index 1e939b5be4..e4441959fa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.BuildCADException.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.BuildCADException.md @@ -1,4 +1,5 @@ -# Class Body.BuildCADException +# Class Body.BuildCADException + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public class Body.BuildCADException : DFException #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Exception](https://learn.microsoft.com/dotnet/api/system.exception) ← +object ← +Exception ← [DFException](VM.Managed.DFException.md) ← [Body.BuildCADException](VM.Managed.CAD.Body.BuildCADException.md) @@ -34,7 +35,7 @@ public BuildCADException(string strMessage) #### Parameters -`strMessage` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMessage` string The exception message. @@ -48,7 +49,7 @@ public BuildCADException(Type obType) #### Parameters -`obType` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`obType` Type The exception type. @@ -62,11 +63,11 @@ public BuildCADException(Type obType, Exception inner) #### Parameters -`obType` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`obType` Type The exception type. -`inner` [Exception](https://learn.microsoft.com/dotnet/api/system.exception) +`inner` Exception The inner exception. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.CalculateMassPropertyExeption.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.CalculateMassPropertyExeption.md index a0ff4b0dcd..0f738df185 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.CalculateMassPropertyExeption.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.CalculateMassPropertyExeption.md @@ -1,4 +1,5 @@ -# Class Body.CalculateMassPropertyExeption +# Class Body.CalculateMassPropertyExeption + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public class Body.CalculateMassPropertyExeption : Exception #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Exception](https://learn.microsoft.com/dotnet/api/system.exception) ← +object ← +Exception ← [Body.CalculateMassPropertyExeption](VM.Managed.CAD.Body.CalculateMassPropertyExeption.md) #### Extension Methods @@ -33,7 +34,7 @@ public CalculateMassPropertyExeption(string strMessage) #### Parameters -`strMessage` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMessage` string The error message. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.EdgeContainer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.EdgeContainer.md index ac0c04ddf4..f0c39d6310 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.EdgeContainer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.EdgeContainer.md @@ -1,4 +1,5 @@ -# Class Body.EdgeContainer +# Class Body.EdgeContainer + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public sealed class Body.EdgeContainer : LinkContainer, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [Body.EdgeContainer](VM.Managed.CAD.Body.EdgeContainer.md) @@ -84,7 +85,7 @@ public int Count { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### IsReadOnly @@ -96,7 +97,7 @@ public bool IsReadOnly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### this\[uint\] @@ -146,7 +147,7 @@ The object to locate in the edge is found in the ; otherwise, false. @@ -164,23 +165,23 @@ public void CopyTo(Edge[] arr, int arrayIndex) The one-dimensional that is the destination of the elements copied from . The must have zero-based indexing. -`arrayIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`arrayIndex` int The zero-based index in arr at which copying begins. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException arr is null. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException arrayIndex is less than 0. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException - arr is multidimensional. + arr is multidimensional. -or- arrayIndex is equal to or greater than the length of arr. -or- @@ -198,7 +199,7 @@ public Edge GetCreatedEdge(uint nIndex) #### Parameters -`nIndex` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nIndex` uint Index of the n. @@ -216,7 +217,7 @@ public IEnumerator GetEnumerator() #### Returns - [IEnumerator](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator\-1)<[Edge](VM.Managed.CAD.Edge.md)\> + IEnumerator<[Edge](VM.Managed.CAD.Edge.md)\> A that can be used to iterate through the collection. @@ -233,7 +234,7 @@ public XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -247,7 +248,7 @@ public override sealed List GetTargetListForUpdate() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### GetTemporaryEdge\(uint\) @@ -259,7 +260,7 @@ public Edge GetTemporaryEdge(uint nIndex) #### Parameters -`nIndex` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nIndex` uint The edge index. @@ -279,7 +280,7 @@ protected override sealed void LinkRequestUpdate(object objNotifier, LinkEventAr #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -295,7 +296,7 @@ public void OnPostDeserialized(StreamingContext context) #### Parameters -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext ### ReadXml\(XmlReader\) @@ -307,7 +308,7 @@ public void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -325,7 +326,7 @@ public bool Remove(Edge A_0) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -339,7 +340,7 @@ public void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.FaceContainer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.FaceContainer.md index 38bd08cc38..909d31dde0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.FaceContainer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.FaceContainer.md @@ -1,4 +1,5 @@ -# Class Body.FaceContainer +# Class Body.FaceContainer + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public sealed class Body.FaceContainer : LinkContainer, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [Body.FaceContainer](VM.Managed.CAD.Body.FaceContainer.md) @@ -84,7 +85,7 @@ public int Count { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### IsReadOnly @@ -96,7 +97,7 @@ public bool IsReadOnly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### this\[uint\] @@ -146,7 +147,7 @@ The object to locate in the face is found in the ; otherwise, false. @@ -164,23 +165,23 @@ public void CopyTo(Face[] arr, int arrayIndex) The one-dimensional that is the destination of the elements copied from . The must have zero-based indexing. -`arrayIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`arrayIndex` int The zero-based index in arr at which copying begins. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException arr is null. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException arrayIndex is less than 0. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException - arr is multidimensional. + arr is multidimensional. -or- arrayIndex is equal to or greater than the length of arr. -or- @@ -198,7 +199,7 @@ public Face GetCreatedFace(uint nIndex) #### Parameters -`nIndex` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nIndex` uint Index of the n. @@ -216,7 +217,7 @@ public IEnumerator GetEnumerator() #### Returns - [IEnumerator](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator\-1)<[Face](VM.Managed.CAD.Face.md)\> + IEnumerator<[Face](VM.Managed.CAD.Face.md)\> A that can be used to iterate through the collection. @@ -233,7 +234,7 @@ public XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -247,7 +248,7 @@ public override sealed List GetTargetListForUpdate() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### GetTemporaryFace\(uint\) @@ -259,7 +260,7 @@ public Face GetTemporaryFace(uint nIndex) #### Parameters -`nIndex` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nIndex` uint The face index. @@ -279,7 +280,7 @@ protected override sealed void LinkRequestUpdate(object objNotifier, LinkEventAr #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -295,7 +296,7 @@ public void OnPostDeserialized(StreamingContext context) #### Parameters -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext ### ReadXml\(XmlReader\) @@ -307,7 +308,7 @@ public void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -325,7 +326,7 @@ public bool Remove(Face A_0) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -339,7 +340,7 @@ public void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.IndexContainer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.IndexContainer.md index d82ca682d5..86453a3633 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.IndexContainer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.IndexContainer.md @@ -1,4 +1,5 @@ -# Class Body.IndexContainer +# Class Body.IndexContainer + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public sealed class Body.IndexContainer : LinkContainer, IObservableObject, IDis #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [Body.IndexContainer](VM.Managed.CAD.Body.IndexContainer.md) @@ -83,5 +84,5 @@ public int Index { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.Rebuild.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.Rebuild.md index f79919724e..d100e3b5b1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.Rebuild.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.Rebuild.md @@ -1,4 +1,5 @@ -# Struct Body.Rebuild +# Struct Body.Rebuild + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.ReplaceCADInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.ReplaceCADInfo.md index 5f3f62f85c..2d36f41247 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.ReplaceCADInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.ReplaceCADInfo.md @@ -1,4 +1,5 @@ -# Class Body.ReplaceCADInfo +# Class Body.ReplaceCADInfo + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class Body.ReplaceCADInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Body.ReplaceCADInfo](VM.Managed.CAD.Body.ReplaceCADInfo.md) #### Extension Methods @@ -32,15 +33,15 @@ public ReplaceCADInfo(string strNameAttribute, string strCADFilePath, Color colo #### Parameters -`strNameAttribute` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strNameAttribute` string The name attribute. -`strCADFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCADFilePath` string The CAD file path. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) +`color` Color The CAD color. @@ -56,7 +57,7 @@ public string CADFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Color @@ -68,7 +69,7 @@ public Color Color { get; set; } #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### NameAttribute @@ -80,5 +81,5 @@ public string NameAttribute { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.VertexContainer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.VertexContainer.md index cad92c112c..90161fddc3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.VertexContainer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.VertexContainer.md @@ -1,4 +1,5 @@ -# Class Body.VertexContainer +# Class Body.VertexContainer + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public sealed class Body.VertexContainer : LinkContainer, IObservableObject, IDi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [Body.VertexContainer](VM.Managed.CAD.Body.VertexContainer.md) @@ -84,7 +85,7 @@ public int Count { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### IsReadOnly @@ -96,7 +97,7 @@ public bool IsReadOnly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### this\[uint\] @@ -146,7 +147,7 @@ The object to locate in the vertex is found in the ; otherwise, false. @@ -164,23 +165,23 @@ public void CopyTo(Vertex[] arr, int arrayIndex) The one-dimensional that is the destination of the elements copied from . The must have zero-based indexing. -`arrayIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`arrayIndex` int The zero-based index in arr at which copying begins. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException arr is null. - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException arrayIndex is less than 0. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException - arr is multidimensional. + arr is multidimensional. -or- arrayIndex is equal to or greater than the length of arr. -or- @@ -198,7 +199,7 @@ public Vertex GetCreatedVertex(uint nIndex) #### Parameters -`nIndex` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nIndex` uint Index of the n. @@ -216,7 +217,7 @@ public IEnumerator GetEnumerator() #### Returns - [IEnumerator](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator\-1)<[Vertex](VM.Managed.CAD.Vertex.md)\> + IEnumerator<[Vertex](VM.Managed.CAD.Vertex.md)\> A that can be used to iterate through the collection. @@ -233,7 +234,7 @@ public XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -247,7 +248,7 @@ public override sealed List GetTargetListForUpdate() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### GetTemporaryVertex\(uint\) @@ -259,7 +260,7 @@ public Vertex GetTemporaryVertex(uint nIndex) #### Parameters -`nIndex` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nIndex` uint The vertex index. @@ -279,7 +280,7 @@ protected override sealed void LinkRequestUpdate(object objNotifier, LinkEventAr #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -295,7 +296,7 @@ public void OnPostDeserialized(StreamingContext context) #### Parameters -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext ### ReadXml\(XmlReader\) @@ -307,7 +308,7 @@ public void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -325,7 +326,7 @@ public bool Remove(Vertex A_0) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -339,7 +340,7 @@ public void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.md index 1ada60182b..ee80aff8c3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Body.md @@ -1,4 +1,5 @@ -# Class Body +# Class Body + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class Body : Object, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Body](VM.Managed.CAD.Body.md) @@ -29,7 +30,7 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), [IAttributeContainer](VM.Managed.IAttributeContainer.md), [IReferencable](VM.Managed.IReferencable.md), [ITransformable](VM.Managed.ITransformable.md), @@ -140,7 +141,7 @@ IPostDeserialized [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -195,7 +196,7 @@ public static double g_dAccuracyForCADImportMassCalculate #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### g\_dAccuracyForMassCalculate @@ -207,7 +208,7 @@ public static double g_dAccuracyForMassCalculate #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Properties @@ -221,7 +222,7 @@ public double AccuracyForMassCalc { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Builder @@ -269,7 +270,7 @@ public ExpressionValueVariable FacetAspectRatio { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### IndexCont @@ -291,7 +292,7 @@ public bool Invalid { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsEnabled @@ -303,7 +304,7 @@ bool IsEnabled { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsVisible @@ -315,7 +316,7 @@ bool IsVisible { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Layer @@ -351,7 +352,7 @@ public ExpressionValueVariable MaximumFacetSize { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MaximumGridLine @@ -363,7 +364,7 @@ public ExpressionValueVariable MaximumGridLine { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### NameAttribute @@ -375,7 +376,7 @@ public string NameAttribute { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SkipCalcMassProp @@ -387,7 +388,7 @@ public bool SkipCalcMassProp { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SkipRebuildGeometry @@ -399,7 +400,7 @@ public bool SkipRebuildGeometry { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SurfaceAngularTolerance @@ -411,7 +412,7 @@ public ExpressionValueVariable SurfaceAngularTolerance { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TransparentObject @@ -447,7 +448,7 @@ public bool UseApprox_eval { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseFacetAspectRatio @@ -459,7 +460,7 @@ public bool UseFacetAspectRatio { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseGRID\_TO\_EDGES @@ -471,7 +472,7 @@ public bool UseGRID_TO_EDGES { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseMaximumFacetSize @@ -483,7 +484,7 @@ public bool UseMaximumFacetSize { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseMaximumGridLine @@ -495,7 +496,7 @@ public bool UseMaximumGridLine { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseRepairPatch @@ -507,7 +508,7 @@ public bool UseRepairPatch { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseSurfaceAngularTolerance @@ -519,7 +520,7 @@ public bool UseSurfaceAngularTolerance { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Vertices @@ -566,7 +567,7 @@ public void AddNameAttribute(string strNameAttribute) #### Parameters -`strNameAttribute` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strNameAttribute` string The name attribute @@ -580,11 +581,11 @@ public void CalculateMassProperty(ref double dMass, ref double dVolume, ref TMat #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double The mass. -`dVolume` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVolume` double The volume. @@ -592,19 +593,19 @@ The volume. The transformation. -`arInertia` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arInertia` double\[\] The inertia. -`bRegularized` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bRegularized` bool whether calculate from regularized body. -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double The density. -`bGlobal` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bGlobal` bool whether inertia is global @@ -619,11 +620,11 @@ public void CalculateMassProperty(ref double dMass, ref double dVolume, ref TMat #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double The mass. -`dVolume` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVolume` double The volume. @@ -631,19 +632,19 @@ The volume. The transformation. -`arInertia` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arInertia` double\[\] The inertia. -`bRegularized` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bRegularized` bool whether calculate from regularized body. -`bUpdate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUpdate` bool update flag. -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double The density. @@ -657,11 +658,11 @@ public void CalculateMassProperty(ref double dMass, ref double dVolume, ref TMat #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double The mass. -`dVolume` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVolume` double The volume. @@ -669,15 +670,15 @@ The volume. The transformation. -`arInertia` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arInertia` double\[\] The inertia. -`bRegularized` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bRegularized` bool whether calculate from regularized body. -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double The density. @@ -692,11 +693,11 @@ public void CalculateMassProperty(ref double dMass, ref double dVolume, ref TMat #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double The mass. -`dVolume` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVolume` double The volume. @@ -704,15 +705,15 @@ The volume. The transformation. -`arInertia` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arInertia` double\[\] The inertia. -`bRegularized` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bRegularized` bool whether calculate from regularized body. -`bUpdate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUpdate` bool update flag. @@ -726,11 +727,11 @@ public void CalculateMassProperty(ref double dMass, ref double dVolume, ref TMat #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double The mass. -`dVolume` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVolume` double The volume. @@ -738,11 +739,11 @@ The volume. The transformation. -`arInertia` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arInertia` double\[\] The inertia. -`bRegularized` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bRegularized` bool whether calculate from regularized body. @@ -756,11 +757,11 @@ public void CalculateMassProperty(ref double dMass, ref double dVolume, ref TMat #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double The mass. -`dVolume` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVolume` double The volume. @@ -768,21 +769,21 @@ The volume. The transformation. -`arInertia` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arInertia` double\[\] The inertia. -`bRegularized` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bRegularized` bool whether calculate from regularized body. -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dAccuracy` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAccuracy` double The desire accuracy for mass calculate. -`bGlobal` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bGlobal` bool ### CalculateMassPropertyForAssembly\(ref double, ref double, ref TMatrix, ref double\[\], ref bool, double\) @@ -794,11 +795,11 @@ public void CalculateMassPropertyForAssembly(ref double dMass, ref double dVolum #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double The mass. -`dVolume` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVolume` double The volume. @@ -806,15 +807,15 @@ The volume. The transformation. -`arInertia` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arInertia` double\[\] The inertia. -`bRegularized` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bRegularized` bool whether calculate from regularized body. -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double The density. @@ -826,11 +827,11 @@ public virtual bool CheckValidationAboutBuild(string strXml) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ClearFacetDictionary\(\) @@ -852,9 +853,9 @@ public void ConvertUInt32Managed2Native(ref uint[] inputAryUInt, vector \>](std.vector \>\* ### ConvertUInt32Native2Managed\(vector \>\*, ref uint\[\]\) @@ -864,9 +865,9 @@ public void ConvertUInt32Native2Managed(vector \>](std.vector \>\* -`outputAryUInt` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`outputAryUInt` uint\[\] ### ConvertVectorManaged2Native\(ref VectorBase\[\], vector<\_VM\_VECTOR,std::allocator<\_VM\_VECTOR\> \>\*\) @@ -878,7 +879,7 @@ public void ConvertVectorManaged2Native(ref VectorBase[] inputAryVec, vector<_VM `inputAryVec` [VectorBase](VM.Managed.VectorBase.md)\[\] -`outputVecVec` [vector<\_VM\_VECTOR,std::allocator<\_VM\_VECTOR\> \>](std.vector<\_VM\_VECTOR,std.md)\* +`outputVecVec` vector<\_VM\_VECTOR,std::allocator<\_VM\_VECTOR\> \>\* ### ConvertVectorNative2Managed\(vector<\_VM\_VECTOR,std::allocator<\_VM\_VECTOR\> \>\*, ref VectorBase\[\]\) @@ -888,7 +889,7 @@ public void ConvertVectorNative2Managed(vector<_VM_VECTOR,std::allocator<_VM_VEC #### Parameters -`inputVecVec` [vector<\_VM\_VECTOR,std::allocator<\_VM\_VECTOR\> \>](std.vector<\_VM\_VECTOR,std.md)\* +`inputVecVec` vector<\_VM\_VECTOR,std::allocator<\_VM\_VECTOR\> \>\* `outputAryVec` [VectorBase](VM.Managed.VectorBase.md)\[\] @@ -900,13 +901,13 @@ public static void CreateNastranFile(string strNastranPath, VectorBase[] aryPos, #### Parameters -`strNastranPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strNastranPath` string `aryPos` [VectorBase](VM.Managed.VectorBase.md)\[\] -`aryConTria` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`aryConTria` uint\[\] -`aryConTetra` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`aryConTetra` uint\[\] ### DoWorkAfterUpdateContents\(\) @@ -926,11 +927,11 @@ public void DrawEdge(int nEdgeIndex, double dDistance, TMatrix matBase, Canvas c #### Parameters -`nEdgeIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nEdgeIndex` int the edge index -`dDistance` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDistance` double the point intaval @@ -938,7 +939,7 @@ the point intaval the base transform -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. @@ -952,9 +953,9 @@ public static void DrawFacetsOfFaces(IDrawFacet[] arFaces, FacetOption facetOpti `arFaces` [IDrawFacet](VM.Managed.IDrawFacet.md)\[\] -`facetOptions` FacetOption +`facetOptions` [FacetOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/FacetOption.cs) -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) ### ExistFace\(ValueType\) @@ -964,11 +965,11 @@ public bool ExistFace(ValueType nID) #### Parameters -`nID` [ValueType](https://learn.microsoft.com/dotnet/api/system.valuetype) +`nID` ValueType #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ExportPatch\(string, ConvertFactor, string\) @@ -978,11 +979,11 @@ public void ExportPatch(string strMesherPath, Unit.ConvertFactor factor, string #### Parameters -`strMesherPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMesherPath` string `factor` Unit.ConvertFactor -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string ### ExportSolid\(string, ConvertFactor, string\) @@ -992,11 +993,11 @@ public void ExportSolid(string strMesherPath, Unit.ConvertFactor factor, string #### Parameters -`strMesherPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMesherPath` string `factor` Unit.ConvertFactor -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string ### Find\(string\) @@ -1008,7 +1009,7 @@ public virtual IObjectBase Find(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The DAFUL object full name. @@ -1028,7 +1029,7 @@ public virtual IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The DAFUL object name. @@ -1054,7 +1055,7 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -1066,7 +1067,7 @@ public void GenerateMeshInfo(string strMesherPath, AttributeFacetRefinementBase #### Parameters -`strMesherPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMesherPath` string `attrGeomOutputProp` [AttributeFacetRefinementBase](VM.Managed.AttributeFacetRefinementBase.md) @@ -1078,13 +1079,13 @@ public void GenerateMeshInfo(string strMesherPath, AttributeFacetRefinementBase `aryPosTria` [VectorBase](VM.Managed.VectorBase.md)\[\] -`aryConTria` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`aryConTria` uint\[\] `aryPosTetra` [VectorBase](VM.Managed.VectorBase.md)\[\] -`aryConTetra` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`aryConTetra` uint\[\] -`bUseDSDL` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseDSDL` bool ### GenerateMeshInfo\(string, AttributeFacetRefinementBase, ConvertFactor, MeshFreeMeshType, ref MeshFreeMeshType, ref VectorBase\[\], ref uint\[\], ref VectorBase\[\], ref uint\[\]\) @@ -1094,7 +1095,7 @@ public void GenerateMeshInfo(string strMesherPath, AttributeFacetRefinementBase #### Parameters -`strMesherPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMesherPath` string `attrGeomOutputProp` [AttributeFacetRefinementBase](VM.Managed.AttributeFacetRefinementBase.md) @@ -1106,11 +1107,11 @@ public void GenerateMeshInfo(string strMesherPath, AttributeFacetRefinementBase `aryPosTria` [VectorBase](VM.Managed.VectorBase.md)\[\] -`aryConTria` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`aryConTria` uint\[\] `aryPosTetra` [VectorBase](VM.Managed.VectorBase.md)\[\] -`aryConTetra` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`aryConTetra` uint\[\] ### GetAnalysisLevelInfo\(double, ref List, ref List\) @@ -1120,15 +1121,15 @@ public bool GetAnalysisLevelInfo(double dVolume, ref List lstNodeDistanc #### Parameters -`dVolume` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVolume` double -`lstNodeDistance` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> +`lstNodeDistance` List -`lstNodeCount` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[uint](https://learn.microsoft.com/dotnet/api/system.uint32)\> +`lstNodeCount` List #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetAnalysisLevelInfo\(ref List, ref List\) @@ -1138,13 +1139,13 @@ public bool GetAnalysisLevelInfo(ref List lstNodeDistance, ref List +`lstNodeDistance` List -`lstNodeCount` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[uint](https://learn.microsoft.com/dotnet/api/system.uint32)\> +`lstNodeCount` List #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetAttrFacetRefineBase\(\) @@ -1168,19 +1169,19 @@ public bool GetBodyGeomInfo(vector<_VM_VECTOR,std::allocator<_VM_VECTOR> >* vect #### Parameters -`vectPosTria` [vector<\_VM\_VECTOR,std::allocator<\_VM\_VECTOR\> \>](std.vector<\_VM\_VECTOR,std.md)\* +`vectPosTria` vector<\_VM\_VECTOR,std::allocator<\_VM\_VECTOR\> \>\* -`vecConTria` [vector \>](std.vector \>\* `attrGeomOutputProp` [AttributeFacetRefinementBase](VM.Managed.AttributeFacetRefinementBase.md) -`dLengthFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLengthFactor` double -`bUseDSDL` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseDSDL` bool #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetBodyGeomInfo\(ref VectorBase\[\], ref uint\[\], AttributeFacetRefinementBase, double, bool\) @@ -1192,17 +1193,17 @@ public bool GetBodyGeomInfo(ref VectorBase[] aryPosTria, ref uint[] aryConTria, `aryPosTria` [VectorBase](VM.Managed.VectorBase.md)\[\] -`aryConTria` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`aryConTria` uint\[\] `attrGeomOutputProp` [AttributeFacetRefinementBase](VM.Managed.AttributeFacetRefinementBase.md) -`dLengthFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLengthFactor` double -`bUseDSDL` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseDSDL` bool #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetBodyGeomInfo\(ref VectorBase\[\], ref uint\[\], AttributeFacetRefinementBase, double\) @@ -1214,15 +1215,15 @@ public bool GetBodyGeomInfo(ref VectorBase[] aryPosTria, ref uint[] aryConTria, `aryPosTria` [VectorBase](VM.Managed.VectorBase.md)\[\] -`aryConTria` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`aryConTria` uint\[\] `attrGeomOutputProp` [AttributeFacetRefinementBase](VM.Managed.AttributeFacetRefinementBase.md) -`dLengthFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLengthFactor` double #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetBodyGeomInfoForDFG\(AttributeFacetRefinementBase, ref VectorBase\[\], ref uint\[\]\) @@ -1236,11 +1237,11 @@ public bool GetBodyGeomInfoForDFG(AttributeFacetRefinementBase attrGeomOutputPro `aryPosTria` [VectorBase](VM.Managed.VectorBase.md)\[\] -`aryConTria` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`aryConTria` uint\[\] #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetBoundingBox\(TMatrix, ref VectorBase, ref VectorBase, BoxingMode\) @@ -1260,7 +1261,7 @@ public bool GetBoundingBox(TMatrix matT, ref VectorBase vecMinPt, ref VectorBase #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetBoundingBox\(TMatrix, ref VectorBase, ref VectorBase\) @@ -1278,7 +1279,7 @@ public bool GetBoundingBox(TMatrix matT, ref VectorBase vecMinPt, ref VectorBase #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetCADGeomNameAttribute\(string, ref List\) @@ -1288,9 +1289,9 @@ public void GetCADGeomNameAttribute(string strPrefix, ref List lstName) #### Parameters -`strPrefix` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefix` string -`lstName` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstName` List ### GetColor\(\) @@ -1303,7 +1304,7 @@ public Color GetColor() #### Returns - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### GetDefaultMaxFacetSize\(\) @@ -1315,7 +1316,7 @@ public double GetDefaultMaxFacetSize() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double Default maximum facet size @@ -1330,11 +1331,11 @@ public bool GetDefaultMaxPenetration(ref double dMaxPenetration) #### Parameters -`dMaxPenetration` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMaxPenetration` double #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetEdgeCount\(\) @@ -1347,7 +1348,7 @@ public int GetEdgeCount() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int The number of edge. @@ -1359,11 +1360,11 @@ public int GetEdgeIndex(ValueType nID) #### Parameters -`nID` [ValueType](https://learn.microsoft.com/dotnet/api/system.valuetype) +`nID` ValueType #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetEdgePoints\(int, double, TMatrix, ref List\) @@ -1373,17 +1374,17 @@ public bool GetEdgePoints(int nEdgeIndex, double dDistance, TMatrix matBase, ref #### Parameters -`nEdgeIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nEdgeIndex` int -`dDistance` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDistance` double `matBase` [TMatrix](VM.Managed.TMatrix.md) -`lstPoints` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[VectorBase](VM.Managed.VectorBase.md)\> +`lstPoints` List<[VectorBase](VM.Managed.VectorBase.md)\> #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetEdges\(ICollection\) @@ -1393,11 +1394,11 @@ public List GetEdges(ICollection Colors) #### Parameters -`Colors` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`Colors` ICollection #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Edge](VM.Managed.CAD.Edge.md)\> + List<[Edge](VM.Managed.CAD.Edge.md)\> ### GetEdges\(\) @@ -1409,7 +1410,7 @@ public List GetEdges() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Edge](VM.Managed.CAD.Edge.md)\> + List<[Edge](VM.Managed.CAD.Edge.md)\> list of all edges @@ -1423,7 +1424,7 @@ public List GetFaceColors() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> + List list of all face colors. @@ -1435,11 +1436,11 @@ public int GetFaceIndex(ValueType nID) #### Parameters -`nID` [ValueType](https://learn.microsoft.com/dotnet/api/system.valuetype) +`nID` ValueType #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetFaces\(ICollection\) @@ -1449,11 +1450,11 @@ public List GetFaces(ICollection Colors) #### Parameters -`Colors` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`Colors` ICollection #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Face](VM.Managed.CAD.Face.md)\> + List<[Face](VM.Managed.CAD.Face.md)\> ### GetFaces\(\) @@ -1465,7 +1466,7 @@ public List GetFaces() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Face](VM.Managed.CAD.Face.md)\> + List<[Face](VM.Managed.CAD.Face.md)\> list of all faces @@ -1477,11 +1478,11 @@ public void GetFacesInfo_NormalAndCenterPt(List lstFace, ref Dictionary +`lstFace` List<[Face](VM.Managed.CAD.Face.md)\> -`dic_vecNormal` [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[Face](VM.Managed.CAD.Face.md), [VectorBase](VM.Managed.VectorBase.md)\> +`dic_vecNormal` Dictionary<[Face](VM.Managed.CAD.Face.md), [VectorBase](VM.Managed.VectorBase.md)\> -`dic_vecCenterPt` [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[Face](VM.Managed.CAD.Face.md), [VectorBase](VM.Managed.VectorBase.md)\> +`dic_vecCenterPt` Dictionary<[Face](VM.Managed.CAD.Face.md), [VectorBase](VM.Managed.VectorBase.md)\> ### GetFacetInfo\(FacetOption, ref VectorBase\[\], ref int\[\]\) @@ -1494,11 +1495,11 @@ public void GetFacetInfo(FacetOption facetOptions, ref VectorBase[] arPt, ref in #### Parameters -`facetOptions` FacetOption +`facetOptions` [FacetOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/FacetOption.cs) `arPt` [VectorBase](VM.Managed.VectorBase.md)\[\] -`arConnectivity` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`arConnectivity` int\[\] ### GetFacetPositions\(Face\[\], FacetOption\) @@ -1510,7 +1511,7 @@ public static VectorBase[] GetFacetPositions(Face[] arFaces, FacetOption facetOp `arFaces` [Face](VM.Managed.CAD.Face.md)\[\] -`facetOptions` FacetOption +`facetOptions` [FacetOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/FacetOption.cs) #### Returns @@ -1528,11 +1529,11 @@ public static void GetGeomInfoOfFaces(Body body, Face[] arFaces, FacetOption fac `arFaces` [Face](VM.Managed.CAD.Face.md)\[\] -`facetOptions` FacetOption +`facetOptions` [FacetOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/FacetOption.cs) -`bSkipMidPoints` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bSkipMidPoints` bool -`pGeomInfo` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pGeomInfo` UIntPtr ### GetLumpCount\(\) @@ -1545,7 +1546,7 @@ public int GetLumpCount() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int The number of lump. @@ -1559,21 +1560,21 @@ virtual bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, XmlElement xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The navigator information xml. -`xmlRootEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlRootEle` XmlElement The navigator information xml root element. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool true if has a child object; otherwise, false. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetNearest4PointOnFaceWithRange\(VectorBase, double, VectorBase, VectorBase, bool, VectorBase\[\]\) @@ -1585,19 +1586,19 @@ public bool GetNearest4PointOnFaceWithRange(VectorBase vecUserPos, double dRange `vecUserPos` [VectorBase](VM.Managed.VectorBase.md) -`dRange` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRange` double `vecNormalDirection` [VectorBase](VM.Managed.VectorBase.md) `vecShearDirection` [VectorBase](VM.Managed.VectorBase.md) -`bBase` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bBase` bool `vecNearest4Pos` [VectorBase](VM.Managed.VectorBase.md)\[\] #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetNearestPointAndNormalOnFace\(VectorBase, VectorBase, VectorBase\) @@ -1615,7 +1616,7 @@ public bool GetNearestPointAndNormalOnFace(VectorBase vCenterPoint, VectorBase v #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetNearestPointOnFace\(VectorBase, ref VectorBase\) @@ -1641,13 +1642,13 @@ public bool GetNearestPointOnFaceWithDirection(VectorBase vecUserPos, VectorBase `vecNormalDir` [VectorBase](VM.Managed.VectorBase.md) -`dRange` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRange` double `vecNearestPos` [VectorBase](VM.Managed.VectorBase.md) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetNewEntityName\(string, bool, int, int\) @@ -1659,25 +1660,25 @@ public virtual string GetNewEntityName(string strPrefix, bool bUseUnderLine, int #### Parameters -`strPrefix` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefix` string The DAFUL object prefix name. -`bUseUnderLine` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseUnderLine` bool Whether use underline. -`nNumFigure` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNumFigure` int The Number of Figure. -`nStartIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nStartIndex` int The start index. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The DAFUL object name. @@ -1691,21 +1692,21 @@ public virtual string GetNewEntityName(string strPrefix, bool bUseUnderLine, int #### Parameters -`strPrefix` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefix` string The DAFUL object prefix name. -`bUseUnderLine` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseUnderLine` bool Whether use underline. -`nNumFigure` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNumFigure` int The Number of Figure. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The DAFUL object name. @@ -1719,13 +1720,13 @@ public virtual string GetNewEntityName(string strPrefix) #### Parameters -`strPrefix` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefix` string The DAFUL object prefix name. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The DAFUL object name. @@ -1749,7 +1750,7 @@ The direction. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -1775,13 +1776,13 @@ public bool GetStartPointOfClosedLoop(List lstEdges, ref VectorBase vecPos #### Parameters -`lstEdges` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Edge](VM.Managed.CAD.Edge.md)\> +`lstEdges` List<[Edge](VM.Managed.CAD.Edge.md)\> `vecPosition` [VectorBase](VM.Managed.VectorBase.md) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetTargetListForUpdate\(\) @@ -1793,7 +1794,7 @@ public override List GetTargetListForUpdate() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### GetUnnamedObjectName\(object\) @@ -1805,13 +1806,13 @@ public string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The unnamed object. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The unnamed object name. @@ -1823,11 +1824,11 @@ public int GetVertexIndex(ValueType nID) #### Parameters -`nID` [ValueType](https://learn.microsoft.com/dotnet/api/system.valuetype) +`nID` ValueType #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetVoidCount\(\) @@ -1839,7 +1840,7 @@ public int GetVoidCount() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetVoidPoints\(double\[\], ref VectorBase\[\]\) @@ -1851,7 +1852,7 @@ public int GetVoidPoints(double[] ardScale, ref VectorBase[] aryPoints) #### Parameters -`ardScale` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ardScale` double\[\] `aryPoints` [VectorBase](VM.Managed.VectorBase.md)\[\] @@ -1859,7 +1860,7 @@ The list of inner point of void shells. #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int -1 : error, 0 : finding successs, positive number : the number of not found case. @@ -1883,7 +1884,7 @@ the point position #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool if operation success then return true. @@ -1895,13 +1896,13 @@ public bool GetWirePoints(double dDistance, ref List lstPoints) #### Parameters -`dDistance` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDistance` double -`lstPoints` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[VectorBase](VM.Managed.VectorBase.md)\> +`lstPoints` List<[VectorBase](VM.Managed.VectorBase.md)\> #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetWirePointsAndTangents\(double, ref List, ref List\) @@ -1911,15 +1912,15 @@ public bool GetWirePointsAndTangents(double dDistance, ref List lstP #### Parameters -`dDistance` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDistance` double -`lstPoints` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[VectorBase](VM.Managed.VectorBase.md)\> +`lstPoints` List<[VectorBase](VM.Managed.VectorBase.md)\> -`lstTangents` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[VectorBase](VM.Managed.VectorBase.md)\> +`lstTangents` List<[VectorBase](VM.Managed.VectorBase.md)\> #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### HighlightBuilder\(\) @@ -1937,7 +1938,7 @@ public void InitialSetBuildInfo(string strBuilderXml) #### Parameters -`strBuilderXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBuilderXml` string ### Initialize\(ConvertFactor\) @@ -1963,7 +1964,7 @@ public bool IsNonManifold() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool if a body is a nonmanifold then return true. @@ -1977,7 +1978,7 @@ public bool IsWireBody() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool if a body is a wire then return true. @@ -1991,7 +1992,7 @@ protected override void LinkAddedToDocument(object objNotifier, AddToDocEventArg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -2009,7 +2010,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -2027,7 +2028,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -2039,7 +2040,7 @@ public virtual void OnPostDeserialized(StreamingContext context) #### Parameters -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext ### PostRemoveFromDocument\(Document\) @@ -2065,7 +2066,7 @@ public bool PrepareFacesWithColor() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool if a body has the face color then return true. @@ -2085,7 +2086,7 @@ protected virtual void RebuildGeometry(object objBuilder, LinkEventArgs args) #### Parameters -`objBuilder` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objBuilder` object The builder. @@ -2109,7 +2110,7 @@ public void ReplaceCAD(List lstInfo) #### Parameters -`lstInfo` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Body](VM.Managed.CAD.Body.md).[ReplaceCADInfo](VM.Managed.CAD.Body.ReplaceCADInfo.md)\> +`lstInfo` List<[Body](VM.Managed.CAD.Body.md).[ReplaceCADInfo](VM.Managed.CAD.Body.ReplaceCADInfo.md)\> ### ResetBuildInfo\(string\) @@ -2122,7 +2123,7 @@ public void ResetBuildInfo(string strInfo) #### Parameters -`strInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInfo` string ### RunTetraMesher\(string, vector<\_VM\_VECTOR,std::allocator<\_VM\_VECTOR\> \>\*, vector \>\*, vector<\_VM\_VECTOR,std::allocator<\_VM\_VECTOR\> \>\*, vector \>\*\) @@ -2132,19 +2133,19 @@ public bool RunTetraMesher(string strMesherPath, vector<_VM_VECTOR,std::allocato #### Parameters -`strMesherPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMesherPath` string -`vecPosTria` [vector<\_VM\_VECTOR,std::allocator<\_VM\_VECTOR\> \>](std.vector<\_VM\_VECTOR,std.md)\* +`vecPosTria` vector<\_VM\_VECTOR,std::allocator<\_VM\_VECTOR\> \>\* -`vecConTria` [vector \>](std.vector \>\* -`vecPosTetra` [vector<\_VM\_VECTOR,std::allocator<\_VM\_VECTOR\> \>](std.vector<\_VM\_VECTOR,std.md)\* +`vecPosTetra` vector<\_VM\_VECTOR,std::allocator<\_VM\_VECTOR\> \>\* -`vecConTetra` [vector \>](std.vector \>\* #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RunTetraMesher\(string, ref VectorBase\[\], ref uint\[\], ref VectorBase\[\], ref uint\[\]\) @@ -2154,19 +2155,19 @@ public bool RunTetraMesher(string strMesherPath, ref VectorBase[] aryPosTria, re #### Parameters -`strMesherPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMesherPath` string `aryPosTria` [VectorBase](VM.Managed.VectorBase.md)\[\] -`aryConTria` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`aryConTria` uint\[\] `aryPosTetra` [VectorBase](VM.Managed.VectorBase.md)\[\] -`aryConTetra` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`aryConTetra` uint\[\] #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SetColor\(Color\) @@ -2179,7 +2180,7 @@ public void SetColor(Color color) #### Parameters -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) +`color` Color ### SetModifiedBody\(\) @@ -2198,7 +2199,7 @@ public void SetTransparency(double dTransp) #### Parameters -`dTransp` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTransp` double ### SortEdges\(List\) @@ -2208,11 +2209,11 @@ public List SortEdges(List lstEdges) #### Parameters -`lstEdges` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Edge](VM.Managed.CAD.Edge.md)\> +`lstEdges` List<[Edge](VM.Managed.CAD.Edge.md)\> #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Edge](VM.Managed.CAD.Edge.md)\> + List<[Edge](VM.Managed.CAD.Edge.md)\> ### UpdateBody\(bool\) @@ -2225,7 +2226,7 @@ public void UpdateBody(bool bBuild) #### Parameters -`bBuild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bBuild` bool ### UpdateBody\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BodyCreateType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BodyCreateType.md index ee43cdad7f..b46a182af8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BodyCreateType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BodyCreateType.md @@ -1,4 +1,5 @@ -# Enum BodyCreateType +# Enum BodyCreateType + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BodyType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BodyType.md index 655233aab4..312f47a9b7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BodyType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BodyType.md @@ -1,4 +1,5 @@ -# Enum BodyType +# Enum BodyType + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BoxingMode.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BoxingMode.md index 51fc31e9b3..3ab60a9eb6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BoxingMode.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BoxingMode.md @@ -1,4 +1,5 @@ -# Enum BoxingMode +# Enum BoxingMode + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuildBodyOp.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuildBodyOp.md index 580b1bf94d..39b2a0f281 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuildBodyOp.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuildBodyOp.md @@ -1,4 +1,5 @@ -# Class BuildBodyOp +# Class BuildBodyOp + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class BuildBodyOp : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OperationBase](VM.Managed.Operation.OperationBase.md) ← [BuildBodyOp](VM.Managed.CAD.BuildBodyOp.md) @@ -105,7 +106,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -117,7 +118,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Builder.BuilderParamSerializationException.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Builder.BuilderParamSerializationException.md index f62c1d9f30..99c14089bb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Builder.BuilderParamSerializationException.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Builder.BuilderParamSerializationException.md @@ -1,4 +1,5 @@ -# Class Builder.BuilderParamSerializationException +# Class Builder.BuilderParamSerializationException + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -9,8 +10,8 @@ protected class Builder.BuilderParamSerializationException : Exception #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Exception](https://learn.microsoft.com/dotnet/api/system.exception) ← +object ← +Exception ← [Builder.BuilderParamSerializationException](VM.Managed.CAD.Builder.BuilderParamSerializationException.md) #### Extension Methods @@ -31,9 +32,9 @@ protected BuilderParamSerializationException(SerializationInfo info, StreamingCo #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext ### BuilderParamSerializationException\(string, Exception\) @@ -45,9 +46,9 @@ public BuilderParamSerializationException(string message, Exception innerExcepti #### Parameters -`message` [string](https://learn.microsoft.com/dotnet/api/system.string) +`message` string -`innerException` [Exception](https://learn.microsoft.com/dotnet/api/system.exception) +`innerException` Exception ### BuilderParamSerializationException\(string\) @@ -59,7 +60,7 @@ public BuilderParamSerializationException(string message) #### Parameters -`message` [string](https://learn.microsoft.com/dotnet/api/system.string) +`message` string ### BuilderParamSerializationException\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Builder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Builder.md index 897a31800c..ae032cfb2e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Builder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Builder.md @@ -1,4 +1,5 @@ -# Class Builder +# Class Builder + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the information of builder. ```csharp -public abstract class Builder : Object, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public abstract class Builder : Object, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) @@ -38,8 +39,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -135,7 +137,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -176,7 +178,7 @@ public double InitialKernelLengthUnit { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### IsExternable @@ -188,7 +190,7 @@ public override bool IsExternable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Transparency @@ -200,7 +202,7 @@ public virtual double Transparency { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TypeOfBuilder @@ -212,7 +214,7 @@ public virtual string TypeOfBuilder { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Uneditable @@ -224,7 +226,7 @@ public virtual bool Uneditable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -320,7 +322,7 @@ public virtual object Clone() #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### Contains\(Type\) @@ -330,11 +332,11 @@ public virtual bool Contains(Type typeBuilder) #### Parameters -`typeBuilder` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`typeBuilder` Type #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CopyFilePathWhenImportBuilder\(Builder\) @@ -354,7 +356,7 @@ protected virtual BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamBase\) @@ -364,7 +366,7 @@ protected virtual void FillParameter(BuilderParamBase A_0) #### Parameters -`A_0` BuilderParamBase +`A_0` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FindLocal\(string\) @@ -374,7 +376,7 @@ public virtual ObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string #### Returns @@ -402,7 +404,7 @@ protected double GetFactorForLength() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double The factor. @@ -416,7 +418,7 @@ public BuilderParamBase GetFilledParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) A filled BuilderParameter. @@ -428,9 +430,9 @@ public virtual void GetNameAttribute(string strPrefix, ref List lstName) #### Parameters -`strPrefix` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefix` string -`lstName` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstName` List ### GetParentBody\(\) @@ -452,7 +454,7 @@ protected double GetUnitScale() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetUnnamedObjectName\(object\) @@ -462,11 +464,11 @@ public virtual string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetXmlString\(\) @@ -476,7 +478,27 @@ public string GetXmlString() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string + +### HasReplaceableEntity\(IObjectBase\) + +Gets a value indicating whether this instance has replacable entity. + +```csharp +public virtual bool HasReplaceableEntity(IObjectBase oldObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +#### Returns + + bool + +if this instance has replacable entity, the result is true. ### Initialize\(ConvertFactor\) @@ -502,7 +524,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -520,7 +542,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -540,15 +562,39 @@ public virtual bool ReplaceData(string strKey, object data) #### Parameters -`strKey` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strKey` string The target data information. -`data` [object](https://learn.microsoft.com/dotnet/api/system.object) +`data` object The data for replacing. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool + +### ReplaceEntity\(IObjectBase, IObjectBase\) + +Replace Entity + +```csharp +public virtual bool ReplaceEntity(IObjectBase oldObject, IObjectBase newObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +`newObject` IObjectBase + +The new object + +#### Returns + + bool + +if success, the result is true. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderBlock.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderBlock.md index 80d41bd505..07b227e5cb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderBlock.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderBlock.md @@ -1,4 +1,5 @@ -# Class BuilderBlock +# Class BuilderBlock + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the builder of block. ```csharp -public abstract class BuilderBlock : BuilderHasTransformationMatrix, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public abstract class BuilderBlock : BuilderHasTransformationMatrix, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -41,8 +42,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -77,6 +79,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -180,7 +184,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -233,7 +237,7 @@ public abstract double _Depth { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### \_Height @@ -245,7 +249,7 @@ public abstract double _Height { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### \_Transform @@ -269,7 +273,7 @@ public abstract double _Width { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -289,7 +293,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamBase\) @@ -299,5 +303,5 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderBlockSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderBlockSimple.md index 64c16c8d1c..2ae92e87ea 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderBlockSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderBlockSimple.md @@ -1,4 +1,5 @@ -# Class BuilderBlockSimple +# Class BuilderBlockSimple + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the builder of simple block. ```csharp -public class BuilderBlockSimple : BuilderBlock, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public class BuilderBlockSimple : BuilderBlock, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -37,8 +38,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -81,6 +83,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -184,7 +188,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -241,15 +245,15 @@ public BuilderBlockSimple(double dWidth, double dHeight, double dDepth, Transfor #### Parameters -`dWidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dWidth` double The width of block. -`dHeight` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHeight` double The height of block. -`dDepth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDepth` double The depth of block. @@ -289,15 +293,15 @@ public BuilderBlockSimple(double dWidth, double dHeight, double dDepth) #### Parameters -`dWidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dWidth` double The width of block. -`dHeight` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHeight` double The height of block. -`dDepth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDepth` double The depth of block. @@ -345,7 +349,7 @@ public override sealed bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Transform @@ -381,7 +385,7 @@ public override double _Depth { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### \_Height @@ -393,7 +397,7 @@ public override double _Height { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### \_Transform @@ -417,7 +421,7 @@ public override double _Width { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -443,6 +447,26 @@ public override void CheckCircularReference(ObjectBase objCM) The CM. +### HasReplaceableEntity\(IObjectBase\) + +Gets a value indicating whether this instance has replacable entity. + +```csharp +public override bool HasReplaceableEntity(IObjectBase oldObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +#### Returns + + bool + +if this instance has replacable entity, the result is true. + ### Initialize\(ConvertFactor\) Initializes member through unit convert factor. @@ -457,6 +481,30 @@ public override void Initialize(Unit.ConvertFactor factor) The unit convert factor. +### ReplaceEntity\(IObjectBase, IObjectBase\) + +Replace Entity + +```csharp +public override bool ReplaceEntity(IObjectBase oldObject, IObjectBase newObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +`newObject` IObjectBase + +The new object + +#### Returns + + bool + +if success, the result is true. + ### SetTransform\(TMatrix\) Sets the transform info. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderBlockTwoPoint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderBlockTwoPoint.md index 26cb3c365c..b86b9ded03 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderBlockTwoPoint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderBlockTwoPoint.md @@ -1,4 +1,5 @@ -# Class BuilderBlockTwoPoint +# Class BuilderBlockTwoPoint + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the builder of block for two points. ```csharp -public class BuilderBlockTwoPoint : BuilderBlock, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public class BuilderBlockTwoPoint : BuilderBlock, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -37,8 +38,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -81,6 +83,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -184,7 +188,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -269,7 +273,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SecondPoint @@ -293,7 +297,7 @@ public override double _Depth { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### \_Height @@ -305,7 +309,7 @@ public override double _Height { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### \_Transform @@ -329,7 +333,7 @@ public override double _Width { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderBoolean.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderBoolean.md index 9366431ded..a98dac2206 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderBoolean.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderBoolean.md @@ -1,4 +1,5 @@ -# Class BuilderBoolean +# Class BuilderBoolean + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the boolean builder. ```csharp -public abstract class BuilderBoolean : BuilderColorGeom, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public abstract class BuilderBoolean : BuilderColorGeom, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -40,8 +41,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -74,6 +76,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -177,7 +181,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderColor.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderColor.md index d093d944aa..954d704f0b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderColor.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderColor.md @@ -1,4 +1,5 @@ -# Class BuilderColor +# Class BuilderColor + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class BuilderColor #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderColor](VM.Managed.CAD.BuilderColor.md) #### Extension Methods @@ -32,19 +33,19 @@ public BuilderColor(byte bA, byte bR, byte bG, byte bB) #### Parameters -`bA` [byte](https://learn.microsoft.com/dotnet/api/system.byte) +`bA` byte The alpha. -`bR` [byte](https://learn.microsoft.com/dotnet/api/system.byte) +`bR` byte The red. -`bG` [byte](https://learn.microsoft.com/dotnet/api/system.byte) +`bG` byte The green. -`bB` [byte](https://learn.microsoft.com/dotnet/api/system.byte) +`bB` byte The blue. @@ -58,7 +59,7 @@ public BuilderColor(Color color) #### Parameters -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) +`color` Color The color @@ -82,7 +83,7 @@ public int ColorA { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### ColorB @@ -94,7 +95,7 @@ public int ColorB { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### ColorG @@ -106,7 +107,7 @@ public int ColorG { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### ColorR @@ -118,7 +119,7 @@ public int ColorR { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### EdgeColorInfo @@ -159,7 +160,7 @@ public virtual XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -173,7 +174,7 @@ virtual void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -187,7 +188,7 @@ public virtual void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -201,7 +202,7 @@ public virtual void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderColorGeom.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderColorGeom.md index f9cde348bc..99176cfa88 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderColorGeom.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderColorGeom.md @@ -1,4 +1,5 @@ -# Class BuilderColorGeom +# Class BuilderColorGeom + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the geometry's color of builder. ```csharp -public abstract class BuilderColorGeom : BuilderTransform, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public abstract class BuilderColorGeom : BuilderTransform, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -45,8 +46,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -73,6 +75,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -176,7 +180,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -243,7 +247,7 @@ public Color DrawingColor { get; set; } #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ## Methods @@ -263,7 +267,7 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### OnDeserialization\(object\) @@ -275,7 +279,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderCone.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderCone.md index 8092d468ea..bea41e4c33 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderCone.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderCone.md @@ -1,4 +1,5 @@ -# Class BuilderCone +# Class BuilderCone + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the builder of cone. ```csharp -public abstract class BuilderCone : BuilderCylinder, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public abstract class BuilderCone : BuilderCylinder, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -41,8 +42,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -81,6 +83,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -184,7 +188,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -225,7 +229,7 @@ public abstract double _TopRadius { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -245,7 +249,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamBase\) @@ -255,5 +259,5 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderConeSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderConeSimple.md index af2764513b..1cdd3b3584 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderConeSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderConeSimple.md @@ -1,4 +1,5 @@ -# Class BuilderConeSimple +# Class BuilderConeSimple + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the builder of simple cone. ```csharp -public class BuilderConeSimple : BuilderCone, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public class BuilderConeSimple : BuilderCone, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -37,8 +38,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -81,6 +83,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -184,7 +188,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -241,11 +245,11 @@ public BuilderConeSimple(double dRadiusMajor, double dTopRadius, PointBase botto #### Parameters -`dRadiusMajor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadiusMajor` double The major radius of cone. -`dTopRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTopRadius` double The top radius of cone. @@ -289,11 +293,11 @@ public BuilderConeSimple(double dRadiusMajor, double dTopRadius, PointBase vecTo #### Parameters -`dRadiusMajor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadiusMajor` double The major radius of cone. -`dTopRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTopRadius` double The top radius of cone. @@ -333,15 +337,15 @@ public BuilderConeSimple(double dRadiusMajor, double dTopRadius, double dHeight) #### Parameters -`dRadiusMajor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadiusMajor` double The major radius of cone. -`dTopRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTopRadius` double The top radius of cone. -`dHeight` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHeight` double The height of cone. @@ -377,7 +381,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RadiusMajor @@ -437,7 +441,7 @@ public override double _RadiusMajor { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### \_TopPosition @@ -461,7 +465,7 @@ public override double _TopRadius { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -487,6 +491,26 @@ public override void CheckCircularReference(ObjectBase objCM) The CM. +### HasReplaceableEntity\(IObjectBase\) + +Gets a value indicating whether this instance has replacable entity. + +```csharp +public override bool HasReplaceableEntity(IObjectBase oldObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +#### Returns + + bool + +if this instance has replacable entity, the result is true. + ### Initialize\(ConvertFactor\) Initializes member through unit convert factor. @@ -501,6 +525,30 @@ public override void Initialize(Unit.ConvertFactor factor) The unit convert factor. +### ReplaceEntity\(IObjectBase, IObjectBase\) + +Replace Entity + +```csharp +public override bool ReplaceEntity(IObjectBase oldObject, IObjectBase newObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +`newObject` IObjectBase + +The new object + +#### Returns + + bool + +if success, the result is true. + ### SetTransform\(TMatrix\) Sets the transform info. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderCopy.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderCopy.md index 1332899f71..f3e58c7f4e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderCopy.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderCopy.md @@ -1,4 +1,5 @@ -# Class BuilderCopy +# Class BuilderCopy + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the copied builder. ```csharp -public class BuilderCopy : Builder, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IReservable +public class BuilderCopy : Builder, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IReservable ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -33,8 +34,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), [IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity, IReservable #### Inherited Members @@ -60,6 +62,8 @@ IReservable [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -163,7 +167,7 @@ IReservable [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -230,7 +234,7 @@ public override bool IsExternable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -242,7 +246,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamBase\) @@ -252,5 +256,5 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderCylinder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderCylinder.md index 79cfc5ad4b..3838161c53 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderCylinder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderCylinder.md @@ -1,4 +1,5 @@ -# Class BuilderCylinder +# Class BuilderCylinder + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the builder of cylinder. ```csharp -public abstract class BuilderCylinder : BuilderColorGeom, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public abstract class BuilderCylinder : BuilderColorGeom, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -41,8 +42,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -75,6 +77,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -178,7 +182,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -231,7 +235,7 @@ public abstract double _RadiusMajor { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### \_TopPosition @@ -263,7 +267,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamBase\) @@ -273,5 +277,5 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderCylinderSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderCylinderSimple.md index cdbf2075f5..31b47aeff6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderCylinderSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderCylinderSimple.md @@ -1,4 +1,5 @@ -# Class BuilderCylinderSimple +# Class BuilderCylinderSimple + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the builder of simple cylider. ```csharp -public class BuilderCylinderSimple : BuilderCylinder, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public class BuilderCylinderSimple : BuilderCylinder, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -36,8 +37,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -76,6 +78,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -179,7 +183,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -232,7 +236,7 @@ public BuilderCylinderSimple(double dRadiusMajor, PointBase vecBottom, PointBase #### Parameters -`dRadiusMajor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadiusMajor` double The major radius of cylinder. @@ -272,7 +276,7 @@ public BuilderCylinderSimple(double dRadiusMajor, PointBase vecTop) #### Parameters -`dRadiusMajor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadiusMajor` double The major radius of cylinder. @@ -308,11 +312,11 @@ public BuilderCylinderSimple(double dRadiusMajor, double dHeight) #### Parameters -`dRadiusMajor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadiusMajor` double The major radius of cylinder. -`dHeight` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHeight` double The height of cylinder. @@ -348,7 +352,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RadiusMajor @@ -396,7 +400,7 @@ public override double _RadiusMajor { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### \_TopPosition @@ -434,6 +438,26 @@ public override void CheckCircularReference(ObjectBase objCM) The CM. +### HasReplaceableEntity\(IObjectBase\) + +Gets a value indicating whether this instance has replacable entity. + +```csharp +public override bool HasReplaceableEntity(IObjectBase oldObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +#### Returns + + bool + +if this instance has replacable entity, the result is true. + ### Initialize\(ConvertFactor\) Initializes member through unit convert factor. @@ -448,6 +472,30 @@ public override void Initialize(Unit.ConvertFactor factor) The unit convert factor. +### ReplaceEntity\(IObjectBase, IObjectBase\) + +Replace Entity + +```csharp +public override bool ReplaceEntity(IObjectBase oldObject, IObjectBase newObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +`newObject` IObjectBase + +The new object + +#### Returns + + bool + +if success, the result is true. + ### SetTransform\(TMatrix\) Sets the transform info. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderEllipseCone.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderEllipseCone.md index 9f1b30c7d7..c68bde84af 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderEllipseCone.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderEllipseCone.md @@ -1,4 +1,5 @@ -# Class BuilderEllipseCone +# Class BuilderEllipseCone + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the builder of cone for ellipse. ```csharp -public abstract class BuilderEllipseCone : BuilderCone, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public abstract class BuilderEllipseCone : BuilderCone, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -41,8 +42,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -85,6 +87,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -188,7 +192,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -241,7 +245,7 @@ public abstract double _RadiusMinor { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -261,7 +265,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamBase\) @@ -271,5 +275,5 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderEllipseConeSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderEllipseConeSimple.md index 316635f8ab..a282a37133 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderEllipseConeSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderEllipseConeSimple.md @@ -1,4 +1,5 @@ -# Class BuilderEllipseConeSimple +# Class BuilderEllipseConeSimple + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the builder of simple cone for ellipse. ```csharp -public class BuilderEllipseConeSimple : BuilderEllipseCone, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public class BuilderEllipseConeSimple : BuilderEllipseCone, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -38,8 +39,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -87,6 +89,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -190,7 +194,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -255,15 +259,15 @@ public BuilderEllipseConeSimple(double dRadiusMajor, double dRadiusMinor, double #### Parameters -`dRadiusMajor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadiusMajor` double The major radius of cone. -`dRadiusMinor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadiusMinor` double The minor radius of cone. -`dTopRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTopRadius` double `bottom` [PointBase](VM.Managed.PointBase.md) @@ -317,15 +321,15 @@ public BuilderEllipseConeSimple(double dRadiusMajor, double dRadiusMinor, double #### Parameters -`dRadiusMajor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadiusMajor` double The major radius of cone. -`dRadiusMinor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadiusMinor` double The minor radius of cone. -`dTopRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTopRadius` double `bottom` [PointBase](VM.Managed.PointBase.md) @@ -371,15 +375,15 @@ public BuilderEllipseConeSimple(double dRadiusMajor, double dRadiusMinor, double #### Parameters -`dRadiusMajor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadiusMajor` double The major radius of cone. -`dRadiusMinor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadiusMinor` double The minor radius of cone. -`dTopRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTopRadius` double The top radius of cone. @@ -423,19 +427,19 @@ public BuilderEllipseConeSimple(double dRadiusMajor, double dRadiusMinor, double #### Parameters -`dRadiusMajor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadiusMajor` double The major radius of cone. -`dRadiusMinor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadiusMinor` double The minor radius of cone. -`dTopRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTopRadius` double The top radius of cone. -`dHeight` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHeight` double The height of cone. @@ -471,7 +475,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MajorAxis @@ -567,7 +571,7 @@ public override double _RadiusMajor { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### \_RadiusMinor @@ -579,7 +583,7 @@ public override double _RadiusMinor { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### \_TopPosition @@ -603,7 +607,7 @@ public override double _TopRadius { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -629,6 +633,26 @@ public override void CheckCircularReference(ObjectBase objCM) The CM. +### HasReplaceableEntity\(IObjectBase\) + +Gets a value indicating whether this instance has replacable entity. + +```csharp +public override bool HasReplaceableEntity(IObjectBase oldObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +#### Returns + + bool + +if this instance has replacable entity, the result is true. + ### Initialize\(ConvertFactor\) Initializes member through unit convert factor. @@ -643,6 +667,30 @@ public override void Initialize(Unit.ConvertFactor factor) The unit convert factor. +### ReplaceEntity\(IObjectBase, IObjectBase\) + +Replace Entity + +```csharp +public override bool ReplaceEntity(IObjectBase oldObject, IObjectBase newObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +`newObject` IObjectBase + +The new object + +#### Returns + + bool + +if success, the result is true. + ### SetTransform\(TMatrix\) Sets the transform info. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderEllipseCylinder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderEllipseCylinder.md index 1745423135..cc50a613bc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderEllipseCylinder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderEllipseCylinder.md @@ -1,4 +1,5 @@ -# Class BuilderEllipseCylinder +# Class BuilderEllipseCylinder + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the builder of cylider for ellipse. ```csharp -public abstract class BuilderEllipseCylinder : BuilderCylinder, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public abstract class BuilderEllipseCylinder : BuilderCylinder, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -40,8 +41,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -80,6 +82,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -183,7 +187,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -234,7 +238,7 @@ public abstract double _RadiusMinor { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -254,7 +258,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamBase\) @@ -264,5 +268,5 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderEllipseCylinderSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderEllipseCylinderSimple.md index 7bfbdcd108..d84bf4f9af 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderEllipseCylinderSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderEllipseCylinderSimple.md @@ -1,4 +1,5 @@ -# Class BuilderEllipseCylinderSimple +# Class BuilderEllipseCylinderSimple + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the builder of simple cylider for ellipse. ```csharp -public class BuilderEllipseCylinderSimple : BuilderEllipseCylinder, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public class BuilderEllipseCylinderSimple : BuilderEllipseCylinder, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -37,8 +38,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -82,6 +84,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -185,7 +189,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -246,11 +250,11 @@ public BuilderEllipseCylinderSimple(double dRadiusMajor, double dRadiusMinor, Po #### Parameters -`dRadiusMajor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadiusMajor` double The major radius of cylinder. -`dRadiusMinor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadiusMinor` double The minor radius of cylinder. @@ -302,11 +306,11 @@ public BuilderEllipseCylinderSimple(double dRadiusMajor, double dRadiusMinor, Po #### Parameters -`dRadiusMajor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadiusMajor` double The major radius of cylinder. -`dRadiusMinor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadiusMinor` double The minor radius of cylinder. @@ -350,11 +354,11 @@ public BuilderEllipseCylinderSimple(double dRadiusMajor, double dRadiusMinor, Po #### Parameters -`dRadiusMajor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadiusMajor` double The major radius of cylinder. -`dRadiusMinor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadiusMinor` double The minor radius of cylinder. @@ -394,15 +398,15 @@ public BuilderEllipseCylinderSimple(double dRadiusMajor, double dRadiusMinor, do #### Parameters -`dRadiusMajor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadiusMajor` double The major radius of cylinder. -`dRadiusMinor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadiusMinor` double The minor radius of cylinder. -`dHeight` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHeight` double The height of cylinder. @@ -438,7 +442,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MajorAxis @@ -520,7 +524,7 @@ public override double _RadiusMajor { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### \_RadiusMinor @@ -532,7 +536,7 @@ public override double _RadiusMinor { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### \_TopPosition @@ -570,6 +574,26 @@ public override void CheckCircularReference(ObjectBase objCM) The CM. +### HasReplaceableEntity\(IObjectBase\) + +Gets a value indicating whether this instance has replacable entity. + +```csharp +public override bool HasReplaceableEntity(IObjectBase oldObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +#### Returns + + bool + +if this instance has replacable entity, the result is true. + ### Initialize\(ConvertFactor\) Initializes member through unit convert factor. @@ -584,6 +608,30 @@ public override void Initialize(Unit.ConvertFactor factor) The unit convert factor. +### ReplaceEntity\(IObjectBase, IObjectBase\) + +Replace Entity + +```csharp +public override bool ReplaceEntity(IObjectBase oldObject, IObjectBase newObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +`newObject` IObjectBase + +The new object + +#### Returns + + bool + +if success, the result is true. + ### SetTransform\(TMatrix\) Sets the transform info. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderHasTransform.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderHasTransform.md index 457aa3d097..aed2f396db 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderHasTransform.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderHasTransform.md @@ -1,4 +1,5 @@ -# Class BuilderHasTransform +# Class BuilderHasTransform + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the builder that has transformation. ```csharp -public abstract class BuilderHasTransform : BuilderColorGeom, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public abstract class BuilderHasTransform : BuilderColorGeom, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -40,8 +41,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -74,6 +76,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -177,7 +181,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -216,7 +220,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Transform diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderHasTransformImpl.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderHasTransformImpl.md index 3bb4eaeba5..59a806422d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderHasTransformImpl.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderHasTransformImpl.md @@ -1,4 +1,5 @@ -# Class BuilderHasTransformImpl +# Class BuilderHasTransformImpl + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the builder that implements transformation. ```csharp -public abstract class BuilderHasTransformImpl : BuilderHasTransform, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public abstract class BuilderHasTransformImpl : BuilderHasTransform, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -36,8 +37,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -73,6 +75,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -176,7 +180,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderHasTransformationMatrix.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderHasTransformationMatrix.md index 1540868a19..c15d52c152 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderHasTransformationMatrix.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderHasTransformationMatrix.md @@ -1,17 +1,18 @@ -# Class BuilderHasTransformationMatrix +# Class BuilderHasTransformationMatrix + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll ```csharp -public abstract class BuilderHasTransformationMatrix : BuilderColorGeom, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public abstract class BuilderHasTransformationMatrix : BuilderColorGeom, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -38,8 +39,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -72,6 +74,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -175,7 +179,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -226,5 +230,5 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderImport.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderImport.md index afb4b73fbb..6ed893913f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderImport.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderImport.md @@ -1,4 +1,5 @@ -# Class BuilderImport +# Class BuilderImport + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the builder of import. ```csharp -public class BuilderImport : BuilderHasTransform, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public class BuilderImport : BuilderHasTransform, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -36,8 +37,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -73,6 +75,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -176,7 +180,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -207,11 +211,11 @@ public BuilderImport(string strFilePath, Color color) #### Parameters -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string File name to import. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) +`color` Color The color to import. @@ -225,7 +229,7 @@ public BuilderImport(string strFilePath) #### Parameters -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string File name to import. @@ -249,7 +253,7 @@ public string ImportBodyFile { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ImportCore @@ -273,7 +277,7 @@ public override sealed bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### NameAttribute @@ -285,7 +289,7 @@ public string NameAttribute { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Transform @@ -319,7 +323,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamBase\) @@ -329,7 +333,7 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FindLocal\(string\) @@ -339,7 +343,7 @@ public override ObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string #### Returns @@ -365,9 +369,9 @@ public override void GetNameAttribute(string strPrefix, ref List lstName #### Parameters -`strPrefix` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefix` string -`lstName` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstName` List ### GetUnnamedObjectName\(object\) @@ -377,11 +381,11 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Initialize\(ConvertFactor\) @@ -407,7 +411,7 @@ public override void LinkAddedToDocument(object objNotifier, AddToDocEventArgs a #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -425,7 +429,7 @@ public override void LinkRemovedFromDocument(object objNotifier, RemoveFromDocEv #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -443,7 +447,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -463,17 +467,17 @@ public override bool ReplaceData(string strKey, object data) #### Parameters -`strKey` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strKey` string The target data information. -`data` [object](https://learn.microsoft.com/dotnet/api/system.object) +`data` object The data for replacing. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SetImportBodyFile\(string\) @@ -485,7 +489,7 @@ public void SetImportBodyFile(string strFilePath) #### Parameters -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string The file path of import body. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderImportCore.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderImportCore.md index 15ca2cab27..4fbffbaa17 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderImportCore.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderImportCore.md @@ -1,4 +1,5 @@ -# Class BuilderImportCore +# Class BuilderImportCore + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class BuilderImportCore : Object, IObservableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [BuilderImportCore](VM.Managed.CAD.BuilderImportCore.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), [IAttributeContainer](VM.Managed.IAttributeContainer.md) #### Inherited Members @@ -129,7 +130,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -160,7 +161,7 @@ public BuilderImportCore(string strFilePath) #### Parameters -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string File path to import. @@ -184,7 +185,7 @@ public string ImportBodyFileCore { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -206,5 +207,5 @@ public void SetFilePath(string strFilePath) #### Parameters -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderImprint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderImprint.md index 140d8fbddb..7fb619c229 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderImprint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderImprint.md @@ -1,4 +1,5 @@ -# Class BuilderImprint +# Class BuilderImprint + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the imprint builder. ```csharp -public class BuilderImprint : BuilderPair, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, ILinkContainer, IOwned, IHasID +public class BuilderImprint : BuilderPair, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IContainer, ILinkContainer, IOwned, IHasID ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -34,8 +35,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), [IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity, IContainer, ILinkContainer, IOwned, @@ -58,6 +60,8 @@ IHasID [BuilderPair.GetNewEntityName\(string, bool, int, int\)](VM.Managed.CAD.BuilderPair.md\#VM\_Managed\_CAD\_BuilderPair\_GetNewEntityName\_System\_String\_System\_Boolean\_System\_Int32\_System\_Int32\_), [BuilderPair.GetNewEntityName\(string, bool, int\)](VM.Managed.CAD.BuilderPair.md\#VM\_Managed\_CAD\_BuilderPair\_GetNewEntityName\_System\_String\_System\_Boolean\_System\_Int32\_), [BuilderPair.GetNewEntityName\(string\)](VM.Managed.CAD.BuilderPair.md\#VM\_Managed\_CAD\_BuilderPair\_GetNewEntityName\_System\_String\_), +[BuilderPair.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.BuilderPair.md\#VM\_Managed\_CAD\_BuilderPair\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[BuilderPair.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.BuilderPair.md\#VM\_Managed\_CAD\_BuilderPair\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [BuilderPair.RebuildGeometry\(object, LinkEventArgs\)](VM.Managed.CAD.BuilderPair.md\#VM\_Managed\_CAD\_BuilderPair\_RebuildGeometry\_System\_Object\_VM\_Managed\_LinkEventArgs\_), [BuilderPair.GetBuildExtraXml\(StringBuilder\)](VM.Managed.CAD.BuilderPair.md\#VM\_Managed\_CAD\_BuilderPair\_GetBuildExtraXml\_System\_Text\_StringBuilder\_), [BuilderPair.OnDeserialization\(object\)](VM.Managed.CAD.BuilderPair.md\#VM\_Managed\_CAD\_BuilderPair\_OnDeserialization\_System\_Object\_), @@ -94,6 +98,8 @@ IHasID [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -197,7 +203,7 @@ IHasID [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -236,11 +242,11 @@ The target build. The tool build. -`arnTargetFaceIndex` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`arnTargetFaceIndex` uint\[\] The target faces. -`arnToolFaceIndex` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`arnToolFaceIndex` uint\[\] The tool faces. @@ -262,11 +268,11 @@ The target build. The tool build. -`nTargetFaceIndex` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nTargetFaceIndex` uint The target face. -`nToolFaceIndex` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nToolFaceIndex` uint The tool face. @@ -308,7 +314,7 @@ public uint[] TargetFaceIndexes { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] + uint\[\] ### ToolFaceIndexes @@ -320,7 +326,7 @@ public uint[] ToolFaceIndexes { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] + uint\[\] ## Methods @@ -332,7 +338,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamBase\) @@ -342,5 +348,5 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderIntersect.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderIntersect.md index 4fd84a80e1..d4ec882db7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderIntersect.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderIntersect.md @@ -1,4 +1,5 @@ -# Class BuilderIntersect +# Class BuilderIntersect + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the intersect builder. ```csharp -public class BuilderIntersect : BuilderPair, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, ILinkContainer, IOwned, IHasID +public class BuilderIntersect : BuilderPair, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IContainer, ILinkContainer, IOwned, IHasID ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -34,8 +35,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), [IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity, IContainer, ILinkContainer, IOwned, @@ -58,6 +60,8 @@ IHasID [BuilderPair.GetNewEntityName\(string, bool, int, int\)](VM.Managed.CAD.BuilderPair.md\#VM\_Managed\_CAD\_BuilderPair\_GetNewEntityName\_System\_String\_System\_Boolean\_System\_Int32\_System\_Int32\_), [BuilderPair.GetNewEntityName\(string, bool, int\)](VM.Managed.CAD.BuilderPair.md\#VM\_Managed\_CAD\_BuilderPair\_GetNewEntityName\_System\_String\_System\_Boolean\_System\_Int32\_), [BuilderPair.GetNewEntityName\(string\)](VM.Managed.CAD.BuilderPair.md\#VM\_Managed\_CAD\_BuilderPair\_GetNewEntityName\_System\_String\_), +[BuilderPair.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.BuilderPair.md\#VM\_Managed\_CAD\_BuilderPair\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[BuilderPair.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.BuilderPair.md\#VM\_Managed\_CAD\_BuilderPair\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [BuilderPair.RebuildGeometry\(object, LinkEventArgs\)](VM.Managed.CAD.BuilderPair.md\#VM\_Managed\_CAD\_BuilderPair\_RebuildGeometry\_System\_Object\_VM\_Managed\_LinkEventArgs\_), [BuilderPair.GetBuildExtraXml\(StringBuilder\)](VM.Managed.CAD.BuilderPair.md\#VM\_Managed\_CAD\_BuilderPair\_GetBuildExtraXml\_System\_Text\_StringBuilder\_), [BuilderPair.OnDeserialization\(object\)](VM.Managed.CAD.BuilderPair.md\#VM\_Managed\_CAD\_BuilderPair\_OnDeserialization\_System\_Object\_), @@ -94,6 +98,8 @@ IHasID [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -197,7 +203,7 @@ IHasID [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -254,5 +260,5 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderMulti.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderMulti.md index 1c4d94222c..6ed87f54f9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderMulti.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderMulti.md @@ -1,4 +1,5 @@ -# Class BuilderMulti +# Class BuilderMulti + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the multi builder. ```csharp -public abstract class BuilderMulti : BuilderBoolean, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public abstract class BuilderMulti : BuilderBoolean, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -42,8 +43,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -77,6 +79,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -180,7 +184,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -213,8 +217,8 @@ public BuilderMulti() ### Builders -

    Gets or sets the builders.

    -

    +

    Gets or sets the builders.

    +

    Type : VM.Managed.CAD.Builder[] LinkRequestUpdate 시 처리 : N/A Read/Write : Read/Write @@ -253,7 +257,7 @@ protected string MultiType { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -265,7 +269,7 @@ public void AddBuilder(ICollection lstBuilder) #### Parameters -`lstBuilder` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[Builder](VM.Managed.CAD.Builder.md)\> +`lstBuilder` ICollection<[Builder](VM.Managed.CAD.Builder.md)\> ### AddBuilder\(Builder\) @@ -305,11 +309,11 @@ public override bool Contains(Type typeBuilder) #### Parameters -`typeBuilder` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`typeBuilder` Type #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CopyFilePathWhenImportBuilder\(Builder\) @@ -329,7 +333,7 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FindLocal\(string\) @@ -339,7 +343,7 @@ public override ObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string #### Returns @@ -365,11 +369,31 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string + +### HasReplaceableEntity\(IObjectBase\) + +Gets a value indicating whether this instance has replacable entity. + +```csharp +public override bool HasReplaceableEntity(IObjectBase oldObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +#### Returns + + bool + +if this instance has replacable entity, the result is true. ### OnDeserializationImpl\(ref List\>\) @@ -379,7 +403,7 @@ protected void OnDeserializationImpl(ref List> #### Parameters -`lstBuilder` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Child](VM.Managed.Child\-2.md)<[Builder](VM.Managed.CAD.Builder.md), [ObjectBase](VM.Managed.ObjectBase.md).[Update](VM.Managed.ObjectBase.Update.md)\>\> +`lstBuilder` List<[Child](VM.Managed.Child\-2.md)<[Builder](VM.Managed.CAD.Builder.md), [ObjectBase](VM.Managed.ObjectBase.md).[Update](VM.Managed.ObjectBase.Update.md)\>\> ### ReadXmlImpl\(XmlReader\) @@ -389,7 +413,31 @@ protected void ReadXmlImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader + +### ReplaceEntity\(IObjectBase, IObjectBase\) + +Replace Entity + +```csharp +public override bool ReplaceEntity(IObjectBase oldObject, IObjectBase newObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +`newObject` IObjectBase + +The new object + +#### Returns + + bool + +if success, the result is true. ### SetTransform\(TMatrix\) @@ -413,5 +461,5 @@ protected void WriteXmlImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderMultiIntersect.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderMultiIntersect.md index 92ccbdc918..bac9d56102 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderMultiIntersect.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderMultiIntersect.md @@ -1,4 +1,5 @@ -# Class BuilderMultiIntersect +# Class BuilderMultiIntersect + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the unite of multi builder. ```csharp -public abstract class BuilderMultiIntersect : BuilderMulti, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public abstract class BuilderMultiIntersect : BuilderMulti, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -41,8 +42,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -56,6 +58,8 @@ IHistoryObjectSerializable, [BuilderMulti.FindLocal\(string\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_FindLocal\_System\_String\_), [BuilderMulti.Contains\(Type\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_Contains\_System\_Type\_), [BuilderMulti.CopyFilePathWhenImportBuilder\(Builder\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_CopyFilePathWhenImportBuilder\_VM\_Managed\_CAD\_Builder\_), +[BuilderMulti.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[BuilderMulti.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [BuilderMulti.FillParameter\(BuilderParamBase\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_FillParameter\_VM\_CAD\_Builders\_BuilderParamBase\_), [BuilderMulti.OnDeserializationImpl\(ref List\>\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_OnDeserializationImpl\_System\_Collections\_Generic\_List\_VM\_Managed\_Child\_VM\_Managed\_CAD\_Builder\_VM\_Managed\_ObjectBase\_Update\_\_\_\_), [BuilderMulti.ReadXmlImpl\(XmlReader\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_ReadXmlImpl\_System\_Xml\_XmlReader\_), @@ -92,6 +96,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -195,7 +201,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -234,7 +240,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamBase\) @@ -244,5 +250,5 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderMultiIntersectSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderMultiIntersectSimple.md index 0a963a3fea..bcc4c17103 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderMultiIntersectSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderMultiIntersectSimple.md @@ -1,4 +1,5 @@ -# Class BuilderMultiIntersectSimple +# Class BuilderMultiIntersectSimple + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the simple unite of multi builder. ```csharp -public class BuilderMultiIntersectSimple : BuilderMultiIntersect, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public class BuilderMultiIntersectSimple : BuilderMultiIntersect, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -38,8 +39,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -55,6 +57,8 @@ IHistoryObjectSerializable, [BuilderMulti.FindLocal\(string\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_FindLocal\_System\_String\_), [BuilderMulti.Contains\(Type\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_Contains\_System\_Type\_), [BuilderMulti.CopyFilePathWhenImportBuilder\(Builder\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_CopyFilePathWhenImportBuilder\_VM\_Managed\_CAD\_Builder\_), +[BuilderMulti.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[BuilderMulti.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [BuilderMulti.FillParameter\(BuilderParamBase\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_FillParameter\_VM\_CAD\_Builders\_BuilderParamBase\_), [BuilderMulti.OnDeserializationImpl\(ref List\>\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_OnDeserializationImpl\_System\_Collections\_Generic\_List\_VM\_Managed\_Child\_VM\_Managed\_CAD\_Builder\_VM\_Managed\_ObjectBase\_Update\_\_\_\_), [BuilderMulti.ReadXmlImpl\(XmlReader\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_ReadXmlImpl\_System\_Xml\_XmlReader\_), @@ -91,6 +95,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -194,7 +200,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -225,7 +231,7 @@ public BuilderMultiIntersectSimple(Builder builderTarget, ICollection b `builderTarget` [Builder](VM.Managed.CAD.Builder.md) -`builderTools` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[Builder](VM.Managed.CAD.Builder.md)\> +`builderTools` ICollection<[Builder](VM.Managed.CAD.Builder.md)\> ### BuilderMultiIntersectSimple\(Builder, Builder\) @@ -268,7 +274,7 @@ public virtual XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -282,7 +288,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -296,7 +302,7 @@ public virtual void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -310,7 +316,7 @@ public virtual void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderMultiSubtract.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderMultiSubtract.md index ee0c06020b..5707b41a4b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderMultiSubtract.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderMultiSubtract.md @@ -1,4 +1,5 @@ -# Class BuilderMultiSubtract +# Class BuilderMultiSubtract + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the subtract of multi builder. ```csharp -public abstract class BuilderMultiSubtract : BuilderMulti, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public abstract class BuilderMultiSubtract : BuilderMulti, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -41,8 +42,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -56,6 +58,8 @@ IHistoryObjectSerializable, [BuilderMulti.FindLocal\(string\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_FindLocal\_System\_String\_), [BuilderMulti.Contains\(Type\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_Contains\_System\_Type\_), [BuilderMulti.CopyFilePathWhenImportBuilder\(Builder\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_CopyFilePathWhenImportBuilder\_VM\_Managed\_CAD\_Builder\_), +[BuilderMulti.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[BuilderMulti.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [BuilderMulti.FillParameter\(BuilderParamBase\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_FillParameter\_VM\_CAD\_Builders\_BuilderParamBase\_), [BuilderMulti.OnDeserializationImpl\(ref List\>\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_OnDeserializationImpl\_System\_Collections\_Generic\_List\_VM\_Managed\_Child\_VM\_Managed\_CAD\_Builder\_VM\_Managed\_ObjectBase\_Update\_\_\_\_), [BuilderMulti.ReadXmlImpl\(XmlReader\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_ReadXmlImpl\_System\_Xml\_XmlReader\_), @@ -92,6 +96,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -195,7 +201,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -234,7 +240,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamBase\) @@ -244,5 +250,5 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderMultiSubtractSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderMultiSubtractSimple.md index 74a87416ae..96147fa629 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderMultiSubtractSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderMultiSubtractSimple.md @@ -1,4 +1,5 @@ -# Class BuilderMultiSubtractSimple +# Class BuilderMultiSubtractSimple + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the simple subtract of multi builder. ```csharp -public class BuilderMultiSubtractSimple : BuilderMultiSubtract, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public class BuilderMultiSubtractSimple : BuilderMultiSubtract, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -38,8 +39,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -55,6 +57,8 @@ IHistoryObjectSerializable, [BuilderMulti.FindLocal\(string\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_FindLocal\_System\_String\_), [BuilderMulti.Contains\(Type\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_Contains\_System\_Type\_), [BuilderMulti.CopyFilePathWhenImportBuilder\(Builder\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_CopyFilePathWhenImportBuilder\_VM\_Managed\_CAD\_Builder\_), +[BuilderMulti.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[BuilderMulti.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [BuilderMulti.FillParameter\(BuilderParamBase\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_FillParameter\_VM\_CAD\_Builders\_BuilderParamBase\_), [BuilderMulti.OnDeserializationImpl\(ref List\>\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_OnDeserializationImpl\_System\_Collections\_Generic\_List\_VM\_Managed\_Child\_VM\_Managed\_CAD\_Builder\_VM\_Managed\_ObjectBase\_Update\_\_\_\_), [BuilderMulti.ReadXmlImpl\(XmlReader\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_ReadXmlImpl\_System\_Xml\_XmlReader\_), @@ -91,6 +95,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -194,7 +200,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -225,7 +231,7 @@ public BuilderMultiSubtractSimple(Builder builderTarget, ICollection bu `builderTarget` [Builder](VM.Managed.CAD.Builder.md) -`builderTools` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[Builder](VM.Managed.CAD.Builder.md)\> +`builderTools` ICollection<[Builder](VM.Managed.CAD.Builder.md)\> ### BuilderMultiSubtractSimple\(Builder, Builder\) @@ -268,7 +274,7 @@ public virtual XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -282,7 +288,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -296,7 +302,7 @@ public virtual void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -310,7 +316,7 @@ public virtual void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderMultiUnite.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderMultiUnite.md index d3d63731e8..27159f47a7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderMultiUnite.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderMultiUnite.md @@ -1,4 +1,5 @@ -# Class BuilderMultiUnite +# Class BuilderMultiUnite + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the unite of multi builder. ```csharp -public abstract class BuilderMultiUnite : BuilderMulti, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public abstract class BuilderMultiUnite : BuilderMulti, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -41,8 +42,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -56,6 +58,8 @@ IHistoryObjectSerializable, [BuilderMulti.FindLocal\(string\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_FindLocal\_System\_String\_), [BuilderMulti.Contains\(Type\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_Contains\_System\_Type\_), [BuilderMulti.CopyFilePathWhenImportBuilder\(Builder\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_CopyFilePathWhenImportBuilder\_VM\_Managed\_CAD\_Builder\_), +[BuilderMulti.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[BuilderMulti.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [BuilderMulti.FillParameter\(BuilderParamBase\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_FillParameter\_VM\_CAD\_Builders\_BuilderParamBase\_), [BuilderMulti.OnDeserializationImpl\(ref List\>\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_OnDeserializationImpl\_System\_Collections\_Generic\_List\_VM\_Managed\_Child\_VM\_Managed\_CAD\_Builder\_VM\_Managed\_ObjectBase\_Update\_\_\_\_), [BuilderMulti.ReadXmlImpl\(XmlReader\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_ReadXmlImpl\_System\_Xml\_XmlReader\_), @@ -92,6 +96,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -195,7 +201,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -234,7 +240,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamBase\) @@ -244,5 +250,5 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderMultiUniteSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderMultiUniteSimple.md index ddb4485e0d..ba389984cc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderMultiUniteSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderMultiUniteSimple.md @@ -1,4 +1,5 @@ -# Class BuilderMultiUniteSimple +# Class BuilderMultiUniteSimple + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the simple unite of multi builder. ```csharp -public class BuilderMultiUniteSimple : BuilderMultiUnite, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public class BuilderMultiUniteSimple : BuilderMultiUnite, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -38,8 +39,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -55,6 +57,8 @@ IHistoryObjectSerializable, [BuilderMulti.FindLocal\(string\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_FindLocal\_System\_String\_), [BuilderMulti.Contains\(Type\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_Contains\_System\_Type\_), [BuilderMulti.CopyFilePathWhenImportBuilder\(Builder\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_CopyFilePathWhenImportBuilder\_VM\_Managed\_CAD\_Builder\_), +[BuilderMulti.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[BuilderMulti.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [BuilderMulti.FillParameter\(BuilderParamBase\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_FillParameter\_VM\_CAD\_Builders\_BuilderParamBase\_), [BuilderMulti.OnDeserializationImpl\(ref List\>\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_OnDeserializationImpl\_System\_Collections\_Generic\_List\_VM\_Managed\_Child\_VM\_Managed\_CAD\_Builder\_VM\_Managed\_ObjectBase\_Update\_\_\_\_), [BuilderMulti.ReadXmlImpl\(XmlReader\)](VM.Managed.CAD.BuilderMulti.md\#VM\_Managed\_CAD\_BuilderMulti\_ReadXmlImpl\_System\_Xml\_XmlReader\_), @@ -91,6 +95,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -194,7 +200,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -225,7 +231,7 @@ public BuilderMultiUniteSimple(Builder builderTarget, ICollection build `builderTarget` [Builder](VM.Managed.CAD.Builder.md) -`builderTools` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[Builder](VM.Managed.CAD.Builder.md)\> +`builderTools` ICollection<[Builder](VM.Managed.CAD.Builder.md)\> ### BuilderMultiUniteSimple\(Builder, Builder\) @@ -268,7 +274,7 @@ public virtual XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -282,7 +288,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -296,7 +302,7 @@ public virtual void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -310,7 +316,7 @@ public virtual void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderPair.Rebuild.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderPair.Rebuild.md index f5d01d7698..9df4bd50d9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderPair.Rebuild.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderPair.Rebuild.md @@ -1,4 +1,5 @@ -# Struct BuilderPair.Rebuild +# Struct BuilderPair.Rebuild + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderPair.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderPair.md index d5b39dc20a..a392de8d60 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderPair.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderPair.md @@ -1,4 +1,5 @@ -# Class BuilderPair +# Class BuilderPair + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the builder that has pair builder. ```csharp -public abstract class BuilderPair : BuilderBoolean, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, ILinkContainer, IOwned, IHasID +public abstract class BuilderPair : BuilderBoolean, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IContainer, ILinkContainer, IOwned, IHasID ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -40,8 +41,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), [IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity, IContainer, ILinkContainer, IOwned, @@ -79,6 +81,8 @@ IHasID [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -182,7 +186,7 @@ IHasID [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -265,11 +269,11 @@ public override bool Contains(Type typeBuilder) #### Parameters -`typeBuilder` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`typeBuilder` Type #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CopyFilePathWhenImportBuilder\(Builder\) @@ -289,7 +293,7 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### Find\(string\) @@ -301,7 +305,7 @@ public virtual IObjectBase Find(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The DAFUL object full name. @@ -319,7 +323,7 @@ public override ObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string #### Returns @@ -335,7 +339,7 @@ virtual IObjectBase FindLocalImpl(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The DAFUL object name. @@ -367,7 +371,7 @@ protected virtual void GetBuildExtraXml(StringBuilder A_0) #### Parameters -`A_0` [StringBuilder](https://learn.microsoft.com/dotnet/api/system.text.stringbuilder) +`A_0` StringBuilder ### GetNameAttribute\(string, ref List\) @@ -377,9 +381,9 @@ public override void GetNameAttribute(string strPrefix, ref List lstName #### Parameters -`strPrefix` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefix` string -`lstName` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstName` List ### GetNewEntityName\(string, bool, int, int\) @@ -391,25 +395,25 @@ public virtual string GetNewEntityName(string strPrefix, bool bUseUnderLine, int #### Parameters -`strPrefix` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefix` string The DAFUL object prefix name. -`bUseUnderLine` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseUnderLine` bool Whether use underline. -`nNumFigure` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNumFigure` int The Number of Figure. -`nStartIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nStartIndex` int The start index. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The DAFUL object name. @@ -423,21 +427,21 @@ public virtual string GetNewEntityName(string strPrefix, bool bUseUnderLine, int #### Parameters -`strPrefix` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefix` string The DAFUL object prefix name. -`bUseUnderLine` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseUnderLine` bool Whether use underline. -`nNumFigure` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNumFigure` int The Number of Figure. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The DAFUL object name. @@ -451,13 +455,13 @@ public virtual string GetNewEntityName(string strPrefix) #### Parameters -`strPrefix` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefix` string The DAFUL object prefix name. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The DAFUL object name. @@ -469,11 +473,31 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string + +### HasReplaceableEntity\(IObjectBase\) + +Gets a value indicating whether this instance has replacable entity. + +```csharp +public override bool HasReplaceableEntity(IObjectBase oldObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +#### Returns + + bool + +if this instance has replacable entity, the result is true. ### OnDeserialization\(object\) @@ -485,7 +509,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -499,7 +523,7 @@ protected virtual void RebuildGeometry(object objBuilder, LinkEventArgs args) #### Parameters -`objBuilder` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objBuilder` object The builder. @@ -536,17 +560,41 @@ public override bool ReplaceData(string strKey, object data) #### Parameters -`strKey` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strKey` string The target data information. -`data` [object](https://learn.microsoft.com/dotnet/api/system.object) +`data` object The data for replacing. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool + +### ReplaceEntity\(IObjectBase, IObjectBase\) + +Replace Entity + +```csharp +public override bool ReplaceEntity(IObjectBase oldObject, IObjectBase newObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +`newObject` IObjectBase + +The new object + +#### Returns + + bool + +if success, the result is true. ### SetTransform\(TMatrix\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderPlane.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderPlane.md index 9e8e6c70e6..126ca151b3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderPlane.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderPlane.md @@ -1,4 +1,5 @@ -# Class BuilderPlane +# Class BuilderPlane + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the builder plane. ```csharp -public abstract class BuilderPlane : BuilderHasTransformationMatrix, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public abstract class BuilderPlane : BuilderHasTransformationMatrix, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -41,8 +42,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -77,6 +79,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -180,7 +184,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -259,7 +263,7 @@ protected override void FillParameter(BuilderParamBase A_0) #### Parameters -`A_0` BuilderParamBase +`A_0` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### GetBuildPlaneXml\(StringBuilder\) @@ -269,7 +273,7 @@ protected void GetBuildPlaneXml(StringBuilder builder) #### Parameters -`builder` [StringBuilder](https://learn.microsoft.com/dotnet/api/system.text.stringbuilder) +`builder` StringBuilder ### SetTransform\(TMatrix\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderPlaneCircle.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderPlaneCircle.md index aad25ec36a..e31a5b50e0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderPlaneCircle.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderPlaneCircle.md @@ -1,4 +1,5 @@ -# Class BuilderPlaneCircle +# Class BuilderPlaneCircle + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the builder circle plane. ```csharp -public class BuilderPlaneCircle : BuilderPlane, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public class BuilderPlaneCircle : BuilderPlane, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -37,8 +38,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -78,6 +80,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -181,7 +185,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -234,7 +238,7 @@ public BuilderPlaneCircle(PlaneBase plane, double dRadius) The plane info. -`dRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadius` double The radius. @@ -262,7 +266,7 @@ public BuilderPlaneCircle(double dRadius) #### Parameters -`dRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadius` double The radius. @@ -306,7 +310,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamBase\) @@ -316,7 +320,7 @@ protected override void FillParameter(BuilderParamBase A_0) #### Parameters -`A_0` BuilderParamBase +`A_0` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### Initialize\(ConvertFactor\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderPlaneRectangle.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderPlaneRectangle.md index 1496ab5f9e..e7a55d9f23 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderPlaneRectangle.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderPlaneRectangle.md @@ -1,4 +1,5 @@ -# Class BuilderPlaneRectangle +# Class BuilderPlaneRectangle + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the builder rectangle plane. ```csharp -public class BuilderPlaneRectangle : BuilderPlane, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public class BuilderPlaneRectangle : BuilderPlane, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -37,8 +38,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -78,6 +80,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -181,7 +185,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -238,11 +242,11 @@ public BuilderPlaneRectangle(PlaneBase plane, double dWidth, double dHeight) The plane info. -`dWidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dWidth` double The width. -`dHeight` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHeight` double The height. @@ -274,11 +278,11 @@ public BuilderPlaneRectangle(double dWidth, double dHeight) #### Parameters -`dWidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dWidth` double The width. -`dHeight` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHeight` double The height. @@ -334,7 +338,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamBase\) @@ -344,7 +348,7 @@ protected override void FillParameter(BuilderParamBase A_0) #### Parameters -`A_0` BuilderParamBase +`A_0` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### Initialize\(ConvertFactor\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderSheetThicken.DirectionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderSheetThicken.DirectionType.md index 5e5faa8386..d935d364fc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderSheetThicken.DirectionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderSheetThicken.DirectionType.md @@ -1,4 +1,5 @@ -# Enum BuilderSheetThicken.DirectionType +# Enum BuilderSheetThicken.DirectionType + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderSheetThicken.Rebuild.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderSheetThicken.Rebuild.md index d964bb1bd6..022712e1b3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderSheetThicken.Rebuild.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderSheetThicken.Rebuild.md @@ -1,4 +1,5 @@ -# Struct BuilderSheetThicken.Rebuild +# Struct BuilderSheetThicken.Rebuild + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderSheetThicken.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderSheetThicken.md index 1294178f1e..014d57a33d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderSheetThicken.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderSheetThicken.md @@ -1,4 +1,5 @@ -# Class BuilderSheetThicken +# Class BuilderSheetThicken + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the builder sheet thicken. ```csharp -public class BuilderSheetThicken : BuilderColorGeom, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public class BuilderSheetThicken : BuilderColorGeom, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -35,8 +36,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -69,6 +71,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -172,7 +176,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -271,11 +275,11 @@ public override bool Contains(Type typeBuilder) #### Parameters -`typeBuilder` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`typeBuilder` Type #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CopyFilePathWhenImportBuilder\(Builder\) @@ -295,7 +299,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamBase\) @@ -305,5 +309,49 @@ protected override void FillParameter(BuilderParamBase A_0) #### Parameters -`A_0` BuilderParamBase +`A_0` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) + +### HasReplaceableEntity\(IObjectBase\) + +Gets a value indicating whether this instance has replacable entity. + +```csharp +public override bool HasReplaceableEntity(IObjectBase oldObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +#### Returns + + bool + +if this instance has replacable entity, the result is true. + +### ReplaceEntity\(IObjectBase, IObjectBase\) + +Replace Entity + +```csharp +public override bool ReplaceEntity(IObjectBase oldObject, IObjectBase newObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +`newObject` IObjectBase + +The new object + +#### Returns + + bool + +if success, the result is true. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderSphere.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderSphere.md index b7a2498bf2..42706ceff7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderSphere.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderSphere.md @@ -1,4 +1,5 @@ -# Class BuilderSphere +# Class BuilderSphere + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the builder of sphere. ```csharp -public abstract class BuilderSphere : BuilderColorGeom, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public abstract class BuilderSphere : BuilderColorGeom, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -39,8 +40,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -73,6 +75,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -176,7 +180,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -229,7 +233,7 @@ public abstract double _Radius { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -249,7 +253,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamBase\) @@ -259,5 +263,5 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderSphereSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderSphereSimple.md index 92672f7a60..9315798de0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderSphereSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderSphereSimple.md @@ -1,4 +1,5 @@ -# Class BuilderSphereSimple +# Class BuilderSphereSimple + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the builder of simple sphere. ```csharp -public class BuilderSphereSimple : BuilderSphere, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public class BuilderSphereSimple : BuilderSphere, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -36,8 +37,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -75,6 +77,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -178,7 +182,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -227,7 +231,7 @@ public BuilderSphereSimple(double dRadius, PointBase center) #### Parameters -`dRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadius` double The radius of sphere. @@ -259,7 +263,7 @@ public BuilderSphereSimple(double dRadius) #### Parameters -`dRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadius` double The radius of sphere. @@ -295,7 +299,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Radius @@ -329,7 +333,7 @@ public override double _Radius { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -355,6 +359,26 @@ public override void CheckCircularReference(ObjectBase objCM) The CM. +### HasReplaceableEntity\(IObjectBase\) + +Gets a value indicating whether this instance has replacable entity. + +```csharp +public override bool HasReplaceableEntity(IObjectBase oldObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +#### Returns + + bool + +if this instance has replacable entity, the result is true. + ### Initialize\(ConvertFactor\) Initializes member through unit convert factor. @@ -369,6 +393,30 @@ public override void Initialize(Unit.ConvertFactor factor) The unit convert factor. +### ReplaceEntity\(IObjectBase, IObjectBase\) + +Replace Entity + +```csharp +public override bool ReplaceEntity(IObjectBase oldObject, IObjectBase newObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +`newObject` IObjectBase + +The new object + +#### Returns + + bool + +if success, the result is true. + ### SetTransform\(TMatrix\) Sets the transform info. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderSubtract.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderSubtract.md index 5af92334c1..4ed0d0cb13 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderSubtract.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderSubtract.md @@ -1,4 +1,5 @@ -# Class BuilderSubtract +# Class BuilderSubtract + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the subtract builder. ```csharp -public class BuilderSubtract : BuilderPair, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, ILinkContainer, IOwned, IHasID +public class BuilderSubtract : BuilderPair, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IContainer, ILinkContainer, IOwned, IHasID ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -34,8 +35,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), [IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity, IContainer, ILinkContainer, IOwned, @@ -58,6 +60,8 @@ IHasID [BuilderPair.GetNewEntityName\(string, bool, int, int\)](VM.Managed.CAD.BuilderPair.md\#VM\_Managed\_CAD\_BuilderPair\_GetNewEntityName\_System\_String\_System\_Boolean\_System\_Int32\_System\_Int32\_), [BuilderPair.GetNewEntityName\(string, bool, int\)](VM.Managed.CAD.BuilderPair.md\#VM\_Managed\_CAD\_BuilderPair\_GetNewEntityName\_System\_String\_System\_Boolean\_System\_Int32\_), [BuilderPair.GetNewEntityName\(string\)](VM.Managed.CAD.BuilderPair.md\#VM\_Managed\_CAD\_BuilderPair\_GetNewEntityName\_System\_String\_), +[BuilderPair.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.BuilderPair.md\#VM\_Managed\_CAD\_BuilderPair\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[BuilderPair.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.BuilderPair.md\#VM\_Managed\_CAD\_BuilderPair\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [BuilderPair.RebuildGeometry\(object, LinkEventArgs\)](VM.Managed.CAD.BuilderPair.md\#VM\_Managed\_CAD\_BuilderPair\_RebuildGeometry\_System\_Object\_VM\_Managed\_LinkEventArgs\_), [BuilderPair.GetBuildExtraXml\(StringBuilder\)](VM.Managed.CAD.BuilderPair.md\#VM\_Managed\_CAD\_BuilderPair\_GetBuildExtraXml\_System\_Text\_StringBuilder\_), [BuilderPair.OnDeserialization\(object\)](VM.Managed.CAD.BuilderPair.md\#VM\_Managed\_CAD\_BuilderPair\_OnDeserialization\_System\_Object\_), @@ -94,6 +98,8 @@ IHasID [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -197,7 +203,7 @@ IHasID [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -254,5 +260,5 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderTorus.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderTorus.md index e48e2d44b7..df231a5656 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderTorus.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderTorus.md @@ -1,4 +1,5 @@ -# Class BuilderTorus +# Class BuilderTorus + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the builder of torus. ```csharp -public abstract class BuilderTorus : BuilderColorGeom, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public abstract class BuilderTorus : BuilderColorGeom, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -39,8 +40,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -73,6 +75,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -176,7 +180,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -229,7 +233,7 @@ public abstract double _RadiusMajor { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### \_RadiusMinor @@ -241,7 +245,7 @@ public abstract double _RadiusMinor { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### \_UpDirection @@ -273,7 +277,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamBase\) @@ -283,5 +287,5 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderTorusSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderTorusSimple.md index 5221387cde..aa39e27d86 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderTorusSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderTorusSimple.md @@ -1,4 +1,5 @@ -# Class BuilderTorusSimple +# Class BuilderTorusSimple + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the builder of simple torus. ```csharp -public class BuilderTorusSimple : BuilderTorus, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public class BuilderTorusSimple : BuilderTorus, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -36,8 +37,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -77,6 +79,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -180,7 +184,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -237,11 +241,11 @@ public BuilderTorusSimple(double dRadiusMajor, double dRadiusMinor, PointBase ce #### Parameters -`dRadiusMajor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadiusMajor` double The major radius of torus. -`dRadiusMinor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadiusMinor` double The minor radius of torus. @@ -281,11 +285,11 @@ public BuilderTorusSimple(double dRadiusMajor, double dRadiusMinor) #### Parameters -`dRadiusMajor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadiusMajor` double The major radius of torus. -`dRadiusMinor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadiusMinor` double The minor radius of torus. @@ -321,7 +325,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RadiusMajor @@ -377,7 +381,7 @@ public override double _RadiusMajor { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### \_RadiusMinor @@ -389,7 +393,7 @@ public override double _RadiusMinor { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### \_UpDirection @@ -427,6 +431,26 @@ public override void CheckCircularReference(ObjectBase objCM) The CM. +### HasReplaceableEntity\(IObjectBase\) + +Gets a value indicating whether this instance has replacable entity. + +```csharp +public override bool HasReplaceableEntity(IObjectBase oldObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +#### Returns + + bool + +if this instance has replacable entity, the result is true. + ### Initialize\(ConvertFactor\) Initializes member through unit convert factor. @@ -441,6 +465,30 @@ public override void Initialize(Unit.ConvertFactor factor) The unit convert factor. +### ReplaceEntity\(IObjectBase, IObjectBase\) + +Replace Entity + +```csharp +public override bool ReplaceEntity(IObjectBase oldObject, IObjectBase newObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +`newObject` IObjectBase + +The new object + +#### Returns + + bool + +if success, the result is true. + ### SetTransform\(TMatrix\) Sets the transform info. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderTransform.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderTransform.md index 034c145c99..d36cee72cf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderTransform.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderTransform.md @@ -1,4 +1,5 @@ -# Class BuilderTransform +# Class BuilderTransform + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the transform of builder. ```csharp -public abstract class BuilderTransform : Builder, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public abstract class BuilderTransform : Builder, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -37,8 +38,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -63,6 +65,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -166,7 +170,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -207,7 +211,7 @@ public virtual bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderTriPlate.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderTriPlate.md index e4118e5ea7..b187b92ff1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderTriPlate.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderTriPlate.md @@ -1,4 +1,5 @@ -# Class BuilderTriPlate +# Class BuilderTriPlate + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the builder of TriPlate. ```csharp -public abstract class BuilderTriPlate : BuilderColorGeom, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public abstract class BuilderTriPlate : BuilderColorGeom, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -39,8 +40,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -73,6 +75,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -176,7 +180,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -229,7 +233,7 @@ public abstract double _Height { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### \_SecondPosition @@ -273,7 +277,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamBase\) @@ -283,5 +287,5 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderTriPlateSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderTriPlateSimple.md index 52e4203b7a..f77d17cb8b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderTriPlateSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderTriPlateSimple.md @@ -1,4 +1,5 @@ -# Class BuilderTriPlateSimple +# Class BuilderTriPlateSimple + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the builder of simple TriPlate. ```csharp -public class BuilderTriPlateSimple : BuilderTriPlate, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public class BuilderTriPlateSimple : BuilderTriPlate, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -36,8 +37,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -77,6 +79,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -180,7 +184,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -237,7 +241,7 @@ public BuilderTriPlateSimple(double dHeight, PointBase vecFirst, PointBase vecSe #### Parameters -`dHeight` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHeight` double The height of TriPlate. @@ -297,7 +301,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SecondPosition @@ -345,7 +349,7 @@ public override double _Height { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### \_SecondPosition @@ -395,6 +399,26 @@ public override void CheckCircularReference(ObjectBase objCM) The CM. +### HasReplaceableEntity\(IObjectBase\) + +Gets a value indicating whether this instance has replacable entity. + +```csharp +public override bool HasReplaceableEntity(IObjectBase oldObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +#### Returns + + bool + +if this instance has replacable entity, the result is true. + ### Initialize\(ConvertFactor\) Initializes member through unit convert factor. @@ -409,6 +433,30 @@ public override void Initialize(Unit.ConvertFactor factor) The unit convert factor. +### ReplaceEntity\(IObjectBase, IObjectBase\) + +Replace Entity + +```csharp +public override bool ReplaceEntity(IObjectBase oldObject, IObjectBase newObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +`newObject` IObjectBase + +The new object + +#### Returns + + bool + +if success, the result is true. + ### SetTransform\(TMatrix\) Sets the transform info. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderUnite.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderUnite.md index 40b70c5b46..7424277a94 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderUnite.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderUnite.md @@ -1,4 +1,5 @@ -# Class BuilderUnite +# Class BuilderUnite + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the intersect builder. ```csharp -public class BuilderUnite : BuilderPair, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, ILinkContainer, IOwned, IHasID +public class BuilderUnite : BuilderPair, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IContainer, ILinkContainer, IOwned, IHasID ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -34,8 +35,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), [IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity, IContainer, ILinkContainer, IOwned, @@ -58,6 +60,8 @@ IHasID [BuilderPair.GetNewEntityName\(string, bool, int, int\)](VM.Managed.CAD.BuilderPair.md\#VM\_Managed\_CAD\_BuilderPair\_GetNewEntityName\_System\_String\_System\_Boolean\_System\_Int32\_System\_Int32\_), [BuilderPair.GetNewEntityName\(string, bool, int\)](VM.Managed.CAD.BuilderPair.md\#VM\_Managed\_CAD\_BuilderPair\_GetNewEntityName\_System\_String\_System\_Boolean\_System\_Int32\_), [BuilderPair.GetNewEntityName\(string\)](VM.Managed.CAD.BuilderPair.md\#VM\_Managed\_CAD\_BuilderPair\_GetNewEntityName\_System\_String\_), +[BuilderPair.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.BuilderPair.md\#VM\_Managed\_CAD\_BuilderPair\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[BuilderPair.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.BuilderPair.md\#VM\_Managed\_CAD\_BuilderPair\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [BuilderPair.RebuildGeometry\(object, LinkEventArgs\)](VM.Managed.CAD.BuilderPair.md\#VM\_Managed\_CAD\_BuilderPair\_RebuildGeometry\_System\_Object\_VM\_Managed\_LinkEventArgs\_), [BuilderPair.GetBuildExtraXml\(StringBuilder\)](VM.Managed.CAD.BuilderPair.md\#VM\_Managed\_CAD\_BuilderPair\_GetBuildExtraXml\_System\_Text\_StringBuilder\_), [BuilderPair.OnDeserialization\(object\)](VM.Managed.CAD.BuilderPair.md\#VM\_Managed\_CAD\_BuilderPair\_OnDeserialization\_System\_Object\_), @@ -94,6 +98,8 @@ IHasID [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -197,7 +203,7 @@ IHasID [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -254,5 +260,5 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderUserDefined.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderUserDefined.md index 7704b671ef..e40f44409c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderUserDefined.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.BuilderUserDefined.md @@ -1,4 +1,5 @@ -# Class BuilderUserDefined +# Class BuilderUserDefined + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the user defined builder. ```csharp -public class BuilderUserDefined : Builder, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public class BuilderUserDefined : Builder, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Builder](VM.Managed.CAD.Builder.md) ← @@ -33,8 +34,9 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, -[IAttributeContainer](VM.Managed.IAttributeContainer.md) +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +[IAttributeContainer](VM.Managed.IAttributeContainer.md), +IHasReplaceableEntity #### Inherited Members @@ -59,6 +61,8 @@ IHistoryObjectSerializable, [Builder.PostWorkWhenFailedToGetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_PostWorkWhenFailedToGetXmlString), [Builder.GetFilledParameter\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFilledParameter), [Builder.GetXmlString\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetXmlString), +[Builder.HasReplaceableEntity\(IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[Builder.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [Builder.GetFactorForLength\(\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_GetFactorForLength), [Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForPoint\_VM\_Managed\_PointBase\_VM\_Managed\_ObjectBase\_), [Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\)](VM.Managed.CAD.Builder.md\#VM\_Managed\_CAD\_Builder\_CheckCircularReferenceForDirection\_VM\_Managed\_DirectionBase\_VM\_Managed\_ObjectBase\_), @@ -162,7 +166,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -193,7 +197,7 @@ public BuilderUserDefined(string strBuildXml) #### Parameters -`strBuildXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBuildXml` string The build xml. @@ -217,7 +221,7 @@ public string BuildXml { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -229,7 +233,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamBase\) @@ -239,5 +243,5 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.CADBodyApplyOperation.ApplyCallback.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.CADBodyApplyOperation.ApplyCallback.md index 90a90b97bc..cb23695802 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.CADBodyApplyOperation.ApplyCallback.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.CADBodyApplyOperation.ApplyCallback.md @@ -1,4 +1,5 @@ -# Delegate CADBodyApplyOperation.ApplyCallback +# Delegate CADBodyApplyOperation.ApplyCallback + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public delegate bool CADBodyApplyOperation.ApplyCallback() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.CADBodyApplyOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.CADBodyApplyOperation.md index 495511d6b4..adcca39b1e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.CADBodyApplyOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.CADBodyApplyOperation.md @@ -1,4 +1,5 @@ -# Class CADBodyApplyOperation +# Class CADBodyApplyOperation + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class CADBodyApplyOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OperationBase](VM.Managed.Operation.OperationBase.md) ← [CADBodyApplyOperation](VM.Managed.CAD.CADBodyApplyOperation.md) @@ -111,7 +112,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Success @@ -121,7 +122,7 @@ public bool Success { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.CADOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.CADOperation.md index 3e130b4350..7a201cf288 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.CADOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.CADOperation.md @@ -1,4 +1,5 @@ -# Class CADOperation +# Class CADOperation + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class CADOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CADOperation](VM.Managed.CAD.CADOperation.md) #### Extension Methods @@ -50,11 +51,11 @@ public static bool CheckValidationAboutBuild(Body body, string strXml) `body` [Body](VM.Managed.CAD.Body.md) -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DeleteBuilder\(List, Document, bool\) @@ -64,11 +65,11 @@ public static void DeleteBuilder(List lstDeletedBuilder, Document do #### Parameters -`lstDeletedBuilder` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ObjectBase](VM.Managed.ObjectBase.md)\> +`lstDeletedBuilder` List<[ObjectBase](VM.Managed.ObjectBase.md)\> `doc` [Document](VM.Managed.Document.md) -`bModified` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bModified` bool ### GetBodyFaces\(Body, ICollection\) @@ -80,11 +81,11 @@ public static List GetBodyFaces(Body bd, ICollection Colors) `bd` [Body](VM.Managed.CAD.Body.md) -`Colors` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`Colors` ICollection #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Face](VM.Managed.CAD.Face.md)\> + List<[Face](VM.Managed.CAD.Face.md)\> ### GetBodyFaces\(Body\) @@ -98,7 +99,7 @@ public static List GetBodyFaces(Body bd) #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Face](VM.Managed.CAD.Face.md)\> + List<[Face](VM.Managed.CAD.Face.md)\> ### GetBodyNameAttribute\(Body\) @@ -112,7 +113,7 @@ public static string GetBodyNameAttribute(Body body) #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetBoundingBox\(Body, TMatrix, ref Vector, ref Vector, BoxingMode\) @@ -134,7 +135,7 @@ public static bool GetBoundingBox(Body body, TMatrix matT, ref Vector vecMinPt, #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetDefaultMaxPenetration\(Face, ref double\) @@ -146,11 +147,11 @@ public static bool GetDefaultMaxPenetration(Face face, ref double dMaxPenetratio `face` [Face](VM.Managed.CAD.Face.md) -`dMaxPenetration` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMaxPenetration` double #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetEdgeLength\(Edge\) @@ -164,7 +165,7 @@ public static double GetEdgeLength(Edge edge) #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetFaceArea\(Face\) @@ -178,7 +179,7 @@ public static double GetFaceArea(Face face) #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetFacetInformationForFace\(Face, FacetOption, ref VectorBase\[\], ref int\[\]\) @@ -190,11 +191,11 @@ public static void GetFacetInformationForFace(Face face, FacetOption options, re `face` [Face](VM.Managed.CAD.Face.md) -`options` FacetOption +`options` [FacetOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/FacetOption.cs) `arPt` [VectorBase](VM.Managed.VectorBase.md)\[\] -`arConnectivity` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`arConnectivity` int\[\] ### GetManyTopologyColor\(IEnumerable\) @@ -204,11 +205,11 @@ public static Dictionary GetManyTopologyColor(IEnumerable +`topologies` IEnumerable<[Topology](VM.Managed.CAD.Topology.md)\> #### Returns - [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr), [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)\> + Dictionary ### GetPiecewiseCurve\(List, double, double, double, ref bool\) @@ -218,19 +219,19 @@ public static List GetPiecewiseCurve(List lstEdges, double dTo #### Parameters -`lstEdges` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Edge](VM.Managed.CAD.Edge.md)\> +`lstEdges` List<[Edge](VM.Managed.CAD.Edge.md)\> -`dTol` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTol` double -`dLen` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLen` double -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double -`bCloseLoop` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bCloseLoop` bool #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[VectorBase](VM.Managed.VectorBase.md)\> + List<[VectorBase](VM.Managed.VectorBase.md)\> ### GetPointAndDirectionFromFacet\(Face, FacetOption, VectorBase, VectorBase\) @@ -242,7 +243,7 @@ public static bool GetPointAndDirectionFromFacet(Face face, FacetOption options, `face` [Face](VM.Managed.CAD.Face.md) -`options` FacetOption +`options` [FacetOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/FacetOption.cs) `vecPoint` [VectorBase](VM.Managed.VectorBase.md) @@ -250,7 +251,7 @@ public static bool GetPointAndDirectionFromFacet(Face face, FacetOption options, #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetTopologyColor\(Topology, ref Color\) @@ -262,11 +263,11 @@ public static bool GetTopologyColor(Topology topol, ref Color color) `topol` [Topology](VM.Managed.CAD.Topology.md) -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) +`color` Color #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetVoidCount\(Body\) @@ -280,7 +281,7 @@ public static int GetVoidCount(Body body) #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetVoidPoints\(Body, double\[\], ref VectorBase\[\]\) @@ -292,13 +293,23 @@ public static int GetVoidPoints(Body body, double[] ardScale, ref VectorBase[] a `body` [Body](VM.Managed.CAD.Body.md) -`ardScale` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ardScale` double\[\] `arPoints` [VectorBase](VM.Managed.VectorBase.md)\[\] #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int + +### ReDrawForHistory\(IDrawIcon\) + +```csharp +public static void ReDrawForHistory(IDrawIcon itfDrawIcon) +``` + +#### Parameters + +`itfDrawIcon` [IDrawIcon](VM.Managed.Render.IDrawIcon.md) ### RemoveDuplicatedEvent\(Document\) @@ -320,11 +331,11 @@ public static void SetNameAttribute(Body body, string strName, bool bUseAttribut `body` [Body](VM.Managed.CAD.Body.md) -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string -`bUseAttribute` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseAttribute` bool -`strOldName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOldName` string ### SetSelectionObject\(Document3D\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.CheckValidationAboutBuildOp.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.CheckValidationAboutBuildOp.md index 4b4db281f1..7fb681d735 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.CheckValidationAboutBuildOp.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.CheckValidationAboutBuildOp.md @@ -1,4 +1,5 @@ -# Class CheckValidationAboutBuildOp +# Class CheckValidationAboutBuildOp + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class CheckValidationAboutBuildOp : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OperationBase](VM.Managed.Operation.OperationBase.md) ← [CheckValidationAboutBuildOp](VM.Managed.CAD.CheckValidationAboutBuildOp.md) @@ -87,7 +88,7 @@ public CheckValidationAboutBuildOp(Body body, string strXml) `body` [Body](VM.Managed.CAD.Body.md) -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string ### CheckValidationAboutBuildOp\(\) @@ -107,7 +108,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -119,7 +120,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Result @@ -131,7 +132,7 @@ public bool Result { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.DeleteBuilderOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.DeleteBuilderOperation.md index 58b306c449..0a71f98b80 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.DeleteBuilderOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.DeleteBuilderOperation.md @@ -1,4 +1,5 @@ -# Class DeleteBuilderOperation +# Class DeleteBuilderOperation + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class DeleteBuilderOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OperationBase](VM.Managed.Operation.OperationBase.md) ← [DeleteBuilderOperation](VM.Managed.CAD.DeleteBuilderOperation.md) @@ -85,11 +86,11 @@ public DeleteBuilderOperation(List lstDeletedBuilder, Document doc, #### Parameters -`lstDeletedBuilder` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ObjectBase](VM.Managed.ObjectBase.md)\> +`lstDeletedBuilder` List<[ObjectBase](VM.Managed.ObjectBase.md)\> `doc` [Document](VM.Managed.Document.md) -`bModified` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bModified` bool ## Properties @@ -103,7 +104,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -115,7 +116,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Edge.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Edge.md index 2f3190ad07..1a52071489 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Edge.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Edge.md @@ -1,4 +1,5 @@ -# Class Edge +# Class Edge + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class Edge : Topology, IObservableObject, IDisposableObject, ILinkable, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Topology](VM.Managed.CAD.Topology.md) ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), [IAttributeContainer](VM.Managed.IAttributeContainer.md), [ITopology](VM.Managed.ITopology.md) @@ -145,7 +146,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -186,7 +187,7 @@ public void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -206,7 +207,7 @@ The vector holds center position. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -230,7 +231,7 @@ The vector holds direction. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -244,11 +245,11 @@ public Vector[] GetEdgePoints(double dTol, double dLen, double dAngle) #### Parameters -`dTol` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTol` double -`dLen` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLen` double -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double #### Returns @@ -266,7 +267,7 @@ public Vector[] GetEdgePoints(uint nNum) #### Parameters -`nNum` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNum` uint The number of edge points. @@ -286,7 +287,7 @@ public double GetLength() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetNumOfEdgePoint\(\) @@ -298,7 +299,7 @@ public uint GetNumOfEdgePoint() #### Returns - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint The number of edge point. @@ -310,19 +311,19 @@ public static List GetPiecewiseCurve(List lstEdges, double dTo #### Parameters -`lstEdges` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Edge](VM.Managed.CAD.Edge.md)\> +`lstEdges` List<[Edge](VM.Managed.CAD.Edge.md)\> -`dTol` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTol` double -`dLen` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLen` double -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double -`bCloseLoop` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bCloseLoop` bool #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[VectorBase](VM.Managed.VectorBase.md)\> + List<[VectorBase](VM.Managed.VectorBase.md)\> ### GetTypeName\(\) @@ -334,7 +335,7 @@ public override string GetTypeName() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The name of topology @@ -348,7 +349,7 @@ public bool IsOpen() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if open; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Face.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Face.md index b8983dc188..cec8005bf2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Face.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Face.md @@ -1,4 +1,5 @@ -# Class Face +# Class Face + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class Face : Topology, IObservableObject, IDisposableObject, ILinkable, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Topology](VM.Managed.CAD.Topology.md) ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), [IAttributeContainer](VM.Managed.IAttributeContainer.md), [ITopology](VM.Managed.ITopology.md), [IDrawFacet](VM.Managed.IDrawFacet.md), @@ -147,7 +148,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -188,7 +189,7 @@ public void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -202,7 +203,7 @@ public VectorBase[] FacetPositions(FacetOption facetOptions) #### Parameters -`facetOptions` FacetOption +`facetOptions` [FacetOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/FacetOption.cs) The facet options. @@ -220,7 +221,7 @@ public double GetArea() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetDefaultMaxPenetration\(ref double\) @@ -232,13 +233,13 @@ public bool GetDefaultMaxPenetration(ref double dMaxPenetration) #### Parameters -`dMaxPenetration` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMaxPenetration` double The value holds maximum penetration. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -252,7 +253,7 @@ public void GetFacetInfo(FacetOption facetOptions, ref VectorBase[] arPt, ref in #### Parameters -`facetOptions` FacetOption +`facetOptions` [FacetOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/FacetOption.cs) The facet options. @@ -260,7 +261,7 @@ The facet options. The facet point array. -`arConnectivity` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`arConnectivity` int\[\] The facet connetivity array. @@ -274,7 +275,7 @@ public void GetFacetMidPointInfo(FacetOption facetOptions, ref VectorBase[] arPt #### Parameters -`facetOptions` FacetOption +`facetOptions` [FacetOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/FacetOption.cs) The facet options. @@ -294,13 +295,13 @@ public bool GetPointAndDirection(ref VectorBase vecPosition, ref VectorBase vecD `vecDirection` [VectorBase](VM.Managed.VectorBase.md) -`dU` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dU` double -`dV` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dV` double #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetPointAndDirection\(ref VectorBase, ref VectorBase\) @@ -322,7 +323,7 @@ The direction. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -338,13 +339,13 @@ public bool GetPointAndDirectionFromBoundaryEdge(ref VectorBase vecPosition, ref `vecDirection` [VectorBase](VM.Managed.VectorBase.md) -`dU` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dU` double -`nIndex` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nIndex` uint #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetPointAndDirectionFromFacet\(FacetOption, ref VectorBase\[\], ref VectorBase\[\]\) @@ -356,7 +357,7 @@ public bool GetPointAndDirectionFromFacet(FacetOption facetOptions, ref VectorBa #### Parameters -`facetOptions` FacetOption +`facetOptions` [FacetOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/FacetOption.cs) The facet options. @@ -370,7 +371,7 @@ The direction. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -384,7 +385,7 @@ public bool GetPointAndDirectionFromFacet(FacetOption facetOptions, ref VectorBa #### Parameters -`facetOptions` FacetOption +`facetOptions` [FacetOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/FacetOption.cs) The facet options. @@ -398,7 +399,7 @@ The direction. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -412,7 +413,7 @@ public override string GetTypeName() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The name of topology @@ -426,7 +427,7 @@ public bool IsReverseNormalDirection() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if is [reverse normal direction]; otherwise, false. @@ -440,13 +441,13 @@ public bool IsReverseNormalDirection(bool bToggle) #### Parameters -`bToggle` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bToggle` bool if set to true normal direction is moving currnet's opposite state. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if is [reverse normal direction] [the toggle state]; otherwise, false. @@ -460,7 +461,7 @@ public bool IsSphere() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RollbackNormalDirection\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.FaceDrawHelper.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.FaceDrawHelper.md index 825c9c5cc5..0f70d7001a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.FaceDrawHelper.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.FaceDrawHelper.md @@ -1,4 +1,5 @@ -# Class FaceDrawHelper +# Class FaceDrawHelper + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class FaceDrawHelper #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [FaceDrawHelper](VM.Managed.CAD.FaceDrawHelper.md) #### Extension Methods @@ -30,9 +31,9 @@ public static void DrawNurbs(_SURFACENURBS_INFO* info, Canvas canvas) #### Parameters -`info` [\_SURFACENURBS\_INFO](VM.DSDL.API.GEOMETRY.\_SURFACENURBS\_INFO.md)\* +`info` \_SURFACENURBS\_INFO\* -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) ### DrawNurbsBoundaryUsingPointQueryFunction\(\_CURVENURBS\_INFO\*, Canvas, Face, uint\) @@ -42,13 +43,13 @@ public static void DrawNurbsBoundaryUsingPointQueryFunction(_CURVENURBS_INFO* in #### Parameters -`info` [\_CURVENURBS\_INFO](VM.DSDL.API.GEOMETRY.\_CURVENURBS\_INFO.md)\* +`info` \_CURVENURBS\_INFO\* -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) `face` [Face](VM.Managed.CAD.Face.md) -`nIndex` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nIndex` uint ### DrawNurbsUsingPointQueryFunction\(\_SURFACENURBS\_INFO\*, Canvas, Face\) @@ -58,9 +59,9 @@ public static void DrawNurbsUsingPointQueryFunction(_SURFACENURBS_INFO* info, Ca #### Parameters -`info` [\_SURFACENURBS\_INFO](VM.DSDL.API.GEOMETRY.\_SURFACENURBS\_INFO.md)\* +`info` \_SURFACENURBS\_INFO\* -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) `face` [Face](VM.Managed.CAD.Face.md) @@ -72,7 +73,7 @@ public static void GetNurbsNormalDirection(_SURFACENURBS_INFO* info, ref VectorB #### Parameters -`info` [\_SURFACENURBS\_INFO](VM.DSDL.API.GEOMETRY.\_SURFACENURBS\_INFO.md)\* +`info` \_SURFACENURBS\_INFO\* `start` [VectorBase](VM.Managed.VectorBase.md) @@ -88,7 +89,7 @@ public static void SetNurbsDrawUtil(INurbsDrawUtil* pNurbsDrawUtil) #### Parameters -`pNurbsDrawUtil` [INurbsDrawUtil](VM.INurbsDrawUtil.md)\* +`pNurbsDrawUtil` INurbsDrawUtil\* The nurbs surface information. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetAreaOfFaceOp.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetAreaOfFaceOp.md index c457be3271..a36862ca0e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetAreaOfFaceOp.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetAreaOfFaceOp.md @@ -1,4 +1,5 @@ -# Class GetAreaOfFaceOp +# Class GetAreaOfFaceOp + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class GetAreaOfFaceOp : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OperationBase](VM.Managed.Operation.OperationBase.md) ← [GetAreaOfFaceOp](VM.Managed.CAD.GetAreaOfFaceOp.md) @@ -105,7 +106,7 @@ public double Area { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### IsHistoryMerge @@ -117,7 +118,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -129,7 +130,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetBodyFacesOp.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetBodyFacesOp.md index e86455eb6f..49c87ebac4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetBodyFacesOp.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetBodyFacesOp.md @@ -1,4 +1,5 @@ -# Class GetBodyFacesOp +# Class GetBodyFacesOp + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class GetBodyFacesOp : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OperationBase](VM.Managed.Operation.OperationBase.md) ← [GetBodyFacesOp](VM.Managed.CAD.GetBodyFacesOp.md) @@ -87,7 +88,7 @@ public GetBodyFacesOp(Body Body, ICollection Colors) `Body` [Body](VM.Managed.CAD.Body.md) -`Colors` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`Colors` ICollection ### GetBodyFacesOp\(Body\) @@ -117,7 +118,7 @@ public List Faces { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Face](VM.Managed.CAD.Face.md)\> + List<[Face](VM.Managed.CAD.Face.md)\> ### IsHistoryMerge @@ -129,7 +130,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -141,7 +142,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetBodyNameAttributeOp.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetBodyNameAttributeOp.md index 6b217e1a4d..1760f2654e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetBodyNameAttributeOp.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetBodyNameAttributeOp.md @@ -1,4 +1,5 @@ -# Class GetBodyNameAttributeOp +# Class GetBodyNameAttributeOp + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class GetBodyNameAttributeOp : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OperationBase](VM.Managed.Operation.OperationBase.md) ← [GetBodyNameAttributeOp](VM.Managed.CAD.GetBodyNameAttributeOp.md) @@ -99,7 +100,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Result @@ -111,7 +112,7 @@ public string Result { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetBoundingBoxOp.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetBoundingBoxOp.md index 543c7121c9..181eea96a0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetBoundingBoxOp.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetBoundingBoxOp.md @@ -1,4 +1,5 @@ -# Class GetBoundingBoxOp +# Class GetBoundingBoxOp + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class GetBoundingBoxOp : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OperationBase](VM.Managed.Operation.OperationBase.md) ← [GetBoundingBoxOp](VM.Managed.CAD.GetBoundingBoxOp.md) @@ -127,7 +128,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Result @@ -139,7 +140,7 @@ public bool Result { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetDefaultMaxPenetrationOp.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetDefaultMaxPenetrationOp.md index c0e2b33b85..b934aea485 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetDefaultMaxPenetrationOp.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetDefaultMaxPenetrationOp.md @@ -1,4 +1,5 @@ -# Class GetDefaultMaxPenetrationOp +# Class GetDefaultMaxPenetrationOp + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class GetDefaultMaxPenetrationOp : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OperationBase](VM.Managed.Operation.OperationBase.md) ← [GetDefaultMaxPenetrationOp](VM.Managed.CAD.GetDefaultMaxPenetrationOp.md) @@ -105,7 +106,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MaxPenetration @@ -117,7 +118,7 @@ public double MaxPenetration { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Name @@ -129,7 +130,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Result @@ -141,7 +142,7 @@ public bool Result { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetFacetInformationForFaceOp.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetFacetInformationForFaceOp.md index 06ae104a1b..52c78a221f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetFacetInformationForFaceOp.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetFacetInformationForFaceOp.md @@ -1,4 +1,5 @@ -# Class GetFacetInformationForFaceOp +# Class GetFacetInformationForFaceOp + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class GetFacetInformationForFaceOp : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OperationBase](VM.Managed.Operation.OperationBase.md) ← [GetFacetInformationForFaceOp](VM.Managed.CAD.GetFacetInformationForFaceOp.md) @@ -87,7 +88,7 @@ public GetFacetInformationForFaceOp(Face face, FacetOption options) `face` [Face](VM.Managed.CAD.Face.md) -`options` FacetOption +`options` [FacetOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/FacetOption.cs) ## Properties @@ -101,7 +102,7 @@ public int[] Connectivities { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] + int\[\] ### IsHistoryMerge @@ -113,7 +114,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -125,7 +126,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Points diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetLengthOfEdgeOp.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetLengthOfEdgeOp.md index 34deb17fcc..f3c28fe835 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetLengthOfEdgeOp.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetLengthOfEdgeOp.md @@ -1,4 +1,5 @@ -# Class GetLengthOfEdgeOp +# Class GetLengthOfEdgeOp + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class GetLengthOfEdgeOp : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OperationBase](VM.Managed.Operation.OperationBase.md) ← [GetLengthOfEdgeOp](VM.Managed.CAD.GetLengthOfEdgeOp.md) @@ -105,7 +106,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Length @@ -117,7 +118,7 @@ public double Length { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Name @@ -129,7 +130,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetManyTopologyColorOp.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetManyTopologyColorOp.md index 303c069fda..1477e52d46 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetManyTopologyColorOp.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetManyTopologyColorOp.md @@ -1,4 +1,5 @@ -# Class GetManyTopologyColorOp +# Class GetManyTopologyColorOp + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class GetManyTopologyColorOp : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OperationBase](VM.Managed.Operation.OperationBase.md) ← [GetManyTopologyColorOp](VM.Managed.CAD.GetManyTopologyColorOp.md) @@ -85,7 +86,7 @@ public GetManyTopologyColorOp(IEnumerable topologies) #### Parameters -`topologies` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Topology](VM.Managed.CAD.Topology.md)\> +`topologies` IEnumerable<[Topology](VM.Managed.CAD.Topology.md)\> ## Properties @@ -99,7 +100,7 @@ public Dictionary Colors { get; } #### Property Value - [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr), [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)\> + Dictionary ### IsHistoryMerge @@ -111,7 +112,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -123,7 +124,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Result @@ -135,7 +136,7 @@ public bool Result { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetPiecewiseCurveOp.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetPiecewiseCurveOp.md index eeb5bd05ab..39ddc53aaf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetPiecewiseCurveOp.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetPiecewiseCurveOp.md @@ -1,4 +1,5 @@ -# Class GetPiecewiseCurveOp +# Class GetPiecewiseCurveOp + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class GetPiecewiseCurveOp : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OperationBase](VM.Managed.Operation.OperationBase.md) ← [GetPiecewiseCurveOp](VM.Managed.CAD.GetPiecewiseCurveOp.md) @@ -85,15 +86,15 @@ public GetPiecewiseCurveOp(List lstEdges, double dTol, double dLen, double #### Parameters -`lstEdges` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Edge](VM.Managed.CAD.Edge.md)\> +`lstEdges` List<[Edge](VM.Managed.CAD.Edge.md)\> -`dTol` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTol` double -`dLen` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLen` double -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double -`bCloseLoop` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bCloseLoop` bool ### GetPiecewiseCurveOp\(\) @@ -113,7 +114,7 @@ public bool IsCloseLoop { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -125,7 +126,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Result @@ -137,7 +138,7 @@ public List Result { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[VectorBase](VM.Managed.VectorBase.md)\> + List<[VectorBase](VM.Managed.VectorBase.md)\> ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetPointAndDirectionFromFacetOp.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetPointAndDirectionFromFacetOp.md index 6b97338e66..b1dedd2000 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetPointAndDirectionFromFacetOp.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetPointAndDirectionFromFacetOp.md @@ -1,4 +1,5 @@ -# Class GetPointAndDirectionFromFacetOp +# Class GetPointAndDirectionFromFacetOp + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class GetPointAndDirectionFromFacetOp : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OperationBase](VM.Managed.Operation.OperationBase.md) ← [GetPointAndDirectionFromFacetOp](VM.Managed.CAD.GetPointAndDirectionFromFacetOp.md) @@ -87,7 +88,7 @@ public GetPointAndDirectionFromFacetOp(Face face, FacetOption options, VectorBas `face` [Face](VM.Managed.CAD.Face.md) -`options` FacetOption +`options` [FacetOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/FacetOption.cs) `vecPoint` [VectorBase](VM.Managed.VectorBase.md) @@ -117,7 +118,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Point @@ -141,7 +142,7 @@ public bool Result { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetTopologyColorOp.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetTopologyColorOp.md index 5885ff413c..a07e276ff5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetTopologyColorOp.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetTopologyColorOp.md @@ -1,4 +1,5 @@ -# Class GetTopologyColorOp +# Class GetTopologyColorOp + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class GetTopologyColorOp : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OperationBase](VM.Managed.Operation.OperationBase.md) ← [GetTopologyColorOp](VM.Managed.CAD.GetTopologyColorOp.md) @@ -105,7 +106,7 @@ public Color Color { get; } #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### IsHistoryMerge @@ -117,7 +118,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -129,7 +130,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Result @@ -141,7 +142,7 @@ public bool Result { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetVoidCountOp.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetVoidCountOp.md index 9f383058bf..797d624894 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetVoidCountOp.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetVoidCountOp.md @@ -1,4 +1,5 @@ -# Class GetVoidCountOp +# Class GetVoidCountOp + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class GetVoidCountOp : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OperationBase](VM.Managed.Operation.OperationBase.md) ← [GetVoidCountOp](VM.Managed.CAD.GetVoidCountOp.md) @@ -105,7 +106,7 @@ public int Count { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### IsHistoryMerge @@ -117,7 +118,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -129,7 +130,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetVoidPointsOp.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetVoidPointsOp.md index 86214ebeef..cf6d46a854 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetVoidPointsOp.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.GetVoidPointsOp.md @@ -1,4 +1,5 @@ -# Class GetVoidPointsOp +# Class GetVoidPointsOp + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class GetVoidPointsOp : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OperationBase](VM.Managed.Operation.OperationBase.md) ← [GetVoidPointsOp](VM.Managed.CAD.GetVoidPointsOp.md) @@ -87,7 +88,7 @@ public GetVoidPointsOp(Body body, double[] ardScale) `body` [Body](VM.Managed.CAD.Body.md) -`ardScale` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ardScale` double\[\] ### GetVoidPointsOp\(\) @@ -107,7 +108,7 @@ public int Count { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### IsHistoryMerge @@ -119,7 +120,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -131,7 +132,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Points diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.History.BodyColorEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.History.BodyColorEvent.md index 013c919bef..009e3dcfc9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.History.BodyColorEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.History.BodyColorEvent.md @@ -1,4 +1,5 @@ -# Class BodyColorEvent +# Class BodyColorEvent + Namespace: [VM.Managed.CAD.History](VM.Managed.CAD.History.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public class BodyColorEvent : BodyEventBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [BodyEventBase](VM.Managed.CAD.History.BodyEventBase.md) ← [BodyColorEvent](VM.Managed.CAD.History.BodyColorEvent.md) @@ -20,17 +21,17 @@ HistoryEvent ← [BodyEventBase.m\_keyBody](VM.Managed.CAD.History.BodyEventBase.md\#VM\_Managed\_CAD\_History\_BodyEventBase\_m\_keyBody), [BodyEventBase.Clear\(bool\)](VM.Managed.CAD.History.BodyEventBase.md\#VM\_Managed\_CAD\_History\_BodyEventBase\_Clear\_System\_Boolean\_), -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -48,7 +49,7 @@ public BodyColorEvent(object obOriginal) #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object ## Methods @@ -60,7 +61,7 @@ protected virtual Color GetColor() #### Returns - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### Redo\(HistoryEventArgs\) @@ -70,7 +71,7 @@ public override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### ReplaceColor\(Color\) @@ -80,7 +81,7 @@ protected virtual void ReplaceColor(Color color) #### Parameters -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) +`color` Color ### Undo\(HistoryEventArgs\) @@ -90,5 +91,5 @@ public override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.History.BodyEventBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.History.BodyEventBase.md index 4771456f2f..9343fb3f5d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.History.BodyEventBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.History.BodyEventBase.md @@ -1,4 +1,5 @@ -# Class BodyEventBase +# Class BodyEventBase + Namespace: [VM.Managed.CAD.History](VM.Managed.CAD.History.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public abstract class BodyEventBase : HistoryEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [BodyEventBase](VM.Managed.CAD.History.BodyEventBase.md) #### Derived @@ -23,17 +24,17 @@ HistoryEvent ← #### Inherited Members -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -51,7 +52,7 @@ public BodyEventBase(object obOriginal) #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object ## Fields @@ -63,7 +64,7 @@ protected UIntPtr m_keyBody #### Field Value - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ## Methods @@ -75,5 +76,5 @@ public override void Clear(bool bReserveReferenceCount) #### Parameters -`bReserveReferenceCount` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReserveReferenceCount` bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.History.BodyNameAttributeEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.History.BodyNameAttributeEvent.md index 2dcd89a587..2766cae072 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.History.BodyNameAttributeEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.History.BodyNameAttributeEvent.md @@ -1,4 +1,5 @@ -# Class BodyNameAttributeEvent +# Class BodyNameAttributeEvent + Namespace: [VM.Managed.CAD.History](VM.Managed.CAD.History.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public class BodyNameAttributeEvent : BodyEventBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [BodyEventBase](VM.Managed.CAD.History.BodyEventBase.md) ← [BodyNameAttributeEvent](VM.Managed.CAD.History.BodyNameAttributeEvent.md) @@ -20,17 +21,17 @@ HistoryEvent ← [BodyEventBase.m\_keyBody](VM.Managed.CAD.History.BodyEventBase.md\#VM\_Managed\_CAD\_History\_BodyEventBase\_m\_keyBody), [BodyEventBase.Clear\(bool\)](VM.Managed.CAD.History.BodyEventBase.md\#VM\_Managed\_CAD\_History\_BodyEventBase\_Clear\_System\_Boolean\_), -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -48,9 +49,9 @@ public BodyNameAttributeEvent(object obOriginal, string strOldName) #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object -`strOldName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOldName` string ## Methods @@ -62,7 +63,7 @@ protected virtual string GetNameAttribute() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Redo\(HistoryEventArgs\) @@ -72,7 +73,7 @@ public override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### ReplaceNameAttribute\(string\) @@ -82,7 +83,7 @@ protected virtual void ReplaceNameAttribute(string strNameAttr) #### Parameters -`strNameAttr` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strNameAttr` string ### Undo\(HistoryEventArgs\) @@ -92,5 +93,5 @@ public override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.History.BodyTransparencyEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.History.BodyTransparencyEvent.md index 8fe963c712..3748c5012d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.History.BodyTransparencyEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.History.BodyTransparencyEvent.md @@ -1,4 +1,5 @@ -# Class BodyTransparencyEvent +# Class BodyTransparencyEvent + Namespace: [VM.Managed.CAD.History](VM.Managed.CAD.History.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public class BodyTransparencyEvent : BodyEventBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [BodyEventBase](VM.Managed.CAD.History.BodyEventBase.md) ← [BodyTransparencyEvent](VM.Managed.CAD.History.BodyTransparencyEvent.md) @@ -20,17 +21,17 @@ HistoryEvent ← [BodyEventBase.m\_keyBody](VM.Managed.CAD.History.BodyEventBase.md\#VM\_Managed\_CAD\_History\_BodyEventBase\_m\_keyBody), [BodyEventBase.Clear\(bool\)](VM.Managed.CAD.History.BodyEventBase.md\#VM\_Managed\_CAD\_History\_BodyEventBase\_Clear\_System\_Boolean\_), -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -48,9 +49,9 @@ public BodyTransparencyEvent(object obOriginal, double dTransparency) #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object -`dTransparency` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTransparency` double ## Methods @@ -62,7 +63,7 @@ protected virtual double GetTransparency() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Redo\(HistoryEventArgs\) @@ -72,7 +73,7 @@ public override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### ReplaceTransparency\(double\) @@ -82,7 +83,7 @@ protected virtual void ReplaceTransparency(double dTransparency) #### Parameters -`dTransparency` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTransparency` double ### Undo\(HistoryEventArgs\) @@ -92,5 +93,5 @@ public override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.History.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.History.md index 402c3e8ff0..0c6bf5ddcd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.History.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.History.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.CAD.History +# Namespace VM.Managed.CAD.History + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.IGeometryContainer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.IGeometryContainer.md index c616337a31..dc21761e10 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.IGeometryContainer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.IGeometryContainer.md @@ -1,4 +1,5 @@ -# Interface IGeometryContainer +# Interface IGeometryContainer + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -25,7 +26,7 @@ void GetGeometries(IList lstObj) #### Parameters -`lstObj` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[ObjectBase](VM.Managed.ObjectBase.md)\> +`lstObj` IList<[ObjectBase](VM.Managed.ObjectBase.md)\> ### IsContain\(UIntPtr\) @@ -37,13 +38,13 @@ bool IsContain(UIntPtr geom_key) #### Parameters -`geom_key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`geom_key` UIntPtr The body key. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the specified geom_key is contain; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.IGeometryGear.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.IGeometryGear.md index 4c0de0a8f0..64b3a7da68 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.IGeometryGear.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.IGeometryGear.md @@ -1,4 +1,5 @@ -# Interface IGeometryGear +# Interface IGeometryGear + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.ImportBuilderEventCore.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.ImportBuilderEventCore.md index 67bdf11d5b..428e58e88e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.ImportBuilderEventCore.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.ImportBuilderEventCore.md @@ -1,4 +1,5 @@ -# Class ImportBuilderEventCore +# Class ImportBuilderEventCore + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class ImportBuilderEventCore : ObjectEventCore, IObject, ILinkContainer, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ObjectEventCore](VM.Managed.ObjectEventCore.md) ← [ImportBuilderEventCore](VM.Managed.CAD.ImportBuilderEventCore.md) @@ -23,7 +24,7 @@ IOwned, IHasID, IEventProvider, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), -IHistoryObjectSerializableDelegate +[IHistoryObjectSerializableDelegate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs) #### Inherited Members @@ -86,11 +87,11 @@ protected ImportBuilderEventCore(SerializationInfo info, StreamingContext contex #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. @@ -105,7 +106,7 @@ protected override void Dispose(bool A_0) #### Parameters -`A_0` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`A_0` bool ### GetObjectDataImpl\(SerializationInfo, StreamingContext\) @@ -117,11 +118,11 @@ protected override void GetObjectDataImpl(SerializationInfo info, StreamingConte #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Kernel.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Kernel.md index 5f35424ddd..55d3a15579 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Kernel.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Kernel.md @@ -1,4 +1,5 @@ -# Class Kernel +# Class Kernel + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public abstract class Kernel #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Kernel](VM.Managed.CAD.Kernel.md) #### Extension Methods @@ -32,7 +33,7 @@ protected Kernel(IKernel* pKernel) #### Parameters -`pKernel` [IKernel](VM.CAD.IKernel.md)\* +`pKernel` IKernel\* The kernal interface @@ -48,7 +49,7 @@ public bool IsLoading { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Key @@ -58,7 +59,7 @@ public UIntPtr Key { get; } #### Property Value - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ## Methods @@ -87,7 +88,7 @@ protected virtual void Dispose(bool A_0) #### Parameters -`A_0` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`A_0` bool ### Dispose\(\) @@ -107,7 +108,7 @@ public static bool DoingSession() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ExecuteOperation\(string, string, Document3D, ref string\) @@ -117,17 +118,17 @@ public bool ExecuteOperation(string strType, string strArgument, Document3D doc, #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string -`strArgument` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strArgument` string `doc` [Document3D](VM.Managed.Document3D.md) -`strResult` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strResult` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### \~Kernel\(\) @@ -152,7 +153,7 @@ public void SetIgnoreThreadID(bool bIgnore) #### Parameters -`bIgnore` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bIgnore` bool ### Terminate\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.KernelExeption.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.KernelExeption.md index 30f24d59eb..8fedeb7aa3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.KernelExeption.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.KernelExeption.md @@ -1,4 +1,5 @@ -# Class KernelExeption +# Class KernelExeption + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public class KernelExeption : Exception #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Exception](https://learn.microsoft.com/dotnet/api/system.exception) ← +object ← +Exception ← [KernelExeption](VM.Managed.CAD.KernelExeption.md) #### Extension Methods @@ -33,7 +34,7 @@ public KernelExeption(Exception innerException) #### Parameters -`innerException` [Exception](https://learn.microsoft.com/dotnet/api/system.exception) +`innerException` Exception The inner exception. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.ReDrawForHistoryOp.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.ReDrawForHistoryOp.md new file mode 100644 index 0000000000..2a82d17fe1 --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.ReDrawForHistoryOp.md @@ -0,0 +1,114 @@ +# Class ReDrawForHistoryOp + + +Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) +Assembly: VMAppCore.dll + +This class is to represent the [Get Body Name Attribute] Operation. + +```csharp +public class ReDrawForHistoryOp : OperationBase, IOperation +``` + +#### Inheritance + +object ← +[OperationBase](VM.Managed.Operation.OperationBase.md) ← +[ReDrawForHistoryOp](VM.Managed.CAD.ReDrawForHistoryOp.md) + +#### Implements + +IOperation + +#### Inherited Members + +[OperationBase.g\_bRedrawKernel](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_g\_bRedrawKernel), +[OperationBase.g\_bVerify](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_g\_bVerify), +[OperationBase.g\_bSkipAddEvent](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_g\_bSkipAddEvent), +[OperationBase.g\_bDupicateMsg](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_g\_bDupicateMsg), +[OperationBase.m\_bIsHistoryMerge](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_m\_bIsHistoryMerge), +[OperationBase.Execute\(\)](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_Execute), +[OperationBase.PostExecute\(\)](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_PostExecute), +[OperationBase.GetInformation\(XmlWriter\)](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_GetInformation\_System\_Xml\_XmlWriter\_), +[OperationBase.Create\(string, View, object\)](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_Create\_System\_String\_VM\_Managed\_View\_System\_Object\_), +[OperationBase.Create\(string, IDocument, object\)](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_Create\_System\_String\_VM\_Models\_Pre\_IDocument\_System\_Object\_), +[OperationBase.Create\(string, object\)](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_Create\_System\_String\_System\_Object\_), +[OperationBase.Create\(string\)](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_Create\_System\_String\_), +[OperationBase.StartSession\(\)](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_StartSession), +[OperationBase.StartSession\(OperationBase, OperationBase.PostOperation\)](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_StartSession\_VM\_Managed\_Operation\_OperationBase\_VM\_Managed\_Operation\_OperationBase\_PostOperation\_), +[OperationBase.StartSession\(OperationBase\)](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_StartSession\_VM\_Managed\_Operation\_OperationBase\_), +[OperationBase.StartSessionAndWait\(\)](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_StartSessionAndWait), +[OperationBase.StartSessionAndWait\(OperationBase, OperationBase.PostOperation\)](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_StartSessionAndWait\_VM\_Managed\_Operation\_OperationBase\_VM\_Managed\_Operation\_OperationBase\_PostOperation\_), +[OperationBase.StartSessionAndWait\(OperationBase\)](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_StartSessionAndWait\_VM\_Managed\_Operation\_OperationBase\_), +[OperationBase.Initialize\(OperationBase.ShowVerifyResult\)](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_Initialize\_VM\_Managed\_Operation\_OperationBase\_ShowVerifyResult\_), +[OperationBase.RecordJournal\(OperationBase\)](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_RecordJournal\_VM\_Managed\_Operation\_OperationBase\_), +[OperationBase.UseSession\(string\)](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_UseSession\_System\_String\_), +[OperationBase.raise\_OnOperationStatusChanged\(object, OperationStatusEventArgs\)](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_raise\_OnOperationStatusChanged\_System\_Object\_VM\_Managed\_Operation\_OperationStatusEventArgs\_), +[OperationBase.raise\_OnEndOperation\(object, EventArgs\)](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_raise\_OnEndOperation\_System\_Object\_System\_EventArgs\_), +[OperationBase.ClearCurrentMark\(string\)](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_ClearCurrentMark\_System\_String\_), +[OperationBase.ClearCurrentMark\(IDocument\)](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_ClearCurrentMark\_VM\_Models\_Pre\_IDocument\_), +[OperationBase.ClearCurrentMark\(\)](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_ClearCurrentMark), +[OperationBase.GlobalOverride](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_GlobalOverride), +[OperationBase.IsDoingThread](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_IsDoingThread), +[OperationBase.ExecuteMacro](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_ExecuteMacro), +[OperationBase.SimStatus](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_SimStatus), +[OperationBase.Status](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_Status), +[OperationBase.autoEvents](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_autoEvents), +[OperationBase.IsHistoryMerge](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_IsHistoryMerge), +[OperationBase.SkipClearTemporaryLinkContainer](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_SkipClearTemporaryLinkContainer), +[OperationBase.PostExecuteClearTemporaryLinkContainer](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_PostExecuteClearTemporaryLinkContainer), +[OperationBase.SkipEndOperation](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_SkipEndOperation), +[OperationBase.UseMacro](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_UseMacro), +[OperationBase.MarkStatus](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_MarkStatus), +[OperationBase.UseThread](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_UseThread), +[OperationBase.Name](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_Name), +[OperationBase.ExecutableOnHold](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_ExecutableOnHold), +[OperationBase.Override](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_Override), +[OperationBase.Parameter](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_Parameter), +[OperationBase.View](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_View), +[OperationBase.Document](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_Document), +[OperationBase.OnEndOperation](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_OnEndOperation), +[OperationBase.OnOperationStatusChanged](VM.Managed.Operation.OperationBase.md\#VM\_Managed\_Operation\_OperationBase\_OnOperationStatusChanged) + +#### Extension Methods + +[LinkPropertyItemCache.GetLinkProperties\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkProperties\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkPropertiesAndValues\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkPropertiesAndValues\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkedObjects\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkedObjects\_\_1\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_) + +## Constructors + +### ReDrawForHistoryOp\(IDrawIcon\) + +```csharp +public ReDrawForHistoryOp(IDrawIcon itfDrawIcon) +``` + +#### Parameters + +`itfDrawIcon` [IDrawIcon](VM.Managed.Render.IDrawIcon.md) + +## Properties + +### Name + +Gets the name. + +```csharp +public override string Name { get; } +``` + +#### Property Value + + string + +## Methods + +### Execute\(\) + +Executes this instance. + +```csharp +public override void Execute() +``` + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.ReferenceBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.ReferenceBody.md index b8f992870f..26a93bc3eb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.ReferenceBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.ReferenceBody.md @@ -1,4 +1,5 @@ -# Class ReferenceBody +# Class ReferenceBody + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class ReferenceBody : Reference, IObservableObject, IDisposableObject, IL #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Reference](VM.Managed.Reference.md) ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), [IAttributeContainer](VM.Managed.IAttributeContainer.md), [INamed](VM.Managed.INamed.md), [INavigatorItem](VM.Managed.INavigatorItem.md), @@ -162,7 +163,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -207,11 +208,11 @@ protected ReferenceBody(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo Serialization info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext context. @@ -241,7 +242,7 @@ public override bool IsAutoContactable() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the specified auto contactable; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.RemoveDuplicatedEventOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.RemoveDuplicatedEventOperation.md index 98081c5cc9..94ad4b73d0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.RemoveDuplicatedEventOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.RemoveDuplicatedEventOperation.md @@ -1,4 +1,5 @@ -# Class RemoveDuplicatedEventOperation +# Class RemoveDuplicatedEventOperation + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class RemoveDuplicatedEventOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OperationBase](VM.Managed.Operation.OperationBase.md) ← [RemoveDuplicatedEventOperation](VM.Managed.CAD.RemoveDuplicatedEventOperation.md) @@ -99,7 +100,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -111,7 +112,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BodyRoller.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BodyRoller.md index 05c431970d..24867c3a5e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BodyRoller.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BodyRoller.md @@ -1,4 +1,5 @@ -# Class BodyRoller +# Class BodyRoller + Namespace: [VM.Managed.CAD.Roller](VM.Managed.CAD.Roller.md) Assembly: VMDRoller.dll @@ -11,9 +12,9 @@ public class BodyRoller : Body, IObservableObject, IDisposableObject, ILinkable, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Body ← @@ -30,7 +31,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, ITransformable, @@ -269,7 +270,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -322,11 +323,11 @@ public override bool CheckValidationAboutBuild(string strXml) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetFaceList\_Flange\(\) @@ -338,7 +339,7 @@ public List GetFaceList_Flange() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List The list of face @@ -352,7 +353,7 @@ public List GetFaceList_Tread() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List The list of face @@ -366,7 +367,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The obj notifier. @@ -384,7 +385,7 @@ public BodyRoller ReGenerateBodyInformation(XmlDocument dom) #### Parameters -`dom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`dom` XmlDocument The data xml of roller @@ -404,7 +405,7 @@ protected override void RebuildGeometry(object objBuilder, LinkEventArgs args) #### Parameters -`objBuilder` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objBuilder` object The builder. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerBase.md index 4f24cc38ed..e19b1993e3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerBase.md @@ -1,4 +1,5 @@ -# Class BuilderRollerBase +# Class BuilderRollerBase + Namespace: [VM.Managed.CAD.Roller](VM.Managed.CAD.Roller.md) Assembly: VMDRoller.dll @@ -6,14 +7,14 @@ Assembly: VMDRoller.dll The abstract base class of roller builder ```csharp -public abstract class BuilderRollerBase : BuilderHasTransform, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public abstract class BuilderRollerBase : BuilderHasTransform, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -41,8 +42,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, -IAttributeContainer +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +IAttributeContainer, +IHasReplaceableEntity #### Inherited Members @@ -78,6 +80,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -181,7 +185,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -249,7 +253,7 @@ public bool ApplyToFileProperty { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Transform @@ -273,7 +277,7 @@ public override bool Uneditable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -285,7 +289,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamBase\) @@ -295,7 +299,7 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### SetApplyToFileProperty\(bool\) @@ -307,7 +311,7 @@ public void SetApplyToFileProperty(bool bApply) #### Parameters -`bApply` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bApply` bool The [apply to file property]. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerCenterFlangeSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerCenterFlangeSimple.md index fa66665e13..ea6cd56ff4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerCenterFlangeSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerCenterFlangeSimple.md @@ -1,4 +1,5 @@ -# Class BuilderRollerCenterFlangeSimple +# Class BuilderRollerCenterFlangeSimple + Namespace: [VM.Managed.CAD.Roller](VM.Managed.CAD.Roller.md) Assembly: VMDRoller.dll @@ -6,14 +7,14 @@ Assembly: VMDRoller.dll The center flange roller builder class. ```csharp -public class BuilderRollerCenterFlangeSimple : BuilderRollerFlange, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public class BuilderRollerCenterFlangeSimple : BuilderRollerFlange, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -40,8 +41,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, -IAttributeContainer +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +IAttributeContainer, +IHasReplaceableEntity #### Inherited Members @@ -111,6 +113,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -214,7 +218,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -255,7 +259,7 @@ public ExpressionValueVariable CenterFlangeDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### CenterFlangeWidth @@ -267,7 +271,7 @@ public ExpressionValueVariable CenterFlangeWidth { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RollerType @@ -289,7 +293,7 @@ public override string TypeOfBuilder { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -309,7 +313,7 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### Initialize\(ConvertFactor\) @@ -335,7 +339,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The obj notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerDoubleFlangeSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerDoubleFlangeSimple.md index 5bffa9f7f6..de91f302df 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerDoubleFlangeSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerDoubleFlangeSimple.md @@ -1,4 +1,5 @@ -# Class BuilderRollerDoubleFlangeSimple +# Class BuilderRollerDoubleFlangeSimple + Namespace: [VM.Managed.CAD.Roller](VM.Managed.CAD.Roller.md) Assembly: VMDRoller.dll @@ -6,14 +7,14 @@ Assembly: VMDRoller.dll The double flange roller builder class. ```csharp -public class BuilderRollerDoubleFlangeSimple : BuilderRollerFlange, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public class BuilderRollerDoubleFlangeSimple : BuilderRollerFlange, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -40,8 +41,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, -IAttributeContainer +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +IAttributeContainer, +IHasReplaceableEntity #### Inherited Members @@ -111,6 +113,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -214,7 +218,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -255,7 +259,7 @@ public ExpressionValueVariable InnerFlangeDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### InnerFlangeWidth @@ -267,7 +271,7 @@ public ExpressionValueVariable InnerFlangeWidth { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### OuterFlangeDiameter @@ -279,7 +283,7 @@ public ExpressionValueVariable OuterFlangeDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### OuterFlangeWidth @@ -291,7 +295,7 @@ public ExpressionValueVariable OuterFlangeWidth { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RollerType @@ -313,7 +317,7 @@ public override string TypeOfBuilder { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -333,7 +337,7 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### Initialize\(ConvertFactor\) @@ -359,7 +363,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The obj notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerFlange.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerFlange.md index eb836de5b5..ec6237e56c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerFlange.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerFlange.md @@ -1,4 +1,5 @@ -# Class BuilderRollerFlange +# Class BuilderRollerFlange + Namespace: [VM.Managed.CAD.Roller](VM.Managed.CAD.Roller.md) Assembly: VMDRoller.dll @@ -6,14 +7,14 @@ Assembly: VMDRoller.dll The base builder class of flange roller. ```csharp -public abstract class BuilderRollerFlange : BuilderRollerShaft, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public abstract class BuilderRollerFlange : BuilderRollerShaft, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -45,8 +46,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, -IAttributeContainer +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +IAttributeContainer, +IHasReplaceableEntity #### Inherited Members @@ -108,6 +110,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -211,7 +215,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -278,7 +282,7 @@ public ExpressionValueVariable FlangeAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### FlangeDistance @@ -327,7 +331,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The obj notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerFlatSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerFlatSimple.md index ca53593693..2a550b5e17 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerFlatSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerFlatSimple.md @@ -1,4 +1,5 @@ -# Class BuilderRollerFlatSimple +# Class BuilderRollerFlatSimple + Namespace: [VM.Managed.CAD.Roller](VM.Managed.CAD.Roller.md) Assembly: VMDRoller.dll @@ -6,14 +7,14 @@ Assembly: VMDRoller.dll The flat roller builder class ```csharp -public class BuilderRollerFlatSimple : BuilderRollerTread, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public class BuilderRollerFlatSimple : BuilderRollerTread, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -38,8 +39,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, -IAttributeContainer +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +IAttributeContainer, +IHasReplaceableEntity #### Inherited Members @@ -88,6 +90,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -191,7 +195,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -242,7 +246,7 @@ public override string TypeOfBuilder { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -262,7 +266,7 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### Initialize\(ConvertFactor\) @@ -288,7 +292,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The obj notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerGeneralSimple.RollerWidthDiameter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerGeneralSimple.RollerWidthDiameter.md index 24d565a860..09636d02e1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerGeneralSimple.RollerWidthDiameter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerGeneralSimple.RollerWidthDiameter.md @@ -1,4 +1,5 @@ -# Struct BuilderRollerGeneralSimple.RollerWidthDiameter +# Struct BuilderRollerGeneralSimple.RollerWidthDiameter + Namespace: [VM.Managed.CAD.Roller](VM.Managed.CAD.Roller.md) Assembly: VMDRoller.dll @@ -21,11 +22,11 @@ public RollerWidthDiameter(double dWidth, double dDiameter) #### Parameters -`dWidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dWidth` double the width of roller -`dDiameter` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDiameter` double the diameter of roller @@ -41,7 +42,7 @@ public double m_dDiameter #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_dWidth @@ -53,5 +54,5 @@ public double m_dWidth #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerGeneralSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerGeneralSimple.md index d1e36ab874..d882a3263a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerGeneralSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerGeneralSimple.md @@ -1,4 +1,5 @@ -# Class BuilderRollerGeneralSimple +# Class BuilderRollerGeneralSimple + Namespace: [VM.Managed.CAD.Roller](VM.Managed.CAD.Roller.md) Assembly: VMDRoller.dll @@ -6,14 +7,14 @@ Assembly: VMDRoller.dll The general roller builder class. ```csharp -public class BuilderRollerGeneralSimple : BuilderRollerBase, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public class BuilderRollerGeneralSimple : BuilderRollerBase, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -37,8 +38,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, -IAttributeContainer +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +IAttributeContainer, +IHasReplaceableEntity #### Inherited Members @@ -83,6 +85,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -186,7 +190,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -227,7 +231,7 @@ protected List lstBottom #### Field Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### lstRadius @@ -239,7 +243,7 @@ protected List lstRadius #### Field Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> + List ### lstTop @@ -251,7 +255,7 @@ protected List lstTop #### Field Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ## Properties @@ -275,7 +279,7 @@ public List Rollers { get; set; #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[BuilderRollerGeneralSimple](VM.Managed.CAD.Roller.BuilderRollerGeneralSimple.md).[RollerWidthDiameter](VM.Managed.CAD.Roller.BuilderRollerGeneralSimple.RollerWidthDiameter.md)\> + List<[BuilderRollerGeneralSimple](VM.Managed.CAD.Roller.BuilderRollerGeneralSimple.md).[RollerWidthDiameter](VM.Managed.CAD.Roller.BuilderRollerGeneralSimple.RollerWidthDiameter.md)\> ### TypeOfBuilder @@ -285,7 +289,7 @@ public override string TypeOfBuilder { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -305,7 +309,7 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### GetGeneralRollerInfo\(List, List\) @@ -315,9 +319,9 @@ public void GetGeneralRollerInfo(List lstWidth, List lstDiameter #### Parameters -`lstWidth` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> +`lstWidth` List -`lstDiameter` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> +`lstDiameter` List ### SetGeneralRollerInfo\(List, List\) @@ -327,7 +331,7 @@ public void SetGeneralRollerInfo(List lstWidth, List lstDiameter #### Parameters -`lstWidth` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> +`lstWidth` List -`lstDiameter` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> +`lstDiameter` List diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerShaft.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerShaft.md index 295f63a778..75fb683211 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerShaft.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerShaft.md @@ -1,4 +1,5 @@ -# Class BuilderRollerShaft +# Class BuilderRollerShaft + Namespace: [VM.Managed.CAD.Roller](VM.Managed.CAD.Roller.md) Assembly: VMDRoller.dll @@ -6,14 +7,14 @@ Assembly: VMDRoller.dll The abstract class of roller builder ```csharp -public abstract class BuilderRollerShaft : BuilderRollerTread, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public abstract class BuilderRollerShaft : BuilderRollerTread, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -42,8 +43,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, -IAttributeContainer +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +IAttributeContainer, +IHasReplaceableEntity #### Inherited Members @@ -92,6 +94,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -195,7 +199,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -236,7 +240,7 @@ protected List lstBottom #### Field Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### lstPosition @@ -248,7 +252,7 @@ protected List lstPosition #### Field Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### lstRadius @@ -260,7 +264,7 @@ protected List lstRadius #### Field Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> + List ### lstTop @@ -272,7 +276,7 @@ protected List lstTop #### Field Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### m\_bCreateShaft @@ -284,7 +288,7 @@ protected bool m_bCreateShaft #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_enShaftType @@ -310,7 +314,7 @@ public bool CreateShaft { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ShaftDiameter @@ -322,7 +326,7 @@ public ExpressionValueVariable ShaftDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ShaftType @@ -346,7 +350,7 @@ public ExpressionValueVariable ShaftWidth { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -382,7 +386,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The obj notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerSingleFlangeSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerSingleFlangeSimple.md index d39bd22ebd..c3817a9c13 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerSingleFlangeSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerSingleFlangeSimple.md @@ -1,4 +1,5 @@ -# Class BuilderRollerSingleFlangeSimple +# Class BuilderRollerSingleFlangeSimple + Namespace: [VM.Managed.CAD.Roller](VM.Managed.CAD.Roller.md) Assembly: VMDRoller.dll @@ -6,14 +7,14 @@ Assembly: VMDRoller.dll The single flange roller builder class. ```csharp -public class BuilderRollerSingleFlangeSimple : BuilderRollerFlange, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public class BuilderRollerSingleFlangeSimple : BuilderRollerFlange, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -40,8 +41,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, -IAttributeContainer +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +IAttributeContainer, +IHasReplaceableEntity #### Inherited Members @@ -111,6 +113,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -214,7 +218,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -267,7 +271,7 @@ public ExpressionValueVariable SideFlangeDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### SideFlangeWidth @@ -279,7 +283,7 @@ public ExpressionValueVariable SideFlangeWidth { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TypeOfBuilder @@ -289,7 +293,7 @@ public override string TypeOfBuilder { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -309,7 +313,7 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### Initialize\(ConvertFactor\) @@ -335,7 +339,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The obj notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerTread.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerTread.md index 7bbd6179fd..8cbfec06d5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerTread.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.BuilderRollerTread.md @@ -1,4 +1,5 @@ -# Class BuilderRollerTread +# Class BuilderRollerTread + Namespace: [VM.Managed.CAD.Roller](VM.Managed.CAD.Roller.md) Assembly: VMDRoller.dll @@ -6,14 +7,14 @@ Assembly: VMDRoller.dll The abstract class of roller builder ```csharp -public abstract class BuilderRollerTread : BuilderRollerBase, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public abstract class BuilderRollerTread : BuilderRollerBase, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -42,8 +43,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, -IAttributeContainer +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +IAttributeContainer, +IHasReplaceableEntity #### Inherited Members @@ -88,6 +90,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -191,7 +195,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -266,7 +270,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The obj notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.ReGenerateRollerOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.ReGenerateRollerOperation.md index 39238c419c..522950d4e4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.ReGenerateRollerOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.ReGenerateRollerOperation.md @@ -1,4 +1,5 @@ -# Class ReGenerateRollerOperation +# Class ReGenerateRollerOperation + Namespace: [VM.Managed.CAD.Roller](VM.Managed.CAD.Roller.md) Assembly: VMDRoller.dll @@ -11,7 +12,7 @@ public class ReGenerateRollerOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ReGenerateRollerOperation](VM.Managed.CAD.Roller.ReGenerateRollerOperation.md) @@ -87,7 +88,7 @@ public ReGenerateRollerOperation(XmlDocument dom, BuilderRollerBase rollerBody, #### Parameters -`dom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`dom` XmlDocument The DOM. @@ -95,7 +96,7 @@ The DOM. The roller body. -`bBuilder` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bBuilder` bool if set to true [b builder]. @@ -125,7 +126,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ResultBody @@ -159,7 +160,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.RollerType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.RollerType.md index 2b0790397c..fa1d9bec13 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.RollerType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.RollerType.md @@ -1,4 +1,5 @@ -# Enum RollerType +# Enum RollerType + Namespace: [VM.Managed.CAD.Roller](VM.Managed.CAD.Roller.md) Assembly: VMDRoller.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.ShaftType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.ShaftType.md index 1a3f809a30..f496fdaad2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.ShaftType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.ShaftType.md @@ -1,4 +1,5 @@ -# Enum ShaftType +# Enum ShaftType + Namespace: [VM.Managed.CAD.Roller](VM.Managed.CAD.Roller.md) Assembly: VMDRoller.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.md index 93abb99420..193b3e37d2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Roller.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.CAD.Roller +# Namespace VM.Managed.CAD.Roller + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.SetNameAttributeOp.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.SetNameAttributeOp.md index 00c8578259..a28ee22cf9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.SetNameAttributeOp.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.SetNameAttributeOp.md @@ -1,4 +1,5 @@ -# Class SetNameAttributeOp +# Class SetNameAttributeOp + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class SetNameAttributeOp : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OperationBase](VM.Managed.Operation.OperationBase.md) ← [SetNameAttributeOp](VM.Managed.CAD.SetNameAttributeOp.md) @@ -87,11 +88,11 @@ public SetNameAttributeOp(Body body, string strName, bool bUseAttribute, string `body` [Body](VM.Managed.CAD.Body.md) -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string -`bUseAttribute` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseAttribute` bool -`strOldName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOldName` string ### SetNameAttributeOp\(\) @@ -111,7 +112,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -123,7 +124,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.SetSelectionObjectOp.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.SetSelectionObjectOp.md index 37bbf53189..90adab3605 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.SetSelectionObjectOp.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.SetSelectionObjectOp.md @@ -1,4 +1,5 @@ -# Class SetSelectionObjectOp +# Class SetSelectionObjectOp + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class SetSelectionObjectOp : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OperationBase](VM.Managed.Operation.OperationBase.md) ← [SetSelectionObjectOp](VM.Managed.CAD.SetSelectionObjectOp.md) @@ -105,7 +106,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -117,7 +118,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Spline.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Spline.md index 863767ba14..9609b04140 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Spline.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Spline.md @@ -1,4 +1,5 @@ -# Class Spline +# Class Spline + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class Spline #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Spline](VM.Managed.CAD.Spline.md) #### Extension Methods @@ -39,7 +40,7 @@ protected virtual void Dispose(bool A_0) #### Parameters -`A_0` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`A_0` bool ### Dispose\(\) @@ -63,7 +64,7 @@ public Vector[] MakeSplineAndGetPoint(Document3D doc, uint nCount, Vector[] vecI `doc` [Document3D](VM.Managed.Document3D.md) -`nCount` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nCount` uint `vecInputPt` [Vector](VM.Managed.Vector.md)\[\] diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.BodySprocket.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.BodySprocket.md index 38fbab5b3e..cb3f67da88 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.BodySprocket.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.BodySprocket.md @@ -1,4 +1,5 @@ -# Class BodySprocket +# Class BodySprocket + Namespace: [VM.Managed.CAD.Sprocket](VM.Managed.CAD.Sprocket.md) Assembly: VMDSprocket.dll @@ -11,9 +12,9 @@ public class BodySprocket : Body, IObservableObject, IDisposableObject, ILinkabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Body ← @@ -30,7 +31,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, ITransformable, @@ -269,7 +270,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -322,11 +323,11 @@ public override bool CheckValidationAboutBuild(string strXml) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetFaceList\_Teeth\(\) @@ -338,7 +339,7 @@ public List GetFaceList_Teeth() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List The list of face @@ -352,7 +353,7 @@ public BodySprocket ReGenerateBodyInformation(XmlDocument dom) #### Parameters -`dom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`dom` XmlDocument The data xml of sprocket diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.BooleanType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.BooleanType.md index ee0c401575..6dd27927aa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.BooleanType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.BooleanType.md @@ -1,4 +1,5 @@ -# Enum BooleanType +# Enum BooleanType + Namespace: [VM.Managed.CAD.Sprocket](VM.Managed.CAD.Sprocket.md) Assembly: VMDSprocket.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.BuilderSingleSprocketSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.BuilderSingleSprocketSimple.md index d3f88cc8e2..c3babc7560 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.BuilderSingleSprocketSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.BuilderSingleSprocketSimple.md @@ -1,4 +1,5 @@ -# Class BuilderSingleSprocketSimple +# Class BuilderSingleSprocketSimple + Namespace: [VM.Managed.CAD.Sprocket](VM.Managed.CAD.Sprocket.md) Assembly: VMDSprocket.dll @@ -6,14 +7,14 @@ Assembly: VMDSprocket.dll The single sprocket builder class. ```csharp -public class BuilderSingleSprocketSimple : BuilderSprocket, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public class BuilderSingleSprocketSimple : BuilderSprocket, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -37,8 +38,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, -IAttributeContainer +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +IAttributeContainer, +IHasReplaceableEntity #### Inherited Members @@ -88,6 +90,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -191,7 +195,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -232,7 +236,7 @@ public ExpressionValueVariable AddendumCircleDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### AngleBetweenTeeth @@ -244,7 +248,7 @@ public ExpressionValueVariable AngleBetweenTeeth { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### BushingRadius @@ -256,7 +260,7 @@ public ExpressionValueVariable BushingRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ClearanceofToothRoot @@ -268,7 +272,7 @@ public ExpressionValueVariable ClearanceofToothRoot { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DedendumCircleDiameter @@ -280,7 +284,7 @@ public ExpressionValueVariable DedendumCircleDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### NoOfTeeth @@ -292,7 +296,7 @@ public int NoOfTeeth { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### PitchCircleDiameter @@ -304,7 +308,7 @@ public ExpressionValueVariable PitchCircleDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ProfileCreationType @@ -328,7 +332,7 @@ public Spline Spline { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### ToothRoundRadius @@ -340,7 +344,7 @@ public ExpressionValueVariable ToothRoundRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TypeOfBuilder @@ -350,7 +354,7 @@ public override string TypeOfBuilder { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -370,7 +374,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamBase\) @@ -380,7 +384,7 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### Initialize\(ConvertFactor\) @@ -406,7 +410,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The obj notifier. @@ -424,7 +428,7 @@ public void Set_Radius_Shift(double dShift) #### Parameters -`dShift` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dShift` double The radius shift diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.BuilderSprocket.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.BuilderSprocket.md index 2bb3364192..40f068472f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.BuilderSprocket.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.BuilderSprocket.md @@ -1,4 +1,5 @@ -# Class BuilderSprocket +# Class BuilderSprocket + Namespace: [VM.Managed.CAD.Sprocket](VM.Managed.CAD.Sprocket.md) Assembly: VMDSprocket.dll @@ -6,14 +7,14 @@ Assembly: VMDSprocket.dll The base builder class for sprocket ```csharp -public abstract class BuilderSprocket : BuilderHasTransform, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public abstract class BuilderSprocket : BuilderHasTransform, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -40,8 +41,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, -IAttributeContainer +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +IAttributeContainer, +IHasReplaceableEntity #### Inherited Members @@ -77,6 +79,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -180,7 +184,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -236,7 +240,7 @@ public bool ApplyToFileProperty { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### BooleanType @@ -261,7 +265,7 @@ public bool CreateShaft { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ProfileType @@ -345,7 +349,7 @@ public override bool Uneditable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -359,7 +363,7 @@ public void SetToApplyToFileProperty(bool bFlag) #### Parameters -`bFlag` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bFlag` bool The flag. @@ -373,7 +377,7 @@ public void SetToCreateShaft(bool bFlag) #### Parameters -`bFlag` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bFlag` bool The flag. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.InputType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.InputType.md index 9267f84bb3..d1fba2cbd6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.InputType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.InputType.md @@ -1,4 +1,5 @@ -# Enum InputType +# Enum InputType + Namespace: [VM.Managed.CAD.Sprocket](VM.Managed.CAD.Sprocket.md) Assembly: VMDSprocket.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.ProfileDataSprocket.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.ProfileDataSprocket.md index 4298c54b6b..bf32583657 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.ProfileDataSprocket.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.ProfileDataSprocket.md @@ -1,4 +1,5 @@ -# Struct ProfileDataSprocket +# Struct ProfileDataSprocket + Namespace: [VM.Managed.CAD.Sprocket](VM.Managed.CAD.Sprocket.md) Assembly: VMDSprocket.dll @@ -21,7 +22,7 @@ public double AddendumCircleDiameter #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### AngleBetweenTeeth @@ -33,7 +34,7 @@ public double AngleBetweenTeeth #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### BushingRadius @@ -45,7 +46,7 @@ public double BushingRadius #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ClearanceofToothRoot @@ -57,7 +58,7 @@ public double ClearanceofToothRoot #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DedendumCircleDiameter @@ -69,7 +70,7 @@ public double DedendumCircleDiameter #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NoOfTeeth @@ -81,7 +82,7 @@ public int NoOfTeeth #### Field Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### PitchCircleDiameter @@ -93,7 +94,7 @@ public double PitchCircleDiameter #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ToothRoundRadius @@ -105,7 +106,7 @@ public double ToothRoundRadius #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### WorkPlane diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.ProfileSprocketBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.ProfileSprocketBase.md index 4ab19783e7..cb9f211b96 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.ProfileSprocketBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.ProfileSprocketBase.md @@ -1,4 +1,5 @@ -# Class ProfileSprocketBase +# Class ProfileSprocketBase + Namespace: [VM.Managed.CAD.Sprocket](VM.Managed.CAD.Sprocket.md) Assembly: VMDSprocket.dll @@ -11,7 +12,7 @@ public abstract class ProfileSprocketBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ProfileSprocketBase](VM.Managed.CAD.Sprocket.ProfileSprocketBase.md) #### Derived @@ -65,7 +66,7 @@ protected double m_dRadius_shift #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_lstPtOrigin @@ -77,7 +78,7 @@ protected List m_lstPtOrigin #### Field Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### m\_lstPtWorkPlane @@ -89,7 +90,7 @@ protected List m_lstPtWorkPlane #### Field Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### m\_strError @@ -101,7 +102,7 @@ protected string m_strError #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Properties @@ -115,7 +116,7 @@ public double Radius_Shift { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -139,7 +140,7 @@ The arbitrary point. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double The gradient @@ -161,13 +162,13 @@ The arbitrary point. The center point of circle. -`_dRadiusofCircle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`_dRadiusofCircle` double The radius of circle. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] The array of gradient. @@ -181,7 +182,7 @@ protected List Calculation_TangentPoint_Through_Line_Circle(double d #### Parameters -`dGradient` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGradient` double The gradient. @@ -193,13 +194,13 @@ The arbitrary point. The center point of circle. -`_dRadiusofCircle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`_dRadiusofCircle` double The radius of circle. #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List The list of points @@ -213,7 +214,7 @@ protected double[] Calculation_TangentPosition(double dGradient, VectorBase _ptA #### Parameters -`dGradient` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGradient` double The gradient. @@ -225,13 +226,13 @@ The arbitrary point. The center point of circle. -`_dRadiusofCircle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`_dRadiusofCircle` double The radius of circle. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] The tangent point. @@ -249,11 +250,11 @@ protected void Calculation_line_Equation(VectorBase _ptArbitrary, double _dGradi The arbitrary point. -`_dGradient` [double](https://learn.microsoft.com/dotnet/api/system.double) +`_dGradient` double y=mx+nm -`_dConstant` [double](https://learn.microsoft.com/dotnet/api/system.double) +`_dConstant` double y=mx+nn @@ -271,7 +272,7 @@ protected List Claculation_TangentPoint_Between_Two_Circle(VectorBas The center position -`dR1` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dR1` double The radius. @@ -279,13 +280,13 @@ The radius. The center position. -`dR2` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dR2` double The radius. #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List The list of points @@ -299,7 +300,7 @@ protected virtual bool CreateProfile() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetPointData\_For\_WorkPlane\(\) @@ -311,7 +312,7 @@ public List GetPointData_For_WorkPlane() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### GetPointData\_For\_XYPlane\(\) @@ -323,7 +324,7 @@ public List GetPointData_For_XYPlane() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### Validation\(\) @@ -335,7 +336,7 @@ protected virtual bool Validation() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### matvec\(double\[\], VectorBase\) @@ -345,7 +346,7 @@ protected VectorBase matvec(double[] mat, VectorBase vecA) #### Parameters -`mat` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`mat` double\[\] `vecA` VectorBase @@ -385,5 +386,5 @@ protected double vectranspose_vectieldvec(VectorBase vecDepth, VectorBase vecA, #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.ProfileSprocket_ASA.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.ProfileSprocket_ASA.md index 53762d648b..c1987284b1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.ProfileSprocket_ASA.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.ProfileSprocket_ASA.md @@ -1,4 +1,5 @@ -# Class ProfileSprocket\_ASA +# Class ProfileSprocket\_ASA + Namespace: [VM.Managed.CAD.Sprocket](VM.Managed.CAD.Sprocket.md) Assembly: VMDSprocket.dll @@ -11,7 +12,7 @@ public class ProfileSprocket_ASA : ProfileSprocketBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ProfileSprocketBase](VM.Managed.CAD.Sprocket.ProfileSprocketBase.md) ← [ProfileSprocket\_ASA](VM.Managed.CAD.Sprocket.ProfileSprocket\_ASA.md) @@ -71,5 +72,5 @@ protected override bool CreateProfile() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.ProfileSprocket_BS.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.ProfileSprocket_BS.md index 1dc5090f94..7da0986144 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.ProfileSprocket_BS.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.ProfileSprocket_BS.md @@ -1,4 +1,5 @@ -# Class ProfileSprocket\_BS +# Class ProfileSprocket\_BS + Namespace: [VM.Managed.CAD.Sprocket](VM.Managed.CAD.Sprocket.md) Assembly: VMDSprocket.dll @@ -11,7 +12,7 @@ public class ProfileSprocket_BS : ProfileSprocketBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ProfileSprocketBase](VM.Managed.CAD.Sprocket.ProfileSprocketBase.md) ← [ProfileSprocket\_BS](VM.Managed.CAD.Sprocket.ProfileSprocket\_BS.md) @@ -71,7 +72,7 @@ protected override bool CreateProfile() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validation\(\) @@ -81,5 +82,5 @@ protected override bool Validation() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.ReGenerateSprocketOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.ReGenerateSprocketOperation.md index 689e73fc5b..038e923786 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.ReGenerateSprocketOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.ReGenerateSprocketOperation.md @@ -1,4 +1,5 @@ -# Class ReGenerateSprocketOperation +# Class ReGenerateSprocketOperation + Namespace: [VM.Managed.CAD.Sprocket](VM.Managed.CAD.Sprocket.md) Assembly: VMDSprocket.dll @@ -11,7 +12,7 @@ public class ReGenerateSprocketOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ReGenerateSprocketOperation](VM.Managed.CAD.Sprocket.ReGenerateSprocketOperation.md) @@ -87,7 +88,7 @@ public ReGenerateSprocketOperation(XmlDocument dom, BuilderSingleSprocketSimple #### Parameters -`dom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`dom` XmlDocument The DOM. @@ -95,7 +96,7 @@ The DOM. The sprocket body. -`bBuilder` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bBuilder` bool if set to true [b builder]. @@ -125,7 +126,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ResultBody @@ -159,7 +160,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.SprocketType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.SprocketType.md index be33869e77..109359a53f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.SprocketType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.SprocketType.md @@ -1,4 +1,5 @@ -# Enum SprocketType +# Enum SprocketType + Namespace: [VM.Managed.CAD.Sprocket](VM.Managed.CAD.Sprocket.md) Assembly: VMDSprocket.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.ToothProfileType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.ToothProfileType.md index 6f7333cc43..13f0549289 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.ToothProfileType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.ToothProfileType.md @@ -1,4 +1,5 @@ -# Enum ToothProfileType +# Enum ToothProfileType + Namespace: [VM.Managed.CAD.Sprocket](VM.Managed.CAD.Sprocket.md) Assembly: VMDSprocket.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.md index f5ba67dcb2..c1f9df9ca4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Sprocket.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.CAD.Sprocket +# Namespace VM.Managed.CAD.Sprocket + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Tire.BuilderTireSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Tire.BuilderTireSimple.md index 7a933614d5..6179069649 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Tire.BuilderTireSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Tire.BuilderTireSimple.md @@ -1,4 +1,5 @@ -# Class BuilderTireSimple +# Class BuilderTireSimple + Namespace: [VM.Managed.CAD.Tire](VM.Managed.CAD.Tire.md) Assembly: VMDTire.dll @@ -6,14 +7,14 @@ Assembly: VMDTire.dll The simple tire builder class ```csharp -public class BuilderTireSimple : BuilderMultiUniteSimple, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public class BuilderTireSimple : BuilderMultiUniteSimple, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -39,8 +40,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, -IAttributeContainer +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +IAttributeContainer, +IHasReplaceableEntity #### Inherited Members @@ -60,6 +62,8 @@ BuilderMulti.GetUnnamedObjectName\(object\), BuilderMulti.FindLocal\(string\), BuilderMulti.Contains\(Type\), BuilderMulti.CopyFilePathWhenImportBuilder\(Builder\), +BuilderMulti.HasReplaceableEntity\(IObjectBase\), +BuilderMulti.ReplaceEntity\(IObjectBase, IObjectBase\), BuilderMulti.FillParameter\(BuilderParamBase\), BuilderMulti.OnDeserializationImpl\(ref List\>\), BuilderMulti.ReadXmlImpl\(XmlReader\), @@ -96,6 +100,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -199,7 +205,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -238,19 +244,19 @@ public BuilderTireSimple(double dRadius, double dWidth, double dAspectRatio, dou #### Parameters -`dRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadius` double The radius. -`dWidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dWidth` double The width. -`dAspectRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAspectRatio` double The aspect ratio. -`dHubOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHubOffset` double The hub offset. @@ -264,19 +270,19 @@ public BuilderTireSimple(double dRadius, double dWidth, double dAspectRatio, dou #### Parameters -`dRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadius` double The radius. -`dWidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dWidth` double The width. -`dAspectRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAspectRatio` double The aspect ratio. -`dHubOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHubOffset` double The hub offset. @@ -294,23 +300,23 @@ public BuilderTireSimple(double dRadius, double dWidth, double dAspectRatio, dou #### Parameters -`dRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadius` double The radius. -`dWidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dWidth` double The width. -`dAspectRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAspectRatio` double The aspect ratio. -`dHubOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHubOffset` double The hub offset. -`dHubWidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHubWidth` double Width of hub. @@ -324,23 +330,23 @@ public BuilderTireSimple(double dRadius, double dWidth, double dAspectRatio, dou #### Parameters -`dRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadius` double The radius. -`dWidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dWidth` double The width. -`dAspectRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAspectRatio` double The aspect ratio. -`dHubOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHubOffset` double The hub offset. -`dHubWidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHubWidth` double Width of hub. @@ -358,23 +364,23 @@ public BuilderTireSimple(double dRadius, double dWidth, double dAspectRatio, dou #### Parameters -`dRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadius` double The radius. -`dWidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dWidth` double The width. -`dAspectRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAspectRatio` double The aspect ratio. -`dHubOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHubOffset` double The hub offset. -`dHubWidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHubWidth` double Width of hub. @@ -382,7 +388,7 @@ Width of hub. transformation. -`nColorTread` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nColorTread` int The color tread. @@ -399,7 +405,7 @@ public double AspectRatio { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### HubOffset @@ -412,7 +418,7 @@ public double HubOffset { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### HubWidth @@ -425,7 +431,7 @@ public double HubWidth { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### IsParameterized @@ -437,7 +443,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Transform @@ -461,7 +467,7 @@ public override double Transparency { set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TreadColor @@ -474,7 +480,7 @@ public int TreadColor { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Uneditable @@ -486,7 +492,7 @@ public override bool Uneditable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UnloadedRadius @@ -499,7 +505,7 @@ public double UnloadedRadius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Width @@ -512,7 +518,7 @@ public double Width { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -548,7 +554,7 @@ The ob. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetSchema\(\) @@ -563,7 +569,7 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -591,7 +597,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The obj notifier. @@ -609,7 +615,7 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -623,7 +629,7 @@ public void SetAspectRatio(double dVal) #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The aspect ratio. @@ -637,7 +643,7 @@ public void SetHubOffset(double dVal) #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The hub offset. @@ -651,7 +657,7 @@ public void SetHubWidth(double dVal) #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The hub width. @@ -679,7 +685,7 @@ public void SetTreadColor(int dVal) #### Parameters -`dVal` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`dVal` int The color of the tread. @@ -693,7 +699,7 @@ public void SetUnloadedRadius(double dVal) #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The unloaded radius. @@ -707,7 +713,7 @@ public void SetWidth(double dVal) #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The width. @@ -729,7 +735,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Tire.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Tire.md index 191ee688a4..c2ebb77c52 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Tire.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Tire.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.CAD.Tire +# Namespace VM.Managed.CAD.Tire + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Topology.IndexContainer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Topology.IndexContainer.md index 2d2584bf65..e60daf1bd1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Topology.IndexContainer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Topology.IndexContainer.md @@ -1,4 +1,5 @@ -# Class Topology.IndexContainer +# Class Topology.IndexContainer + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public sealed class Topology.IndexContainer : LinkContainer, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [Topology.IndexContainer](VM.Managed.CAD.Topology.IndexContainer.md) @@ -83,5 +84,5 @@ public int Index { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Topology.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Topology.md index baa1d46af3..1bc43edd49 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Topology.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Topology.md @@ -1,4 +1,5 @@ -# Class Topology +# Class Topology + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public abstract class Topology : Object, IObservableObject, IDi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Topology](VM.Managed.CAD.Topology.md) @@ -38,7 +39,7 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), [IAttributeContainer](VM.Managed.IAttributeContainer.md), [ITopology](VM.Managed.ITopology.md) @@ -136,7 +137,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -167,15 +168,15 @@ protected Topology(string strProxyName, string strBuildInfo, bool IsBuilding) #### Parameters -`strProxyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strProxyName` string Name of the proxy. -`strBuildInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBuildInfo` string The build information. -`IsBuilding` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`IsBuilding` bool Whether build or not. @@ -211,7 +212,7 @@ public uint Index { get; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### IndexCont @@ -235,7 +236,7 @@ public bool IsValid { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -255,13 +256,13 @@ public bool GetColor(ref Color color) #### Parameters -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) +`color` Color The color. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if exist color; otherwise, false. @@ -275,7 +276,7 @@ public string GetName() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The name of topology. @@ -289,7 +290,7 @@ protected virtual string GetPrefixName() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The pre fixname of topology. @@ -303,7 +304,7 @@ public abstract string GetTypeName() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The name of topology @@ -317,13 +318,13 @@ public string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The unnamed object. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The unnamed object name. @@ -351,7 +352,7 @@ public void InitializeTopologyName(bool bForceInit) #### Parameters -`bForceInit` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bForceInit` bool Whether initial force or not. @@ -365,7 +366,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.TopologyColorInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.TopologyColorInfo.md index 43c890be70..df94507d8a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.TopologyColorInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.TopologyColorInfo.md @@ -1,4 +1,5 @@ -# Class TopologyColorInfo +# Class TopologyColorInfo + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class TopologyColorInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [TopologyColorInfo](VM.Managed.CAD.TopologyColorInfo.md) #### Extension Methods @@ -42,7 +43,7 @@ public Dictionary ColorInfo { get; } #### Property Value - [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[int](https://learn.microsoft.com/dotnet/api/system.int32), [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color)\> + Dictionary ## Methods @@ -59,7 +60,7 @@ public virtual XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -73,7 +74,7 @@ public virtual void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -91,11 +92,11 @@ public void SetColor(Builder builder, int[] arrIndexes, Color color) The owner builder. -`arrIndexes` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`arrIndexes` int\[\] The topology indexes. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) +`color` Color The color. @@ -113,7 +114,7 @@ public void UnsetColor(Builder builder, int[] arrIndexes) The owner builder. -`arrIndexes` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`arrIndexes` int\[\] The topology indexes. @@ -127,7 +128,7 @@ public virtual void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.TopologyUtil.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.TopologyUtil.md index 3af0241ec7..d99184f266 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.TopologyUtil.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.TopologyUtil.md @@ -1,4 +1,5 @@ -# Class TopologyUtil +# Class TopologyUtil + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -9,7 +10,7 @@ public class TopologyUtil #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [TopologyUtil](VM.Managed.CAD.TopologyUtil.md) #### Extension Methods @@ -38,11 +39,11 @@ public static IBody.enToplogyType GetTopologyType(Body body, UIntPtr ptrEntityKe `body` [Body](VM.Managed.CAD.Body.md) -`ptrEntityKey` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`ptrEntityKey` UIntPtr #### Returns - [IBody](VM.CAD.IBody.md).[enToplogyType](VM.CAD.IBody.enToplogyType.md) + IBody.enToplogyType ### GetVMPID\(Body, UIntPtr\) @@ -54,9 +55,9 @@ public static int GetVMPID(Body body, UIntPtr ptrEntityKey) `body` [Body](VM.Managed.CAD.Body.md) -`ptrEntityKey` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`ptrEntityKey` UIntPtr #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.BodyLink.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.BodyLink.md index ee9ebad1c9..345f5a2935 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.BodyLink.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.BodyLink.md @@ -1,4 +1,5 @@ -# Class BodyLink +# Class BodyLink + Namespace: [VM.Managed.CAD.Track](VM.Managed.CAD.Track.md) Assembly: VMDTrackBase.dll @@ -11,9 +12,9 @@ public class BodyLink : Body, IObservableObject, IDisposableObject, ILinkable, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Body ← @@ -30,7 +31,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, ITransformable, @@ -269,7 +270,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -322,11 +323,11 @@ public override bool CheckValidationAboutBuild(string strXml) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetFaceList\_Bush\(\) @@ -338,7 +339,7 @@ public List GetFaceList_Bush() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List The list of face @@ -352,7 +353,7 @@ public List GetFaceList_Flange() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List The list of face @@ -366,7 +367,7 @@ public List GetFaceList_Tread() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List The list of face @@ -380,7 +381,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The obj notifier. @@ -398,7 +399,7 @@ public BodyLink ReGenerateBodyInformation(XmlDocument dom) #### Parameters -`dom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`dom` XmlDocument The data xml of roller @@ -418,7 +419,7 @@ protected override void RebuildGeometry(object objBuilder, LinkEventArgs args) #### Parameters -`objBuilder` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objBuilder` object The builder. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.BodyShoe.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.BodyShoe.md index 372e451de9..53c5e8d022 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.BodyShoe.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.BodyShoe.md @@ -1,4 +1,5 @@ -# Class BodyShoe +# Class BodyShoe + Namespace: [VM.Managed.CAD.Track](VM.Managed.CAD.Track.md) Assembly: VMDTrackBase.dll @@ -11,9 +12,9 @@ public class BodyShoe : Body, IObservableObject, IDisposableObject, ILinkable, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Body ← @@ -30,7 +31,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, ITransformable, @@ -269,7 +270,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -322,11 +323,11 @@ public override bool CheckValidationAboutBuild(string strXml) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetFaceList\_ShoeGrouser\(\) @@ -338,7 +339,7 @@ public List GetFaceList_ShoeGrouser() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List The list of face @@ -352,7 +353,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The obj notifier. @@ -370,7 +371,7 @@ public BodyShoe ReGenerateBodyInformation(XmlDocument dom) #### Parameters -`dom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`dom` XmlDocument The data xml of roller @@ -390,7 +391,7 @@ protected override void RebuildGeometry(object objBuilder, LinkEventArgs args) #### Parameters -`objBuilder` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objBuilder` object The builder. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.BooleanType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.BooleanType.md index e43818863d..c632b724a4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.BooleanType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.BooleanType.md @@ -1,4 +1,5 @@ -# Enum BooleanType +# Enum BooleanType + Namespace: [VM.Managed.CAD.Track](VM.Managed.CAD.Track.md) Assembly: VMDTrackBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.BuilderLink.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.BuilderLink.md index 7ca2d18582..90aedbbcb3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.BuilderLink.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.BuilderLink.md @@ -1,4 +1,5 @@ -# Class BuilderLink +# Class BuilderLink + Namespace: [VM.Managed.CAD.Track](VM.Managed.CAD.Track.md) Assembly: VMDTrackBase.dll @@ -6,14 +7,14 @@ Assembly: VMDTrackBase.dll The abstract class for link builder. ```csharp -public abstract class BuilderLink : BuilderHasTransform, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public abstract class BuilderLink : BuilderHasTransform, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -40,8 +41,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, -IAttributeContainer +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +IAttributeContainer, +IHasReplaceableEntity #### Inherited Members @@ -77,6 +79,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -180,7 +184,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -257,7 +261,7 @@ public override string TypeOfBuilder { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Uneditable @@ -269,7 +273,7 @@ public override bool Uneditable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -289,7 +293,7 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### SetTransform\(TMatrix\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.BuilderLinkUserDefined.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.BuilderLinkUserDefined.md index b4d52fb323..1c0c5918c5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.BuilderLinkUserDefined.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.BuilderLinkUserDefined.md @@ -1,4 +1,5 @@ -# Class BuilderLinkUserDefined +# Class BuilderLinkUserDefined + Namespace: [VM.Managed.CAD.Track](VM.Managed.CAD.Track.md) Assembly: VMDTrackBase.dll @@ -6,14 +7,14 @@ Assembly: VMDTrackBase.dll The class for link builder. ```csharp -public class BuilderLinkUserDefined : BuilderLink, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public class BuilderLinkUserDefined : BuilderLink, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -37,8 +38,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, -IAttributeContainer +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +IAttributeContainer, +IHasReplaceableEntity #### Inherited Members @@ -82,6 +84,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -185,7 +189,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -236,7 +240,7 @@ public override string TypeOfBuilder { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -256,7 +260,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamBase\) @@ -266,7 +270,7 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FixUp\(ObjectBase\) @@ -284,7 +288,7 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -298,7 +302,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The obj notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.BuilderShoe.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.BuilderShoe.md index 1c0392a53f..558a16f679 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.BuilderShoe.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.BuilderShoe.md @@ -1,4 +1,5 @@ -# Class BuilderShoe +# Class BuilderShoe + Namespace: [VM.Managed.CAD.Track](VM.Managed.CAD.Track.md) Assembly: VMDTrackBase.dll @@ -6,14 +7,14 @@ Assembly: VMDTrackBase.dll The base builder class for shoe. ```csharp -public abstract class BuilderShoe : BuilderHasTransform, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public abstract class BuilderShoe : BuilderHasTransform, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -40,8 +41,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, -IAttributeContainer +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +IAttributeContainer, +IHasReplaceableEntity #### Inherited Members @@ -77,6 +79,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -180,7 +184,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -235,7 +239,7 @@ public Spline Profile { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### ShoeType @@ -271,7 +275,7 @@ public override bool Uneditable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.BuilderShoeUserDefined.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.BuilderShoeUserDefined.md index 097ea3427b..bcad342022 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.BuilderShoeUserDefined.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.BuilderShoeUserDefined.md @@ -1,4 +1,5 @@ -# Class BuilderShoeUserDefined +# Class BuilderShoeUserDefined + Namespace: [VM.Managed.CAD.Track](VM.Managed.CAD.Track.md) Assembly: VMDTrackBase.dll @@ -6,14 +7,14 @@ Assembly: VMDTrackBase.dll The builder class for user-defined shoe. ```csharp -public class BuilderShoeUserDefined : BuilderShoe, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public class BuilderShoeUserDefined : BuilderShoe, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -37,8 +38,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, -IAttributeContainer +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +IAttributeContainer, +IHasReplaceableEntity #### Inherited Members @@ -80,6 +82,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -183,7 +187,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -234,7 +238,7 @@ public override string TypeOfBuilder { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -254,7 +258,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamBase\) @@ -264,7 +268,7 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FixUp\(ObjectBase\) @@ -282,7 +286,7 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -296,7 +300,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The obj notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.LMShoeType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.LMShoeType.md index 2f12b37c31..f8cefcf8ea 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.LMShoeType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.LMShoeType.md @@ -1,4 +1,5 @@ -# Enum LMShoeType +# Enum LMShoeType + Namespace: [VM.Managed.CAD.Track](VM.Managed.CAD.Track.md) Assembly: VMDTrackBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.LinkDataBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.LinkDataBase.md index aff33f1a54..8b6bebb7e6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.LinkDataBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.LinkDataBase.md @@ -1,4 +1,5 @@ -# Class LinkDataBase +# Class LinkDataBase + Namespace: [VM.Managed.CAD.Track](VM.Managed.CAD.Track.md) Assembly: VMDTrackBase.dll @@ -11,9 +12,9 @@ public abstract class LinkDataBase : LinkContainer, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [LinkDataBase](VM.Managed.CAD.Track.LinkDataBase.md) @@ -80,7 +81,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -183,7 +184,7 @@ public ExpressionValueVariable InnerGauge { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### IsApplyToFileProperty @@ -195,7 +196,7 @@ public bool IsApplyToFileProperty { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LDForLinkCombination @@ -219,7 +220,7 @@ public ExpressionValueVariable LinkHeight1 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### LinkHeight2 @@ -231,7 +232,7 @@ public ExpressionValueVariable LinkHeight2 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### LinkPitch @@ -243,7 +244,7 @@ public ExpressionValueVariable LinkPitch { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### OuterGauge @@ -255,7 +256,7 @@ public ExpressionValueVariable OuterGauge { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PinBooleanType @@ -279,7 +280,7 @@ public ExpressionValueVariable PinDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PinTransformLeft @@ -315,7 +316,7 @@ public ExpressionValueVariable PinWidth { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PositionForLinkCombination @@ -349,13 +350,13 @@ The arbitrary point. The center point of circle. -`_dRadiusofCircle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`_dRadiusofCircle` double The radius of circle. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] The array of gradient. @@ -369,7 +370,7 @@ protected List Calculation_TangentPoint_Through_Line_Circle(double d #### Parameters -`dGradient` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGradient` double The gradient. @@ -381,13 +382,13 @@ The arbitrary point. The center point of circle. -`_dRadiusofCircle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`_dRadiusofCircle` double The radius of circle. #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List The list of points @@ -407,7 +408,7 @@ protected abstract BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamLink\) @@ -417,7 +418,7 @@ protected virtual void FillParameter(BuilderParamLink builderParam) #### Parameters -`builderParam` BuilderParamLink +`builderParam` [BuilderParamLink](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders.Links/BuilderParameters/BuilderParamLink.cs) ### GetFactorForLength\(\) @@ -429,7 +430,7 @@ protected double GetFactorForLength() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double The factor. @@ -443,7 +444,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The obj notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.LinkDataSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.LinkDataSimple.md index 25874de85e..5e1c095b7c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.LinkDataSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.LinkDataSimple.md @@ -1,4 +1,5 @@ -# Class LinkDataSimple +# Class LinkDataSimple + Namespace: [VM.Managed.CAD.Track](VM.Managed.CAD.Track.md) Assembly: VMDTrackBase.dll @@ -11,9 +12,9 @@ public class LinkDataSimple : LinkDataBase, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [LinkDataBase](VM.Managed.CAD.Track.LinkDataBase.md) ← [LinkDataSimple](VM.Managed.CAD.Track.LinkDataSimple.md) @@ -103,7 +104,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -158,7 +159,7 @@ public ExpressionValueVariable BushDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -178,7 +179,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamLink\) @@ -188,5 +189,5 @@ protected override void FillParameter(BuilderParamLink builderParam) #### Parameters -`builderParam` BuilderParamLink +`builderParam` [BuilderParamLink](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders.Links/BuilderParameters/BuilderParamLink.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.LinkDataV.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.LinkDataV.md index 5025785a5f..9b2ca9e6f7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.LinkDataV.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.LinkDataV.md @@ -1,4 +1,5 @@ -# Class LinkDataV +# Class LinkDataV + Namespace: [VM.Managed.CAD.Track](VM.Managed.CAD.Track.md) Assembly: VMDTrackBase.dll @@ -11,9 +12,9 @@ public class LinkDataV : LinkDataBase, IObservableObject, IDisposableObject, ILi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [LinkDataBase](VM.Managed.CAD.Track.LinkDataBase.md) ← [LinkDataV](VM.Managed.CAD.Track.LinkDataV.md) @@ -103,7 +104,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -158,7 +159,7 @@ public ExpressionValueVariable BushBossRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### BushInnerDiameter @@ -170,7 +171,7 @@ public ExpressionValueVariable BushInnerDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### BushOuterDiameter @@ -182,7 +183,7 @@ public ExpressionValueVariable BushOuterDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### BushWidth @@ -194,7 +195,7 @@ public ExpressionValueVariable BushWidth { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ChamferLength1 @@ -206,7 +207,7 @@ public ExpressionValueVariable ChamferLength1 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ChamferLength2 @@ -218,7 +219,7 @@ public ExpressionValueVariable ChamferLength2 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### LinkDepth1 @@ -230,7 +231,7 @@ public ExpressionValueVariable LinkDepth1 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### LinkDepth2 @@ -242,7 +243,7 @@ public ExpressionValueVariable LinkDepth2 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### LinkDistance1 @@ -254,7 +255,7 @@ public ExpressionValueVariable LinkDistance1 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### LinkDistance2 @@ -266,7 +267,7 @@ public ExpressionValueVariable LinkDistance2 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### LinkDistance3 @@ -278,7 +279,7 @@ public ExpressionValueVariable LinkDistance3 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### LinkDistance4 @@ -290,7 +291,7 @@ public ExpressionValueVariable LinkDistance4 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PinBossRadius @@ -302,7 +303,7 @@ public ExpressionValueVariable PinBossRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -322,7 +323,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamLink\) @@ -332,7 +333,7 @@ protected override void FillParameter(BuilderParamLink builderParam) #### Parameters -`builderParam` BuilderParamLink +`builderParam` [BuilderParamLink](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders.Links/BuilderParameters/BuilderParamLink.cs) ### OnDeserialization\(object\) @@ -344,7 +345,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.LinkShoeType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.LinkShoeType.md index 0f9547b63d..df12877b92 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.LinkShoeType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.LinkShoeType.md @@ -1,4 +1,5 @@ -# Enum LinkShoeType +# Enum LinkShoeType + Namespace: [VM.Managed.CAD.Track](VM.Managed.CAD.Track.md) Assembly: VMDTrackBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.LinkType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.LinkType.md index 24d3bdb31c..cc9dd1e9ea 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.LinkType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.LinkType.md @@ -1,4 +1,5 @@ -# Enum LinkType +# Enum LinkType + Namespace: [VM.Managed.CAD.Track](VM.Managed.CAD.Track.md) Assembly: VMDTrackBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ReGenerateLinkOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ReGenerateLinkOperation.md index 35fd4f9b90..ed88b8592f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ReGenerateLinkOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ReGenerateLinkOperation.md @@ -1,4 +1,5 @@ -# Class ReGenerateLinkOperation +# Class ReGenerateLinkOperation + Namespace: [VM.Managed.CAD.Track](VM.Managed.CAD.Track.md) Assembly: VMDTrackBase.dll @@ -11,7 +12,7 @@ public class ReGenerateLinkOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ReGenerateLinkOperation](VM.Managed.CAD.Track.ReGenerateLinkOperation.md) @@ -87,7 +88,7 @@ public ReGenerateLinkOperation(XmlDocument dom, BuilderLink linkBody, bool bBuil #### Parameters -`dom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`dom` XmlDocument The DOM. @@ -95,7 +96,7 @@ The DOM. The link body. -`bBuilder` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bBuilder` bool if set to true [b builder]. @@ -125,7 +126,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ResultBody @@ -159,7 +160,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ReGenerateShoeOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ReGenerateShoeOperation.md index a9832c77cb..313915dbd9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ReGenerateShoeOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ReGenerateShoeOperation.md @@ -1,4 +1,5 @@ -# Class ReGenerateShoeOperation +# Class ReGenerateShoeOperation + Namespace: [VM.Managed.CAD.Track](VM.Managed.CAD.Track.md) Assembly: VMDTrackBase.dll @@ -11,7 +12,7 @@ public class ReGenerateShoeOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ReGenerateShoeOperation](VM.Managed.CAD.Track.ReGenerateShoeOperation.md) @@ -87,7 +88,7 @@ public ReGenerateShoeOperation(XmlDocument dom, BuilderShoe shoeBody, bool bBuil #### Parameters -`dom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`dom` XmlDocument The DOM. @@ -95,7 +96,7 @@ The DOM. The shoe body. -`bBuilder` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bBuilder` bool if set to true [b builder]. @@ -125,7 +126,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ResultBody @@ -159,7 +160,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeDataBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeDataBase.md index b2c3eacb23..304fb4acae 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeDataBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeDataBase.md @@ -1,4 +1,5 @@ -# Class ShoeDataBase +# Class ShoeDataBase + Namespace: [VM.Managed.CAD.Track](VM.Managed.CAD.Track.md) Assembly: VMDTrackBase.dll @@ -11,9 +12,9 @@ public abstract class ShoeDataBase : LinkContainer, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ShoeDataBase](VM.Managed.CAD.Track.ShoeDataBase.md) @@ -80,7 +81,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -135,7 +136,7 @@ public int DepthSegment { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### EndNode @@ -147,7 +148,7 @@ public int EndNode { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### IsApplyToFileProperty @@ -159,7 +160,7 @@ public bool IsApplyToFileProperty { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LDForShoeCombination @@ -183,7 +184,7 @@ public int LengthSegment { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### PositionForShoeCombination @@ -207,7 +208,7 @@ public ExpressionValueVariable ShoeWidth { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### StartNode @@ -219,7 +220,7 @@ public int StartNode { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -233,7 +234,7 @@ protected double GetFactorForLength() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double The factor. @@ -247,7 +248,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The obj notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeDataDouble.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeDataDouble.md index 2150e9802b..ba8a684aca 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeDataDouble.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeDataDouble.md @@ -1,4 +1,5 @@ -# Class ShoeDataDouble +# Class ShoeDataDouble + Namespace: [VM.Managed.CAD.Track](VM.Managed.CAD.Track.md) Assembly: VMDTrackBase.dll @@ -11,9 +12,9 @@ public class ShoeDataDouble : ShoeDataParametric, IObservableObject, IDisposable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ShoeDataBase](VM.Managed.CAD.Track.ShoeDataBase.md) ← [ShoeDataParametric](VM.Managed.CAD.Track.ShoeDataParametric.md) ← @@ -107,7 +108,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -162,7 +163,7 @@ public ExpressionValueVariable SecondGH { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### SecondGLW @@ -174,7 +175,7 @@ public ExpressionValueVariable SecondGLW { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### SecondGUW @@ -186,7 +187,7 @@ public ExpressionValueVariable SecondGUW { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ShoeDistance2 @@ -198,7 +199,7 @@ public ExpressionValueVariable ShoeDistance2 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TailHeight @@ -210,7 +211,7 @@ public ExpressionValueVariable TailHeight { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -224,7 +225,7 @@ public override List GetPoints_XYPlane() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List The Points diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeDataParametric.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeDataParametric.md index 67668cf9ed..07e3b6ff83 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeDataParametric.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeDataParametric.md @@ -1,4 +1,5 @@ -# Class ShoeDataParametric +# Class ShoeDataParametric + Namespace: [VM.Managed.CAD.Track](VM.Managed.CAD.Track.md) Assembly: VMDTrackBase.dll @@ -11,9 +12,9 @@ public abstract class ShoeDataParametric : ShoeDataBase, IObservableObject, IDis #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ShoeDataBase](VM.Managed.CAD.Track.ShoeDataBase.md) ← [ShoeDataParametric](VM.Managed.CAD.Track.ShoeDataParametric.md) @@ -95,7 +96,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -150,7 +151,7 @@ public ExpressionValueVariable FirstGH { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### FirstGLW @@ -162,7 +163,7 @@ public ExpressionValueVariable FirstGLW { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### FirstGUW @@ -174,7 +175,7 @@ public ExpressionValueVariable FirstGUW { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### LDP1 @@ -186,7 +187,7 @@ public ExpressionValueVariable LDP1 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### LDP2 @@ -198,7 +199,7 @@ public ExpressionValueVariable LDP2 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### LDQ1 @@ -210,7 +211,7 @@ public ExpressionValueVariable LDQ1 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PlateHeight @@ -222,7 +223,7 @@ public ExpressionValueVariable PlateHeight { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RP1 @@ -234,7 +235,7 @@ public ExpressionValueVariable RP1 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RP2 @@ -246,7 +247,7 @@ public ExpressionValueVariable RP2 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RQ1 @@ -258,7 +259,7 @@ public ExpressionValueVariable RQ1 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ShoeDistance1 @@ -270,7 +271,7 @@ public ExpressionValueVariable ShoeDistance1 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ShoeLength @@ -282,7 +283,7 @@ public ExpressionValueVariable ShoeLength { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### VDP1 @@ -294,7 +295,7 @@ public ExpressionValueVariable VDP1 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### VDP2 @@ -306,7 +307,7 @@ public ExpressionValueVariable VDP2 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### VDQ1 @@ -318,7 +319,7 @@ public ExpressionValueVariable VDQ1 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -332,7 +333,7 @@ public virtual List GetPoints_XYPlane() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List The Points diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeDataSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeDataSimple.md index a85d5c44bf..6cab0b15a2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeDataSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeDataSimple.md @@ -1,4 +1,5 @@ -# Class ShoeDataSimple +# Class ShoeDataSimple + Namespace: [VM.Managed.CAD.Track](VM.Managed.CAD.Track.md) Assembly: VMDTrackBase.dll @@ -11,9 +12,9 @@ public class ShoeDataSimple : ShoeDataBase, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ShoeDataBase](VM.Managed.CAD.Track.ShoeDataBase.md) ← [ShoeDataSimple](VM.Managed.CAD.Track.ShoeDataSimple.md) @@ -89,7 +90,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeDataSingle.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeDataSingle.md index 9a3cc71b8e..1a8e4b0eeb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeDataSingle.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeDataSingle.md @@ -1,4 +1,5 @@ -# Class ShoeDataSingle +# Class ShoeDataSingle + Namespace: [VM.Managed.CAD.Track](VM.Managed.CAD.Track.md) Assembly: VMDTrackBase.dll @@ -11,9 +12,9 @@ public class ShoeDataSingle : ShoeDataParametric, IObservableObject, IDisposable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ShoeDataBase](VM.Managed.CAD.Track.ShoeDataBase.md) ← [ShoeDataParametric](VM.Managed.CAD.Track.ShoeDataParametric.md) ← @@ -107,7 +108,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -162,7 +163,7 @@ public ExpressionValueVariable LDQ2 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RQ2 @@ -174,7 +175,7 @@ public ExpressionValueVariable RQ2 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### VDQ2 @@ -186,7 +187,7 @@ public ExpressionValueVariable VDQ2 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -200,7 +201,7 @@ public override List GetPoints_XYPlane() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List The Points diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeDataTriple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeDataTriple.md index 0cb259e73b..e405bc3ebe 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeDataTriple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeDataTriple.md @@ -1,4 +1,5 @@ -# Class ShoeDataTriple +# Class ShoeDataTriple + Namespace: [VM.Managed.CAD.Track](VM.Managed.CAD.Track.md) Assembly: VMDTrackBase.dll @@ -11,9 +12,9 @@ public class ShoeDataTriple : ShoeDataParametric, IObservableObject, IDisposable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ShoeDataBase](VM.Managed.CAD.Track.ShoeDataBase.md) ← [ShoeDataParametric](VM.Managed.CAD.Track.ShoeDataParametric.md) ← @@ -107,7 +108,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -162,7 +163,7 @@ public ExpressionValueVariable SecondGH { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### SecondGLW @@ -174,7 +175,7 @@ public ExpressionValueVariable SecondGLW { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### SecondGUW @@ -186,7 +187,7 @@ public ExpressionValueVariable SecondGUW { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ShoeDistance2 @@ -198,7 +199,7 @@ public ExpressionValueVariable ShoeDistance2 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ShoeDistance3 @@ -210,7 +211,7 @@ public ExpressionValueVariable ShoeDistance3 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TailHeight @@ -222,7 +223,7 @@ public ExpressionValueVariable TailHeight { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ThirdGH @@ -234,7 +235,7 @@ public ExpressionValueVariable ThirdGH { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ThirdGLW @@ -246,7 +247,7 @@ public ExpressionValueVariable ThirdGLW { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ThirdGUW @@ -258,7 +259,7 @@ public ExpressionValueVariable ThirdGUW { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -272,7 +273,7 @@ public override List GetPoints_XYPlane() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List The Points diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeProfileBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeProfileBase.md index 040707807c..fe84c19123 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeProfileBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeProfileBase.md @@ -1,4 +1,5 @@ -# Class ShoeProfileBase +# Class ShoeProfileBase + Namespace: [VM.Managed.CAD.Track](VM.Managed.CAD.Track.md) Assembly: VMDTrackBase.dll @@ -11,7 +12,7 @@ public abstract class ShoeProfileBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ShoeProfileBase](VM.Managed.CAD.Track.ShoeProfileBase.md) #### Derived @@ -47,7 +48,7 @@ protected List m_lstPtOrigin #### Field Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### m\_lstPtWorkPlane @@ -59,7 +60,7 @@ protected List m_lstPtWorkPlane #### Field Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ## Properties @@ -73,7 +74,7 @@ public double BasePlateHeight { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ShoeLength @@ -85,7 +86,7 @@ public double ShoeLength { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -107,7 +108,7 @@ protected virtual bool CreateProfile() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetPointData\_For\_XYPlane\(\) @@ -119,7 +120,7 @@ public List GetPointData_For_XYPlane() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### GetWorkPlaneData\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeProfileDouble.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeProfileDouble.md index ffa2710761..56f3790550 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeProfileDouble.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeProfileDouble.md @@ -1,4 +1,5 @@ -# Class ShoeProfileDouble +# Class ShoeProfileDouble + Namespace: [VM.Managed.CAD.Track](VM.Managed.CAD.Track.md) Assembly: VMDTrackBase.dll @@ -11,7 +12,7 @@ public class ShoeProfileDouble : ShoeProfileParametric #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ShoeProfileBase](VM.Managed.CAD.Track.ShoeProfileBase.md) ← [ShoeProfileParametric](VM.Managed.CAD.Track.ShoeProfileParametric.md) ← [ShoeProfileDouble](VM.Managed.CAD.Track.ShoeProfileDouble.md) @@ -77,7 +78,7 @@ public double SecondGH { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SecondGLW @@ -89,7 +90,7 @@ public double SecondGLW { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SecondGUW @@ -101,7 +102,7 @@ public double SecondGUW { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ShoeDistance2 @@ -113,7 +114,7 @@ public double ShoeDistance2 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TailHeight @@ -125,7 +126,7 @@ public double TailHeight { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -147,7 +148,7 @@ protected override bool CreateProfile() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SetInitializeValue\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeProfileParametric.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeProfileParametric.md index 8bb069ba99..860f2f423f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeProfileParametric.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeProfileParametric.md @@ -1,4 +1,5 @@ -# Class ShoeProfileParametric +# Class ShoeProfileParametric + Namespace: [VM.Managed.CAD.Track](VM.Managed.CAD.Track.md) Assembly: VMDTrackBase.dll @@ -11,7 +12,7 @@ public abstract class ShoeProfileParametric : ShoeProfileBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ShoeProfileBase](VM.Managed.CAD.Track.ShoeProfileBase.md) ← [ShoeProfileParametric](VM.Managed.CAD.Track.ShoeProfileParametric.md) @@ -62,7 +63,7 @@ public double FirstGH { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### FirstGLW @@ -74,7 +75,7 @@ public double FirstGLW { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### FirstGUW @@ -86,7 +87,7 @@ public double FirstGUW { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### LDP1 @@ -98,7 +99,7 @@ public double LDP1 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### LDP2 @@ -110,7 +111,7 @@ public double LDP2 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### LDQ1 @@ -122,7 +123,7 @@ public double LDQ1 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RP1 @@ -134,7 +135,7 @@ public double RP1 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RP2 @@ -146,7 +147,7 @@ public double RP2 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RQ1 @@ -158,7 +159,7 @@ public double RQ1 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ShoeDistance1 @@ -170,7 +171,7 @@ public double ShoeDistance1 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### VDP1 @@ -182,7 +183,7 @@ public double VDP1 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### VDP2 @@ -194,7 +195,7 @@ public double VDP2 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### VDQ1 @@ -206,7 +207,7 @@ public double VDQ1 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -232,7 +233,7 @@ protected List Claculation_TangentPoint_Between_Two_Circle(VectorBas The center position of reference -`dR1` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dR1` double The radius of reference. @@ -240,13 +241,13 @@ The radius of reference. The center position. -`dR2` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dR2` double The radius. #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List The list of points @@ -260,7 +261,7 @@ protected override bool CreateProfile() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetAngleUsingCosine2Law\(VectorBase, VectorBase, VectorBase\) @@ -286,7 +287,7 @@ Point C #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double angle value @@ -304,17 +305,17 @@ protected double[] GetX_UsingEquationOfCircle(VectorBase vecCP, double _dy, doub Center position of circle -`_dy` [double](https://learn.microsoft.com/dotnet/api/system.double) +`_dy` double y-value -`_radius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`_radius` double radius #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] x-value array @@ -332,17 +333,17 @@ protected double[] GetY_UsingEquationOfCircle(VectorBase vecCP, double _dx, doub Center position of circle -`_dx` [double](https://learn.microsoft.com/dotnet/api/system.double) +`_dx` double x-value -`_radius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`_radius` double radius #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] y-value array diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeProfileSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeProfileSimple.md index d2005080c0..8bccd7ae62 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeProfileSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeProfileSimple.md @@ -1,4 +1,5 @@ -# Class ShoeProfileSimple +# Class ShoeProfileSimple + Namespace: [VM.Managed.CAD.Track](VM.Managed.CAD.Track.md) Assembly: VMDTrackBase.dll @@ -11,7 +12,7 @@ public class ShoeProfileSimple : ShoeProfileBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ShoeProfileBase](VM.Managed.CAD.Track.ShoeProfileBase.md) ← [ShoeProfileSimple](VM.Managed.CAD.Track.ShoeProfileSimple.md) @@ -56,7 +57,7 @@ public double GrouserHeight { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GrouserWidth @@ -68,7 +69,7 @@ public double GrouserWidth { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -88,7 +89,7 @@ protected override bool CreateProfile() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SetInitializeValue\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeProfileSingle.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeProfileSingle.md index cb7130df3d..56a4262b64 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeProfileSingle.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeProfileSingle.md @@ -1,4 +1,5 @@ -# Class ShoeProfileSingle +# Class ShoeProfileSingle + Namespace: [VM.Managed.CAD.Track](VM.Managed.CAD.Track.md) Assembly: VMDTrackBase.dll @@ -11,7 +12,7 @@ public class ShoeProfileSingle : ShoeProfileParametric #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ShoeProfileBase](VM.Managed.CAD.Track.ShoeProfileBase.md) ← [ShoeProfileParametric](VM.Managed.CAD.Track.ShoeProfileParametric.md) ← [ShoeProfileSingle](VM.Managed.CAD.Track.ShoeProfileSingle.md) @@ -77,7 +78,7 @@ public double LDQ2 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RQ2 @@ -89,7 +90,7 @@ public double RQ2 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### VDQ2 @@ -101,7 +102,7 @@ public double VDQ2 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -123,7 +124,7 @@ protected override bool CreateProfile() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SetInitializeValue\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeProfileTriple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeProfileTriple.md index 4a7cddfede..196757d0a0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeProfileTriple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.ShoeProfileTriple.md @@ -1,4 +1,5 @@ -# Class ShoeProfileTriple +# Class ShoeProfileTriple + Namespace: [VM.Managed.CAD.Track](VM.Managed.CAD.Track.md) Assembly: VMDTrackBase.dll @@ -11,7 +12,7 @@ public class ShoeProfileTriple : ShoeProfileParametric #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ShoeProfileBase](VM.Managed.CAD.Track.ShoeProfileBase.md) ← [ShoeProfileParametric](VM.Managed.CAD.Track.ShoeProfileParametric.md) ← [ShoeProfileTriple](VM.Managed.CAD.Track.ShoeProfileTriple.md) @@ -77,7 +78,7 @@ public double SecondGH { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SecondGLW @@ -89,7 +90,7 @@ public double SecondGLW { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SecondGUW @@ -101,7 +102,7 @@ public double SecondGUW { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ShoeDistance2 @@ -113,7 +114,7 @@ public double ShoeDistance2 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ShoeDistance3 @@ -125,7 +126,7 @@ public double ShoeDistance3 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TailHeight @@ -137,7 +138,7 @@ public double TailHeight { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ThirdGH @@ -149,7 +150,7 @@ public double ThirdGH { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ThirdGLW @@ -161,7 +162,7 @@ public double ThirdGLW { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ThirdGUW @@ -173,7 +174,7 @@ public double ThirdGUW { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -195,7 +196,7 @@ protected override bool CreateProfile() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SetInitializeValue\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.md index 1588104aad..e428924cd8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Track.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.CAD.Track +# Namespace VM.Managed.CAD.Track + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Vertex.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Vertex.md index bf654d243f..50aa4dc6e8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Vertex.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.Vertex.md @@ -1,4 +1,5 @@ -# Class Vertex +# Class Vertex + Namespace: [VM.Managed.CAD](VM.Managed.CAD.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class Vertex : Topology, IObservableObject, IDisposableObject, ILinkable, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Topology](VM.Managed.CAD.Topology.md) ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), [IAttributeContainer](VM.Managed.IAttributeContainer.md), [ITopology](VM.Managed.ITopology.md) @@ -145,7 +146,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -186,7 +187,7 @@ public void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) ### GetTypeName\(\) @@ -198,7 +199,7 @@ public override string GetTypeName() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The name of topology diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.md index 7f8e4766cd..0b27a97ecc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CAD.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.CAD +# Namespace VM.Managed.CAD + ### Namespaces @@ -338,6 +339,10 @@ This base class is to represent the kernel. This class is to represent the calculate mass property exeption. + [ReDrawForHistoryOp](VM.Managed.CAD.ReDrawForHistoryOp.md) + +This class is to represent the [Get Body Name Attribute] Operation. + [ReferenceBody](VM.Managed.CAD.ReferenceBody.md) This class is to represent the reference of body. @@ -382,7 +387,7 @@ This interface is to represent the vertex container. ### Structs - [BuilderSheetThicken.Rebuild](VM.Managed.CAD.BuilderSheetThicken.Rebuild.md) + [Body.Rebuild](VM.Managed.CAD.Body.Rebuild.md) This class is to represent the event builder for rebuild. @@ -390,7 +395,7 @@ This class is to represent the event builder for rebuild. This class is to represent the event builder for rebuild. - [Body.Rebuild](VM.Managed.CAD.Body.Rebuild.md) + [BuilderSheetThicken.Rebuild](VM.Managed.CAD.BuilderSheetThicken.Rebuild.md) This class is to represent the event builder for rebuild. @@ -424,11 +429,11 @@ Specifies direction type. ### Delegates - [ApplyOperation.ApplyCallback](VM.Managed.CAD.ApplyOperation.ApplyCallback.md) - -Apply delegate - [CADBodyApplyOperation.ApplyCallback](VM.Managed.CAD.CADBodyApplyOperation.ApplyCallback.md) Pre Apply delegate + [ApplyOperation.ApplyCallback](VM.Managed.CAD.ApplyOperation.ApplyCallback.md) + +Apply delegate + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CADOperation.SetInterfaceNamesOp.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CADOperation.SetInterfaceNamesOp.md index d1d055885e..c470acbbaa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CADOperation.SetInterfaceNamesOp.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CADOperation.SetInterfaceNamesOp.md @@ -1,4 +1,5 @@ -# Class CADOperation.SetInterfaceNamesOp +# Class CADOperation.SetInterfaceNamesOp + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,7 +12,7 @@ public class CADOperation.SetInterfaceNamesOp : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [CADOperation.SetInterfaceNamesOp](VM.Managed.CADOperation.SetInterfaceNamesOp.md) @@ -99,7 +100,7 @@ public SetInterfaceNamesOp(IInterfaceSupport support, Dictionary\> +`dic` Dictionary<[IInterface](VM.Managed.IInterface.md), List\> The objectbase and interface names. @@ -115,7 +116,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CADOperation.SetMarkerTramsformOp.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CADOperation.SetMarkerTramsformOp.md index 38353474ed..926ffd7124 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CADOperation.SetMarkerTramsformOp.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CADOperation.SetMarkerTramsformOp.md @@ -1,4 +1,5 @@ -# Class CADOperation.SetMarkerTramsformOp +# Class CADOperation.SetMarkerTramsformOp + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,7 +12,7 @@ public class CADOperation.SetMarkerTramsformOp : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [CADOperation.SetMarkerTramsformOp](VM.Managed.CADOperation.SetMarkerTramsformOp.md) @@ -115,7 +116,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -127,7 +128,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CADOperation.SetShearModulusOp.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CADOperation.SetShearModulusOp.md index 197c458dce..c2adb06e96 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CADOperation.SetShearModulusOp.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CADOperation.SetShearModulusOp.md @@ -1,4 +1,5 @@ -# Class CADOperation.SetShearModulusOp +# Class CADOperation.SetShearModulusOp + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,7 +12,7 @@ public class CADOperation.SetShearModulusOp : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [CADOperation.SetShearModulusOp](VM.Managed.CADOperation.SetShearModulusOp.md) @@ -99,11 +100,11 @@ public SetShearModulusOp(ISO iso, bool bUseShearModulusWithUserInput, string str The iso material. -`bUseShearModulusWithUserInput` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseShearModulusWithUserInput` bool Use shear modulus with user input. -`strShearModulus` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strShearModulus` string The shear modulus. @@ -119,7 +120,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -131,7 +132,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CADOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CADOperation.md index e8c9c6a2ba..394fea8a31 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CADOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CADOperation.md @@ -1,4 +1,5 @@ -# Class CADOperation +# Class CADOperation + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,7 +12,7 @@ public class CADOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CADOperation](VM.Managed.CADOperation.md) #### Extension Methods @@ -44,7 +45,7 @@ public static void SetInterfaceNames(IInterfaceSupport support, Dictionary\> +`dic` Dictionary<[IInterface](VM.Managed.IInterface.md), List\> The objectbase and interface names. @@ -80,11 +81,11 @@ public static void SetShearModulus(ISO iso, bool bUseShearModulusWithUserInput, The ISO Material. -`bUseShearModulusWithUserInput` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseShearModulusWithUserInput` bool Use shear modulus with user input. -`strShearModulus` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strShearModulus` string The sherar modulus. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CanNotOpenWithNewPreprocessorAttribute.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CanNotOpenWithNewPreprocessorAttribute.md index 120fe5123b..43125250d6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CanNotOpenWithNewPreprocessorAttribute.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CanNotOpenWithNewPreprocessorAttribute.md @@ -1,4 +1,5 @@ -# Class CanNotOpenWithNewPreprocessorAttribute +# Class CanNotOpenWithNewPreprocessorAttribute + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -9,8 +10,8 @@ public class CanNotOpenWithNewPreprocessorAttribute : Attribute #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Attribute](https://learn.microsoft.com/dotnet/api/system.attribute) ← +object ← +Attribute ← [CanNotOpenWithNewPreprocessorAttribute](VM.Managed.CanNotOpenWithNewPreprocessorAttribute.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CategoryInfo.Category.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CategoryInfo.Category.md index 1a995c7135..7876c64a68 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CategoryInfo.Category.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CategoryInfo.Category.md @@ -1,4 +1,5 @@ -# Class CategoryInfo.Category +# Class CategoryInfo.Category + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class CategoryInfo.Category #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CategoryInfo.Category](VM.Managed.CategoryInfo.Category.md) #### Extension Methods @@ -40,7 +41,7 @@ public string Image #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Location @@ -50,7 +51,7 @@ public int Location #### Field Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Text @@ -60,7 +61,7 @@ public string Text #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Type @@ -70,5 +71,5 @@ public string Type #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CategoryInfo.TypeInfo.CategoryType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CategoryInfo.TypeInfo.CategoryType.md index a7210c1135..95792186c0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CategoryInfo.TypeInfo.CategoryType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CategoryInfo.TypeInfo.CategoryType.md @@ -1,4 +1,5 @@ -# Class CategoryInfo.TypeInfo.CategoryType +# Class CategoryInfo.TypeInfo.CategoryType + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class CategoryInfo.TypeInfo.CategoryType #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CategoryInfo.TypeInfo.CategoryType](VM.Managed.CategoryInfo.TypeInfo.CategoryType.md) #### Extension Methods @@ -38,7 +39,7 @@ public string Category #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Image @@ -48,7 +49,7 @@ public string Image #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Name @@ -58,5 +59,5 @@ public string Name #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CategoryInfo.TypeInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CategoryInfo.TypeInfo.md index 6663dbb319..156bca7b27 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CategoryInfo.TypeInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CategoryInfo.TypeInfo.md @@ -1,4 +1,5 @@ -# Class CategoryInfo.TypeInfo +# Class CategoryInfo.TypeInfo + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class CategoryInfo.TypeInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CategoryInfo.TypeInfo](VM.Managed.CategoryInfo.TypeInfo.md) #### Extension Methods @@ -38,7 +39,7 @@ public string Name #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Parent @@ -48,7 +49,7 @@ public string Parent #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Types @@ -58,5 +59,5 @@ public List Types #### Field Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[CategoryInfo](VM.Managed.CategoryInfo.md).[TypeInfo](VM.Managed.CategoryInfo.TypeInfo.md).[CategoryType](VM.Managed.CategoryInfo.TypeInfo.CategoryType.md)\> + List<[CategoryInfo](VM.Managed.CategoryInfo.md).[TypeInfo](VM.Managed.CategoryInfo.TypeInfo.md).[CategoryType](VM.Managed.CategoryInfo.TypeInfo.CategoryType.md)\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CategoryInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CategoryInfo.md index 36290e36f5..897dd535f6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CategoryInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CategoryInfo.md @@ -1,4 +1,5 @@ -# Class CategoryInfo +# Class CategoryInfo + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class CategoryInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CategoryInfo](VM.Managed.CategoryInfo.md) #### Extension Methods @@ -38,7 +39,7 @@ public List Categories #### Field Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[CategoryInfo](VM.Managed.CategoryInfo.md).[Category](VM.Managed.CategoryInfo.Category.md)\> + List<[CategoryInfo](VM.Managed.CategoryInfo.md).[Category](VM.Managed.CategoryInfo.Category.md)\> ### Toolkit @@ -48,7 +49,7 @@ public string Toolkit #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeInfos @@ -58,5 +59,5 @@ public List TypeInfos #### Field Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[CategoryInfo](VM.Managed.CategoryInfo.md).[TypeInfo](VM.Managed.CategoryInfo.TypeInfo.md)\> + List<[CategoryInfo](VM.Managed.CategoryInfo.md).[TypeInfo](VM.Managed.CategoryInfo.TypeInfo.md)\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ChangeRefData.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ChangeRefData.md index 35ec520c0f..ef9d9b2115 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ChangeRefData.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ChangeRefData.md @@ -1,4 +1,5 @@ -# Class ChangeRefData +# Class ChangeRefData + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class ChangeRefData #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ChangeRefData](VM.Managed.ChangeRefData.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CheckLicenseManager.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CheckLicenseManager.md index 6ce9508b90..63c06ac1dd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CheckLicenseManager.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CheckLicenseManager.md @@ -1,4 +1,5 @@ -# Class CheckLicenseManager +# Class CheckLicenseManager + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public abstract class CheckLicenseManager #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CheckLicenseManager](VM.Managed.CheckLicenseManager.md) #### Extension Methods @@ -38,7 +39,7 @@ public static string GetToolkitInfoPath() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SetToolkitInfoPath\(string\) @@ -48,5 +49,5 @@ public static void SetToolkitInfoPath(string value) #### Parameters -`value` [string](https://learn.microsoft.com/dotnet/api/system.string) +`value` string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CheckLicenseObject.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CheckLicenseObject.md index ae31f89a3e..76c00e275d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CheckLicenseObject.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CheckLicenseObject.md @@ -1,4 +1,5 @@ -# Class CheckLicenseObject +# Class CheckLicenseObject + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,7 +12,7 @@ public class CheckLicenseObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CheckLicenseObject](VM.Managed.CheckLicenseObject.md) #### Extension Methods @@ -40,17 +41,17 @@ public static bool CheckLicense(object ob, ref string strErrorMsg) #### Parameters -`ob` [object](https://learn.microsoft.com/dotnet/api/system.object) +`ob` object The object. -`strErrorMsg` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strErrorMsg` string The error message. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CheckLicense\(Type, ref string\) @@ -62,17 +63,17 @@ public static bool CheckLicense(Type type, ref string strErrorMsg) #### Parameters -`type` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`type` Type The Type. -`strErrorMsg` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strErrorMsg` string The error message. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CheckLicenseNoErrorMsg\(Type, ref string\) @@ -84,17 +85,17 @@ public static bool CheckLicenseNoErrorMsg(Type type, ref string strErrorMsg) #### Parameters -`type` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`type` Type The Type. -`strErrorMsg` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strErrorMsg` string The error message. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetLicenseErrorMessage\(ILicense\) @@ -112,5 +113,5 @@ The License interface. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CheckedLink-4.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CheckedLink-4.md index 0a154ff015..97737583bf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CheckedLink-4.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CheckedLink-4.md @@ -1,4 +1,5 @@ -# Class CheckedLink +# Class CheckedLink + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -21,7 +22,7 @@ public class CheckedLink : Link](VM.Managed.Link\-4.md) ← [CheckedLink](VM.Managed.CheckedLink\-4.md) @@ -108,9 +109,9 @@ protected CheckedLink(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext ## Properties @@ -124,7 +125,7 @@ public bool Checked { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -136,9 +137,9 @@ protected override void GetObjectData(SerializationInfo info, StreamingContext c #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext ### OnResetLink\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Child-2.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Child-2.md index b5e17c2f87..f6580b5b87 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Child-2.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Child-2.md @@ -1,4 +1,5 @@ -# Class Child +# Class Child + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -22,7 +23,7 @@ The link event. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Child](VM.Managed.Child\-2.md) #### Implements @@ -79,9 +80,9 @@ protected Child(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext ## Properties @@ -107,7 +108,7 @@ protected void Dispose(bool A_0) #### Parameters -`A_0` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`A_0` bool ### Dispose\(\) @@ -127,11 +128,11 @@ void GetObjectData(SerializationInfo info, StreamingContext __unnamed001) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`__unnamed001` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`__unnamed001` StreamingContext ### OnDeserialized\(StreamingContext\) @@ -142,7 +143,7 @@ public void OnDeserialized(StreamingContext context) #### Parameters -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext ### OnPostDeserialized\(StreamingContext\) @@ -152,7 +153,7 @@ public void OnPostDeserialized(StreamingContext context) #### Parameters -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext ### OnResetLink\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CircularReferenceExeption.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CircularReferenceExeption.md index d75b7e8a8d..cbf96ed8ad 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CircularReferenceExeption.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.CircularReferenceExeption.md @@ -1,4 +1,5 @@ -# Class CircularReferenceExeption +# Class CircularReferenceExeption + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public class CircularReferenceExeption : Exception #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Exception](https://learn.microsoft.com/dotnet/api/system.exception) ← +object ← +Exception ← [CircularReferenceExeption](VM.Managed.CircularReferenceExeption.md) #### Extension Methods @@ -33,7 +34,7 @@ public CircularReferenceExeption(string strMessage) #### Parameters -`strMessage` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMessage` string The error message. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.DictionaryCollectionEnumerator-5.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.DictionaryCollectionEnumerator-5.md index ebc4e7a1f7..d10306213f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.DictionaryCollectionEnumerator-5.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.DictionaryCollectionEnumerator-5.md @@ -1,4 +1,5 @@ -# Class DictionaryCollectionEnumerator +# Class DictionaryCollectionEnumerator + Namespace: [VM.Managed.Collections](VM.Managed.Collections.md) Assembly: VMAppCore.dll @@ -21,7 +22,7 @@ public class DictionaryCollectionEnumerator](VM.Managed.Collections.DictionaryCollectionEnumerator\-5.md) #### Extension Methods @@ -40,7 +41,7 @@ public DictionaryCollectionEnumerator(IEnumerator enumerator) #### Parameters -`enumerator` [IEnumerator](https://learn.microsoft.com/dotnet/api/system.collections.ienumerator) +`enumerator` IEnumerator ## Properties @@ -52,7 +53,7 @@ public virtual KeyValuePair Current { get; } #### Property Value - [KeyValuePair](https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair\-2) + KeyValuePair ### CurrentImp @@ -62,7 +63,7 @@ override sealed object CurrentImp { get; } #### Property Value - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ## Methods @@ -74,7 +75,7 @@ protected virtual void Dispose(bool A_0) #### Parameters -`A_0` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`A_0` bool ### Dispose\(\) @@ -96,7 +97,7 @@ public virtual bool MoveNext() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Reset\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.IHasLink.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.IHasLink.md index 4a561b5b3a..38a112142b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.IHasLink.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.IHasLink.md @@ -1,4 +1,5 @@ -# Interface IHasLink +# Interface IHasLink + Namespace: [VM.Managed.Collections](VM.Managed.Collections.md) Assembly: VMAppCore.dll @@ -23,7 +24,7 @@ void GetLink(ICollection colLinks) #### Parameters -`colLinks` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[ILink](VM.Managed.ILink.md)\> +`colLinks` ICollection<[ILink](VM.Managed.ILink.md)\> ### RemoveLink\(ILink\) @@ -41,7 +42,7 @@ The link to remove. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true when need to erase this object, otherwise false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.ILinkCollection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.ILinkCollection.md index 8da55d5c63..2ecf7aa594 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.ILinkCollection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.ILinkCollection.md @@ -1,4 +1,5 @@ -# Interface ILinkCollection +# Interface ILinkCollection + Namespace: [VM.Managed.Collections](VM.Managed.Collections.md) Assembly: VMAppCore.dll @@ -35,7 +36,7 @@ int Count { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -55,11 +56,11 @@ bool Contains(object @object) #### Parameters -`object` [object](https://learn.microsoft.com/dotnet/api/system.object) +`object` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DestroyObject\(object, LinkEventArgs\) @@ -71,7 +72,7 @@ void DestroyObject(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object

    The linked object.

    @@ -95,7 +96,7 @@ void GetAllLinks(ICollection colLinks) #### Parameters -`colLinks` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[ILink](VM.Managed.ILink.md)\> +`colLinks` ICollection<[ILink](VM.Managed.ILink.md)\> ### MakeNullLink\(object\) @@ -105,11 +106,11 @@ bool MakeNullLink(object @object) #### Parameters -`object` [object](https://learn.microsoft.com/dotnet/api/system.object) +`object` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RemoveLink\(ILink\) @@ -133,11 +134,11 @@ bool Reserve(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object `arg` [LinkEventArgs](VM.Managed.LinkEventArgs.md) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.ILinkDictionaryValueConverter-2.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.ILinkDictionaryValueConverter-2.md index 523b5e3a3f..7d2b1a34b4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.ILinkDictionaryValueConverter-2.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.ILinkDictionaryValueConverter-2.md @@ -1,4 +1,5 @@ -# Interface ILinkDictionaryValueConverter +# Interface ILinkDictionaryValueConverter + Namespace: [VM.Managed.Collections](VM.Managed.Collections.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkCollection-3.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkCollection-3.md index 9744cff7df..c7c75edc69 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkCollection-3.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkCollection-3.md @@ -1,4 +1,5 @@ -# Class LinkCollection +# Class LinkCollection + Namespace: [VM.Managed.Collections](VM.Managed.Collections.md) Assembly: VMAppCore.dll @@ -17,7 +18,7 @@ public class LinkCollection : ILinkCollection, IPostDeser #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [LinkCollection](VM.Managed.Collections.LinkCollection\-3.md) #### Implements @@ -75,7 +76,7 @@ protected NotifyCollectionChangedEventHandler m_ehCollectionChanged #### Field Value - [NotifyCollectionChangedEventHandler](https://learn.microsoft.com/dotnet/api/system.collections.specialized.notifycollectionchangedeventhandler) + NotifyCollectionChangedEventHandler ### m\_objLinkOwner @@ -95,7 +96,7 @@ protected object m_syncLock #### Field Value - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ## Properties @@ -107,7 +108,7 @@ public virtual int Count { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### IsReadOnly @@ -117,7 +118,7 @@ public virtual bool IsReadOnly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -141,7 +142,7 @@ public virtual void Add(T item, bool bContainsDocument) `item` T -`bContainsDocument` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bContainsDocument` bool ### AddDestroyEvent\(TLink\) @@ -167,7 +168,7 @@ public virtual void Clear(bool bContainsDocument) #### Parameters -`bContainsDocument` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bContainsDocument` bool ### Contains\(T\) @@ -181,7 +182,7 @@ public virtual bool Contains(T item) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CopyTo\(T\[\], int\) @@ -193,7 +194,7 @@ public virtual void CopyTo(T[] ar, int arrayIndex) `ar` T\[\] -`arrayIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`arrayIndex` int ### GetEnumerator\(\) @@ -203,7 +204,7 @@ public virtual IEnumerator GetEnumerator() #### Returns - [IEnumerator](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator\-1) + IEnumerator ### GetEnumeratorImpl\(\) @@ -213,7 +214,7 @@ IEnumerator GetEnumeratorImpl() #### Returns - [IEnumerator](https://learn.microsoft.com/dotnet/api/system.collections.ienumerator) + IEnumerator ### Remove\(T\) @@ -227,7 +228,7 @@ public virtual bool Remove(T item) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Remove\(T, bool\) @@ -239,11 +240,11 @@ public virtual bool Remove(T item, bool bContainsDocument) `item` T -`bContainsDocument` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bContainsDocument` bool #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SetModified\(ModifiedType, bool\) @@ -255,7 +256,7 @@ public void SetModified(ModifiedType modifiedType, bool bContainsDocument) `modifiedType` [ModifiedType](VM.Managed.Collections.ModifiedType.md) -`bContainsDocument` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bContainsDocument` bool ### SimpleValueModifiedForCollection\(ModifiedType\) @@ -277,7 +278,7 @@ protected void SimpleValueModifiedForCollection(ModifiedType modifiedType, bool `modifiedType` [ModifiedType](VM.Managed.Collections.ModifiedType.md) -`bContainsDocument` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bContainsDocument` bool ### raise\_CollectionChanged\(object, NotifyCollectionChangedEventArgs\) @@ -287,9 +288,9 @@ public void raise_CollectionChanged(object objNotifier, NotifyCollectionChangedE #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object -`e` [NotifyCollectionChangedEventArgs](https://learn.microsoft.com/dotnet/api/system.collections.specialized.notifycollectionchangedeventargs) +`e` NotifyCollectionChangedEventArgs ### CollectionChanged @@ -299,5 +300,5 @@ public event NotifyCollectionChangedEventHandler CollectionChanged #### Event Type - [NotifyCollectionChangedEventHandler](https://learn.microsoft.com/dotnet/api/system.collections.specialized.notifycollectionchangedeventhandler) + NotifyCollectionChangedEventHandler diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkCollectionWithFixedAddition-3.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkCollectionWithFixedAddition-3.md index f8e15ecc0b..873675330b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkCollectionWithFixedAddition-3.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkCollectionWithFixedAddition-3.md @@ -1,4 +1,5 @@ -# Class LinkCollectionWithFixedAddition +# Class LinkCollectionWithFixedAddition + Namespace: [VM.Managed.Collections](VM.Managed.Collections.md) Assembly: VMAppCore.dll @@ -17,7 +18,7 @@ public sealed class LinkCollectionWithFixedAddition : Lin #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [LinkCollection](VM.Managed.Collections.LinkCollection\-3.md) ← [LinkCollectionWithFixedAddition](VM.Managed.Collections.LinkCollectionWithFixedAddition\-3.md) @@ -62,7 +63,7 @@ public LinkCollectionWithFixedAddition(ILinkContainer objParent, int nMin) `objParent` ILinkContainer -`nMin` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nMin` int ### LinkCollectionWithFixedAddition\(ILinkContainer, int, int\) @@ -74,9 +75,9 @@ public LinkCollectionWithFixedAddition(ILinkContainer objParent, int nMin, int n `objParent` ILinkContainer -`nMin` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nMin` int -`nMax` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nMax` int ### LinkCollectionWithFixedAddition\(ILinkContainer, TCollection, int\) @@ -90,7 +91,7 @@ public LinkCollectionWithFixedAddition(ILinkContainer objParent, TCollection col `collection` TCollection -`nMin` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nMin` int ### LinkCollectionWithFixedAddition\(ILinkContainer, TCollection, int, int\) @@ -104,9 +105,9 @@ public LinkCollectionWithFixedAddition(ILinkContainer objParent, TCollection col `collection` TCollection -`nMin` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nMin` int -`nMax` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nMax` int ## Methods @@ -130,7 +131,7 @@ public override sealed void Add(T item, bool bContainsDocument) `item` T -`bContainsDocument` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bContainsDocument` bool ### Remove\(T\) @@ -144,7 +145,7 @@ public override sealed bool Remove(T item) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Remove\(T, bool\) @@ -156,9 +157,9 @@ public override sealed bool Remove(T item, bool bContainsDocument) `item` T -`bContainsDocument` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bContainsDocument` bool #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkDictionaryCollection-2.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkDictionaryCollection-2.md index 73cb42235c..6fa3765827 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkDictionaryCollection-2.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkDictionaryCollection-2.md @@ -1,4 +1,5 @@ -# Class LinkDictionaryCollection +# Class LinkDictionaryCollection + Namespace: [VM.Managed.Collections](VM.Managed.Collections.md) Assembly: VMAppCore.dll @@ -15,9 +16,9 @@ public class LinkDictionaryCollection : LinkDictionaryCollectionBase< #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [LinkDictionaryCollectionBase\>](VM.Managed.Collections.LinkDictionaryCollectionBase\-4.md) ← [LinkDictionaryCollection](VM.Managed.Collections.LinkDictionaryCollection\-2.md) @@ -100,7 +101,7 @@ IPostDeserialized [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -145,7 +146,7 @@ protected LinkDictionaryCollection(SerializationInfo info, StreamingContext cont #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkDictionaryCollectionBase-4.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkDictionaryCollectionBase-4.md index 508afce13c..8862fbbd4f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkDictionaryCollectionBase-4.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkDictionaryCollectionBase-4.md @@ -1,4 +1,5 @@ -# Class LinkDictionaryCollectionBase +# Class LinkDictionaryCollectionBase + Namespace: [VM.Managed.Collections](VM.Managed.Collections.md) Assembly: VMAppCore.dll @@ -19,9 +20,9 @@ public class LinkDictionaryCollectionBase](VM.Managed.Collections.LinkDictionaryCollectionBase\-4.md) @@ -85,7 +86,7 @@ IPostDeserialized [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -130,9 +131,9 @@ protected LinkDictionaryCollectionBase(SerializationInfo info, StreamingContext #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext ## Properties @@ -144,7 +145,7 @@ public virtual int Count { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### IsExternable @@ -156,7 +157,7 @@ public override bool IsExternable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsReadOnly @@ -166,7 +167,7 @@ public virtual bool IsReadOnly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Keys @@ -176,7 +177,7 @@ public virtual ICollection Keys { get; } #### Property Value - [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1) + ICollection ### Values @@ -186,7 +187,7 @@ public virtual ICollection Values { get; } #### Property Value - [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1) + ICollection ### this\[T\] @@ -230,7 +231,7 @@ public bool ContainsKey(T key) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ContainsPtrKey\(UIntPtr\) @@ -240,11 +241,11 @@ public bool ContainsPtrKey(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetObjectDataImpl\(SerializationInfo, StreamingContext\) @@ -254,9 +255,9 @@ virtual void GetObjectDataImpl(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext ### IsSerializableEvent\(Delegate\) @@ -268,13 +269,13 @@ protected override bool IsSerializableEvent(Delegate del) #### Parameters -`del` [Delegate](https://learn.microsoft.com/dotnet/api/system.delegate) +`del` Delegate The delegate. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if is [serializable event] [the specified delegate]; otherwise, false. @@ -288,7 +289,7 @@ protected override sealed void LinkRequestDestroy(object obNotifier, LinkEventAr #### Parameters -`obNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obNotifier` object `arg` [LinkEventArgs](VM.Managed.LinkEventArgs.md) @@ -304,7 +305,7 @@ protected override sealed void LinkRequestUpdate(object obNotifier, LinkEventArg #### Parameters -`obNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obNotifier` object `arg` [LinkEventArgs](VM.Managed.LinkEventArgs.md) @@ -322,7 +323,7 @@ public bool Remove(T key) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TryGetValue\(T, ref TValue\) @@ -338,7 +339,7 @@ public bool TryGetValue(T key, ref TValue value) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### raise\_CollectionChanged\(object, NotifyCollectionChangedEventArgs\) @@ -348,9 +349,9 @@ protected void raise_CollectionChanged(object objNotifier, NotifyCollectionChang #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object -`e` [NotifyCollectionChangedEventArgs](https://learn.microsoft.com/dotnet/api/system.collections.specialized.notifycollectionchangedeventargs) +`e` NotifyCollectionChangedEventArgs ### CollectionChanged @@ -360,5 +361,5 @@ public event NotifyCollectionChangedEventHandler CollectionChanged #### Event Type - [NotifyCollectionChangedEventHandler](https://learn.microsoft.com/dotnet/api/system.collections.specialized.notifycollectionchangedeventhandler) + NotifyCollectionChangedEventHandler diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkDictionaryValueLinkConverter-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkDictionaryValueLinkConverter-1.md index 1f25179675..9f39b504aa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkDictionaryValueLinkConverter-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkDictionaryValueLinkConverter-1.md @@ -1,4 +1,5 @@ -# Struct LinkDictionaryValueLinkConverter +# Struct LinkDictionaryValueLinkConverter + Namespace: [VM.Managed.Collections](VM.Managed.Collections.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkDictionaryValueSimpleConverter-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkDictionaryValueSimpleConverter-1.md index a4dee50bc6..9edb851fae 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkDictionaryValueSimpleConverter-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkDictionaryValueSimpleConverter-1.md @@ -1,4 +1,5 @@ -# Struct LinkDictionaryValueSimpleConverter +# Struct LinkDictionaryValueSimpleConverter + Namespace: [VM.Managed.Collections](VM.Managed.Collections.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkLinkDictionaryCollection-2.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkLinkDictionaryCollection-2.md index aebc35387d..a1e0fd5990 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkLinkDictionaryCollection-2.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkLinkDictionaryCollection-2.md @@ -1,4 +1,5 @@ -# Class LinkLinkDictionaryCollection +# Class LinkLinkDictionaryCollection + Namespace: [VM.Managed.Collections](VM.Managed.Collections.md) Assembly: VMAppCore.dll @@ -15,9 +16,9 @@ public class LinkLinkDictionaryCollection : LinkDictionaryCollectionB #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [LinkDictionaryCollectionBase, LinkDictionaryValueLinkConverter\>](VM.Managed.Collections.LinkDictionaryCollectionBase\-4.md) ← [LinkLinkDictionaryCollection](VM.Managed.Collections.LinkLinkDictionaryCollection\-2.md) @@ -100,7 +101,7 @@ IPostDeserialized [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -135,7 +136,7 @@ protected LinkLinkDictionaryCollection(SerializationInfo info, StreamingContext #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkLinkedList-2.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkLinkedList-2.md index c6b9750044..f934d46a36 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkLinkedList-2.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkLinkedList-2.md @@ -1,4 +1,5 @@ -# Class LinkLinkedList +# Class LinkLinkedList + Namespace: [VM.Managed.Collections](VM.Managed.Collections.md) Assembly: VMAppCore.dll @@ -15,7 +16,7 @@ public sealed class LinkLinkedList : LinkCollection\>](VM.Managed.Collections.LinkCollection\-3.md) ← [LinkLinkedList](VM.Managed.Collections.LinkLinkedList\-2.md) @@ -70,7 +71,7 @@ public LinkLinkedList(ILinkContainer objParent, LinkedList collection) `objParent` ILinkContainer -`collection` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) +`collection` LinkedList ## Properties @@ -82,7 +83,7 @@ public LinkedListNode First { get; } #### Property Value - [LinkedListNode](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlistnode\-1) + LinkedListNode ### Last @@ -92,7 +93,7 @@ public LinkedListNode Last { get; } #### Property Value - [LinkedListNode](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlistnode\-1) + LinkedListNode ### UseSearchCache @@ -102,7 +103,7 @@ public bool UseSearchCache { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -126,7 +127,7 @@ public override sealed void Add(T item, bool bContainsDocument) `item` T -`bContainsDocument` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bContainsDocument` bool ### AddAfter\(T, T\) @@ -142,7 +143,7 @@ public LinkedListNode AddAfter(T item, T newItem) #### Returns - [LinkedListNode](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlistnode\-1) + LinkedListNode ### AddBefore\(T, T\) @@ -158,7 +159,7 @@ public LinkedListNode AddBefore(T item, T newItem) #### Returns - [LinkedListNode](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlistnode\-1) + LinkedListNode ### AddFirst\(T\) @@ -172,7 +173,7 @@ public LinkedListNode AddFirst(T item) #### Returns - [LinkedListNode](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlistnode\-1) + LinkedListNode ### AddLast\(T\) @@ -186,7 +187,7 @@ public LinkedListNode AddLast(T item) #### Returns - [LinkedListNode](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlistnode\-1) + LinkedListNode ### Clear\(\) @@ -202,7 +203,7 @@ public override sealed void Clear(bool bContainsDocument) #### Parameters -`bContainsDocument` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bContainsDocument` bool ### Contains\(T\) @@ -216,7 +217,7 @@ public override sealed bool Contains(T item) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Remove\(T\) @@ -230,7 +231,7 @@ public override sealed bool Remove(T item) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Remove\(T, bool\) @@ -242,9 +243,9 @@ public override sealed bool Remove(T item, bool bContainsDocument) `item` T -`bContainsDocument` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bContainsDocument` bool #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkListCollection-2.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkListCollection-2.md index 24d0a7fba4..29144730af 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkListCollection-2.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkListCollection-2.md @@ -1,4 +1,5 @@ -# Class LinkListCollection +# Class LinkListCollection + Namespace: [VM.Managed.Collections](VM.Managed.Collections.md) Assembly: VMAppCore.dll @@ -15,7 +16,7 @@ public class LinkListCollection : LinkCollection #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [LinkCollection\>](VM.Managed.Collections.LinkCollection\-3.md) ← [LinkListCollection](VM.Managed.Collections.LinkListCollection\-2.md) @@ -77,7 +78,7 @@ public LinkListCollection(ILinkContainer objParent, List collection) `objParent` ILinkContainer -`collection` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`collection` List ## Properties @@ -111,7 +112,7 @@ public virtual int IndexOf(T item) #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Insert\(int, T\) @@ -121,7 +122,7 @@ public virtual void Insert(int index, T item) #### Parameters -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int `item` T @@ -137,7 +138,7 @@ public override bool Remove(T item) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Remove\(T, bool\) @@ -149,11 +150,11 @@ public override bool Remove(T item, bool bContainsDocument) `item` T -`bContainsDocument` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bContainsDocument` bool #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RemoveAt\(int\) @@ -163,7 +164,7 @@ public virtual void RemoveAt(int index) #### Parameters -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int ### RemoveAt\(int, bool\) @@ -173,9 +174,9 @@ public virtual void RemoveAt(int index, bool bContainsDocument) #### Parameters -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int -`bContainsDocument` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bContainsDocument` bool ### Replace\(T, T\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkListCollectionWithFixedAddition-2.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkListCollectionWithFixedAddition-2.md index cb472bfa21..a111ffa918 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkListCollectionWithFixedAddition-2.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.LinkListCollectionWithFixedAddition-2.md @@ -1,4 +1,5 @@ -# Class LinkListCollectionWithFixedAddition +# Class LinkListCollectionWithFixedAddition + Namespace: [VM.Managed.Collections](VM.Managed.Collections.md) Assembly: VMAppCore.dll @@ -15,7 +16,7 @@ public class LinkListCollectionWithFixedAddition : LinkListCollection< #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [LinkCollection\>](VM.Managed.Collections.LinkCollection\-3.md) ← [LinkListCollection](VM.Managed.Collections.LinkListCollection\-2.md) ← [LinkListCollectionWithFixedAddition](VM.Managed.Collections.LinkListCollectionWithFixedAddition\-2.md) @@ -78,7 +79,7 @@ public LinkListCollectionWithFixedAddition(ILinkContainer objParent, int nMin) `objParent` ILinkContainer -`nMin` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nMin` int ### LinkListCollectionWithFixedAddition\(ILinkContainer, int, int\) @@ -90,9 +91,9 @@ public LinkListCollectionWithFixedAddition(ILinkContainer objParent, int nMin, i `objParent` ILinkContainer -`nMin` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nMin` int -`nMax` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nMax` int ### LinkListCollectionWithFixedAddition\(ILinkContainer, List, int\) @@ -104,9 +105,9 @@ public LinkListCollectionWithFixedAddition(ILinkContainer objParent, List `objParent` ILinkContainer -`collection` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`collection` List -`nMin` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nMin` int ### LinkListCollectionWithFixedAddition\(ILinkContainer, List, int, int\) @@ -118,11 +119,11 @@ public LinkListCollectionWithFixedAddition(ILinkContainer objParent, List `objParent` ILinkContainer -`collection` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`collection` List -`nMin` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nMin` int -`nMax` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nMax` int ## Methods @@ -146,7 +147,7 @@ public override sealed void Add(T item, bool bContainsDocument) `item` T -`bContainsDocument` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bContainsDocument` bool ### Insert\(int, T\) @@ -156,7 +157,7 @@ public override sealed void Insert(int index, T item) #### Parameters -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int `item` T @@ -172,7 +173,7 @@ public override sealed bool Remove(T item) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Remove\(T, bool\) @@ -184,11 +185,11 @@ public override sealed bool Remove(T item, bool bContainsDocument) `item` T -`bContainsDocument` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bContainsDocument` bool #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RemoveAt\(int\) @@ -198,5 +199,5 @@ public override sealed void RemoveAt(int index) #### Parameters -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.ModifiedType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.ModifiedType.md index ae99a22df6..0c2c11f9a0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.ModifiedType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.ModifiedType.md @@ -1,4 +1,5 @@ -# Enum ModifiedType +# Enum ModifiedType + Namespace: [VM.Managed.Collections](VM.Managed.Collections.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.NamedObjectDictionary-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.NamedObjectDictionary-1.md index 9b1fefee57..63393337e8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.NamedObjectDictionary-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.NamedObjectDictionary-1.md @@ -1,4 +1,5 @@ -# Class NamedObjectDictionary +# Class NamedObjectDictionary + Namespace: [VM.Managed.Collections](VM.Managed.Collections.md) Assembly: VMObjBase.dll @@ -17,9 +18,9 @@ T has name #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← [NamedObjectDictionary](VM.Managed.Collections.NamedObjectDictionary\-1.md) @@ -92,7 +93,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -147,7 +148,7 @@ public int Count { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### IsExternable @@ -159,7 +160,7 @@ public override bool IsExternable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsReadOnly @@ -171,7 +172,7 @@ public bool IsReadOnly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### this\[string\] @@ -203,7 +204,7 @@ The object to add to the is read-only. @@ -217,7 +218,7 @@ public void ChangeName(string strOldName, T obj) #### Parameters -`strOldName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOldName` string The old name. @@ -235,7 +236,7 @@ public void Clear() #### Exceptions - [NotSupportedException](https://learn.microsoft.com/dotnet/api/system.notsupportedexception) + NotSupportedException The is read-only. @@ -255,7 +256,7 @@ The object to locate in the item is found in the ; otherwise, false. @@ -273,7 +274,7 @@ public void CopyTo(T[] array, int arrayIndex) The one-dimensional that is the destination of the elements copied from . The must have zero-based indexing. -`arrayIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`arrayIndex` int The zero-based index in array at which copying begins. @@ -287,7 +288,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -307,7 +308,7 @@ public IEnumerator GetEnumerator() #### Returns - [IEnumerator](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator\-1) + IEnumerator A that can be used to iterate through the collection. @@ -321,7 +322,7 @@ public XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -335,7 +336,7 @@ public SortedList GetSortedEntity() #### Returns - [SortedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.sortedlist\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), T\> + SortedList ### IsSerializableEvent\(Delegate\) @@ -347,13 +348,13 @@ protected override bool IsSerializableEvent(Delegate del) #### Parameters -`del` [Delegate](https://learn.microsoft.com/dotnet/api/system.delegate) +`del` Delegate The del. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if [is serializable event] [the specified del]; otherwise, false. @@ -367,7 +368,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -385,7 +386,7 @@ protected override void OnChildUpdated(object obj, LinkEventArgs args) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The object. @@ -403,7 +404,7 @@ public void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The stream from which the object is deserialized. @@ -417,13 +418,13 @@ public bool Remove(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The Name. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -443,13 +444,13 @@ The object to remove from the item was successfully removed from the ; otherwise, false. This method also returns false if item is not found in the original . #### Exceptions - [NotSupportedException](https://learn.microsoft.com/dotnet/api/system.notsupportedexception) + NotSupportedException The is read-only. @@ -463,7 +464,7 @@ public void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.md index bda26fdbd4..641c243159 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Collections.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.Collections +# Namespace VM.Managed.Collections + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ColorXmlSerializer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ColorXmlSerializer.md index 0da49cd25d..899ccbcead 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ColorXmlSerializer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ColorXmlSerializer.md @@ -1,4 +1,5 @@ -# Class ColorXmlSerializer +# Class ColorXmlSerializer + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class ColorXmlSerializer #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ColorXmlSerializer](VM.Managed.ColorXmlSerializer.md) #### Extension Methods @@ -32,7 +33,7 @@ public ColorXmlSerializer(Color color) #### Parameters -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) +`color` Color The color. @@ -56,7 +57,7 @@ public Color Data { get; set; } #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ## Methods @@ -68,7 +69,7 @@ public virtual XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema ### ReadXml\(XmlReader\) @@ -78,7 +79,7 @@ public virtual void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader ### WriteXml\(XmlWriter\) @@ -88,7 +89,7 @@ public virtual void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter ## Operators @@ -108,7 +109,7 @@ The color xmlserializer. #### Returns - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### implicit operator ColorXmlSerializer\(Color\) @@ -120,7 +121,7 @@ public static implicit operator ColorXmlSerializer(Color o) #### Parameters -`o` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) +`o` Color The color. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Container.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Container.md index 76c54dad2e..746fddfc43 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Container.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Container.md @@ -1,4 +1,5 @@ -# Class Container +# Class Container + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public abstract class Container : LinkContainer, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [Container](VM.Managed.Container.md) @@ -80,7 +81,7 @@ IHasID [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -135,7 +136,7 @@ public virtual IObjectBase Find(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The DAFUL object full name. @@ -155,7 +156,7 @@ public abstract IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The DAFUL object name. @@ -175,25 +176,25 @@ public string GetNewEntityName(string strPrefix, bool bUseUnderLine, int nNumFig #### Parameters -`strPrefix` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefix` string The DAFUL object prefix name. -`bUseUnderLine` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseUnderLine` bool Whether use underline. -`nNumFigure` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNumFigure` int The Number of Figure. -`nStartIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nStartIndex` int The start index. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The DAFUL object name. @@ -207,21 +208,21 @@ public string GetNewEntityName(string strPrefix, bool bUseUnderLine, int nNumFig #### Parameters -`strPrefix` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefix` string The DAFUL object prefix name. -`bUseUnderLine` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseUnderLine` bool Whether use underline. -`nNumFigure` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNumFigure` int The Number of Figure. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The DAFUL object name. @@ -235,13 +236,13 @@ public string GetNewEntityName(string strPrefix) #### Parameters -`strPrefix` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefix` string The DAFUL object prefix name. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The DAFUL object name. @@ -255,13 +256,13 @@ public virtual string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The unnamed object. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The unnamed object name. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ContainerImpl.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ContainerImpl.md index 11fac9df6d..835be0bcf5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ContainerImpl.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ContainerImpl.md @@ -1,4 +1,5 @@ -# Class ContainerImpl +# Class ContainerImpl + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class ContainerImpl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ContainerImpl](VM.Managed.ContainerImpl.md) #### Extension Methods @@ -40,7 +41,7 @@ public static string NewNamePattern { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -58,7 +59,7 @@ public static IObjectBase Find(IContainer container, string strName) The DAFUL object container. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The DAFUL object name. @@ -82,25 +83,25 @@ public static string GetNewEntityName(IContainer container, string strPrefix, bo The DAFUL object container. -`strPrefix` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefix` string The DAFUL object prefix name. -`bUseUnderLine` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseUnderLine` bool Whether use underline. -`nNumFigure` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNumFigure` int The Number of Figure. -`nStartIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nStartIndex` int The start index. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The DAFUL object name. @@ -118,21 +119,21 @@ public static string GetNewEntityName(IContainer container, string strPrefix, bo The DAFUL object container. -`strPrefix` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefix` string The DAFUL object prefix name. -`bUseUnderLine` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseUnderLine` bool Whether use underline. -`nNumFigure` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNumFigure` int The Number of Figure. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The DAFUL object name. @@ -150,13 +151,13 @@ public static string GetNewEntityName(IContainer container, string strPrefix) The DAFUL object container. -`strPrefix` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefix` string The DAFUL object prefix name. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The DAFUL object name. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ContainerObject-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ContainerObject-1.md index 757d3206b0..0b6dc3b8f2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ContainerObject-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ContainerObject-1.md @@ -1,4 +1,5 @@ -# Class ContainerObject +# Class ContainerObject + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -17,9 +18,9 @@ The event core. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [ContainerObject](VM.Managed.ContainerObject\-1.md) @@ -35,7 +36,7 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), [IAttributeContainer](VM.Managed.IAttributeContainer.md), IContainer, ILinkContainer, @@ -136,7 +137,7 @@ IHasID [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -175,11 +176,11 @@ protected ContainerObject(string strProxyName, string strBuildInfo) #### Parameters -`strProxyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strProxyName` string The name of proxy. -`strBuildInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBuildInfo` string The build information. @@ -195,7 +196,7 @@ public virtual IObjectBase Find(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The DAFUL object full name. @@ -215,7 +216,7 @@ public virtual IObjectBase FindLocal(string A_0) #### Parameters -`A_0` [string](https://learn.microsoft.com/dotnet/api/system.string) +`A_0` string #### Returns @@ -233,13 +234,13 @@ public string GetNewEntityName(string strPrefix) #### Parameters -`strPrefix` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefix` string The DAFUL object prefix name. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The DAFUL object name. @@ -253,21 +254,21 @@ public string GetNewEntityName(string strPrefix, bool bUseUnderLine, int nNumFig #### Parameters -`strPrefix` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefix` string The DAFUL object prefix name. -`bUseUnderLine` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseUnderLine` bool Whether use underline. -`nNumFigure` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNumFigure` int The Number of Figure. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The DAFUL object name. @@ -281,25 +282,25 @@ public string GetNewEntityName(string strPrefix, bool bUseUnderLine, int nNumFig #### Parameters -`strPrefix` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefix` string The DAFUL object prefix name. -`bUseUnderLine` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseUnderLine` bool Whether use underline. -`nNumFigure` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNumFigure` int The Number of Figure. -`nStartIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nStartIndex` int The start index. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The DAFUL object name. @@ -313,13 +314,13 @@ public virtual string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The unnamed object. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The unnamed object name. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ControlCreateInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ControlCreateInfo.md index b11fa4f2f3..ac5536f8f3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ControlCreateInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ControlCreateInfo.md @@ -1,4 +1,5 @@ -# Class ControlCreateInfo +# Class ControlCreateInfo + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class ControlCreateInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ControlCreateInfo](VM.Managed.ControlCreateInfo.md) #### Extension Methods @@ -40,7 +41,7 @@ public string Assembly #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Control @@ -52,7 +53,7 @@ public string Control #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### XPath @@ -64,5 +65,5 @@ public string XPath #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ControlDocCreateInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ControlDocCreateInfo.md index ee26a5c1b3..0b5412408f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ControlDocCreateInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ControlDocCreateInfo.md @@ -1,4 +1,5 @@ -# Class ControlDocCreateInfo +# Class ControlDocCreateInfo + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class ControlDocCreateInfo : DocCreateInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DocCreateInfo](VM.Managed.DocCreateInfo.md) ← [ControlDocCreateInfo](VM.Managed.ControlDocCreateInfo.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ControlDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ControlDocument.md index b7be793b18..81ebbd75ab 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ControlDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ControlDocument.md @@ -1,4 +1,5 @@ -# Class ControlDocument +# Class ControlDocument + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class ControlDocument : Document, IObservableObject, IDisposableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [Container](VM.Managed.Container.md) ← [Document](VM.Managed.Document.md) ← @@ -35,7 +36,7 @@ IOwned, IHasID, [IEnableManager](VM.Managed.IEnableManager.md), [IRelatedDocument](VM.Managed.IRelatedDocument.md), -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), [IControlDocument](VM.Managed.IControlDocument.md) #### Inherited Members @@ -234,7 +235,7 @@ IHistorySupport, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -273,7 +274,7 @@ public override bool CanClose { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsPropertySupport @@ -283,7 +284,7 @@ public virtual bool IsPropertySupport { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsReload @@ -293,7 +294,7 @@ public virtual bool IsReload { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Modified @@ -305,7 +306,7 @@ public override bool Modified { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -331,7 +332,7 @@ public override View CreateView(UIntPtr hWnd) #### Parameters -`hWnd` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`hWnd` UIntPtr The view handle. @@ -349,7 +350,7 @@ public override IObjectBase FindLocal(string A_0) #### Parameters -`A_0` [string](https://learn.microsoft.com/dotnet/api/system.string) +`A_0` string #### Returns @@ -371,7 +372,7 @@ public override bool IsEnabledImpl(ObjectBase A_0) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if is enabled [the specified object]; otherwise, false. @@ -385,7 +386,7 @@ public override void IsTypeSupported(Type A_0) #### Parameters -`A_0` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`A_0` Type ### Load\(string\) @@ -395,7 +396,7 @@ public virtual void Load(string strPath) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string ### OnPostMakeDocument\(DocCreateInfo\) @@ -419,7 +420,7 @@ public override void Save(string strPath) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The path to save. @@ -435,7 +436,7 @@ public override void SetEnableImpl(ObjectBase A_0, bool A_1) `A_0` [ObjectBase](VM.Managed.ObjectBase.md) -`A_1` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`A_1` bool ### SetUnit\(Unit\) @@ -471,5 +472,5 @@ public override void UpdateEnable(ObjectBase A_0, bool A_1) `A_0` [ObjectBase](VM.Managed.ObjectBase.md) -`A_1` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`A_1` bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ArgumentBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ArgumentBase.md index c39cc48efd..64e7e27987 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ArgumentBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ArgumentBase.md @@ -1,4 +1,5 @@ -# Class ArgumentBase +# Class ArgumentBase + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSB.dll @@ -11,9 +12,9 @@ public abstract class ArgumentBase : LinkContainer, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ArgumentBase](VM.Managed.DAFUL.ArgumentBase.md) @@ -80,7 +81,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -133,7 +134,7 @@ public ArgumentBase(string name, ArgumentListGeneral owner) #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of this argument. @@ -165,7 +166,7 @@ public abstract string Expression { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Name @@ -177,5 +178,5 @@ public string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ArgumentLink.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ArgumentLink.md index 88ae75634f..c4d46d710c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ArgumentLink.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ArgumentLink.md @@ -1,4 +1,5 @@ -# Class ArgumentLink +# Class ArgumentLink + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSB.dll @@ -11,9 +12,9 @@ public class ArgumentLink : ArgumentBase, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ArgumentBase](VM.Managed.DAFUL.ArgumentBase.md) ← [ArgumentLink](VM.Managed.DAFUL.ArgumentLink.md) @@ -80,7 +81,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -133,7 +134,7 @@ public ArgumentLink(string name, IArgument arg) #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name of this argument. @@ -209,7 +210,7 @@ public override string Expression { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -223,7 +224,7 @@ public XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -237,7 +238,7 @@ protected override void LinkRequestDestroy(object objNotifier, LinkEventArgs arg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -255,7 +256,7 @@ public void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The stream from which the object is deserialized. @@ -269,7 +270,7 @@ public void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ArgumentList.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ArgumentList.md index 83612f7835..5ba2df08b1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ArgumentList.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ArgumentList.md @@ -1,4 +1,5 @@ -# Class ArgumentList +# Class ArgumentList + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSB.dll @@ -12,9 +13,9 @@ public class ArgumentList : LinkContainer, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ArgumentList](VM.Managed.DAFUL.ArgumentList.md) @@ -76,7 +77,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -115,7 +116,7 @@ public ArgumentList(SubEntity owner) #### Parameters -`owner` SubEntity +`owner` [SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) The owner subentity. @@ -131,7 +132,7 @@ public List\> + List\> ### Count @@ -143,7 +144,7 @@ public int Count { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### this\[int\] @@ -175,7 +176,7 @@ The arg. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if [contains] [the specified arg]; otherwise, false. @@ -189,7 +190,7 @@ public XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -203,7 +204,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -221,7 +222,7 @@ public void ReadTemplate(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -235,7 +236,7 @@ public void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The stream from which the object is deserialized. @@ -249,7 +250,7 @@ public void WriteTemplate(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. @@ -263,7 +264,7 @@ public void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ArgumentListGeneral.delGetArgument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ArgumentListGeneral.delGetArgument.md index cc5f7488b4..8526b27e26 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ArgumentListGeneral.delGetArgument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ArgumentListGeneral.delGetArgument.md @@ -1,4 +1,5 @@ -# Delegate ArgumentListGeneral.delGetArgument +# Delegate ArgumentListGeneral.delGetArgument + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSB.dll @@ -15,7 +16,7 @@ public delegate object ArgumentListGeneral.delGetArgument(IConnector connector) #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ArgumentListGeneral.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ArgumentListGeneral.md index b10a137028..4388dc21ca 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ArgumentListGeneral.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ArgumentListGeneral.md @@ -1,4 +1,5 @@ -# Class ArgumentListGeneral +# Class ArgumentListGeneral + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSB.dll @@ -11,9 +12,9 @@ public class ArgumentListGeneral : LinkContainer, IObservableObject, IDisposable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ArgumentListGeneral](VM.Managed.DAFUL.ArgumentListGeneral.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -114,7 +115,7 @@ public ArgumentListGeneral(SubEntity owner) #### Parameters -`owner` SubEntity +`owner` [SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) The owner subentity. @@ -142,7 +143,7 @@ public int Count { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### IsReadOnly @@ -152,7 +153,7 @@ public bool IsReadOnly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReservedArguments @@ -162,7 +163,7 @@ public static List ReservedArguments { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### ValidationArguments @@ -174,7 +175,7 @@ public IEnumerable<(string Name, ArgumentTypes Type)> ValidationArguments { get; #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<\([string](https://learn.microsoft.com/dotnet/api/system.string) [Name](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.string,vm.argumenttypes\-.name), ArgumentTypes [Type](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.string,vm.argumenttypes\-.type)\)\> + IEnumerable<\(string Name, ArgumentTypes Type\)\> ### this\[int\] @@ -228,7 +229,7 @@ The arg. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if [contains] [the specified arg]; otherwise, false. @@ -246,7 +247,7 @@ public bool Contains(ArgumentBase item) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ContainsReservedArgument\(\) @@ -258,7 +259,7 @@ public bool ContainsReservedArgument() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if [contains] [the reserved arg]; otherwise, false. @@ -274,7 +275,7 @@ public void CopyTo(ArgumentBase[] array, int arrayIndex) `array` [ArgumentBase](VM.Managed.DAFUL.ArgumentBase.md)\[\] -`arrayIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`arrayIndex` int ### GetACTION\(IConnector\) @@ -288,7 +289,7 @@ public static object GetACTION(IConnector connector) #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### GetACTIONDOC\(IConnector\) @@ -302,7 +303,7 @@ public static object GetACTIONDOC(IConnector connector) #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### GetAM\(IConnector\) @@ -316,7 +317,7 @@ public static object GetAM(IConnector connector) #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### GetArgument\(string, IDocument\) @@ -328,7 +329,7 @@ public static IArgument GetArgument(string strArgument, IDocument doc) #### Parameters -`strArgument` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strArgument` string `doc` IDocument @@ -346,7 +347,7 @@ public static IArgument GetArgument(string strArgument, IConnector connector) #### Parameters -`strArgument` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strArgument` string `connector` IConnector @@ -366,7 +367,7 @@ public static object GetBASE(IConnector connector) #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### GetBASEDOC\(IConnector\) @@ -380,7 +381,7 @@ public static object GetBASEDOC(IConnector connector) #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### GetBM\(IConnector\) @@ -394,7 +395,7 @@ public static object GetBM(IConnector connector) #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### GetEnumerator\(\) @@ -406,7 +407,7 @@ public IEnumerator GetEnumerator() #### Returns - [IEnumerator](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator\-1)<[ArgumentBase](VM.Managed.DAFUL.ArgumentBase.md)\> + IEnumerator<[ArgumentBase](VM.Managed.DAFUL.ArgumentBase.md)\> ### GetSchema\(\) @@ -418,7 +419,7 @@ public XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -436,7 +437,7 @@ public int IndexOf(ArgumentBase item) #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Insert\(int, ArgumentBase\) @@ -448,7 +449,7 @@ public void Insert(int nIndex, ArgumentBase argumentBase) #### Parameters -`nIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIndex` int The index. @@ -466,7 +467,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -484,7 +485,7 @@ public void ReadTemplate(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -498,7 +499,7 @@ public void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The stream from which the object is deserialized. @@ -518,7 +519,7 @@ The argumentBase. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RemoveAt\(int\) @@ -530,7 +531,7 @@ public void RemoveAt(int index) #### Parameters -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int ### WriteTemplate\(XmlWriter\) @@ -542,7 +543,7 @@ public void WriteTemplate(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. @@ -556,7 +557,7 @@ public void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ArgumentString.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ArgumentString.md index e51d89e853..2055128e5a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ArgumentString.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ArgumentString.md @@ -1,4 +1,5 @@ -# Class ArgumentString +# Class ArgumentString + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSB.dll @@ -11,9 +12,9 @@ public class ArgumentString : ArgumentBase, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ArgumentBase](VM.Managed.DAFUL.ArgumentBase.md) ← [ArgumentString](VM.Managed.DAFUL.ArgumentString.md) @@ -79,7 +80,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -146,7 +147,7 @@ public override string Expression { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### String @@ -158,7 +159,7 @@ public string String { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -172,7 +173,7 @@ public XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -186,7 +187,7 @@ public void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The stream from which the object is deserialized. @@ -200,7 +201,7 @@ public void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Array.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Array.md index 4082b1f58b..9e22e45ddc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Array.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Array.md @@ -1,4 +1,5 @@ -# Class Array +# Class Array + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSP.dll @@ -11,12 +12,12 @@ public class Array : SubEntity, IObservableObject, IDisposableObject, ILinkable, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [Array](VM.Managed.DAFUL.Array.md) #### Implements @@ -26,7 +27,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -48,17 +49,17 @@ ITemplateObject #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -151,7 +152,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -190,7 +191,7 @@ public Array(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the array. @@ -218,7 +219,7 @@ public int ArraySize { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### IsInterface @@ -230,7 +231,7 @@ public bool IsInterface { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReferenceType @@ -242,7 +243,7 @@ public string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -270,7 +271,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -284,7 +285,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AssembledBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AssembledBody.md index 6a0cdce8ed..1c728eb492 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AssembledBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AssembledBody.md @@ -1,4 +1,5 @@ -# Class AssembledBody +# Class AssembledBody + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,13 +12,13 @@ public class AssembledBody : InstanceContainer, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← -InstanceContainer ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← +[InstanceContainer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs) ← [AssembledBody](VM.Managed.DAFUL.AssembledBody.md) #### Implements @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -78,46 +79,46 @@ IHasMaterial #### Inherited Members -InstanceContainer.InitInterfaceTable\(\), -InstanceContainer.LinkRequestUpdate\(object, LinkEventArgs\), -InstanceContainer.BindInterface\(\), -InstanceContainer.BindInterface\(ObjectBase, ObjectBase\), -InstanceContainer.BindInterface\(InstanceContainer.InterfaceTable\), -InstanceContainer.Find\(string\), -InstanceContainer.FindLocal\(string\), -InstanceContainer.GetNewEntityName\(string\), -InstanceContainer.GetNewEntityName\(string, bool, int\), -InstanceContainer.GetNewEntityName\(string, bool, int, int\), -InstanceContainer.GetUnnamedObjectName\(object\), -InstanceContainer.MakeReferenceImpl\(LinkedList\), -InstanceContainer.PostOpenDocumentAfterHookEvent\(\), -InstanceContainer.TransformImpl\(TMatrix\), -InstanceContainer.Redraw\(\), -InstanceContainer.GetLayerImpl\(\), -InstanceContainer.SetLayerImpl\(Layer\), -InstanceContainer.IsDestroyContainer\(\), -InstanceContainer.GetTargetListForUpdate\(\), -InstanceContainer.ProcessDuplicateReferenceImpl\(Reference\), -InstanceContainer.PostAddToDocument\(\), -InstanceContainer.LinkRequestDestroy\(object, LinkEventArgs\), -InstanceContainer.GetChildListImpl\(\), -InstanceContainer.OnDeserialization\(object\), -InstanceContainer.Instance, -InstanceContainer.InterfaceTableList, -InstanceContainer.InterfaceTables, -InstanceContainer.Layer, -InstanceContainer.IsVisible, -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[InstanceContainer.InitInterfaceTable\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.BindInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.BindInterface\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.BindInterface\(InstanceContainer.InterfaceTable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.Find\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetNewEntityName\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetNewEntityName\(string, bool, int\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetNewEntityName\(string, bool, int, int\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.TransformImpl\(TMatrix\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.Redraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.IsDestroyContainer\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.ProcessDuplicateReferenceImpl\(Reference\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetChildListImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.Instance](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.InterfaceTableList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.InterfaceTables](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -210,7 +211,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -249,7 +250,7 @@ public AssembledBody(string strName, Instance instance) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the assembled body. @@ -305,7 +306,7 @@ public string ConnectableFullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ConnectableName @@ -317,7 +318,7 @@ public string ConnectableName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ConnectablePosition @@ -341,7 +342,7 @@ public string ConnectablePostfixName { set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### DFMFPath @@ -353,7 +354,7 @@ public string DFMFPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Geometry @@ -365,7 +366,7 @@ public virtual List Geometry { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### LastModifiedTimeToDFMFFile @@ -377,7 +378,7 @@ public string LastModifiedTimeToDFMFFile { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ModalReferencePosition @@ -461,7 +462,7 @@ public override string TopologyEntityTypeName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UseAdvancedOption @@ -473,7 +474,7 @@ public bool UseAdvancedOption { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseModalReferencePosition @@ -485,7 +486,7 @@ public bool UseModalReferencePosition { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseRMovingReferenceFrame @@ -497,7 +498,7 @@ public bool UseRMovingReferenceFrame { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseTMovingReferenceFrame @@ -509,7 +510,7 @@ public bool UseTMovingReferenceFrame { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### \_MovingReferenceFrame @@ -535,7 +536,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -561,7 +562,7 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -575,7 +576,7 @@ public override void GetArgumentList(LinkedList lstObj) #### Parameters -`lstObj` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) +`lstObj` LinkedList The argument object list. @@ -603,7 +604,7 @@ protected override IEnumerable GetChildListImpl() #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) + IEnumerable All children @@ -617,11 +618,11 @@ protected bool GetGeneralMarkerInfo(XmlDocument xmlDom, XmlElement xmlEle, Marke #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for marker. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for marker. @@ -631,7 +632,7 @@ The marker. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -645,17 +646,17 @@ public bool GetGeometryNavigatorInformation(XmlDocument xmlDom, XmlElement xmlEl #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for geometry. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for geometry. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -683,21 +684,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -711,13 +712,13 @@ public override string GetNewEntityName(string strPrefix) #### Parameters -`strPrefix` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefix` string The prefix. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The new name @@ -745,7 +746,7 @@ The reference [no use]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -759,11 +760,11 @@ protected bool GetPredefinedMarkerInfo(XmlDocument xmlDom, XmlElement xmlEle, Re #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for marker. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for marker. @@ -773,7 +774,7 @@ The marker. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -787,7 +788,7 @@ public override List GetTargetListForUpdate() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### GetUnnamedObjectName\(object\) @@ -799,13 +800,13 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The ob unnamed. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The unnamed object name. @@ -833,7 +834,7 @@ protected override void LinkRequestDestroy(object objNotifier, LinkEventArgs arg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -851,7 +852,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -869,7 +870,7 @@ protected override void MakeReferenceImpl(LinkedList lstRef) #### Parameters -`lstRef` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) +`lstRef` LinkedList The container. @@ -883,7 +884,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AssembledBodyProperty.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AssembledBodyProperty.md index 707b7c32f5..d49c1e7ec4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AssembledBodyProperty.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AssembledBodyProperty.md @@ -1,4 +1,5 @@ -# Class AssembledBodyProperty +# Class AssembledBodyProperty + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,13 +12,13 @@ public class AssembledBodyProperty : BodyProperty, IObservableObject, IDisposabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [BodyPropertyBase](VM.Managed.DAFUL.BodyPropertyBase.md) ← [BodyProperty](VM.Managed.DAFUL.BodyProperty.md) ← [AssembledBodyProperty](VM.Managed.DAFUL.AssembledBodyProperty.md) @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -62,12 +63,12 @@ ICheckLinkForCircularReferenceBeforeDeserialize [BodyPropertyBase.MassValue](VM.Managed.DAFUL.BodyPropertyBase.md\#VM\_Managed\_DAFUL\_BodyPropertyBase\_MassValue), [BodyPropertyBase.MomentOfInertiaValue](VM.Managed.DAFUL.BodyPropertyBase.md\#VM\_Managed\_DAFUL\_BodyPropertyBase\_MomentOfInertiaValue), [BodyPropertyBase.IsExternable](VM.Managed.DAFUL.BodyPropertyBase.md\#VM\_Managed\_DAFUL\_BodyPropertyBase\_IsExternable), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -166,7 +167,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -207,7 +208,7 @@ public ExpressionValueVariable Density { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Material @@ -243,7 +244,7 @@ public double Volume { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### \_Material @@ -283,7 +284,7 @@ protected override void LinkAddedToDocument(object objNotifier, AddToDocEventArg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -301,7 +302,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -319,7 +320,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeCurvesetTypeBase.CurvesetType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeCurvesetTypeBase.CurvesetType.md index f68b16753d..6aaa73d431 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeCurvesetTypeBase.CurvesetType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeCurvesetTypeBase.CurvesetType.md @@ -1,4 +1,5 @@ -# Enum AttributeCurvesetTypeBase.CurvesetType +# Enum AttributeCurvesetTypeBase.CurvesetType + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeCurvesetTypeBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeCurvesetTypeBase.md index 780d016aed..4b827f0997 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeCurvesetTypeBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeCurvesetTypeBase.md @@ -1,4 +1,5 @@ -# Class AttributeCurvesetTypeBase +# Class AttributeCurvesetTypeBase + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public abstract class AttributeCurvesetTypeBase : AttributeBase, IObservableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeCurvesetTypeBase](VM.Managed.DAFUL.AttributeCurvesetTypeBase.md) @@ -82,7 +83,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeCurvesetTypeColor.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeCurvesetTypeColor.md index 02f2816cc5..cc2373eaff 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeCurvesetTypeColor.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeCurvesetTypeColor.md @@ -1,4 +1,5 @@ -# Class AttributeCurvesetTypeColor +# Class AttributeCurvesetTypeColor + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class AttributeCurvesetTypeColor : AttributeCurvesetTypeBase, IObservable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeCurvesetTypeBase](VM.Managed.DAFUL.AttributeCurvesetTypeBase.md) ← @@ -80,7 +81,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -121,5 +122,5 @@ public List ColorList { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> + List diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeDFGOption.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeDFGOption.md index bad7888ac3..481b54907a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeDFGOption.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeDFGOption.md @@ -1,4 +1,5 @@ -# Class AttributeDFGOption +# Class AttributeDFGOption + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -12,9 +13,9 @@ public class AttributeDFGOption : AttributeBase, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeDFGOption](VM.Managed.DAFUL.AttributeDFGOption.md) @@ -79,7 +80,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -118,7 +119,7 @@ public AttributeDFGOption(bool bUseDefault) #### Parameters -`bUseDefault` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseDefault` bool if set to true [use default parameters]. @@ -148,27 +149,27 @@ The angular tolerance. The facet aspect ratio. -`bUseDefault` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseDefault` bool if set to true [use default parameters]. -`bUseMaximumGridLine` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseMaximumGridLine` bool if set to true [use maximum grid line]. -`bUseMaximumFacetSize` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseMaximumFacetSize` bool if set to true [use maximum facet size]. -`bUseSurfaceAngularTolerance` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseSurfaceAngularTolerance` bool if set to true [use surface angular tolerance]. -`bUseFacetAspectRatio` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseFacetAspectRatio` bool if set to true [use facet aspect ratio]. -`bDoNotUseApprox_eval` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDoNotUseApprox_eval` bool if set to true [unuse approximated evaluation]. @@ -184,7 +185,7 @@ public ExpressionValueVariable FacetAspectRatio { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MaximumFacetSize @@ -196,7 +197,7 @@ public ExpressionValueVariable MaximumFacetSize { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MaximumGridLine @@ -208,7 +209,7 @@ public ExpressionValueVariable MaximumGridLine { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### SurfaceAngularTolerance @@ -220,7 +221,7 @@ public ExpressionValueVariable SurfaceAngularTolerance { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### UseApprox\_eval @@ -232,7 +233,7 @@ public bool UseApprox_eval { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseDefault @@ -244,7 +245,7 @@ public bool UseDefault { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseFacetAspectRatio @@ -256,7 +257,7 @@ public bool UseFacetAspectRatio { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseMaximumFacetSize @@ -268,7 +269,7 @@ public bool UseMaximumFacetSize { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseMaximumGridLine @@ -280,7 +281,7 @@ public bool UseMaximumGridLine { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseSurfaceAngularTolerance @@ -292,7 +293,7 @@ public bool UseSurfaceAngularTolerance { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -306,7 +307,7 @@ public virtual XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -328,7 +329,7 @@ public virtual void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The stream from which the object is deserialized. @@ -342,7 +343,7 @@ public virtual void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeEigenvalueAnalysisParameter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeEigenvalueAnalysisParameter.md index 109b379352..4aaa0e9906 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeEigenvalueAnalysisParameter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeEigenvalueAnalysisParameter.md @@ -1,4 +1,5 @@ -# Class AttributeEigenvalueAnalysisParameter +# Class AttributeEigenvalueAnalysisParameter + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class AttributeEigenvalueAnalysisParameter : AttributeBase, IObservableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeEigenvalueAnalysisParameter](VM.Managed.DAFUL.AttributeEigenvalueAnalysisParameter.md) @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -119,7 +120,7 @@ public EigenvalueAnalysisParameter EigenParameter { get; set; } #### Property Value - EigenvalueAnalysisParameter + [EigenvalueAnalysisParameter](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/EigenvalueAnalysisParameter.cs) ### ResultPath @@ -131,7 +132,7 @@ public string ResultPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeFacesetTypeBase.FacesetType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeFacesetTypeBase.FacesetType.md index 9a4a8feac2..b9fe8c9632 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeFacesetTypeBase.FacesetType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeFacesetTypeBase.FacesetType.md @@ -1,4 +1,5 @@ -# Enum AttributeFacesetTypeBase.FacesetType +# Enum AttributeFacesetTypeBase.FacesetType + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeFacesetTypeBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeFacesetTypeBase.md index d2714ec6ec..3aa9a2b6bf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeFacesetTypeBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeFacesetTypeBase.md @@ -1,4 +1,5 @@ -# Class AttributeFacesetTypeBase +# Class AttributeFacesetTypeBase + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public abstract class AttributeFacesetTypeBase : AttributeBase, IObservableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeFacesetTypeBase](VM.Managed.DAFUL.AttributeFacesetTypeBase.md) @@ -82,7 +83,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeFacesetTypeColor.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeFacesetTypeColor.md index c79f16f96e..df0b5526e9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeFacesetTypeColor.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeFacesetTypeColor.md @@ -1,4 +1,5 @@ -# Class AttributeFacesetTypeColor +# Class AttributeFacesetTypeColor + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class AttributeFacesetTypeColor : AttributeFacesetTypeBase, IObservableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeFacesetTypeBase](VM.Managed.DAFUL.AttributeFacesetTypeBase.md) ← @@ -80,7 +81,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -121,5 +122,5 @@ public List ColorList { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> + List diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeFacetModifiedTime.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeFacetModifiedTime.md index 88baa5d4d2..40674e02b4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeFacetModifiedTime.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeFacetModifiedTime.md @@ -1,4 +1,5 @@ -# Class AttributeFacetModifiedTime +# Class AttributeFacetModifiedTime + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class AttributeFacetModifiedTime : AttributeBase, IObservableObject, IDis #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeFacetModifiedTime](VM.Managed.DAFUL.AttributeFacetModifiedTime.md) @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -115,7 +116,7 @@ public const string Name = "FacetModifiedTime" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Properties @@ -129,7 +130,7 @@ public DateTime FacetModifiedTime { get; set; } #### Property Value - [DateTime](https://learn.microsoft.com/dotnet/api/system.datetime) + DateTime ### FacetModifiedTimeString @@ -139,7 +140,7 @@ public string FacetModifiedTimeString { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Guid @@ -151,7 +152,7 @@ public Guid Guid { get; set; } #### Property Value - [Guid](https://learn.microsoft.com/dotnet/api/system.guid) + Guid ## Methods @@ -163,9 +164,9 @@ public string GetPath(string documentFilePath) #### Parameters -`documentFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentFilePath` string #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeFacetRefinement.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeFacetRefinement.md index d8bcc5d8b7..040596e937 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeFacetRefinement.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeFacetRefinement.md @@ -1,4 +1,5 @@ -# Class AttributeFacetRefinement +# Class AttributeFacetRefinement + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class AttributeFacetRefinement : AttributeFacetRefinementBase, IObservabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← AttributeFacetRefinementBase ← @@ -127,7 +128,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -178,23 +179,23 @@ The angular tolerance. The facet aspect ratio. -`bUseMaximumFacetSize` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseMaximumFacetSize` bool if set to true [use maximum facet size]. -`bUseSurfaceAngularTolerance` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseSurfaceAngularTolerance` bool if set to true [use surface angular tolerance]. -`bUseFacetAspectRatio` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseFacetAspectRatio` bool if set to true [use facet aspect ratio]. -`bDoNotUseGRID_TO_EDGES` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDoNotUseGRID_TO_EDGES` bool if set to true [unuse GRID_TO_EDGE. -`bDoNotUseApprox_eval` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDoNotUseApprox_eval` bool if set to true [unuse approximated evaluation]. @@ -224,27 +225,27 @@ The angular tolerance. The facet aspect ratio. -`bUseMaximumGridLine` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseMaximumGridLine` bool if set to true [use maximum grid line]. -`bUseMaximumFacetSize` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseMaximumFacetSize` bool if set to true [use maximum facet size]. -`bUseSurfaceAngularTolerance` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseSurfaceAngularTolerance` bool if set to true [use surface angular tolerance]. -`bUseFacetAspectRatio` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseFacetAspectRatio` bool if set to true [use facet aspect ratio]. -`bDoNotUseGRID_TO_EDGES` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDoNotUseGRID_TO_EDGES` bool if set to true [unuse GRID_TO_EDGE. -`bDoNotUseApprox_eval` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDoNotUseApprox_eval` bool if set to true [unuse approximated evaluation]. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeFunction.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeFunction.md index d22da8955d..b10da5b81a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeFunction.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeFunction.md @@ -1,4 +1,5 @@ -# Class AttributeFunction +# Class AttributeFunction + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSB.dll @@ -11,12 +12,12 @@ public class AttributeFunction : AttributeSubEntity, IObservableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← -AttributeSubEntity ← +[AttributeSubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/AttributeSubEntity.cs) ← [AttributeFunction](VM.Managed.DAFUL.AttributeFunction.md) #### Implements @@ -34,8 +35,8 @@ IVerifiable #### Inherited Members -AttributeSubEntity.m\_childSubEntity, -AttributeSubEntity.SubEntityValue, +[AttributeSubEntity.m\_childSubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/AttributeSubEntity.cs), +[AttributeSubEntity.SubEntityValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/AttributeSubEntity.cs), AttributeBase.OnDeserializationAttribute\(\), AttributeBase.LinkRequestUpdate\(object, LinkEventArgs\), LinkContainer.SetModified\(\), @@ -81,7 +82,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -151,7 +152,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeGeometryRepresentation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeGeometryRepresentation.md index f2e2a04395..aa16c2ffc7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeGeometryRepresentation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeGeometryRepresentation.md @@ -1,4 +1,5 @@ -# Class AttributeGeometryRepresentation +# Class AttributeGeometryRepresentation + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class AttributeGeometryRepresentation : AttributeFacetRefinementBase, IOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← AttributeFacetRefinementBase ← @@ -127,7 +128,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -178,23 +179,23 @@ The angular tolerance. The facet aspect ratio. -`bUseMaximumFacetSize` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseMaximumFacetSize` bool if set to true [use maximum facet size]. -`bUseSurfaceAngularTolerance` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseSurfaceAngularTolerance` bool if set to true [use surface angular tolerance]. -`bUseFacetAspectRatio` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseFacetAspectRatio` bool if set to true [use facet aspect ratio]. -`bDoNotUseGRID_TO_EDGES` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDoNotUseGRID_TO_EDGES` bool if set to true [unuse GRID_TO_EDGE. -`bDoNotUseApprox_eval` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDoNotUseApprox_eval` bool if set to true [unuse approximated evaluation]. @@ -224,27 +225,27 @@ The angular tolerance. The facet aspect ratio. -`bUseMaximumGridLine` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseMaximumGridLine` bool if set to true [use maximum grid line]. -`bUseMaximumFacetSize` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseMaximumFacetSize` bool if set to true [use maximum facet size]. -`bUseSurfaceAngularTolerance` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseSurfaceAngularTolerance` bool if set to true [use surface angular tolerance]. -`bUseFacetAspectRatio` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseFacetAspectRatio` bool if set to true [use facet aspect ratio]. -`bDoNotUseGRID_TO_EDGES` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDoNotUseGRID_TO_EDGES` bool if set to true [unuse GRID_TO_EDGE. -`bDoNotUseApprox_eval` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDoNotUseApprox_eval` bool if set to true [unuse approximated evaluation]. @@ -260,7 +261,7 @@ public override bool DrawGlobalBody { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeGroundGeometryIndexer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeGroundGeometryIndexer.md index 2aba3c0496..4aa1ea0054 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeGroundGeometryIndexer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeGroundGeometryIndexer.md @@ -1,4 +1,5 @@ -# Class AttributeGroundGeometryIndexer +# Class AttributeGroundGeometryIndexer + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class AttributeGroundGeometryIndexer : AttributeBase, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeGroundGeometryIndexer](VM.Managed.DAFUL.AttributeGroundGeometryIndexer.md) @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -119,5 +120,5 @@ public int GeometryIndex { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeMassProperty.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeMassProperty.md index 83d5472f94..02781b8ccf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeMassProperty.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeMassProperty.md @@ -1,4 +1,5 @@ -# Class AttributeMassProperty +# Class AttributeMassProperty + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class AttributeMassProperty : AttributeBase, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeMassProperty](VM.Managed.DAFUL.AttributeMassProperty.md) @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -117,31 +118,31 @@ public AttributeMassProperty(double dMass, double dIxx, double dIyy, double dIzz #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double The mass. -`dIxx` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dIxx` double The ixx of moment of inertia. -`dIyy` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dIyy` double The iyy of moment of inertia. -`dIzz` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dIzz` double The izz of moment of inertia. -`dIxy` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dIxy` double The ixy of moment of inertia. -`dIxz` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dIxz` double The ixz of moment of inertia. -`dIyz` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dIyz` double The iyz of moment of inertia. @@ -161,7 +162,7 @@ public double Ixx { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Ixy @@ -173,7 +174,7 @@ public double Ixy { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Ixz @@ -185,7 +186,7 @@ public double Ixz { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Iyy @@ -197,7 +198,7 @@ public double Iyy { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Iyz @@ -209,7 +210,7 @@ public double Iyz { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Izz @@ -221,7 +222,7 @@ public double Izz { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Mass @@ -233,7 +234,7 @@ public double Mass { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MassCenter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeMaxPenetration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeMaxPenetration.md index 2f5c8189ce..69bfd289f8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeMaxPenetration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeMaxPenetration.md @@ -1,4 +1,5 @@ -# Class AttributeMaxPenetration +# Class AttributeMaxPenetration + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class AttributeMaxPenetration : AttributeBase, IObservableObject, IDispos #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeMaxPenetration](VM.Managed.DAFUL.AttributeMaxPenetration.md) @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -133,5 +134,5 @@ public ExpressionValueVariable Value { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributePreventChangeGeometry.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributePreventChangeGeometry.md index 9ea4b755ff..464d2f6a81 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributePreventChangeGeometry.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributePreventChangeGeometry.md @@ -1,4 +1,5 @@ -# Class AttributePreventChangeGeometry +# Class AttributePreventChangeGeometry + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDBallPlacing.dll @@ -11,9 +12,9 @@ public class AttributePreventChangeGeometry : AttributeBase, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributePreventChangeGeometry](VM.Managed.DAFUL.AttributePreventChangeGeometry.md) @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeRelief.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeRelief.md index 523ea6126a..7ace2de5ba 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeRelief.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeRelief.md @@ -1,4 +1,5 @@ -# Class AttributeRelief +# Class AttributeRelief + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -9,9 +10,9 @@ public class AttributeRelief : AttributeBase, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeRelief](VM.Managed.DAFUL.AttributeRelief.md) @@ -76,7 +77,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeSurfaceOption.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeSurfaceOption.md index 0b4341917f..e42596f163 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeSurfaceOption.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeSurfaceOption.md @@ -1,4 +1,5 @@ -# Class AttributeSurfaceOption +# Class AttributeSurfaceOption + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class AttributeSurfaceOption : AttributeBase, IObservableObject, IDisposa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeSurfaceOption](VM.Managed.DAFUL.AttributeSurfaceOption.md) @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -137,7 +138,7 @@ public ExpressionValueVariable HalfThickness { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### SurfaceSmoothingType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeUseFacetProperty.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeUseFacetProperty.md index 16ccd2c382..7d5e3f83aa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeUseFacetProperty.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.AttributeUseFacetProperty.md @@ -1,4 +1,5 @@ -# Class AttributeUseFacetProperty +# Class AttributeUseFacetProperty + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class AttributeUseFacetProperty : AttributeBase, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeUseFacetProperty](VM.Managed.DAFUL.AttributeUseFacetProperty.md) @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -117,7 +118,7 @@ public AttributeUseFacetProperty(bool bUse) #### Parameters -`bUse` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUse` bool The using flag. @@ -133,5 +134,5 @@ public bool Use { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BallPlacing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BallPlacing.md index ef3af34227..8673a365cd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BallPlacing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BallPlacing.md @@ -1,4 +1,5 @@ -# Class BallPlacing +# Class BallPlacing + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDBallPlacing.dll @@ -11,14 +12,14 @@ public class BallPlacing : Entity, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [BallPlacing](VM.Managed.DAFUL.BallPlacing.md) #### Implements @@ -28,7 +29,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -58,34 +59,34 @@ IReportable #### Inherited Members -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -184,7 +185,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -237,7 +238,7 @@ public MultipleContactInfo[] BallToBall { get; set; } #### Property Value - MultipleContactInfo\[\] + [MultipleContactInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MultipleContactBase.cs)\[\] ### Balls @@ -249,7 +250,7 @@ public SolidBody[] Balls { get; set; } #### Property Value - SolidBody\[\] + [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs)\[\] ### Distance @@ -261,7 +262,7 @@ public ExpressionValueVariable Distance { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### HasLayerExplicitly @@ -273,7 +274,7 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Hide @@ -285,7 +286,7 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### InitColor @@ -297,7 +298,7 @@ public Color InitColor { get; set; } #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### InitColorArgb @@ -309,7 +310,7 @@ public int InitColorArgb { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### InitRadius @@ -321,7 +322,7 @@ public ExpressionValueVariable InitRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### NumberOfBall @@ -333,7 +334,7 @@ public ExpressionValueVariable NumberOfBall { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Path @@ -345,7 +346,7 @@ public List Path { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### PathType @@ -369,7 +370,7 @@ public ExpressionValueVariable ShiftOfStartPosition { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### SynchronizeWithGeometry @@ -381,7 +382,7 @@ public bool SynchronizeWithGeometry { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -415,7 +416,7 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -443,7 +444,7 @@ protected override void LinkRequestDestroy(object objNotifier, LinkEventArgs arg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BallPlacingContact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BallPlacingContact.md index 5b92f30f40..562024cfc0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BallPlacingContact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BallPlacingContact.md @@ -1,4 +1,5 @@ -# Class BallPlacingContact +# Class BallPlacingContact + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDBallPlacing.dll @@ -11,15 +12,15 @@ public class BallPlacingContact : Contact, IObservableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Contact ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Contact](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs) ← [BallPlacingContact](VM.Managed.DAFUL.BallPlacingContact.md) #### Implements @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -61,46 +62,46 @@ IReportable #### Inherited Members -Contact.UpdateIcon\(\), -Contact.Draw\(Canvas\), -Contact.ReDraw\(\), -Contact.WriteTemplateImpl\(XmlWriter\), -Contact.ReadTemplateImpl\(XmlReader\), -Contact.LinkRequestUpdate\(object, LinkEventArgs\), -Contact.LinkRequestDestroy\(object, LinkEventArgs\), -Contact.HasLayerExplicitly, -Contact.Hide, -Contact.ReferenceType, -Contact.ArgumentType, -Contact.ReportTypeImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Contact.UpdateIcon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -199,7 +200,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -264,7 +265,7 @@ public MultipleContactInfo[] BallToBall { get; set; } #### Property Value - MultipleContactInfo\[\] + [MultipleContactInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MultipleContactBase.cs)\[\] ### BallToSurface @@ -288,7 +289,7 @@ public bool EnableBallToBall { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### EnableBallToSurface @@ -300,7 +301,7 @@ public bool EnableBallToSurface { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReportTypeImpl @@ -330,7 +331,7 @@ public void CreateBallToSurfaceContact(Document3D document3D, IList +`baseGeometries` IList The faceset and surface with curvesets. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BallScrew.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BallScrew.md index 43af67e82a..b0ec88fff8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BallScrew.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BallScrew.md @@ -1,4 +1,5 @@ -# Class BallScrew +# Class BallScrew + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDBallPlacing.dll @@ -11,14 +12,14 @@ public class BallScrew : Entity, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [BallScrew](VM.Managed.DAFUL.BallScrew.md) #### Implements @@ -28,7 +29,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -54,34 +55,34 @@ IGroup #### Inherited Members -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -180,7 +181,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -221,7 +222,7 @@ public ExpressionValueVariable BallDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DirectionX @@ -257,7 +258,7 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsRight @@ -269,7 +270,7 @@ public bool IsRight { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Lead @@ -281,7 +282,7 @@ public ExpressionValueVariable Lead { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Nut @@ -293,7 +294,7 @@ public SolidBody Nut { get; set; } #### Property Value - SolidBody + [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ### NutChamperAngle @@ -305,7 +306,7 @@ public ExpressionValueVariable NutChamperAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### NutConformity @@ -317,7 +318,7 @@ public ExpressionValueVariable NutConformity { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### NutContactAngle @@ -329,7 +330,7 @@ public ExpressionValueVariable NutContactAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### NutInnerRadius @@ -341,7 +342,7 @@ public ExpressionValueVariable NutInnerRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### NutLength @@ -353,7 +354,7 @@ public ExpressionValueVariable NutLength { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### NutOD @@ -365,7 +366,7 @@ public ExpressionValueVariable NutOD { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### NutPCD @@ -377,7 +378,7 @@ public ExpressionValueVariable NutPCD { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### NutScrewEndLength @@ -389,7 +390,7 @@ public ExpressionValueVariable NutScrewEndLength { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### NutScrewStartLength @@ -401,7 +402,7 @@ public ExpressionValueVariable NutScrewStartLength { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### NutShoulderRadius @@ -413,7 +414,7 @@ public ExpressionValueVariable NutShoulderRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### NutShoulderType @@ -437,7 +438,7 @@ public ExpressionValueVariable NutStartArcAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### NutStartLength @@ -449,7 +450,7 @@ public ExpressionValueVariable NutStartLength { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Shaft @@ -461,7 +462,7 @@ public SolidBody Shaft { get; set; } #### Property Value - SolidBody + [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ### ShaftChamperAngle @@ -473,7 +474,7 @@ public ExpressionValueVariable ShaftChamperAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ShaftConformity @@ -485,7 +486,7 @@ public ExpressionValueVariable ShaftConformity { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ShaftContactAngle @@ -497,7 +498,7 @@ public ExpressionValueVariable ShaftContactAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ShaftLength @@ -509,7 +510,7 @@ public ExpressionValueVariable ShaftLength { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ShaftOuterRadius @@ -521,7 +522,7 @@ public ExpressionValueVariable ShaftOuterRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ShaftPCD @@ -533,7 +534,7 @@ public ExpressionValueVariable ShaftPCD { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ShaftReferencePosition @@ -557,7 +558,7 @@ public ExpressionValueVariable ShaftScrewEndLength { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ShaftScrewStartAngle @@ -569,7 +570,7 @@ public ExpressionValueVariable ShaftScrewStartAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ShaftScrewStartLength @@ -581,7 +582,7 @@ public ExpressionValueVariable ShaftScrewStartLength { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ShaftShoulderRadius @@ -593,7 +594,7 @@ public ExpressionValueVariable ShaftShoulderRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ShaftShoulderType @@ -617,7 +618,7 @@ public ExpressionValueVariable ShaftStartArcAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -651,7 +652,7 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -665,7 +666,7 @@ protected override void LinkRequestDestroy(object objNotifier, LinkEventArgs arg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BallSpacingMethod.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BallSpacingMethod.md index 7518492e60..24575b12be 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BallSpacingMethod.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BallSpacingMethod.md @@ -1,4 +1,5 @@ -# Enum BallSpacingMethod +# Enum BallSpacingMethod + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDBallPlacing.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BallToSurfaceContact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BallToSurfaceContact.md index 357c2f0710..a571dd41af 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BallToSurfaceContact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BallToSurfaceContact.md @@ -1,4 +1,5 @@ -# Class BallToSurfaceContact +# Class BallToSurfaceContact + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDBallPlacing.dll @@ -11,17 +12,17 @@ public class BallToSurfaceContact : MbyNContact, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Contact ← -MultipleContactBase ← -MbyNContact ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Contact](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs) ← +[MultipleContactBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MultipleContactBase.cs) ← +[MbyNContact](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MbyNContact.cs) ← [BallToSurfaceContact](VM.Managed.DAFUL.BallToSurfaceContact.md) #### Implements @@ -31,7 +32,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -67,63 +68,63 @@ IHasReplaceableEntity #### Inherited Members -MbyNContact.Draw\(Canvas\), -MbyNContact.LinkRequestUpdate\(object, LinkEventArgs\), -MbyNContact.OnDeserialization\(object\), -MbyNContact.GetBaseEntities\(\), -MbyNContact.GetActionEntities\(\), -MbyNContact.CheckAttributeMbyNContact\(MultipleContactInfo\[\], MultipleContactInfo\[\]\), -MbyNContact.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -MbyNContact.OnLinkReserved\(ILink, object, EventArgs\), -MbyNContact.IsValidContact\(IContactable\[\], IContactable\[\], MultiContactType\), -MbyNContact.BaseGeometries, -MbyNContact.ActionGeometries, -MbyNContact.ArgumentType, -MultipleContactBase.UpdateIcon\(\), -MultipleContactBase.IsUseContactType\(IContactable, IContactable, MultiContactType\), -MultipleContactBase.IsUseContactType\(IContactable, IContactable, MultiContactType, ref bool\), -MultipleContactBase.MultiContactType, -MultipleContactBase.ReportTypeImpl, -Contact.UpdateIcon\(\), -Contact.Draw\(Canvas\), -Contact.ReDraw\(\), -Contact.WriteTemplateImpl\(XmlWriter\), -Contact.ReadTemplateImpl\(XmlReader\), -Contact.LinkRequestUpdate\(object, LinkEventArgs\), -Contact.LinkRequestDestroy\(object, LinkEventArgs\), -Contact.HasLayerExplicitly, -Contact.Hide, -Contact.ReferenceType, -Contact.ArgumentType, -Contact.ReportTypeImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[MbyNContact.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MbyNContact.cs), +[MbyNContact.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MbyNContact.cs), +[MbyNContact.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MbyNContact.cs), +[MbyNContact.GetBaseEntities\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MbyNContact.cs), +[MbyNContact.GetActionEntities\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MbyNContact.cs), +[MbyNContact.CheckAttributeMbyNContact\(MultipleContactInfo\[\], MultipleContactInfo\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MbyNContact.cs), +[MbyNContact.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MbyNContact.cs), +[MbyNContact.OnLinkReserved\(ILink, object, EventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MbyNContact.cs), +[MbyNContact.IsValidContact\(IContactable\[\], IContactable\[\], MultiContactType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MbyNContact.cs), +[MbyNContact.BaseGeometries](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MbyNContact.cs), +[MbyNContact.ActionGeometries](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MbyNContact.cs), +[MbyNContact.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MbyNContact.cs), +[MultipleContactBase.UpdateIcon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MultipleContactBase.cs), +[MultipleContactBase.IsUseContactType\(IContactable, IContactable, MultiContactType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MultipleContactBase.cs), +[MultipleContactBase.IsUseContactType\(IContactable, IContactable, MultiContactType, ref bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MultipleContactBase.cs), +[MultipleContactBase.MultiContactType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MultipleContactBase.cs), +[MultipleContactBase.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MultipleContactBase.cs), +[Contact.UpdateIcon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -222,7 +223,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -261,7 +262,7 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Ball_Bearing_DataForHarmonic.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Ball_Bearing_DataForHarmonic.md index daf569bebf..3214f727d9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Ball_Bearing_DataForHarmonic.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Ball_Bearing_DataForHarmonic.md @@ -1,4 +1,5 @@ -# Class Ball\_Bearing\_DataForHarmonic +# Class Ball\_Bearing\_DataForHarmonic + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDHarmonicDrive.dll @@ -9,7 +10,7 @@ public class Ball_Bearing_DataForHarmonic #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Ball\_Bearing\_DataForHarmonic](VM.Managed.DAFUL.Ball\_Bearing\_DataForHarmonic.md) #### Extension Methods @@ -36,7 +37,7 @@ public double A #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### B @@ -46,7 +47,7 @@ public double B #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### D @@ -56,7 +57,7 @@ public double D #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DV\_ball\_no @@ -66,7 +67,7 @@ public int DV_ball_no #### Field Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### DV\_ball\_r @@ -76,7 +77,7 @@ public double DV_ball_r #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### E\_or @@ -86,7 +87,7 @@ public double E_or #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Ep\_i @@ -96,7 +97,7 @@ public double Ep_i #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Ep\_o @@ -106,7 +107,7 @@ public double Ep_o #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Fa @@ -116,7 +117,7 @@ public double Fa #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Fr @@ -126,7 +127,7 @@ public double Fr #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Frho\_i @@ -136,7 +137,7 @@ public double Frho_i #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Frho\_o @@ -146,7 +147,7 @@ public double Frho_o #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Ki @@ -156,7 +157,7 @@ public double Ki #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Kn @@ -166,7 +167,7 @@ public double Kn #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Ko @@ -176,7 +177,7 @@ public double Ko #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### L @@ -186,7 +187,7 @@ public double L #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### PARAM\_HD\_BRG\_in\_groove\_r @@ -196,7 +197,7 @@ public double PARAM_HD_BRG_in_groove_r #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### PARAM\_HD\_BRG\_in\_raceway\_r @@ -206,7 +207,7 @@ public double PARAM_HD_BRG_in_raceway_r #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### PARAM\_HD\_BRG\_out\_groove\_r @@ -216,7 +217,7 @@ public double PARAM_HD_BRG_out_groove_r #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### PARAM\_HD\_BRG\_out\_raceway\_r @@ -226,7 +227,7 @@ public double PARAM_HD_BRG_out_raceway_r #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### PARAM\_HD\_BRG\_raceway\_in\_mat\_E @@ -236,7 +237,7 @@ public double PARAM_HD_BRG_raceway_in_mat_E #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### PARAM\_HD\_BRG\_raceway\_in\_mat\_v @@ -246,7 +247,7 @@ public double PARAM_HD_BRG_raceway_in_mat_v #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### PARAM\_HD\_ball\_mat\_E @@ -256,7 +257,7 @@ public double PARAM_HD_ball_mat_E #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### PARAM\_HD\_ball\_mat\_v @@ -266,7 +267,7 @@ public double PARAM_HD_ball_mat_v #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Ri @@ -276,7 +277,7 @@ public double Ri #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Srho\_i @@ -286,7 +287,7 @@ public double Srho_i #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Srho\_o @@ -296,7 +297,7 @@ public double Srho_o #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### alpha @@ -306,7 +307,7 @@ public double alpha #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### alpha\_zero @@ -316,7 +317,7 @@ public double alpha_zero #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### angle\_inc @@ -326,7 +327,7 @@ public double angle_inc #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### astar @@ -336,7 +337,7 @@ public double astar #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### bstar @@ -346,7 +347,7 @@ public double bstar #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### clearance @@ -356,7 +357,7 @@ public double clearance #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### d\_i @@ -366,7 +367,7 @@ public double d_i #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### d\_o @@ -376,7 +377,7 @@ public double d_o #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### delta\_a @@ -386,7 +387,7 @@ public double delta_a #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### delta\_r @@ -396,7 +397,7 @@ public double delta_r #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### deltastar\_i @@ -406,7 +407,7 @@ public double deltastar_i #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### deltastar\_o @@ -416,7 +417,7 @@ public double deltastar_o #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### dm @@ -426,7 +427,7 @@ public double dm #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### fi @@ -436,7 +437,7 @@ public double fi #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### fo @@ -446,7 +447,7 @@ public double fo #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### init\_angle @@ -456,7 +457,7 @@ public double init_angle #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### pd @@ -466,7 +467,7 @@ public double pd #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### theta @@ -476,7 +477,7 @@ public double theta #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### v\_or @@ -486,7 +487,7 @@ public double v_or #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.BeamCrossSection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.BeamCrossSection.md index b7348caab1..c31dfc2d56 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.BeamCrossSection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.BeamCrossSection.md @@ -1,4 +1,5 @@ -# Class BeamCrossSection +# Class BeamCrossSection + Namespace: [VM.Managed.DAFUL.Beam](VM.Managed.DAFUL.Beam.md) Assembly: VM.Models.FE.BeamCrossSection.dll @@ -9,7 +10,7 @@ public static class BeamCrossSection #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BeamCrossSection](VM.Managed.DAFUL.Beam.BeamCrossSection.md) #### Extension Methods @@ -30,13 +31,13 @@ public static bool CheckGeomInfo(CrossSectionType sectionEnumType, double[] dSIn `sectionEnumType` [CrossSectionType](VM.Managed.DAFUL.Beam.CrossSectionType.md) -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`bValid` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bValid` bool #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CheckYDirection\(double\[\], double\[\], double\[\]\) @@ -46,15 +47,15 @@ public static bool CheckYDirection(double[] dblStartPoint, double[] dblEndPoint, #### Parameters -`dblStartPoint` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dblStartPoint` double\[\] -`dblEndPoint` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dblEndPoint` double\[\] -`dblYDir` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dblYDir` double\[\] #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ConnectivityGenerator\(string, int, ref int\[\], ref int\[\]\) @@ -64,17 +65,17 @@ public static int ConnectivityGenerator(string sectionStrType, int RenderingType #### Parameters -`sectionStrType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`sectionStrType` string -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int -`iENodes` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`iENodes` int\[\] -`iStartENodes` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`iStartENodes` int\[\] #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### ConnectivityGenerator\(string, ref int, ref int, ref int\[\], ref int\[\]\) @@ -84,19 +85,19 @@ public static bool ConnectivityGenerator(string sectionStrType, ref int nTElemen #### Parameters -`sectionStrType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`sectionStrType` string -`nTElement` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nTElement` int -`nTEdge` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nTEdge` int -`iENodes` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`iENodes` int\[\] -`iStartENodes` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`iStartENodes` int\[\] #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ConvertSectionEnum2String\(CrossSectionType\) @@ -110,7 +111,7 @@ public static string ConvertSectionEnum2String(CrossSectionType sectionEnumType) #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ConvertSectionString2Enum\(string\) @@ -120,7 +121,7 @@ public static CrossSectionType ConvertSectionString2Enum(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string #### Returns @@ -134,13 +135,13 @@ public static double[] GetCrossProduct(double[] vec1, double[] vec2) #### Parameters -`vec1` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`vec1` double\[\] -`vec2` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`vec2` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GetInnerProduct\(double\[\], double\[\]\) @@ -150,13 +151,13 @@ public static double[] GetInnerProduct(double[] vec1, double[] vec2) #### Parameters -`vec1` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`vec1` double\[\] -`vec2` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`vec2` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GetMagnitude\(double\[\]\) @@ -166,11 +167,11 @@ public static double GetMagnitude(double[] dblAry) #### Parameters -`dblAry` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dblAry` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetNumElements\(string, int\) @@ -180,13 +181,13 @@ public static int GetNumElements(string sectionStrType, int RenderingType) #### Parameters -`sectionStrType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`sectionStrType` string -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetNumNodes\(string, int\) @@ -196,13 +197,13 @@ public static int GetNumNodes(string sectionStrType, int RenderingType) #### Parameters -`sectionStrType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`sectionStrType` string -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetNumNodes\(string\) @@ -212,11 +213,11 @@ public static int GetNumNodes(string sectionStrType) #### Parameters -`sectionStrType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`sectionStrType` string #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetRequiredInputCount\(CrossSectionType\) @@ -230,7 +231,7 @@ public static uint GetRequiredInputCount(CrossSectionType sectionEnumType) #### Returns - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### GetSphereBodyRadius\(CrossSectionType, double\[\]\) @@ -242,11 +243,11 @@ public static double GetSphereBodyRadius(CrossSectionType sectionEnumType, doubl `sectionEnumType` [CrossSectionType](VM.Managed.DAFUL.Beam.CrossSectionType.md) -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetStiffnessElementsOfMatrixForceByCoef\(CrossSectionType, double, double, double, double, double, double, double, double, double, double, double, ref double\[\]\) @@ -258,33 +259,33 @@ public static bool GetStiffnessElementsOfMatrixForceByCoef(CrossSectionType sect `sectionEnumType` [CrossSectionType](VM.Managed.DAFUL.Beam.CrossSectionType.md) -`dArea` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dArea` double -`dIyy` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dIyy` double -`dIzz` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dIzz` double -`dIxx` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dIxx` double -`dAsy` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAsy` double -`dAsz` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAsz` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double -`dPoissonRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dPoissonRatio` double -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dYoungsModulus` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dYoungsModulus` double -`dShearModulus` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dShearModulus` double -`dOutput` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dOutput` double\[\] #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetStiffnessElementsOfMatrixForceByGeom\(CrossSectionType, double\[\], double, double, double, double, double, ref double\[\]\) @@ -296,23 +297,23 @@ public static bool GetStiffnessElementsOfMatrixForceByGeom(CrossSectionType sect `sectionEnumType` [CrossSectionType](VM.Managed.DAFUL.Beam.CrossSectionType.md) -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double -`dPoissonRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dPoissonRatio` double -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dYoungsModulus` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dYoungsModulus` double -`dShearModulus` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dShearModulus` double -`dOutput` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dOutput` double\[\] #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SectionAreaProperties\(string, double\[\], double, ref double\[\]\) @@ -322,17 +323,17 @@ public static bool SectionAreaProperties(string sectionStrType, double[] dSInfo, #### Parameters -`sectionStrType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`sectionStrType` string -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dPoissonRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dPoissonRatio` double -`dOutput` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dOutput` double\[\] #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SectionAreaProperties\(CrossSectionType, double\[\], double, ref double\[\]\) @@ -344,15 +345,15 @@ public static bool SectionAreaProperties(CrossSectionType sectionEnumType, doubl `sectionEnumType` [CrossSectionType](VM.Managed.DAFUL.Beam.CrossSectionType.md) -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dPoissonRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dPoissonRatio` double -`dOutput` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dOutput` double\[\] #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SectionGenerator\(ResultType, string, double\[\], ref double\[\]\) @@ -364,15 +365,15 @@ public static bool SectionGenerator(ResultType resultEnumType, string sectionStr `resultEnumType` [ResultType](VM.Managed.DAFUL.Beam.ResultType.md) -`sectionStrType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`sectionStrType` string -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dOutput` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dOutput` double\[\] #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SectionGenerator\(CrossSectionType, double\[\], ref double\[\]\) @@ -384,13 +385,13 @@ public static bool SectionGenerator(CrossSectionType sectionEnumType, double[] d `sectionEnumType` [CrossSectionType](VM.Managed.DAFUL.Beam.CrossSectionType.md) -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dOutput` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dOutput` double\[\] #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SectionGenerator\(string, double\[\], ref double\[\]\) @@ -400,15 +401,15 @@ public static bool SectionGenerator(string sectionStrType, double[] dSInfo, ref #### Parameters -`sectionStrType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`sectionStrType` string -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dOutput` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dOutput` double\[\] #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SectionGenerator\(ResultType, CrossSectionType, double\[\], ref double\[\]\) @@ -422,13 +423,13 @@ public static bool SectionGenerator(ResultType resultEnumType, CrossSectionType `sectionEnumType` [CrossSectionType](VM.Managed.DAFUL.Beam.CrossSectionType.md) -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dOutput` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dOutput` double\[\] #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SectionGenerator\(ResultType, string, double\[\], double\[\], double\[\], double\[\], ref double\[,\]\) @@ -440,21 +441,21 @@ public static bool SectionGenerator(ResultType resultEnumType, string sectionStr `resultEnumType` [ResultType](VM.Managed.DAFUL.Beam.ResultType.md) -`sectionStrType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`sectionStrType` string -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dStartPoint` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dStartPoint` double\[\] -`dEndPoint` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dEndPoint` double\[\] -`dOrienMatrix` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dOrienMatrix` double\[\] -`dOutput` [double](https://learn.microsoft.com/dotnet/api/system.double)\[,\] +`dOutput` double\[,\] #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SectionGenerator\(CrossSectionType, double\[\], double\[\], double\[\], double\[\], ref double\[,\]\) @@ -466,19 +467,19 @@ public static bool SectionGenerator(CrossSectionType sectionEnumType, double[] d `sectionEnumType` [CrossSectionType](VM.Managed.DAFUL.Beam.CrossSectionType.md) -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dStartPoint` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dStartPoint` double\[\] -`dEndPoint` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dEndPoint` double\[\] -`dOrienMatrix` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dOrienMatrix` double\[\] -`dOutput` [double](https://learn.microsoft.com/dotnet/api/system.double)\[,\] +`dOutput` double\[,\] #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SectionGenerator\(string, double\[\], double\[\], double\[\], double\[\], ref double\[,\]\) @@ -488,21 +489,21 @@ public static bool SectionGenerator(string sectionStrType, double[] dSInfo, doub #### Parameters -`sectionStrType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`sectionStrType` string -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dStartPoint` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dStartPoint` double\[\] -`dEndPoint` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dEndPoint` double\[\] -`dOrienMatrix` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dOrienMatrix` double\[\] -`dOutput` [double](https://learn.microsoft.com/dotnet/api/system.double)\[,\] +`dOutput` double\[,\] #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SectionGenerator\(ResultType, CrossSectionType, double\[\], double\[\], double\[\], double\[\], ref double\[,\]\) @@ -516,19 +517,19 @@ public static bool SectionGenerator(ResultType resultEnumType, CrossSectionType `sectionEnumType` [CrossSectionType](VM.Managed.DAFUL.Beam.CrossSectionType.md) -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dStartPoint` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dStartPoint` double\[\] -`dEndPoint` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dEndPoint` double\[\] -`dOrienMatrix` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dOrienMatrix` double\[\] -`dOutput` [double](https://learn.microsoft.com/dotnet/api/system.double)\[,\] +`dOutput` double\[,\] #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SectionGenerator\(ResultType, string, double\[\], double\[\], double\[\], double\[\], double\[\], int, ref double\[\]\) @@ -540,25 +541,25 @@ public static bool SectionGenerator(ResultType resultEnumType, string sectionStr `resultEnumType` [ResultType](VM.Managed.DAFUL.Beam.ResultType.md) -`sectionStrType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`sectionStrType` string -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dStartPoint` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dStartPoint` double\[\] -`dEndPoint` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dEndPoint` double\[\] -`dStartOri` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dStartOri` double\[\] -`dEndOri` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dEndOri` double\[\] -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int -`dOutput` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dOutput` double\[\] #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SectionGeomProperty\(ResultType, string, double\[\], double\[\], ref double\) @@ -570,17 +571,17 @@ public static bool SectionGeomProperty(ResultType resultEnumType, string section `resultEnumType` [ResultType](VM.Managed.DAFUL.Beam.ResultType.md) -`sectionStrType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`sectionStrType` string -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dOtherInfos` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dOtherInfos` double\[\] -`dOutput` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOutput` double #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SectionGeomProperty\(ResultType, CrossSectionType, double\[\], double\[\], ref double\) @@ -594,15 +595,15 @@ public static bool SectionGeomProperty(ResultType resultEnumType, CrossSectionTy `sectionEnumType` [CrossSectionType](VM.Managed.DAFUL.Beam.CrossSectionType.md) -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dOtherInfos` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dOtherInfos` double\[\] -`dOutput` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOutput` double #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SectionMass\(string, double, double, double, ref double\) @@ -612,19 +613,19 @@ public static bool SectionMass(string sectionStrType, double dArea, double dDens #### Parameters -`sectionStrType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`sectionStrType` string -`dArea` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dArea` double -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double -`dOutput` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOutput` double #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SectionMass\(CrossSectionType, double, double, double, ref double\) @@ -636,17 +637,17 @@ public static bool SectionMass(CrossSectionType sectionEnumType, double dArea, d `sectionEnumType` [CrossSectionType](VM.Managed.DAFUL.Beam.CrossSectionType.md) -`dArea` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dArea` double -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double -`dOutput` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOutput` double #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SectionMassMomentOfInertia\(string, double, double, double\[\], double, double, ref double\[\]\) @@ -656,23 +657,23 @@ public static bool SectionMassMomentOfInertia(string sectionStrType, double dMas #### Parameters -`sectionStrType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`sectionStrType` string -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double -`dIxx` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dIxx` double -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double -`dOutput` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dOutput` double\[\] #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SectionMassMomentOfInertia\(CrossSectionType, double, double, double\[\], double, double, ref double\[\]\) @@ -684,21 +685,21 @@ public static bool SectionMassMomentOfInertia(CrossSectionType sectionEnumType, `sectionEnumType` [CrossSectionType](VM.Managed.DAFUL.Beam.CrossSectionType.md) -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double -`dIxx` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dIxx` double -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double -`dOutput` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dOutput` double\[\] #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SectionMassProperties\(string, double\[\], double, double, ref double\[\]\) @@ -708,19 +709,19 @@ public static bool SectionMassProperties(string sectionStrType, double[] dSInfo, #### Parameters -`sectionStrType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`sectionStrType` string -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double -`dOutput` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dOutput` double\[\] #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SectionMassProperties\(CrossSectionType, double\[\], double, double, ref double\[\]\) @@ -732,17 +733,17 @@ public static bool SectionMassProperties(CrossSectionType sectionEnumType, doubl `sectionEnumType` [CrossSectionType](VM.Managed.DAFUL.Beam.CrossSectionType.md) -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double -`dOutput` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dOutput` double\[\] #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SetUnitVector\(double\[\]\) @@ -752,7 +753,7 @@ public static void SetUnitVector(double[] dblAry) #### Parameters -`dblAry` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dblAry` double\[\] ### TranslateNastran2DAFUL\(ResultType, CrossSectionType, double\[\], ref double\[\]\) @@ -766,13 +767,13 @@ public static bool TranslateNastran2DAFUL(ResultType resultEnumType, CrossSectio `sectionEnumType` [CrossSectionType](VM.Managed.DAFUL.Beam.CrossSectionType.md) -`dNastran` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dNastran` double\[\] -`dDAFUL` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dDAFUL` double\[\] #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TranslateNastran2DAFUL\(ResultType, string, double\[\], ref double\[\]\) @@ -784,13 +785,13 @@ public static bool TranslateNastran2DAFUL(ResultType resultEnumType, string sect `resultEnumType` [ResultType](VM.Managed.DAFUL.Beam.ResultType.md) -`sectionStrType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`sectionStrType` string -`dNastran` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dNastran` double\[\] -`dDAFUL` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dDAFUL` double\[\] #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.BeamElement.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.BeamElement.md index 99e8bfcd78..7dd975b248 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.BeamElement.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.BeamElement.md @@ -1,4 +1,5 @@ -# Class BeamElement +# Class BeamElement + Namespace: [VM.Managed.DAFUL.Beam](VM.Managed.DAFUL.Beam.md) Assembly: VMDBeamGroup.dll @@ -11,9 +12,9 @@ public class BeamElement : LinkContainer, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [BeamElement](VM.Managed.DAFUL.Beam.BeamElement.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,7 +117,7 @@ public SolidBody ActionBody { get; set; } #### Property Value - SolidBody + [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ### ActionBodyMass @@ -128,7 +129,7 @@ public ExpressionValueVariable ActionBodyMass { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ActionBodyMomentOfInertia @@ -152,7 +153,7 @@ public double[] ActionBodyOrientationArray { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### ActionBodyPosition @@ -176,7 +177,7 @@ public double ActionBodyRadius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ActionBodyTransformationMatrix @@ -188,7 +189,7 @@ public double[] ActionBodyTransformationMatrix { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### AngleArrayBetweenTwoBodies @@ -200,7 +201,7 @@ public double[] AngleArrayBetweenTwoBodies { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### Area @@ -212,7 +213,7 @@ public ExpressionValueVariable Area { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Asy @@ -224,7 +225,7 @@ public ExpressionValueVariable Asy { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Asz @@ -236,7 +237,7 @@ public ExpressionValueVariable Asz { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### BaseBody @@ -248,7 +249,7 @@ public SolidBody BaseBody { get; set; } #### Property Value - SolidBody + [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ### BaseBodyMass @@ -260,7 +261,7 @@ public ExpressionValueVariable BaseBodyMass { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### BaseBodyMomentOfInertia @@ -284,7 +285,7 @@ public double[] BaseBodyOrientationArray { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### BaseBodyPosition @@ -308,7 +309,7 @@ public double BaseBodyRadius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### BaseBodyTransformationMatrix @@ -320,7 +321,7 @@ public double[] BaseBodyTransformationMatrix { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### IsFirstBeamElement @@ -332,7 +333,7 @@ public bool IsFirstBeamElement { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsLastBeamElement @@ -344,7 +345,7 @@ public bool IsLastBeamElement { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Ixx @@ -356,7 +357,7 @@ public ExpressionValueVariable Ixx { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Iyy @@ -368,7 +369,7 @@ public ExpressionValueVariable Iyy { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Iyz @@ -380,7 +381,7 @@ public ExpressionValueVariable Iyz { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Izz @@ -392,7 +393,7 @@ public ExpressionValueVariable Izz { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### LengthBetweenTwoBodies @@ -404,7 +405,7 @@ public double LengthBetweenTwoBodies { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### \_ActionBody @@ -416,7 +417,7 @@ public Linker _ActionBody { get; set; } #### Property Value - Linker + Linker<[SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs)\> ### \_BaseBody @@ -428,7 +429,7 @@ public Linker _BaseBody { get; set; } #### Property Value - Linker + Linker<[SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs)\> ## Methods @@ -442,7 +443,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.BeamGroup.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.BeamGroup.md index cacc232c61..2618a2bd17 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.BeamGroup.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.BeamGroup.md @@ -1,4 +1,5 @@ -# Class BeamGroup +# Class BeamGroup + Namespace: [VM.Managed.DAFUL.Beam](VM.Managed.DAFUL.Beam.md) Assembly: VMDBeamGroup.dll @@ -12,13 +13,13 @@ public class BeamGroup : Group, IObservableObject, IDisposableObject, ILinkable, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← -Group ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← +[Group](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Group.cs) ← [BeamGroup](VM.Managed.DAFUL.Beam.BeamGroup.md) #### Implements @@ -28,7 +29,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -53,36 +54,36 @@ IReportable #### Inherited Members -Group.OnLinkReserved\(ILink, object, EventArgs\), -Group.OnDeserialization\(object\), -Group.FixUp\(ObjectBase\), -Group.GetSolidBody\(\), -Group.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Group.AddObject\(ObjectBase\), -Group.RemoveObject\(ObjectBase\), -Group.AddAction\(GroupActionBase\), -Group.ActionNames\(\), -Group.ExcuteAction\(GroupActionBase, bool\), -Group.ExcuteAction\(string, bool\), -Group.StateAction\(string\), -Group.GetLayerImpl\(\), -Group.SetLayerImpl\(Layer\), -Group.IsEnabled, -Group.Objects, -Group.IsVisible, -Group.ReferenceType, -Group.ArgumentType, -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[Group.OnLinkReserved\(ILink, object, EventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Group.cs), +[Group.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Group.cs), +[Group.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Group.cs), +[Group.GetSolidBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Group.cs), +[Group.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Group.cs), +[Group.AddObject\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Group.cs), +[Group.RemoveObject\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Group.cs), +[Group.AddAction\(GroupActionBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Group.cs), +[Group.ActionNames\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Group.cs), +[Group.ExcuteAction\(GroupActionBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Group.cs), +[Group.ExcuteAction\(string, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Group.cs), +[Group.StateAction\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Group.cs), +[Group.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Group.cs), +[Group.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Group.cs), +[Group.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Group.cs), +[Group.Objects](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Group.cs), +[Group.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Group.cs), +[Group.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Group.cs), +[Group.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Group.cs), +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -175,7 +176,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -214,7 +215,7 @@ public BeamGroup(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string BeamGroup Name @@ -242,7 +243,7 @@ public List DefaultBodyPoints { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### Hide @@ -254,7 +255,7 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RestoretoStraight @@ -266,7 +267,7 @@ public bool RestoretoStraight { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SyncBeamBodyProp @@ -278,7 +279,7 @@ public bool SyncBeamBodyProp { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseBeamForce @@ -290,7 +291,7 @@ public bool UseBeamForce { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -318,13 +319,13 @@ public static SolidBody CreateSolidBody(string name, Vector vecPoint) #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string `vecPoint` Vector #### Returns - SolidBody + [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ### Draw\(Canvas\) @@ -336,7 +337,7 @@ public void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) Canvas to draw beam geometry @@ -354,7 +355,7 @@ protected override Layer GetLayerImpl() #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Document of Group object is null. @@ -414,7 +415,7 @@ Currnet beam information #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool It's true or false @@ -428,13 +429,13 @@ public bool IsFirstBody(SolidBody solidBody) #### Parameters -`solidBody` SolidBody +`solidBody` [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) Body to check #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool It's true or false @@ -454,7 +455,7 @@ Currnet beam information #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool It's true or false @@ -468,13 +469,13 @@ public bool IsLastBody(SolidBody solidBody) #### Parameters -`solidBody` SolidBody +`solidBody` [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) Body to check #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool It's true or false @@ -488,7 +489,7 @@ protected override void LinkRequestDestroy(object objNotifier, LinkEventArgs arg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -506,7 +507,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -524,7 +525,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.BeamInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.BeamInfo.md index 36130aa788..9d135ce417 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.BeamInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.BeamInfo.md @@ -1,4 +1,5 @@ -# Class BeamInfo +# Class BeamInfo + Namespace: [VM.Managed.DAFUL.Beam](VM.Managed.DAFUL.Beam.md) Assembly: VMDBeamGroup.dll @@ -12,9 +13,9 @@ public class BeamInfo : LinkContainer, IObservableObject, IDisposableObject, ILi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [BeamInfo](VM.Managed.DAFUL.Beam.BeamInfo.md) @@ -76,7 +77,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -117,7 +118,7 @@ protected CrossSectionType m_CrossSectionType #### Field Value - CrossSectionType + [CrossSectionType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.FE.BeamCrossSection/BeamCrossSection.cs) ## Properties @@ -143,7 +144,7 @@ public Color Color { get; set; } #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### CrossSectionType @@ -155,7 +156,7 @@ public CrossSectionType CrossSectionType { get; set; } #### Property Value - CrossSectionType + [CrossSectionType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.FE.BeamCrossSection/BeamCrossSection.cs) ### DampingRatio @@ -167,7 +168,7 @@ public double DampingRatio { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DefaultStraightBodyPoints @@ -179,7 +180,7 @@ public List DefaultStraightBodyPoints { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### Density @@ -191,7 +192,7 @@ public double Density { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### EndPoint @@ -227,7 +228,7 @@ public double[] GeomInfoArray { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GeomInfos @@ -251,7 +252,7 @@ public string HtmlColor { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IsFirstBeamInfo @@ -263,7 +264,7 @@ public bool IsFirstBeamInfo { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsLastBeamInfo @@ -275,7 +276,7 @@ public bool IsLastBeamInfo { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Material @@ -299,7 +300,7 @@ public ISO MaterialISO { get; } #### Property Value - ISO + [ISO](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/MaterialISO.cs) ### NumOfElements @@ -311,7 +312,7 @@ public uint NumOfElements { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### PoissonRatio @@ -323,7 +324,7 @@ public double PoissonRatio { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ShearModulus @@ -335,7 +336,7 @@ public double ShearModulus { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StartPoint @@ -371,7 +372,7 @@ public bool UseMiddleElementReferenceFrame { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### YDirection @@ -395,7 +396,7 @@ public double[] YDirectionArray { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### YoungsModulus @@ -407,7 +408,7 @@ public double YoungsModulus { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### \_Material @@ -447,7 +448,7 @@ public void Draw(ref Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) Canvas to draw beam geometry @@ -535,7 +536,7 @@ Currnet beam element #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool It's true or false @@ -549,13 +550,13 @@ public bool IsEndSolidBody(SolidBody solidBody) #### Parameters -`solidBody` SolidBody +`solidBody` [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) SolidBody to check #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool It's true or false @@ -575,7 +576,7 @@ Currnet beam element #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool It's true or false @@ -589,13 +590,13 @@ public bool IsStartSolidBody(SolidBody solidBody) #### Parameters -`solidBody` SolidBody +`solidBody` [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) SolidBody to check #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool It's true or false @@ -609,7 +610,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -627,7 +628,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.CIRCULAR.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.CIRCULAR.md index e252ba57a7..42cf28bcd3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.CIRCULAR.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.CIRCULAR.md @@ -1,4 +1,5 @@ -# Class CIRCULAR +# Class CIRCULAR + Namespace: [VM.Managed.DAFUL.Beam](VM.Managed.DAFUL.Beam.md) Assembly: VM.Models.FE.BeamCrossSection.dll @@ -9,7 +10,7 @@ public class CIRCULAR : CrossSectionBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CrossSectionBase](VM.Managed.DAFUL.Beam.CrossSectionBase.md) ← [CIRCULAR](VM.Managed.DAFUL.Beam.CIRCULAR.md) @@ -83,13 +84,13 @@ public override double[] GenerateMultiSection(double[] dSInfo, int ElementCount) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`ElementCount` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`ElementCount` int #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GenerateOneSection\(double\[\]\) @@ -99,11 +100,11 @@ public override double[] GenerateOneSection(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GeneratePostConnectivities\(int, ref int\[\], ref int\[\]\) @@ -113,15 +114,15 @@ public override int GeneratePostConnectivities(int RenderingType, ref int[] iENo #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int -`iENodes` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`iENodes` int\[\] -`iStartENodes` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`iStartENodes` int\[\] #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GeneratePostOneSection\(double\[\], int\) @@ -131,13 +132,13 @@ public override double[] GeneratePostOneSection(double[] dSInfo, int RenderingTy #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GetArea\(double\[\]\) @@ -147,11 +148,11 @@ public override double GetArea(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetAsy\(double\[\], double\) @@ -161,13 +162,13 @@ public override double GetAsy(double[] dSInfo, double dPoissonRatio) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dPoissonRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dPoissonRatio` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetAsz\(double\[\], double\) @@ -177,13 +178,13 @@ public override double GetAsz(double[] dSInfo, double dPoissonRatio) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dPoissonRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dPoissonRatio` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetIyy\(double\[\]\) @@ -193,11 +194,11 @@ public override double GetIyy(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetIzz\(double\[\]\) @@ -207,11 +208,11 @@ public override double GetIzz(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJyy\(double, double\[\], double, double\) @@ -221,17 +222,17 @@ public override double GetJyy(double dMass, double[] dSInfo, double dDensity, do #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJyy\(double\[\], double, double\) @@ -241,15 +242,15 @@ public override double GetJyy(double[] dSInfo, double dDensity, double dLength) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJzz\(double, double\[\], double, double\) @@ -259,17 +260,17 @@ public override double GetJzz(double dMass, double[] dSInfo, double dDensity, do #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJzz\(double\[\], double, double\) @@ -279,15 +280,15 @@ public override double GetJzz(double[] dSInfo, double dDensity, double dLength) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetNumSideEdges\(int\) @@ -297,11 +298,11 @@ public override int GetNumSideEdges(int RenderingType = 1) #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetNumTotalElements\(int\) @@ -311,11 +312,11 @@ public override int GetNumTotalElements(int RenderingType = 1) #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetNumTotalNodes\(int\) @@ -325,11 +326,11 @@ public override int GetNumTotalNodes(int RenderingType = 1) #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetSphereBodyRadius\(double\[\]\) @@ -339,11 +340,11 @@ public override double GetSphereBodyRadius(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SetVariablesFromArray2Local\(double\[\]\) @@ -353,7 +354,7 @@ protected override void SetVariablesFromArray2Local(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] ### TranslateNastran2DAFUL\(double\[\]\) @@ -363,9 +364,9 @@ public override double[] TranslateNastran2DAFUL(double[] dNastran) #### Parameters -`dNastran` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dNastran` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.CrossSectionBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.CrossSectionBase.md index 1b261930a5..da1ed0990f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.CrossSectionBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.CrossSectionBase.md @@ -1,4 +1,5 @@ -# Class CrossSectionBase +# Class CrossSectionBase + Namespace: [VM.Managed.DAFUL.Beam](VM.Managed.DAFUL.Beam.md) Assembly: VM.Models.FE.BeamCrossSection.dll @@ -9,7 +10,7 @@ public class CrossSectionBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CrossSectionBase](VM.Managed.DAFUL.Beam.CrossSectionBase.md) #### Derived @@ -47,7 +48,7 @@ protected uint m_nGeomInfoArrayCount #### Field Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### m\_nNastranArrayCount @@ -57,7 +58,7 @@ protected uint m_nNastranArrayCount #### Field Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ## Properties @@ -69,7 +70,7 @@ protected double pi { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -81,7 +82,7 @@ protected void CheckDensity(double dDensity) #### Parameters -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double ### CheckGeomInfo\(double\[\]\) @@ -91,7 +92,7 @@ public void CheckGeomInfo(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] ### CheckInputCount\(double\[\]\) @@ -101,7 +102,7 @@ protected void CheckInputCount(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] ### CheckLength\(double\) @@ -111,7 +112,7 @@ protected void CheckLength(double dLength) #### Parameters -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double ### CheckMass\(double\) @@ -121,7 +122,7 @@ protected void CheckMass(double dMass) #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double ### GenerateMultiSection\(double\[\], int\) @@ -131,13 +132,13 @@ public virtual double[] GenerateMultiSection(double[] dSInfo, int ElementCount) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`ElementCount` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`ElementCount` int #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GenerateOneSection\(double\[\]\) @@ -147,11 +148,11 @@ public virtual double[] GenerateOneSection(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GeneratePostConnectivities\(int, ref int\[\], ref int\[\]\) @@ -161,15 +162,15 @@ public virtual int GeneratePostConnectivities(int RenderingType, ref int[] iENod #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int -`iENodes` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`iENodes` int\[\] -`iStartENodes` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`iStartENodes` int\[\] #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GeneratePostOneSection\(double\[\], int\) @@ -179,13 +180,13 @@ public virtual double[] GeneratePostOneSection(double[] dSInfo, int RenderingTyp #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GeneratePostTwoSection\(double\[\], double\[\], double\[\], double\[\], double\[\], int\) @@ -195,21 +196,21 @@ public virtual double[] GeneratePostTwoSection(double[] dSInfo, double[] dStartP #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dStartPoint` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dStartPoint` double\[\] -`dEndPoint` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dEndPoint` double\[\] -`dStartOri` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dStartOri` double\[\] -`dEndOri` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dEndOri` double\[\] -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GenerateTwoSection\(double\[\], double\[\], double\[\], double\[\]\) @@ -219,17 +220,17 @@ public double[,] GenerateTwoSection(double[] dSInfo, double[] dStartPoint, doubl #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dStartPoint` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dStartPoint` double\[\] -`dEndPoint` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dEndPoint` double\[\] -`dOrienMatrix` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dOrienMatrix` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[,\] + double\[,\] ### GetArea\(double\[\]\) @@ -239,11 +240,11 @@ public virtual double GetArea(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetAreaProperties\(double\[\], double\) @@ -253,13 +254,13 @@ public virtual double[] GetAreaProperties(double[] dSInfo, double dPoissonRatio) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dPoissonRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dPoissonRatio` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GetAsy\(double\[\], double\) @@ -269,13 +270,13 @@ public virtual double GetAsy(double[] dSInfo, double dPoissonRatio) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dPoissonRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dPoissonRatio` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetAsz\(double\[\], double\) @@ -285,13 +286,13 @@ public virtual double GetAsz(double[] dSInfo, double dPoissonRatio) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dPoissonRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dPoissonRatio` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetIxx\(double\[\]\) @@ -301,11 +302,11 @@ public virtual double GetIxx(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetIyy\(double\[\]\) @@ -315,11 +316,11 @@ public virtual double GetIyy(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetIzz\(double\[\]\) @@ -329,11 +330,11 @@ public virtual double GetIzz(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJxx\(double, double, double\) @@ -343,15 +344,15 @@ public double GetJxx(double dIxx, double dDensity, double dLength) #### Parameters -`dIxx` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dIxx` double -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJxx\(double\[\], double, double\) @@ -361,15 +362,15 @@ public double GetJxx(double[] dSInfo, double dDensity, double dLength) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJyy\(double, double\[\], double, double\) @@ -379,17 +380,17 @@ public virtual double GetJyy(double dMass, double[] dSInfo, double dDensity, dou #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJyy\(double\[\], double, double\) @@ -399,15 +400,15 @@ public virtual double GetJyy(double[] dSInfo, double dDensity, double dLength) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJzz\(double, double\[\], double, double\) @@ -417,17 +418,17 @@ public virtual double GetJzz(double dMass, double[] dSInfo, double dDensity, dou #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJzz\(double\[\], double, double\) @@ -437,15 +438,15 @@ public virtual double GetJzz(double[] dSInfo, double dDensity, double dLength) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetMass\(double\[\], double, double\) @@ -455,15 +456,15 @@ public double GetMass(double[] dSInfo, double dDensity, double dLength) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetMassMomentOfInertia\(double, double, double\[\], double, double\) @@ -473,19 +474,19 @@ public virtual double[] GetMassMomentOfInertia(double dMass, double dIxx, double #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double -`dIxx` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dIxx` double -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GetMassProperties\(double\[\], double, double\) @@ -495,15 +496,15 @@ public virtual double[] GetMassProperties(double[] dSInfo, double dDensity, doub #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GetNumSideEdges\(int\) @@ -513,11 +514,11 @@ public virtual int GetNumSideEdges(int RenderingType = 1) #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetNumTotalElements\(int\) @@ -527,11 +528,11 @@ public virtual int GetNumTotalElements(int RenderingType = 1) #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetNumTotalNodes\(int\) @@ -541,11 +542,11 @@ public virtual int GetNumTotalNodes(int RenderingType = 1) #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetRequiredInputCount\(CrossSectionType\) @@ -559,7 +560,7 @@ public virtual uint GetRequiredInputCount(CrossSectionType sectionEnumType) #### Returns - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### GetSphereBodyRadius\(double\[\]\) @@ -569,11 +570,11 @@ public virtual double GetSphereBodyRadius(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetStiffnessElementsOfMatrixForceByCoef\(double, double, double, double, double, double, double, double, double, double, double\) @@ -583,31 +584,31 @@ public double[] GetStiffnessElementsOfMatrixForceByCoef(double dArea, double dIy #### Parameters -`dArea` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dArea` double -`dIyy` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dIyy` double -`dIzz` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dIzz` double -`dIxx` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dIxx` double -`dAsy` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAsy` double -`dAsz` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAsz` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double -`dPoissonRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dPoissonRatio` double -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dYoungsModulus` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dYoungsModulus` double -`dShearModulus` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dShearModulus` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GetStiffnessElementsOfMatrixForceByGeom\(double\[\], double, double, double, double, double\) @@ -617,21 +618,21 @@ public double[] GetStiffnessElementsOfMatrixForceByGeom(double[] dSInfo, double #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double -`dPoissonRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dPoissonRatio` double -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dYoungsModulus` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dYoungsModulus` double -`dShearModulus` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dShearModulus` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### SetVariablesFromArray2Local\(double\[\]\) @@ -641,7 +642,7 @@ protected virtual void SetVariablesFromArray2Local(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] ### TranslateNastran2DAFUL\(double\[\]\) @@ -651,11 +652,11 @@ public virtual double[] TranslateNastran2DAFUL(double[] dNastran) #### Parameters -`dNastran` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dNastran` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### cos\(double\) @@ -665,11 +666,11 @@ protected double cos(double a) #### Parameters -`a` [double](https://learn.microsoft.com/dotnet/api/system.double) +`a` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### mattrvec\(double\[\], double\[\]\) @@ -679,13 +680,13 @@ protected double[] mattrvec(double[] a, double[] b) #### Parameters -`a` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`a` double\[\] -`b` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`b` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### matvec\(double\[\], double\[\]\) @@ -695,13 +696,13 @@ protected double[] matvec(double[] a, double[] b) #### Parameters -`a` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`a` double\[\] -`b` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`b` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### sin\(double\) @@ -711,9 +712,9 @@ protected double sin(double a) #### Parameters -`a` [double](https://learn.microsoft.com/dotnet/api/system.double) +`a` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.CrossSectionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.CrossSectionType.md index 86e4569369..33e666ab70 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.CrossSectionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.CrossSectionType.md @@ -1,4 +1,5 @@ -# Enum CrossSectionType +# Enum CrossSectionType + Namespace: [VM.Managed.DAFUL.Beam](VM.Managed.DAFUL.Beam.md) Assembly: VM.Models.FE.BeamCrossSection.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.ELLIPTICAL.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.ELLIPTICAL.md index f307d0e03d..2dc0889999 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.ELLIPTICAL.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.ELLIPTICAL.md @@ -1,4 +1,5 @@ -# Class ELLIPTICAL +# Class ELLIPTICAL + Namespace: [VM.Managed.DAFUL.Beam](VM.Managed.DAFUL.Beam.md) Assembly: VM.Models.FE.BeamCrossSection.dll @@ -9,7 +10,7 @@ public class ELLIPTICAL : CrossSectionBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CrossSectionBase](VM.Managed.DAFUL.Beam.CrossSectionBase.md) ← [ELLIPTICAL](VM.Managed.DAFUL.Beam.ELLIPTICAL.md) @@ -83,13 +84,13 @@ public override double[] GenerateMultiSection(double[] dSInfo, int ElementCount) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`ElementCount` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`ElementCount` int #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GenerateOneSection\(double\[\]\) @@ -99,11 +100,11 @@ public override double[] GenerateOneSection(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GeneratePostConnectivities\(int, ref int\[\], ref int\[\]\) @@ -113,15 +114,15 @@ public override int GeneratePostConnectivities(int RenderingType, ref int[] iENo #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int -`iENodes` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`iENodes` int\[\] -`iStartENodes` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`iStartENodes` int\[\] #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GeneratePostOneSection\(double\[\], int\) @@ -131,13 +132,13 @@ public override double[] GeneratePostOneSection(double[] dSInfo, int RenderingTy #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GetArea\(double\[\]\) @@ -147,11 +148,11 @@ public override double GetArea(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetAsy\(double\[\], double\) @@ -161,13 +162,13 @@ public override double GetAsy(double[] dSInfo, double dPoissonRatio) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dPoissonRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dPoissonRatio` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetAsz\(double\[\], double\) @@ -177,13 +178,13 @@ public override double GetAsz(double[] dSInfo, double dPoissonRatio) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dPoissonRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dPoissonRatio` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetIyy\(double\[\]\) @@ -193,11 +194,11 @@ public override double GetIyy(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetIzz\(double\[\]\) @@ -207,11 +208,11 @@ public override double GetIzz(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJyy\(double, double\[\], double, double\) @@ -221,17 +222,17 @@ public override double GetJyy(double dMass, double[] dSInfo, double dDensity, do #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJyy\(double\[\], double, double\) @@ -241,15 +242,15 @@ public override double GetJyy(double[] dSInfo, double dDensity, double dLength) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJzz\(double, double\[\], double, double\) @@ -259,17 +260,17 @@ public override double GetJzz(double dMass, double[] dSInfo, double dDensity, do #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJzz\(double\[\], double, double\) @@ -279,15 +280,15 @@ public override double GetJzz(double[] dSInfo, double dDensity, double dLength) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetNumSideEdges\(int\) @@ -297,11 +298,11 @@ public override int GetNumSideEdges(int RenderingType = 1) #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetNumTotalElements\(int\) @@ -311,11 +312,11 @@ public override int GetNumTotalElements(int RenderingType = 1) #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetNumTotalNodes\(int\) @@ -325,11 +326,11 @@ public override int GetNumTotalNodes(int RenderingType = 1) #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetSphereBodyRadius\(double\[\]\) @@ -339,11 +340,11 @@ public override double GetSphereBodyRadius(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SetVariablesFromArray2Local\(double\[\]\) @@ -353,7 +354,7 @@ protected override void SetVariablesFromArray2Local(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] ### TranslateNastran2DAFUL\(double\[\]\) @@ -363,9 +364,9 @@ public override double[] TranslateNastran2DAFUL(double[] dNastran) #### Parameters -`dNastran` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dNastran` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.Force.BeamForce.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.Force.BeamForce.md index 8b8b81a902..aad1f7242d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.Force.BeamForce.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.Force.BeamForce.md @@ -1,4 +1,5 @@ -# Class BeamForce +# Class BeamForce + Namespace: [VM.Managed.DAFUL.Beam.Force](VM.Managed.DAFUL.Beam.Force.md) Assembly: VMDBeamGroup.dll @@ -11,17 +12,17 @@ public class BeamForce : Matrix, IObservableObject, IDisposableObject, ILinkable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← -Force ← -Matrix ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← +[Force](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← +[Matrix](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFP/Matrix.cs) ← [BeamForce](VM.Managed.DAFUL.Beam.Force.BeamForce.md) #### Implements @@ -31,7 +32,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -70,74 +71,74 @@ ITorqueReferenceForBearing #### Inherited Members -Matrix.Initialize\(Unit.ConvertFactor\), -Matrix.LinkRequestUpdate\(object, LinkEventArgs\), -Matrix.UpdateRefLengthAndRefAngle\(\), -Matrix.Generable, -Matrix.ReportTypeImpl, -Force.Initialize\(Unit.ConvertFactor\), -Force.WriteMarker\(XmlWriter, Marker, string\), -Force.ReadMarker\(XmlReader, Marker, string\), -Force.UseForSimulationScenario, -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Matrix.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFP/Matrix.cs), +[Matrix.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFP/Matrix.cs), +[Matrix.UpdateRefLengthAndRefAngle\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFP/Matrix.cs), +[Matrix.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFP/Matrix.cs), +[Matrix.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFP/Matrix.cs), +[Force.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.WriteMarker\(XmlWriter, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.ReadMarker\(XmlReader, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.UseForSimulationScenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -236,7 +237,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -275,7 +276,7 @@ public BeamForce(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Beam Force Name @@ -291,7 +292,7 @@ public double AreaValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### AsyValue @@ -303,7 +304,7 @@ public double AsyValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### AszValue @@ -315,7 +316,7 @@ public double AszValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Color @@ -327,7 +328,7 @@ public Color Color { get; set; } #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### CrossSectionType @@ -339,7 +340,7 @@ public CrossSectionType CrossSectionType { get; set; } #### Property Value - CrossSectionType + [CrossSectionType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.FE.BeamCrossSection/BeamCrossSection.cs) ### EValue @@ -351,7 +352,7 @@ public double EValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GValue @@ -363,7 +364,7 @@ public double GValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GeomInfos @@ -375,7 +376,7 @@ public double[] GeomInfos { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### IxxValue @@ -387,7 +388,7 @@ public double IxxValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### IyyValue @@ -399,7 +400,7 @@ public double IyyValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### IyzValue @@ -411,7 +412,7 @@ public double IyzValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### IzzValue @@ -423,7 +424,7 @@ public double IzzValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### LengthValue @@ -435,7 +436,7 @@ public double LengthValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ParamCount @@ -447,7 +448,7 @@ public uint ParamCount { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### ReportTypeImpl @@ -471,7 +472,7 @@ public bool UseMiddleElementReferenceFrame { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### YDirection @@ -483,7 +484,7 @@ public double[] YDirection { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### ZetaValue @@ -495,5 +496,5 @@ public double ZetaValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.Force.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.Force.md index dcd3910b4f..9ace242fbc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.Force.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.Force.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Beam.Force +# Namespace VM.Managed.DAFUL.Beam.Force + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.HOLLOW_RECTANGULAR.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.HOLLOW_RECTANGULAR.md index 081fef30e6..5717cf6533 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.HOLLOW_RECTANGULAR.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.HOLLOW_RECTANGULAR.md @@ -1,4 +1,5 @@ -# Class HOLLOW\_RECTANGULAR +# Class HOLLOW\_RECTANGULAR + Namespace: [VM.Managed.DAFUL.Beam](VM.Managed.DAFUL.Beam.md) Assembly: VM.Models.FE.BeamCrossSection.dll @@ -9,7 +10,7 @@ public class HOLLOW_RECTANGULAR : CrossSectionBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CrossSectionBase](VM.Managed.DAFUL.Beam.CrossSectionBase.md) ← [HOLLOW\_RECTANGULAR](VM.Managed.DAFUL.Beam.HOLLOW\_RECTANGULAR.md) @@ -83,7 +84,7 @@ public double m_Asy { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_Asz @@ -93,7 +94,7 @@ public double m_Asz { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### n\_Asy @@ -103,7 +104,7 @@ public double n_Asy { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### n\_Asz @@ -113,7 +114,7 @@ public double n_Asz { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -125,13 +126,13 @@ public override double[] GenerateMultiSection(double[] dSInfo, int ElementCount) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`ElementCount` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`ElementCount` int #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GenerateOneSection\(double\[\]\) @@ -141,11 +142,11 @@ public override double[] GenerateOneSection(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GeneratePostConnectivities\(int, ref int\[\], ref int\[\]\) @@ -155,15 +156,15 @@ public override int GeneratePostConnectivities(int RenderingType, ref int[] iENo #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int -`iENodes` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`iENodes` int\[\] -`iStartENodes` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`iStartENodes` int\[\] #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GeneratePostOneSection\(double\[\], int\) @@ -173,13 +174,13 @@ public override double[] GeneratePostOneSection(double[] dSInfo, int RenderingTy #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GetArea\(double\[\]\) @@ -189,11 +190,11 @@ public override double GetArea(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetAsy\(double\[\], double\) @@ -203,13 +204,13 @@ public override double GetAsy(double[] dSInfo, double dPoissonRatio) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dPoissonRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dPoissonRatio` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetAsz\(double\[\], double\) @@ -219,13 +220,13 @@ public override double GetAsz(double[] dSInfo, double dPoissonRatio) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dPoissonRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dPoissonRatio` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetIyy\(double\[\]\) @@ -235,11 +236,11 @@ public override double GetIyy(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetIzz\(double\[\]\) @@ -249,11 +250,11 @@ public override double GetIzz(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJyy\(double, double\[\], double, double\) @@ -263,17 +264,17 @@ public override double GetJyy(double dMass, double[] dSInfo, double dDensity, do #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJyy\(double\[\], double, double\) @@ -283,15 +284,15 @@ public override double GetJyy(double[] dSInfo, double dDensity, double dLength) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJzz\(double, double\[\], double, double\) @@ -301,17 +302,17 @@ public override double GetJzz(double dMass, double[] dSInfo, double dDensity, do #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJzz\(double\[\], double, double\) @@ -321,15 +322,15 @@ public override double GetJzz(double[] dSInfo, double dDensity, double dLength) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetNumSideEdges\(int\) @@ -339,11 +340,11 @@ public override int GetNumSideEdges(int RenderingType = 1) #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetNumTotalElements\(int\) @@ -353,11 +354,11 @@ public override int GetNumTotalElements(int RenderingType = 1) #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetNumTotalNodes\(int\) @@ -367,11 +368,11 @@ public override int GetNumTotalNodes(int RenderingType = 1) #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetSphereBodyRadius\(double\[\]\) @@ -381,11 +382,11 @@ public override double GetSphereBodyRadius(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SetVariablesFromArray2Local\(double\[\]\) @@ -395,7 +396,7 @@ protected override void SetVariablesFromArray2Local(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] ### TranslateNastran2DAFUL\(double\[\]\) @@ -405,9 +406,9 @@ public override double[] TranslateNastran2DAFUL(double[] dNastran) #### Parameters -`dNastran` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dNastran` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.HOLLOW_TAPERED_CIRCULAR.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.HOLLOW_TAPERED_CIRCULAR.md index 6c1c077d51..b4cf26a180 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.HOLLOW_TAPERED_CIRCULAR.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.HOLLOW_TAPERED_CIRCULAR.md @@ -1,4 +1,5 @@ -# Class HOLLOW\_TAPERED\_CIRCULAR +# Class HOLLOW\_TAPERED\_CIRCULAR + Namespace: [VM.Managed.DAFUL.Beam](VM.Managed.DAFUL.Beam.md) Assembly: VM.Models.FE.BeamCrossSection.dll @@ -9,7 +10,7 @@ public class HOLLOW_TAPERED_CIRCULAR : CrossSectionBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CrossSectionBase](VM.Managed.DAFUL.Beam.CrossSectionBase.md) ← [HOLLOW\_TAPERED\_CIRCULAR](VM.Managed.DAFUL.Beam.HOLLOW\_TAPERED\_CIRCULAR.md) @@ -83,7 +84,7 @@ public double m0 { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m1 @@ -93,7 +94,7 @@ public double m1 { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -105,13 +106,13 @@ public override double[] GenerateMultiSection(double[] dSInfo, int ElementCount) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`ElementCount` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`ElementCount` int #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GenerateOneSection\(double\[\]\) @@ -121,11 +122,11 @@ public override double[] GenerateOneSection(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GeneratePostConnectivities\(int, ref int\[\], ref int\[\]\) @@ -135,15 +136,15 @@ public override int GeneratePostConnectivities(int RenderingType, ref int[] iENo #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int -`iENodes` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`iENodes` int\[\] -`iStartENodes` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`iStartENodes` int\[\] #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GeneratePostOneSection\(double\[\], int\) @@ -153,13 +154,13 @@ public override double[] GeneratePostOneSection(double[] dSInfo, int RenderingTy #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GeneratePostTwoSection\(double\[\], double\[\], double\[\], double\[\], double\[\], int\) @@ -169,21 +170,21 @@ public override double[] GeneratePostTwoSection(double[] dSInfo, double[] dStart #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dStartPoint` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dStartPoint` double\[\] -`dEndPoint` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dEndPoint` double\[\] -`dStartOri` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dStartOri` double\[\] -`dEndOri` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dEndOri` double\[\] -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GetArea\(double\[\]\) @@ -193,11 +194,11 @@ public override double GetArea(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetAsy\(double\[\], double\) @@ -207,13 +208,13 @@ public override double GetAsy(double[] dSInfo, double dPoissonRatio) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dPoissonRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dPoissonRatio` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetAsz\(double\[\], double\) @@ -223,13 +224,13 @@ public override double GetAsz(double[] dSInfo, double dPoissonRatio) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dPoissonRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dPoissonRatio` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetIyy\(double\[\]\) @@ -239,11 +240,11 @@ public override double GetIyy(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetIzz\(double\[\]\) @@ -253,11 +254,11 @@ public override double GetIzz(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJyy\(double, double\[\], double, double\) @@ -267,17 +268,17 @@ public override double GetJyy(double dMass, double[] dSInfo, double dDensity, do #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJyy\(double\[\], double, double\) @@ -287,15 +288,15 @@ public override double GetJyy(double[] dSInfo, double dDensity, double dLength) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJzz\(double, double\[\], double, double\) @@ -305,17 +306,17 @@ public override double GetJzz(double dMass, double[] dSInfo, double dDensity, do #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJzz\(double\[\], double, double\) @@ -325,15 +326,15 @@ public override double GetJzz(double[] dSInfo, double dDensity, double dLength) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetNumSideEdges\(int\) @@ -343,11 +344,11 @@ public override int GetNumSideEdges(int RenderingType = 1) #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetNumTotalElements\(int\) @@ -357,11 +358,11 @@ public override int GetNumTotalElements(int RenderingType = 1) #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetNumTotalNodes\(int\) @@ -371,11 +372,11 @@ public override int GetNumTotalNodes(int RenderingType = 1) #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetSphereBodyRadius\(double\[\]\) @@ -385,11 +386,11 @@ public override double GetSphereBodyRadius(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SetVariablesFromArray2Local\(double\[\]\) @@ -399,7 +400,7 @@ protected override void SetVariablesFromArray2Local(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] ### TranslateNastran2DAFUL\(double\[\]\) @@ -409,9 +410,9 @@ public override double[] TranslateNastran2DAFUL(double[] dNastran) #### Parameters -`dNastran` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dNastran` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.I_BEAM.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.I_BEAM.md index e15f1ce2b2..80693d1235 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.I_BEAM.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.I_BEAM.md @@ -1,4 +1,5 @@ -# Class I\_BEAM +# Class I\_BEAM + Namespace: [VM.Managed.DAFUL.Beam](VM.Managed.DAFUL.Beam.md) Assembly: VM.Models.FE.BeamCrossSection.dll @@ -9,7 +10,7 @@ public class I_BEAM : CrossSectionBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CrossSectionBase](VM.Managed.DAFUL.Beam.CrossSectionBase.md) ← [I\_BEAM](VM.Managed.DAFUL.Beam.I\_BEAM.md) @@ -83,13 +84,13 @@ public override double[] GenerateMultiSection(double[] dSInfo, int ElementCount) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`ElementCount` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`ElementCount` int #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GenerateOneSection\(double\[\]\) @@ -99,11 +100,11 @@ public override double[] GenerateOneSection(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GeneratePostConnectivities\(int, ref int\[\], ref int\[\]\) @@ -113,15 +114,15 @@ public override int GeneratePostConnectivities(int RenderingType, ref int[] iENo #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int -`iENodes` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`iENodes` int\[\] -`iStartENodes` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`iStartENodes` int\[\] #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GeneratePostOneSection\(double\[\], int\) @@ -131,13 +132,13 @@ public override double[] GeneratePostOneSection(double[] dSInfo, int RenderingTy #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GetArea\(double\[\]\) @@ -147,11 +148,11 @@ public override double GetArea(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetAsy\(double\[\], double\) @@ -161,13 +162,13 @@ public override double GetAsy(double[] dSInfo, double dPoissonRatio) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dPoissonRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dPoissonRatio` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetAsz\(double\[\], double\) @@ -177,13 +178,13 @@ public override double GetAsz(double[] dSInfo, double dPoissonRatio) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dPoissonRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dPoissonRatio` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetIyy\(double\[\]\) @@ -193,11 +194,11 @@ public override double GetIyy(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetIzz\(double\[\]\) @@ -207,11 +208,11 @@ public override double GetIzz(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJyy\(double, double\[\], double, double\) @@ -221,17 +222,17 @@ public override double GetJyy(double dMass, double[] dSInfo, double dDensity, do #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJyy\(double\[\], double, double\) @@ -241,15 +242,15 @@ public override double GetJyy(double[] dSInfo, double dDensity, double dLength) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJzz\(double, double\[\], double, double\) @@ -259,17 +260,17 @@ public override double GetJzz(double dMass, double[] dSInfo, double dDensity, do #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJzz\(double\[\], double, double\) @@ -279,15 +280,15 @@ public override double GetJzz(double[] dSInfo, double dDensity, double dLength) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetNumSideEdges\(int\) @@ -297,11 +298,11 @@ public override int GetNumSideEdges(int RenderingType = 1) #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetNumTotalElements\(int\) @@ -311,11 +312,11 @@ public override int GetNumTotalElements(int RenderingType = 1) #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetNumTotalNodes\(int\) @@ -325,11 +326,11 @@ public override int GetNumTotalNodes(int RenderingType = 1) #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetSphereBodyRadius\(double\[\]\) @@ -339,11 +340,11 @@ public override double GetSphereBodyRadius(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SetVariablesFromArray2Local\(double\[\]\) @@ -353,7 +354,7 @@ protected override void SetVariablesFromArray2Local(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] ### TranslateNastran2DAFUL\(double\[\]\) @@ -363,9 +364,9 @@ public override double[] TranslateNastran2DAFUL(double[] dNastran) #### Parameters -`dNastran` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dNastran` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.RECTANGULAR.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.RECTANGULAR.md index fea4041c30..d6330877c6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.RECTANGULAR.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.RECTANGULAR.md @@ -1,4 +1,5 @@ -# Class RECTANGULAR +# Class RECTANGULAR + Namespace: [VM.Managed.DAFUL.Beam](VM.Managed.DAFUL.Beam.md) Assembly: VM.Models.FE.BeamCrossSection.dll @@ -9,7 +10,7 @@ public class RECTANGULAR : CrossSectionBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CrossSectionBase](VM.Managed.DAFUL.Beam.CrossSectionBase.md) ← [RECTANGULAR](VM.Managed.DAFUL.Beam.RECTANGULAR.md) @@ -83,13 +84,13 @@ public override double[] GenerateMultiSection(double[] dSInfo, int ElementCount) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`ElementCount` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`ElementCount` int #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GenerateOneSection\(double\[\]\) @@ -99,11 +100,11 @@ public override double[] GenerateOneSection(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GeneratePostConnectivities\(int, ref int\[\], ref int\[\]\) @@ -113,15 +114,15 @@ public override int GeneratePostConnectivities(int RenderingType, ref int[] iENo #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int -`iENodes` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`iENodes` int\[\] -`iStartENodes` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`iStartENodes` int\[\] #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GeneratePostOneSection\(double\[\], int\) @@ -131,13 +132,13 @@ public override double[] GeneratePostOneSection(double[] dSInfo, int RenderingTy #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GetArea\(double\[\]\) @@ -147,11 +148,11 @@ public override double GetArea(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetAsy\(double\[\], double\) @@ -161,13 +162,13 @@ public override double GetAsy(double[] dSInfo, double dPoissonRatio) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dPoissonRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dPoissonRatio` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetAsz\(double\[\], double\) @@ -177,13 +178,13 @@ public override double GetAsz(double[] dSInfo, double dPoissonRatio) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dPoissonRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dPoissonRatio` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetIyy\(double\[\]\) @@ -193,11 +194,11 @@ public override double GetIyy(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetIzz\(double\[\]\) @@ -207,11 +208,11 @@ public override double GetIzz(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJyy\(double, double\[\], double, double\) @@ -221,17 +222,17 @@ public override double GetJyy(double dMass, double[] dSInfo, double dDensity, do #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJyy\(double\[\], double, double\) @@ -241,15 +242,15 @@ public override double GetJyy(double[] dSInfo, double dDensity, double dLength) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJzz\(double, double\[\], double, double\) @@ -259,17 +260,17 @@ public override double GetJzz(double dMass, double[] dSInfo, double dDensity, do #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJzz\(double\[\], double, double\) @@ -279,15 +280,15 @@ public override double GetJzz(double[] dSInfo, double dDensity, double dLength) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetNumSideEdges\(int\) @@ -297,11 +298,11 @@ public override int GetNumSideEdges(int RenderingType = 1) #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetNumTotalElements\(int\) @@ -311,11 +312,11 @@ public override int GetNumTotalElements(int RenderingType = 1) #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetNumTotalNodes\(int\) @@ -325,11 +326,11 @@ public override int GetNumTotalNodes(int RenderingType = 1) #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetSphereBodyRadius\(double\[\]\) @@ -339,11 +340,11 @@ public override double GetSphereBodyRadius(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SetVariablesFromArray2Local\(double\[\]\) @@ -353,7 +354,7 @@ protected override void SetVariablesFromArray2Local(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] ### TranslateNastran2DAFUL\(double\[\]\) @@ -363,9 +364,9 @@ public override double[] TranslateNastran2DAFUL(double[] dNastran) #### Parameters -`dNastran` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dNastran` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.RenderingType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.RenderingType.md index ca4b35b16d..76dc65d553 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.RenderingType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.RenderingType.md @@ -1,4 +1,5 @@ -# Enum RenderingType +# Enum RenderingType + Namespace: [VM.Managed.DAFUL.Beam](VM.Managed.DAFUL.Beam.md) Assembly: VM.Models.FE.BeamCrossSection.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.ResultType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.ResultType.md index 28b1cb0f97..21f2b58aa8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.ResultType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.ResultType.md @@ -1,4 +1,5 @@ -# Enum ResultType +# Enum ResultType + Namespace: [VM.Managed.DAFUL.Beam](VM.Managed.DAFUL.Beam.md) Assembly: VM.Models.FE.BeamCrossSection.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.THIN_TUBE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.THIN_TUBE.md index b5d3f146c9..5ef089ab1c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.THIN_TUBE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.THIN_TUBE.md @@ -1,4 +1,5 @@ -# Class THIN\_TUBE +# Class THIN\_TUBE + Namespace: [VM.Managed.DAFUL.Beam](VM.Managed.DAFUL.Beam.md) Assembly: VM.Models.FE.BeamCrossSection.dll @@ -9,7 +10,7 @@ public class THIN_TUBE : CrossSectionBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CrossSectionBase](VM.Managed.DAFUL.Beam.CrossSectionBase.md) ← [THIN\_TUBE](VM.Managed.DAFUL.Beam.THIN\_TUBE.md) @@ -83,13 +84,13 @@ public override double[] GenerateMultiSection(double[] dSInfo, int ElementCount) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`ElementCount` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`ElementCount` int #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GenerateOneSection\(double\[\]\) @@ -99,11 +100,11 @@ public override double[] GenerateOneSection(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GeneratePostConnectivities\(int, ref int\[\], ref int\[\]\) @@ -113,15 +114,15 @@ public override int GeneratePostConnectivities(int RenderingType, ref int[] iENo #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int -`iENodes` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`iENodes` int\[\] -`iStartENodes` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`iStartENodes` int\[\] #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GeneratePostOneSection\(double\[\], int\) @@ -131,13 +132,13 @@ public override double[] GeneratePostOneSection(double[] dSInfo, int RenderingTy #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GetArea\(double\[\]\) @@ -147,11 +148,11 @@ public override double GetArea(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetAsy\(double\[\], double\) @@ -161,13 +162,13 @@ public override double GetAsy(double[] dSInfo, double dPoissonRatio) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dPoissonRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dPoissonRatio` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetAsz\(double\[\], double\) @@ -177,13 +178,13 @@ public override double GetAsz(double[] dSInfo, double dPoissonRatio) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dPoissonRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dPoissonRatio` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetIyy\(double\[\]\) @@ -193,11 +194,11 @@ public override double GetIyy(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetIzz\(double\[\]\) @@ -207,11 +208,11 @@ public override double GetIzz(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJyy\(double, double\[\], double, double\) @@ -221,17 +222,17 @@ public override double GetJyy(double dMass, double[] dSInfo, double dDensity, do #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJyy\(double\[\], double, double\) @@ -241,15 +242,15 @@ public override double GetJyy(double[] dSInfo, double dDensity, double dLength) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJzz\(double, double\[\], double, double\) @@ -259,17 +260,17 @@ public override double GetJzz(double dMass, double[] dSInfo, double dDensity, do #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJzz\(double\[\], double, double\) @@ -279,15 +280,15 @@ public override double GetJzz(double[] dSInfo, double dDensity, double dLength) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetNumSideEdges\(int\) @@ -297,11 +298,11 @@ public override int GetNumSideEdges(int RenderingType = 1) #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetNumTotalElements\(int\) @@ -311,11 +312,11 @@ public override int GetNumTotalElements(int RenderingType = 1) #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetNumTotalNodes\(int\) @@ -325,11 +326,11 @@ public override int GetNumTotalNodes(int RenderingType = 1) #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetSphereBodyRadius\(double\[\]\) @@ -339,11 +340,11 @@ public override double GetSphereBodyRadius(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SetVariablesFromArray2Local\(double\[\]\) @@ -353,7 +354,7 @@ protected override void SetVariablesFromArray2Local(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] ### TranslateNastran2DAFUL\(double\[\]\) @@ -363,9 +364,9 @@ public override double[] TranslateNastran2DAFUL(double[] dNastran) #### Parameters -`dNastran` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dNastran` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.T_BEAM.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.T_BEAM.md index 69d4d29a4d..0825ca1ed8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.T_BEAM.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.T_BEAM.md @@ -1,4 +1,5 @@ -# Class T\_BEAM +# Class T\_BEAM + Namespace: [VM.Managed.DAFUL.Beam](VM.Managed.DAFUL.Beam.md) Assembly: VM.Models.FE.BeamCrossSection.dll @@ -9,7 +10,7 @@ public class T_BEAM : CrossSectionBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CrossSectionBase](VM.Managed.DAFUL.Beam.CrossSectionBase.md) ← [T\_BEAM](VM.Managed.DAFUL.Beam.T\_BEAM.md) @@ -83,13 +84,13 @@ public override double[] GenerateMultiSection(double[] dSInfo, int ElementCount) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`ElementCount` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`ElementCount` int #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GenerateOneSection\(double\[\]\) @@ -99,11 +100,11 @@ public override double[] GenerateOneSection(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GeneratePostConnectivities\(int, ref int\[\], ref int\[\]\) @@ -113,15 +114,15 @@ public override int GeneratePostConnectivities(int RenderingType, ref int[] iENo #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int -`iENodes` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`iENodes` int\[\] -`iStartENodes` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`iStartENodes` int\[\] #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GeneratePostOneSection\(double\[\], int\) @@ -131,13 +132,13 @@ public override double[] GeneratePostOneSection(double[] dSInfo, int RenderingTy #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GetArea\(double\[\]\) @@ -147,11 +148,11 @@ public override double GetArea(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetAsy\(double\[\], double\) @@ -161,13 +162,13 @@ public override double GetAsy(double[] dSInfo, double dPoissonRatio) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dPoissonRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dPoissonRatio` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetAsz\(double\[\], double\) @@ -177,13 +178,13 @@ public override double GetAsz(double[] dSInfo, double dPoissonRatio) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dPoissonRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dPoissonRatio` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetIyy\(double\[\]\) @@ -193,11 +194,11 @@ public override double GetIyy(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetIzz\(double\[\]\) @@ -207,11 +208,11 @@ public override double GetIzz(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJyy\(double, double\[\], double, double\) @@ -221,17 +222,17 @@ public override double GetJyy(double dMass, double[] dSInfo, double dDensity, do #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJyy\(double\[\], double, double\) @@ -241,15 +242,15 @@ public override double GetJyy(double[] dSInfo, double dDensity, double dLength) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJzz\(double, double\[\], double, double\) @@ -259,17 +260,17 @@ public override double GetJzz(double dMass, double[] dSInfo, double dDensity, do #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetJzz\(double\[\], double, double\) @@ -279,15 +280,15 @@ public override double GetJzz(double[] dSInfo, double dDensity, double dLength) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetNumSideEdges\(int\) @@ -297,11 +298,11 @@ public override int GetNumSideEdges(int RenderingType = 1) #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetNumTotalElements\(int\) @@ -311,11 +312,11 @@ public override int GetNumTotalElements(int RenderingType = 1) #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetNumTotalNodes\(int\) @@ -325,11 +326,11 @@ public override int GetNumTotalNodes(int RenderingType = 1) #### Parameters -`RenderingType` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`RenderingType` int #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetSphereBodyRadius\(double\[\]\) @@ -339,11 +340,11 @@ public override double GetSphereBodyRadius(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SetVariablesFromArray2Local\(double\[\]\) @@ -353,7 +354,7 @@ protected override void SetVariablesFromArray2Local(double[] dSInfo) #### Parameters -`dSInfo` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dSInfo` double\[\] ### TranslateNastran2DAFUL\(double\[\]\) @@ -363,9 +364,9 @@ public override double[] TranslateNastran2DAFUL(double[] dNastran) #### Parameters -`dNastran` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`dNastran` double\[\] #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.md index 01094d4cb5..75dfff7d99 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Beam.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Beam +# Namespace VM.Managed.DAFUL.Beam + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.EHDBearing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.EHDBearing.md index 8dd7b91694..3b42546250 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.EHDBearing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.EHDBearing.md @@ -1,4 +1,5 @@ -# Class EHDBearing +# Class EHDBearing + Namespace: [VM.Managed.DAFUL.Bearing](VM.Managed.DAFUL.Bearing.md) Assembly: VMDEHDBearing.dll @@ -11,14 +12,14 @@ public class EHDBearing : Entity, IObservableObject, IDispos #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [EHDBearing](VM.Managed.DAFUL.Bearing.EHDBearing.md) #### Implements @@ -28,7 +29,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -60,34 +61,34 @@ IHasReplaceableEntity #### Inherited Members -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -186,7 +187,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -225,7 +226,7 @@ public EHDBearing(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -265,7 +266,7 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Hide @@ -277,7 +278,7 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -291,7 +292,7 @@ public virtual void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -305,7 +306,7 @@ public void GetCylinderMesh(ref int[] arnConnectivity, ref Vector[] ardBaseNodeP #### Parameters -`arnConnectivity` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`arnConnectivity` int\[\] The connectivity as result @@ -327,11 +328,11 @@ public static void GetCylinderMeshForPreview(int nCircumferential, int nAxial, V #### Parameters -`nCircumferential` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nCircumferential` int The mesh number through circumferential -`nAxial` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nAxial` int The mesh number through axial @@ -351,15 +352,15 @@ The action position The action orientation -`dBaseRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBaseRadius` double The base radius -`dActionRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dActionRadius` double The action radius -`dWidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dWidth` double The width @@ -381,21 +382,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.BearingAnalytic-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.BearingAnalytic-1.md index bb17a9a90d..76bdd19a65 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.BearingAnalytic-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.BearingAnalytic-1.md @@ -1,4 +1,5 @@ -# Class BearingAnalytic +# Class BearingAnalytic + Namespace: [VM.Managed.DAFUL.Bearing.Force](VM.Managed.DAFUL.Bearing.Force.md) Assembly: VMDBearing.dll @@ -17,16 +18,16 @@ The type of the property. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← -Force ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← +[Force](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [BearingBase](VM.Managed.DAFUL.Bearing.Force.BearingBase\-1.md) ← [BearingAnalytic](VM.Managed.DAFUL.Bearing.Force.BearingAnalytic\-1.md) @@ -37,7 +38,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -78,69 +79,69 @@ ITorqueReferenceForBearing [BearingBase.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.Bearing.Force.BearingBase\-1.md\#VM\_Managed\_DAFUL\_Bearing\_Force\_BearingBase\_1\_Initialize\_VM\_Unit\_ConvertFactor\_), [BearingBase.UseForSimulationScenario](VM.Managed.DAFUL.Bearing.Force.BearingBase\-1.md\#VM\_Managed\_DAFUL\_Bearing\_Force\_BearingBase\_1\_UseForSimulationScenario), -Force.Initialize\(Unit.ConvertFactor\), -Force.WriteMarker\(XmlWriter, Marker, string\), -Force.ReadMarker\(XmlReader, Marker, string\), -Force.UseForSimulationScenario, -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Force.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.WriteMarker\(XmlWriter, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.ReadMarker\(XmlReader, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.UseForSimulationScenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -239,7 +240,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -278,7 +279,7 @@ public BearingAnalytic(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the force. @@ -292,7 +293,7 @@ protected override bool CanWriteToOutFileImpl { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReportTypeImpl diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.BearingBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.BearingBase-1.md index 973b1f91e0..d129338bbf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.BearingBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.BearingBase-1.md @@ -1,4 +1,5 @@ -# Class BearingBase +# Class BearingBase + Namespace: [VM.Managed.DAFUL.Bearing.Force](VM.Managed.DAFUL.Bearing.Force.md) Assembly: VMDBearing.dll @@ -18,16 +19,16 @@ The type of the property. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← -Force ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← +[Force](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [BearingBase](VM.Managed.DAFUL.Bearing.Force.BearingBase\-1.md) #### Implements @@ -37,7 +38,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -76,69 +77,69 @@ ITorqueReferenceForBearing #### Inherited Members -Force.Initialize\(Unit.ConvertFactor\), -Force.WriteMarker\(XmlWriter, Marker, string\), -Force.ReadMarker\(XmlReader, Marker, string\), -Force.UseForSimulationScenario, -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Force.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.WriteMarker\(XmlWriter, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.ReadMarker\(XmlReader, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.UseForSimulationScenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -237,7 +238,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -276,7 +277,7 @@ public BearingBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the force. @@ -292,7 +293,7 @@ protected override bool UseForSimulationScenario { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.BearingGeneral.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.BearingGeneral.md index d60d80d4ad..de330c0115 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.BearingGeneral.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.BearingGeneral.md @@ -1,4 +1,5 @@ -# Class BearingGeneral +# Class BearingGeneral + Namespace: [VM.Managed.DAFUL.Bearing.Force](VM.Managed.DAFUL.Bearing.Force.md) Assembly: VMDBearing.dll @@ -11,16 +12,16 @@ public class BearingGeneral : BearingBase, IObservableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← -Force ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← +[Force](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [BearingBase](VM.Managed.DAFUL.Bearing.Force.BearingBase\-1.md) ← [BearingGeneral](VM.Managed.DAFUL.Bearing.Force.BearingGeneral.md) @@ -31,7 +32,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -72,69 +73,69 @@ ITorqueReferenceForBearing [BearingBase.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.Bearing.Force.BearingBase\-1.md\#VM\_Managed\_DAFUL\_Bearing\_Force\_BearingBase\_1\_Initialize\_VM\_Unit\_ConvertFactor\_), [BearingBase.UseForSimulationScenario](VM.Managed.DAFUL.Bearing.Force.BearingBase\-1.md\#VM\_Managed\_DAFUL\_Bearing\_Force\_BearingBase\_1\_UseForSimulationScenario), -Force.Initialize\(Unit.ConvertFactor\), -Force.WriteMarker\(XmlWriter, Marker, string\), -Force.ReadMarker\(XmlReader, Marker, string\), -Force.UseForSimulationScenario, -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Force.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.WriteMarker\(XmlWriter, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.ReadMarker\(XmlReader, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.UseForSimulationScenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -233,7 +234,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -272,7 +273,7 @@ public BearingGeneral(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the force. @@ -286,7 +287,7 @@ protected override bool CanWriteToOutFileImpl { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReportTypeImpl diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.BearingJournal.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.BearingJournal.md index 78ba2ed3e3..7338ebc048 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.BearingJournal.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.BearingJournal.md @@ -1,4 +1,5 @@ -# Class BearingJournal +# Class BearingJournal + Namespace: [VM.Managed.DAFUL.Bearing.Force](VM.Managed.DAFUL.Bearing.Force.md) Assembly: VMDBearing.dll @@ -11,16 +12,16 @@ public class BearingJournal : BearingAnalytic, IObservab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← -Force ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← +[Force](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [BearingBase](VM.Managed.DAFUL.Bearing.Force.BearingBase\-1.md) ← [BearingAnalytic](VM.Managed.DAFUL.Bearing.Force.BearingAnalytic\-1.md) ← [BearingJournal](VM.Managed.DAFUL.Bearing.Force.BearingJournal.md) @@ -32,7 +33,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -76,69 +77,69 @@ ITorqueReferenceForBearing [BearingAnalytic.ReportTypeImpl](VM.Managed.DAFUL.Bearing.Force.BearingAnalytic\-1.md\#VM\_Managed\_DAFUL\_Bearing\_Force\_BearingAnalytic\_1\_ReportTypeImpl), [BearingBase.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.Bearing.Force.BearingBase\-1.md\#VM\_Managed\_DAFUL\_Bearing\_Force\_BearingBase\_1\_Initialize\_VM\_Unit\_ConvertFactor\_), [BearingBase.UseForSimulationScenario](VM.Managed.DAFUL.Bearing.Force.BearingBase\-1.md\#VM\_Managed\_DAFUL\_Bearing\_Force\_BearingBase\_1\_UseForSimulationScenario), -Force.Initialize\(Unit.ConvertFactor\), -Force.WriteMarker\(XmlWriter, Marker, string\), -Force.ReadMarker\(XmlReader, Marker, string\), -Force.UseForSimulationScenario, -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Force.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.WriteMarker\(XmlWriter, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.ReadMarker\(XmlReader, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.UseForSimulationScenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -237,7 +238,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -276,7 +277,7 @@ public BearingJournal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the force. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.BearingStiffness.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.BearingStiffness.md index 816b1c2e1b..412f734c4a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.BearingStiffness.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.BearingStiffness.md @@ -1,4 +1,5 @@ -# Class BearingStiffness +# Class BearingStiffness + Namespace: [VM.Managed.DAFUL.Bearing.Force](VM.Managed.DAFUL.Bearing.Force.md) Assembly: VMDBearing.dll @@ -11,9 +12,9 @@ public class BearingStiffness : LinkContainer, IObservableObject, IDisposableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [BearingStiffness](VM.Managed.DAFUL.Bearing.Force.BearingStiffness.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -114,103 +115,103 @@ public BearingStiffness(double dDXFX, double dDYFX, double dDZFX, double dRXFX, #### Parameters -`dDXFX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDXFX` double The stiffness value of dx-fx. -`dDYFX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDYFX` double The stiffness value of dy-fx. -`dDZFX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDZFX` double The stiffness value of dz-fx. -`dRXFX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRXFX` double The stiffness value of rx-fx. -`dRYFX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRYFX` double The stiffness value of ry-fx. -`dDXFY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDXFY` double The stiffness value of dx-fy. -`dDYFY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDYFY` double The stiffness value of dy-fy. -`dDZFY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDZFY` double The stiffness value of dz-fy. -`dRXFY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRXFY` double The stiffness value of rx-fy. -`dRYFY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRYFY` double The stiffness value of ry-fy. -`dDXFZ` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDXFZ` double The stiffness value of dx-fz. -`dDYFZ` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDYFZ` double The stiffness value of dy-fz. -`dDZFZ` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDZFZ` double The stiffness value of dz-fz. -`dRXFZ` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRXFZ` double The stiffness value of rx-fz. -`dRYFZ` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRYFZ` double The stiffness value of ry-fz. -`dDXMX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDXMX` double The stiffness value of dx-mx. -`dDYMX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDYMX` double The stiffness value of dy-mx. -`dDZMX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDZMX` double The stiffness value of dz-mx. -`dRXMX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRXMX` double The stiffness value of rx-mx. -`dRYMX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRYMX` double The stiffness value of ry-mx. -`dDXMY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDXMY` double The stiffness value of dx-my. -`dDYMY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDYMY` double The stiffness value of dy-my. -`dDZMY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDZMY` double The stiffness value of dz-my. -`dRXMY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRXMY` double The stiffness value of rx-my. -`dRYMY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRYMY` double The stiffness value of ry-my. @@ -336,7 +337,7 @@ public ExpressionValueVariable DXFX { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DXFY @@ -348,7 +349,7 @@ public ExpressionValueVariable DXFY { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DXFZ @@ -360,7 +361,7 @@ public ExpressionValueVariable DXFZ { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DXMX @@ -372,7 +373,7 @@ public ExpressionValueVariable DXMX { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DXMY @@ -384,7 +385,7 @@ public ExpressionValueVariable DXMY { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DYFX @@ -396,7 +397,7 @@ public ExpressionValueVariable DYFX { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DYFY @@ -408,7 +409,7 @@ public ExpressionValueVariable DYFY { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DYFZ @@ -420,7 +421,7 @@ public ExpressionValueVariable DYFZ { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DYMX @@ -432,7 +433,7 @@ public ExpressionValueVariable DYMX { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DYMY @@ -444,7 +445,7 @@ public ExpressionValueVariable DYMY { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DZFX @@ -456,7 +457,7 @@ public ExpressionValueVariable DZFX { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DZFY @@ -468,7 +469,7 @@ public ExpressionValueVariable DZFY { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DZFZ @@ -480,7 +481,7 @@ public ExpressionValueVariable DZFZ { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DZMX @@ -492,7 +493,7 @@ public ExpressionValueVariable DZMX { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DZMY @@ -504,7 +505,7 @@ public ExpressionValueVariable DZMY { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RXFX @@ -516,7 +517,7 @@ public ExpressionValueVariable RXFX { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RXFY @@ -528,7 +529,7 @@ public ExpressionValueVariable RXFY { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RXFZ @@ -540,7 +541,7 @@ public ExpressionValueVariable RXFZ { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RXMX @@ -552,7 +553,7 @@ public ExpressionValueVariable RXMX { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RXMY @@ -564,7 +565,7 @@ public ExpressionValueVariable RXMY { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RYFX @@ -576,7 +577,7 @@ public ExpressionValueVariable RYFX { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RYFY @@ -588,7 +589,7 @@ public ExpressionValueVariable RYFY { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RYFZ @@ -600,7 +601,7 @@ public ExpressionValueVariable RYFZ { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RYMX @@ -612,7 +613,7 @@ public ExpressionValueVariable RYMX { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RYMY @@ -624,7 +625,7 @@ public ExpressionValueVariable RYMY { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Torque @@ -636,7 +637,7 @@ public ExpressionValueVariable Torque { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.PropertyBearingAnalytic.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.PropertyBearingAnalytic.md index ce67936774..29a42478fc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.PropertyBearingAnalytic.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.PropertyBearingAnalytic.md @@ -1,4 +1,5 @@ -# Class PropertyBearingAnalytic +# Class PropertyBearingAnalytic + Namespace: [VM.Managed.DAFUL.Bearing.Force](VM.Managed.DAFUL.Bearing.Force.md) Assembly: VMDBearing.dll @@ -11,14 +12,14 @@ public class PropertyBearingAnalytic : PropertyBearingBase, IObservableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyForce ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyForce](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [PropertyBearingBase](VM.Managed.DAFUL.Bearing.Force.PropertyBearingBase.md) ← [PropertyBearingAnalytic](VM.Managed.DAFUL.Bearing.Force.PropertyBearingAnalytic.md) @@ -37,7 +38,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -48,14 +49,14 @@ IArgument #### Inherited Members [PropertyBearingBase.ArgumentType](VM.Managed.DAFUL.Bearing.Force.PropertyBearingBase.md\#VM\_Managed\_DAFUL\_Bearing\_Force\_PropertyBearingBase\_ArgumentType), -PropertyForce.ArgumentType, -PropertyForce.ReferenceType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyForce.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[PropertyForce.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -154,7 +155,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -195,7 +196,7 @@ public ExpressionValueVariable DampingRatio { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### FrictionCoefficient @@ -207,7 +208,7 @@ public ExpressionValueVariable FrictionCoefficient { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### GapInAxialDirection @@ -219,7 +220,7 @@ public ExpressionValueVariable GapInAxialDirection { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### IsAxial @@ -231,7 +232,7 @@ public bool IsAxial { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsRadial @@ -243,7 +244,7 @@ public bool IsRadial { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Viscosity @@ -255,7 +256,7 @@ public ExpressionValueVariable Viscosity { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### YoungsModulus @@ -267,7 +268,7 @@ public ExpressionValueVariable YoungsModulus { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.PropertyBearingBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.PropertyBearingBase.md index 0748a6db7b..1cd6c3426d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.PropertyBearingBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.PropertyBearingBase.md @@ -1,4 +1,5 @@ -# Class PropertyBearingBase +# Class PropertyBearingBase + Namespace: [VM.Managed.DAFUL.Bearing.Force](VM.Managed.DAFUL.Bearing.Force.md) Assembly: VMDBearing.dll @@ -11,14 +12,14 @@ public abstract class PropertyBearingBase : PropertyForce, IObservableObject, ID #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyForce ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyForce](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [PropertyBearingBase](VM.Managed.DAFUL.Bearing.Force.PropertyBearingBase.md) #### Derived @@ -37,7 +38,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -47,14 +48,14 @@ IArgument #### Inherited Members -PropertyForce.ArgumentType, -PropertyForce.ReferenceType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyForce.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[PropertyForce.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -153,7 +154,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.PropertyBearingGeneral.FormulationType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.PropertyBearingGeneral.FormulationType.md index ac38f220ac..025d972954 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.PropertyBearingGeneral.FormulationType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.PropertyBearingGeneral.FormulationType.md @@ -1,4 +1,5 @@ -# Enum PropertyBearingGeneral.FormulationType +# Enum PropertyBearingGeneral.FormulationType + Namespace: [VM.Managed.DAFUL.Bearing.Force](VM.Managed.DAFUL.Bearing.Force.md) Assembly: VMDBearing.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.PropertyBearingGeneral.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.PropertyBearingGeneral.md index 9b42cd1cdb..41c38455ac 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.PropertyBearingGeneral.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.PropertyBearingGeneral.md @@ -1,4 +1,5 @@ -# Class PropertyBearingGeneral +# Class PropertyBearingGeneral + Namespace: [VM.Managed.DAFUL.Bearing.Force](VM.Managed.DAFUL.Bearing.Force.md) Assembly: VMDBearing.dll @@ -11,14 +12,14 @@ public class PropertyBearingGeneral : PropertyBearingBase, IObservableObject, ID #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyForce ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyForce](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [PropertyBearingBase](VM.Managed.DAFUL.Bearing.Force.PropertyBearingBase.md) ← [PropertyBearingGeneral](VM.Managed.DAFUL.Bearing.Force.PropertyBearingGeneral.md) @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -44,14 +45,14 @@ IArgument #### Inherited Members [PropertyBearingBase.ArgumentType](VM.Managed.DAFUL.Bearing.Force.PropertyBearingBase.md\#VM\_Managed\_DAFUL\_Bearing\_Force\_PropertyBearingBase\_ArgumentType), -PropertyForce.ArgumentType, -PropertyForce.ReferenceType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyForce.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[PropertyForce.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -150,7 +151,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -203,7 +204,7 @@ public ExpressionValueVariable DampingRatio { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### FormulType @@ -228,7 +229,7 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TorqueReference @@ -280,7 +281,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.PropertyBearingJournal.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.PropertyBearingJournal.md index bc9df60fe9..aeeaf99718 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.PropertyBearingJournal.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.PropertyBearingJournal.md @@ -1,4 +1,5 @@ -# Class PropertyBearingJournal +# Class PropertyBearingJournal + Namespace: [VM.Managed.DAFUL.Bearing.Force](VM.Managed.DAFUL.Bearing.Force.md) Assembly: VMDBearing.dll @@ -11,14 +12,14 @@ public class PropertyBearingJournal : PropertyBearingAnalytic, IObservableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyForce ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyForce](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [PropertyBearingBase](VM.Managed.DAFUL.Bearing.Force.PropertyBearingBase.md) ← [PropertyBearingAnalytic](VM.Managed.DAFUL.Bearing.Force.PropertyBearingAnalytic.md) ← [PropertyBearingJournal](VM.Managed.DAFUL.Bearing.Force.PropertyBearingJournal.md) @@ -34,7 +35,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -53,14 +54,14 @@ IArgument [PropertyBearingAnalytic.FrictionCoefficient](VM.Managed.DAFUL.Bearing.Force.PropertyBearingAnalytic.md\#VM\_Managed\_DAFUL\_Bearing\_Force\_PropertyBearingAnalytic\_FrictionCoefficient), [PropertyBearingAnalytic.GapInAxialDirection](VM.Managed.DAFUL.Bearing.Force.PropertyBearingAnalytic.md\#VM\_Managed\_DAFUL\_Bearing\_Force\_PropertyBearingAnalytic\_GapInAxialDirection), [PropertyBearingBase.ArgumentType](VM.Managed.DAFUL.Bearing.Force.PropertyBearingBase.md\#VM\_Managed\_DAFUL\_Bearing\_Force\_PropertyBearingBase\_ArgumentType), -PropertyForce.ArgumentType, -PropertyForce.ReferenceType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyForce.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[PropertyForce.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -159,7 +160,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -200,7 +201,7 @@ public ExpressionValueVariable BearingRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### BearingWidth @@ -212,7 +213,7 @@ public ExpressionValueVariable BearingWidth { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ReferenceType @@ -224,7 +225,7 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ShaftRadius @@ -236,7 +237,7 @@ public ExpressionValueVariable ShaftRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TorqueWeigth @@ -248,7 +249,7 @@ public ExpressionValueVariable TorqueWeigth { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.md index 0303e5a8c6..0ad61216c3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.Force.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Bearing.Force +# Namespace VM.Managed.DAFUL.Bearing.Force + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.PropertyEHDBearing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.PropertyEHDBearing.md index 6574f88212..d741794587 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.PropertyEHDBearing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.PropertyEHDBearing.md @@ -1,4 +1,5 @@ -# Class PropertyEHDBearing +# Class PropertyEHDBearing + Namespace: [VM.Managed.DAFUL.Bearing](VM.Managed.DAFUL.Bearing.md) Assembly: VMDEHDBearing.dll @@ -11,13 +12,13 @@ public class PropertyEHDBearing : Property, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyEHDBearing](VM.Managed.DAFUL.Bearing.PropertyEHDBearing.md) #### Implements @@ -31,7 +32,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -40,12 +41,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -144,7 +145,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -185,11 +186,11 @@ public ExpressionValueVariable BearingRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Bearing radius is null. @@ -215,11 +216,11 @@ public ExpressionValueVariable Compliance { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Compliance is null. @@ -233,11 +234,11 @@ public ExpressionValueVariable DynamicViscosity { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Dynamic viscosity is null. @@ -251,11 +252,11 @@ public ExpressionValueVariable ElasticFactor { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Elastic factor is null. @@ -269,11 +270,11 @@ public ExpressionValueVariable ElasticModulus { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Elastic modulus is null. @@ -287,11 +288,11 @@ public ExpressionValueVariable JournalRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Journal radius is null. @@ -317,11 +318,11 @@ public ExpressionValueVariable NumberOfAxialNode { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Number of axial node is null. @@ -335,11 +336,11 @@ public ExpressionValueVariable NumberOfCircumferentialNode { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Number of circumferential node is null. @@ -353,11 +354,11 @@ public ExpressionValueVariable SurfaceRoughness { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Surface roughness is null. @@ -371,7 +372,7 @@ public bool UseAsperityContact { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseCompliance @@ -383,7 +384,7 @@ public bool UseCompliance { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Width @@ -395,11 +396,11 @@ public ExpressionValueVariable Width { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception width is null. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.ReferenceEHDBearing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.ReferenceEHDBearing.md index c0783f730d..da22d481ef 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.ReferenceEHDBearing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.ReferenceEHDBearing.md @@ -1,4 +1,5 @@ -# Class ReferenceEHDBearing +# Class ReferenceEHDBearing + Namespace: [VM.Managed.DAFUL.Bearing](VM.Managed.DAFUL.Bearing.md) Assembly: VMDEHDBearing.dll @@ -11,9 +12,9 @@ public class ReferenceEHDBearing : Reference, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Reference ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, INamed, @@ -162,7 +163,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -193,11 +194,11 @@ protected ReferenceEHDBearing(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.md index 3ada565dd8..c477e4cc67 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Bearing.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Bearing +# Namespace VM.Managed.DAFUL.Bearing + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BodyAnalysisSetting.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BodyAnalysisSetting.md index aa7246d91d..499b92555d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BodyAnalysisSetting.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BodyAnalysisSetting.md @@ -1,4 +1,5 @@ -# Class BodyAnalysisSetting +# Class BodyAnalysisSetting + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class BodyAnalysisSetting : ToolkitMultiSelectionSettingBase](VM.Managed.DAFUL.ToolkitMultiSelectionSettingBase\-1.md) ← @@ -91,7 +92,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -132,7 +133,7 @@ public string[] BodyAnalysisArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### IsNullBodyAnalysisType @@ -144,7 +145,7 @@ public bool IsNullBodyAnalysisType { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -176,7 +177,7 @@ public bool CheckData() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Clear\(\) @@ -202,7 +203,7 @@ The Body object to find. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool Whether it contains the Body object. @@ -216,13 +217,13 @@ public bool ContainsKey(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr The key of the Body object to find. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool Whether it contains the Body object. @@ -262,7 +263,7 @@ The Body object to remove. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool Whether it is success to remove the Body object. @@ -282,7 +283,7 @@ Analysis type to set #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool Whether it's success. @@ -306,7 +307,7 @@ The BodyAnalysisType of the Body object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool Whether it is success to set the BodyAnalysisType. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BodyAnalysisType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BodyAnalysisType.md index 531adf9d23..f8c41f338f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BodyAnalysisType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BodyAnalysisType.md @@ -1,4 +1,5 @@ -# Enum BodyAnalysisType +# Enum BodyAnalysisType + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BodyBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BodyBase-1.md index 1b9ec985a3..4162470c53 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BodyBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BodyBase-1.md @@ -1,4 +1,5 @@ -# Class BodyBase +# Class BodyBase + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -17,14 +18,14 @@ The type of the property. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [BodyBase](VM.Managed.DAFUL.BodyBase\-1.md) #### Implements @@ -34,7 +35,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -71,34 +72,34 @@ IBody #### Inherited Members -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -197,7 +198,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -236,7 +237,7 @@ public BodyBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the body base. @@ -276,7 +277,7 @@ public string ConnectableFullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ConnectableName @@ -288,7 +289,7 @@ public string ConnectableName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ConnectablePosition @@ -312,7 +313,7 @@ public string ConnectablePostfixName { set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Geometry @@ -324,7 +325,7 @@ public virtual List Geometry { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### HasLayerExplicitly @@ -336,7 +337,7 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsVisible @@ -348,7 +349,7 @@ public override bool IsVisible { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Layer @@ -396,7 +397,7 @@ protected virtual bool ReferencableImpl { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReferenceFrameType @@ -428,7 +429,7 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -442,7 +443,7 @@ public override void GetArgumentList(LinkedList lstObj) #### Parameters -`lstObj` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) +`lstObj` LinkedList The argument object list. @@ -456,11 +457,11 @@ protected bool GetGeneralMarkerInfo(XmlDocument xmlDom, XmlElement xmlEle, Marke #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for marker. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for marker. @@ -470,7 +471,7 @@ The marker. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -484,11 +485,11 @@ protected virtual bool GetGeomModelNavigatorInfo(XmlDocument xmlDom, XmlElement #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for geometry. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for geometry. @@ -502,7 +503,7 @@ The geometry. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -530,7 +531,7 @@ public override List GetTargetListForUpdate() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### Initialize\(ConvertFactor\) @@ -556,7 +557,7 @@ protected virtual void MakeReferenceImpl(LinkedList lstRef) #### Parameters -`lstRef` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) +`lstRef` LinkedList The container. @@ -570,7 +571,7 @@ protected override void OnUpdatePropertyImpl(Property prop, LinkEventArgs arg) #### Parameters -`prop` Property +`prop` [Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) The property. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BodyInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BodyInfo.md index 9f56195fb7..fbfb9b2340 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BodyInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BodyInfo.md @@ -1,4 +1,5 @@ -# Class BodyInfo +# Class BodyInfo + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDBallPlacing.dll @@ -11,7 +12,7 @@ public class BodyInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BodyInfo](VM.Managed.DAFUL.BodyInfo.md) #### Extension Methods @@ -40,7 +41,7 @@ public string Key { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TargetFaces @@ -52,5 +53,5 @@ public List TargetFaces { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[KeyInfo](VM.Managed.DAFUL.KeyInfo.md)\> + List<[KeyInfo](VM.Managed.DAFUL.KeyInfo.md)\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BodyProperty.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BodyProperty.md index 175141ed2d..a65ef82177 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BodyProperty.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BodyProperty.md @@ -1,4 +1,5 @@ -# Class BodyProperty +# Class BodyProperty + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,13 +12,13 @@ public class BodyProperty : BodyPropertyBase, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [BodyPropertyBase](VM.Managed.DAFUL.BodyPropertyBase.md) ← [BodyProperty](VM.Managed.DAFUL.BodyProperty.md) @@ -38,7 +39,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -60,12 +61,12 @@ ICheckLinkForCircularReferenceBeforeDeserialize [BodyPropertyBase.MassValue](VM.Managed.DAFUL.BodyPropertyBase.md\#VM\_Managed\_DAFUL\_BodyPropertyBase\_MassValue), [BodyPropertyBase.MomentOfInertiaValue](VM.Managed.DAFUL.BodyPropertyBase.md\#VM\_Managed\_DAFUL\_BodyPropertyBase\_MomentOfInertiaValue), [BodyPropertyBase.IsExternable](VM.Managed.DAFUL.BodyPropertyBase.md\#VM\_Managed\_DAFUL\_BodyPropertyBase\_IsExternable), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -164,7 +165,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -205,7 +206,7 @@ public ExpressionValueVariable Mass { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MassValue @@ -217,7 +218,7 @@ public override double MassValue { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MomentOfInertia @@ -241,7 +242,7 @@ public override double[] MomentOfInertiaValue { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ## Methods @@ -283,7 +284,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BodyPropertyBase.InitialVelocity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BodyPropertyBase.InitialVelocity.md index 0509ff53e3..43404dda38 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BodyPropertyBase.InitialVelocity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BodyPropertyBase.InitialVelocity.md @@ -1,4 +1,5 @@ -# Class BodyPropertyBase.InitialVelocity +# Class BodyPropertyBase.InitialVelocity + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class BodyPropertyBase.InitialVelocity : LinkContainer, IObservableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [BodyPropertyBase.InitialVelocity](VM.Managed.DAFUL.BodyPropertyBase.InitialVelocity.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -130,7 +131,7 @@ public bool IsUseRotRM { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsUseRotVelocity @@ -142,7 +143,7 @@ public bool IsUseRotVelocity { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsUseTraRM @@ -154,7 +155,7 @@ public bool IsUseTraRM { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsUseTraVelocity @@ -166,7 +167,7 @@ public bool IsUseTraVelocity { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RotReferenceMarker @@ -191,7 +192,7 @@ public ExpressionValueVariable RotX { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RotY @@ -203,7 +204,7 @@ public ExpressionValueVariable RotY { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RotZ @@ -215,7 +216,7 @@ public ExpressionValueVariable RotZ { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RotationnalReferenceMarker @@ -252,7 +253,7 @@ public ExpressionValueVariable TraX { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TraY @@ -264,7 +265,7 @@ public ExpressionValueVariable TraY { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TraZ @@ -276,7 +277,7 @@ public ExpressionValueVariable TraZ { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TranslationalReferenceMarker @@ -326,7 +327,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BodyPropertyBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BodyPropertyBase.md index e1ad87a287..76832c6f19 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BodyPropertyBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BodyPropertyBase.md @@ -1,4 +1,5 @@ -# Class BodyPropertyBase +# Class BodyPropertyBase + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,13 +12,13 @@ public abstract class BodyPropertyBase : Property, IObservableObject, IDisposabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [BodyPropertyBase](VM.Managed.DAFUL.BodyPropertyBase.md) #### Derived @@ -35,7 +36,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -44,12 +45,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -213,7 +214,7 @@ public override bool IsExternable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Markers @@ -225,7 +226,7 @@ public NamedObjectDictionary Markers { get; set; } #### Property Value - NamedObjectDictionary<[Marker](VM.Managed.DAFUL.Marker.md)\> + [NamedObjectDictionary](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/NamedObjectDictionary.cs)<[Marker](VM.Managed.DAFUL.Marker.md)\> ### MassValue @@ -237,7 +238,7 @@ public abstract double MassValue { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MomentOfInertiaValue @@ -249,7 +250,7 @@ public abstract double[] MomentOfInertiaValue { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### SymmetricManagers @@ -261,7 +262,7 @@ public NamedObjectDictionary SymmetricManagers { get; set; } #### Property Value - NamedObjectDictionary + [NamedObjectDictionary](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/NamedObjectDictionary.cs)<[SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SymmetricManager.cs)\> ## Methods @@ -289,7 +290,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -323,7 +324,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -341,7 +342,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.AssembledBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.AssembledBody.md index 9a9a76afb4..a6ab735823 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.AssembledBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.AssembledBody.md @@ -1,4 +1,5 @@ -# Class AssembledBody +# Class AssembledBody + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class AssembledBody : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [BuilderSymmetric](VM.Managed.DAFUL.Builder.BuilderSymmetric\-1.md) ← [BuilderNamed](VM.Managed.DAFUL.Builder.BuilderNamed\-1.md) ← @@ -69,7 +70,7 @@ public string PropertyFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -87,5 +88,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BallPlacingBuilder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BallPlacingBuilder.md index a73761e5f9..30898c85fc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BallPlacingBuilder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BallPlacingBuilder.md @@ -1,4 +1,5 @@ -# Class BallPlacingBuilder +# Class BallPlacingBuilder + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBldBallPlacing.dll @@ -9,10 +10,10 @@ public class BallPlacingBuilder : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [BallPlacingBuilder](VM.Managed.DAFUL.Builder.BallPlacingBuilder.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -79,7 +80,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### NumberOfBall @@ -99,7 +100,7 @@ public string Path { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### PathType @@ -109,7 +110,7 @@ public string PathType { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -127,7 +128,7 @@ protected override bool OnPostBuild(ObjectBase created, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -137,9 +138,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BallPlacingContactBuilder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BallPlacingContactBuilder.md index 28fa98e81f..e3e505c0c0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BallPlacingContactBuilder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BallPlacingContactBuilder.md @@ -1,4 +1,5 @@ -# Class BallPlacingContactBuilder +# Class BallPlacingContactBuilder + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBldBallPlacing.dll @@ -9,10 +10,10 @@ public class BallPlacingContactBuilder : BuilderNamed, IBuil #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [BallPlacingContactBuilder](VM.Managed.DAFUL.Builder.BallPlacingContactBuilder.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -69,7 +70,7 @@ public BallPlacing BallPlacing { get; } #### Property Value - BallPlacing + [BallPlacing](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDBallPlacing/BallPlacing.cs) ### BaseList @@ -79,7 +80,7 @@ public string[] BaseList { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -97,5 +98,5 @@ protected override bool OnPostBuild(ObjectBase created, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BallScrewBuilder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BallScrewBuilder.md index 6845a08853..c3d15f85c8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BallScrewBuilder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BallScrewBuilder.md @@ -1,4 +1,5 @@ -# Class BallScrewBuilder +# Class BallScrewBuilder + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBldBallPlacing.dll @@ -9,10 +10,10 @@ public class BallScrewBuilder : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [BallScrewBuilder](VM.Managed.DAFUL.Builder.BallScrewBuilder.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -99,7 +100,7 @@ public string HandOfScrew { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Lead @@ -247,7 +248,7 @@ protected override bool OnPostBuild(ObjectBase created, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -257,9 +258,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Beam.BeamInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Beam.BeamInfo.md index ae8dd32491..e187dc2a83 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Beam.BeamInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Beam.BeamInfo.md @@ -1,4 +1,5 @@ -# Class BeamInfo +# Class BeamInfo + Namespace: [VM.Managed.DAFUL.Builder.Beam](VM.Managed.DAFUL.Builder.Beam.md) Assembly: VMBldBeamGroup.dll @@ -9,7 +10,7 @@ public class BeamInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BeamInfo](VM.Managed.DAFUL.Builder.Beam.BeamInfo.md) #### Extension Methods @@ -36,7 +37,7 @@ public string Color #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### MaterialProperty @@ -46,7 +47,7 @@ public string MaterialProperty #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NoOfElements @@ -56,7 +57,7 @@ public int NoOfElements #### Field Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Properties @@ -68,7 +69,7 @@ public CrossSectionType CrossSection { get; set; } #### Property Value - CrossSectionType + [CrossSectionType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.FE.BeamCrossSection/BeamCrossSection.cs) ### CrossSectionValueInfo @@ -78,7 +79,7 @@ public string[] CrossSectionValueInfo { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### Direction @@ -88,7 +89,7 @@ public string Direction { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Point @@ -98,5 +99,5 @@ public string Point { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Beam.BeamSectionInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Beam.BeamSectionInfo.md index 14cabcca13..37e31002ca 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Beam.BeamSectionInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Beam.BeamSectionInfo.md @@ -1,4 +1,5 @@ -# Class BeamSectionInfo +# Class BeamSectionInfo + Namespace: [VM.Managed.DAFUL.Builder.Beam](VM.Managed.DAFUL.Builder.Beam.md) Assembly: VMBldBeamGroup.dll @@ -9,7 +10,7 @@ public class BeamSectionInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BeamSectionInfo](VM.Managed.DAFUL.Builder.Beam.BeamSectionInfo.md) #### Extension Methods @@ -36,7 +37,7 @@ public CrossSectionType CrossSection { get; set; } #### Property Value - CrossSectionType + [CrossSectionType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.FE.BeamCrossSection/BeamCrossSection.cs) ### CrossSectionValueInfo @@ -46,5 +47,5 @@ public string[] CrossSectionValueInfo { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupFile.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupFile.md index d9241d11f0..2dd929a79f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupFile.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupFile.md @@ -1,4 +1,5 @@ -# Class BuilderBeamGroupFile +# Class BuilderBeamGroupFile + Namespace: [VM.Managed.DAFUL.Builder.Beam](VM.Managed.DAFUL.Builder.Beam.md) Assembly: VMBldBeamGroup.dll @@ -9,10 +10,10 @@ public class BuilderBeamGroupFile : BuilderBeamGroupMultiplePoints, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [BuilderBeamGroupMultiplePointsBase](VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupMultiplePointsBase\-1.md) ← [BuilderBeamGroupMultiplePoints](VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupMultiplePoints.md) ← [BuilderBeamGroupFile](VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupFile.md) @@ -37,29 +38,29 @@ IBuilder [BuilderBeamGroupMultiplePointsBase.UseCustomize](VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupMultiplePointsBase\-1.md\#VM\_Managed\_DAFUL\_Builder\_Beam\_BuilderBeamGroupMultiplePointsBase\_1\_UseCustomize), [BuilderBeamGroupMultiplePointsBase.ResultBeamGroup](VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupMultiplePointsBase\-1.md\#VM\_Managed\_DAFUL\_Builder\_Beam\_BuilderBeamGroupMultiplePointsBase\_1\_ResultBeamGroup), [BuilderBeamGroupMultiplePointsBase.ResultSolidBodies](VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupMultiplePointsBase\-1.md\#VM\_Managed\_DAFUL\_Builder\_Beam\_BuilderBeamGroupMultiplePointsBase\_1\_ResultSolidBodies), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -85,7 +86,7 @@ protected override bool AddToDoc { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PropertyFilePath @@ -95,7 +96,7 @@ public string PropertyFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -107,5 +108,5 @@ protected override bool SetInputResultData() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupInfo.md index 6e3d418337..4e9eaccfbd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupInfo.md @@ -1,4 +1,5 @@ -# Class BuilderBeamGroupInfo +# Class BuilderBeamGroupInfo + Namespace: [VM.Managed.DAFUL.Builder.Beam](VM.Managed.DAFUL.Builder.Beam.md) Assembly: VMBldBeamGroup.dll @@ -9,7 +10,7 @@ public class BuilderBeamGroupInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBeamGroupInfo](VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupInfo.md) #### Extension Methods @@ -36,7 +37,7 @@ public Color Color { get; set; } #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### CrossSectionType @@ -46,7 +47,7 @@ public CrossSectionType CrossSectionType { get; set; } #### Property Value - CrossSectionType + [CrossSectionType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.FE.BeamCrossSection/BeamCrossSection.cs) ### CrossSectionValueInfo @@ -56,7 +57,7 @@ public string[] CrossSectionValueInfo { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### EndPosition @@ -76,7 +77,7 @@ public string Material { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NoOfElements @@ -86,7 +87,7 @@ public int NoOfElements { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### StartPosition diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupMultiplePoints.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupMultiplePoints.md index 3dfbc3db7b..88db42e89c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupMultiplePoints.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupMultiplePoints.md @@ -1,4 +1,5 @@ -# Class BuilderBeamGroupMultiplePoints +# Class BuilderBeamGroupMultiplePoints + Namespace: [VM.Managed.DAFUL.Builder.Beam](VM.Managed.DAFUL.Builder.Beam.md) Assembly: VMBldBeamGroup.dll @@ -9,10 +10,10 @@ public class BuilderBeamGroupMultiplePoints : BuilderBeamGroupMultiplePointsBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [BuilderBeamGroupMultiplePointsBase](VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupMultiplePointsBase\-1.md) ← [BuilderBeamGroupMultiplePoints](VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupMultiplePoints.md) @@ -41,29 +42,29 @@ IBuilder [BuilderBeamGroupMultiplePointsBase.UseCustomize](VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupMultiplePointsBase\-1.md\#VM\_Managed\_DAFUL\_Builder\_Beam\_BuilderBeamGroupMultiplePointsBase\_1\_UseCustomize), [BuilderBeamGroupMultiplePointsBase.ResultBeamGroup](VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupMultiplePointsBase\-1.md\#VM\_Managed\_DAFUL\_Builder\_Beam\_BuilderBeamGroupMultiplePointsBase\_1\_ResultBeamGroup), [BuilderBeamGroupMultiplePointsBase.ResultSolidBodies](VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupMultiplePointsBase\-1.md\#VM\_Managed\_DAFUL\_Builder\_Beam\_BuilderBeamGroupMultiplePointsBase\_1\_ResultSolidBodies), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupMultiplePointsBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupMultiplePointsBase-1.md index 0ed790326c..c405cfe5ef 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupMultiplePointsBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupMultiplePointsBase-1.md @@ -1,4 +1,5 @@ -# Class BuilderBeamGroupMultiplePointsBase +# Class BuilderBeamGroupMultiplePointsBase + Namespace: [VM.Managed.DAFUL.Builder.Beam](VM.Managed.DAFUL.Builder.Beam.md) Assembly: VMBldBeamGroup.dll @@ -13,10 +14,10 @@ public abstract class BuilderBeamGroupMultiplePointsBase : BuilderNamed, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [BuilderBeamGroupMultiplePointsBase](VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupMultiplePointsBase\-1.md) #### Implements @@ -25,29 +26,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -73,7 +74,7 @@ protected override bool AddToDoc { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### BeamCrossSection @@ -103,7 +104,7 @@ public string Color { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### MaterialProperty @@ -113,7 +114,7 @@ public string MaterialProperty { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NoOfElements @@ -123,7 +124,7 @@ public int NoOfElements { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### ResultBeamGroup @@ -133,7 +134,7 @@ public BeamGroup ResultBeamGroup { get; set; } #### Property Value - BeamGroup + [BeamGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDBeamGroup/BeamGroup.cs) ### ResultSolidBodies @@ -143,7 +144,7 @@ public List ResultSolidBodies { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List<[SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs)\> ### UseCustomize @@ -153,7 +154,7 @@ public bool UseCustomize { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_bldrBeamInfoAry @@ -177,13 +178,13 @@ protected virtual string GetBeamGroupBodyName(Document document, string beamGrou `document` Document -`beamGroupName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`beamGroupName` string -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### OnPostBuild\(ObjectBase, Document\) @@ -199,7 +200,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SetInputResultData\(\) @@ -209,7 +210,7 @@ protected virtual bool SetInputResultData() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -219,9 +220,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupTwoPoints.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupTwoPoints.md index 099e62cca9..ce696d96b9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupTwoPoints.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupTwoPoints.md @@ -1,4 +1,5 @@ -# Class BuilderBeamGroupTwoPoints +# Class BuilderBeamGroupTwoPoints + Namespace: [VM.Managed.DAFUL.Builder.Beam](VM.Managed.DAFUL.Builder.Beam.md) Assembly: VMBldBeamGroup.dll @@ -9,10 +10,10 @@ public class BuilderBeamGroupTwoPoints : BuilderBeamGroupMultiplePoints, IBuilde #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [BuilderBeamGroupMultiplePointsBase](VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupMultiplePointsBase\-1.md) ← [BuilderBeamGroupMultiplePoints](VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupMultiplePoints.md) ← [BuilderBeamGroupTwoPoints](VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupTwoPoints.md) @@ -37,29 +38,29 @@ IBuilder [BuilderBeamGroupMultiplePointsBase.UseCustomize](VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupMultiplePointsBase\-1.md\#VM\_Managed\_DAFUL\_Builder\_Beam\_BuilderBeamGroupMultiplePointsBase\_1\_UseCustomize), [BuilderBeamGroupMultiplePointsBase.ResultBeamGroup](VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupMultiplePointsBase\-1.md\#VM\_Managed\_DAFUL\_Builder\_Beam\_BuilderBeamGroupMultiplePointsBase\_1\_ResultBeamGroup), [BuilderBeamGroupMultiplePointsBase.ResultSolidBodies](VM.Managed.DAFUL.Builder.Beam.BuilderBeamGroupMultiplePointsBase\-1.md\#VM\_Managed\_DAFUL\_Builder\_Beam\_BuilderBeamGroupMultiplePointsBase\_1\_ResultSolidBodies), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -85,7 +86,7 @@ protected override bool AddToDoc { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### EndPosition diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Beam.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Beam.md index 9b29136952..3887ede498 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Beam.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Beam.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Builder.Beam +# Namespace VM.Managed.DAFUL.Builder.Beam + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Bearing.BearingGeneralBBPD.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Bearing.BearingGeneralBBPD.md index bb8fe4dfb8..359091d571 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Bearing.BearingGeneralBBPD.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Bearing.BearingGeneralBBPD.md @@ -1,4 +1,5 @@ -# Class BearingGeneralBBPD +# Class BearingGeneralBBPD + Namespace: [VM.Managed.DAFUL.Builder.Bearing](VM.Managed.DAFUL.Builder.Bearing.md) Assembly: VMBldBearing.dll @@ -9,11 +10,11 @@ public class BearingGeneralBBPD : Connector ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [BearingGeneralBBPD](VM.Managed.DAFUL.Builder.Bearing.BearingGeneralBBPD.md) #### Implements @@ -22,36 +23,36 @@ IBuilder #### Inherited Members -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Bearing.BearingJournalBBPD.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Bearing.BearingJournalBBPD.md index b3b9eb8a27..93ca097c87 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Bearing.BearingJournalBBPD.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Bearing.BearingJournalBBPD.md @@ -1,4 +1,5 @@ -# Class BearingJournalBBPD +# Class BearingJournalBBPD + Namespace: [VM.Managed.DAFUL.Builder.Bearing](VM.Managed.DAFUL.Builder.Bearing.md) Assembly: VMBldBearing.dll @@ -9,11 +10,11 @@ public class BearingJournalBBPD : Connector ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [BearingJournalBBPD](VM.Managed.DAFUL.Builder.Bearing.BearingJournalBBPD.md) #### Implements @@ -22,36 +23,36 @@ IBuilder #### Inherited Members -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -115,5 +116,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Bearing.EHDBearingOne.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Bearing.EHDBearingOne.md index 0dd282d2e3..8760f645da 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Bearing.EHDBearingOne.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Bearing.EHDBearingOne.md @@ -1,4 +1,5 @@ -# Class EHDBearingOne +# Class EHDBearingOne + Namespace: [VM.Managed.DAFUL.Builder.Bearing](VM.Managed.DAFUL.Builder.Bearing.md) Assembly: VMBldEHDBearing.dll @@ -9,10 +10,10 @@ public class EHDBearingOne : EHDBearingTwo, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [EHDBearingTwo](VM.Managed.DAFUL.Builder.Bearing.EHDBearingTwo.md) ← [EHDBearingOne](VM.Managed.DAFUL.Builder.Bearing.EHDBearingOne.md) @@ -35,29 +36,29 @@ IBuilder [EHDBearingTwo.BaseRadius](VM.Managed.DAFUL.Builder.Bearing.EHDBearingTwo.md\#VM\_Managed\_DAFUL\_Builder\_Bearing\_EHDBearingTwo\_BaseRadius), [EHDBearingTwo.ActionRadius](VM.Managed.DAFUL.Builder.Bearing.EHDBearingTwo.md\#VM\_Managed\_DAFUL\_Builder\_Bearing\_EHDBearingTwo\_ActionRadius), [EHDBearingTwo.Width](VM.Managed.DAFUL.Builder.Bearing.EHDBearingTwo.md\#VM\_Managed\_DAFUL\_Builder\_Bearing\_EHDBearingTwo\_Width), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Bearing.EHDBearingTwo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Bearing.EHDBearingTwo.md index bd94a82f4b..f4e173a3ea 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Bearing.EHDBearingTwo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Bearing.EHDBearingTwo.md @@ -1,4 +1,5 @@ -# Class EHDBearingTwo +# Class EHDBearingTwo + Namespace: [VM.Managed.DAFUL.Builder.Bearing](VM.Managed.DAFUL.Builder.Bearing.md) Assembly: VMBldEHDBearing.dll @@ -9,10 +10,10 @@ public class EHDBearingTwo : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [EHDBearingTwo](VM.Managed.DAFUL.Builder.Bearing.EHDBearingTwo.md) #### Derived @@ -25,29 +26,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -73,7 +74,7 @@ protected int m_nIndex #### Field Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Properties @@ -203,5 +204,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Bearing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Bearing.md index 242f26ee74..c7765581e3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Bearing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Bearing.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Builder.Bearing +# Namespace VM.Managed.DAFUL.Builder.Bearing + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Boolean-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Boolean-1.md index 11cb4c2620..39f6df81fc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Boolean-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Boolean-1.md @@ -1,4 +1,5 @@ -# Class Boolean +# Class Boolean + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -13,7 +14,7 @@ public abstract class Boolean : BooleanBase, IBuilder where T : Builder, n #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BooleanBase](VM.Managed.DAFUL.Builder.BooleanBase\-1.md) ← [Boolean](VM.Managed.DAFUL.Builder.Boolean\-1.md) @@ -85,7 +86,7 @@ protected override string Argument { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ReserveToolBody @@ -95,7 +96,7 @@ public bool ReserveToolBody { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ToolBodiesName @@ -105,7 +106,7 @@ public string[] ToolBodiesName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### ToolConnectable @@ -163,11 +164,11 @@ protected virtual bool CheckValid(Document doc, List lstBodies) `doc` Document -`lstBodies` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstBodies` List #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DeleteToolBody\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BooleanBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BooleanBase-1.md index 40310fd447..e083c8ea00 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BooleanBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BooleanBase-1.md @@ -1,4 +1,5 @@ -# Class BooleanBase +# Class BooleanBase + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -13,7 +14,7 @@ public abstract class BooleanBase : IBuilder where T : Builder, new() #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BooleanBase](VM.Managed.DAFUL.Builder.BooleanBase\-1.md) #### Implements @@ -44,7 +45,7 @@ protected bool m_bSuccess #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_bSym @@ -54,7 +55,7 @@ protected bool m_bSym #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Properties @@ -66,7 +67,7 @@ protected virtual string Argument { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AvailableOperation @@ -76,7 +77,7 @@ public bool AvailableOperation { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### BuildObject @@ -96,7 +97,7 @@ protected virtual string ExtraArgument { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Parameters @@ -136,7 +137,7 @@ protected abstract string Type { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -160,7 +161,7 @@ public void Build(Document docToAdd, List lstSetPointKeys) `docToAdd` Document -`lstSetPointKeys` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstSetPointKeys` List ### BuildCoreCore\(Document\) @@ -194,11 +195,11 @@ protected int CheckSymmetric(Document doc, List lstBody) `doc` Document -`lstBody` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstBody` List #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### DeleteToolAllBody\(\) @@ -294,7 +295,7 @@ public bool Success() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -304,9 +305,9 @@ public virtual bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BuilderBase-1.FailToBuildException.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BuilderBase-1.FailToBuildException.md index a348df4806..e1b0ffb56d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BuilderBase-1.FailToBuildException.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BuilderBase-1.FailToBuildException.md @@ -1,4 +1,5 @@ -# Class BuilderBase.FailToBuildException +# Class BuilderBase.FailToBuildException + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,8 +10,8 @@ public class BuilderBase.FailToBuildException : Exception #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Exception](https://learn.microsoft.com/dotnet/api/system.exception) ← +object ← +Exception ← [BuilderBase.FailToBuildException](VM.Managed.DAFUL.Builder.BuilderBase\-1.FailToBuildException.md) #### Extension Methods @@ -29,9 +30,9 @@ public FailToBuildException(Type obType, Exception inner) #### Parameters -`obType` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`obType` Type -`inner` [Exception](https://learn.microsoft.com/dotnet/api/system.exception) +`inner` Exception ### FailToBuildException\(Type\) @@ -41,5 +42,5 @@ public FailToBuildException(Type obType) #### Parameters -`obType` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`obType` Type diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BuilderBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BuilderBase-1.md index 239e18c8b6..b9418684fc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BuilderBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BuilderBase-1.md @@ -1,4 +1,5 @@ -# Class BuilderBase +# Class BuilderBase + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -13,7 +14,7 @@ public abstract class BuilderBase : IBuilder where T : ObjectBase, new() #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) #### Implements @@ -44,7 +45,7 @@ protected bool m_bSuccess #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Properties @@ -56,7 +57,7 @@ protected virtual bool AddToDoc { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### BuildDocument @@ -86,7 +87,7 @@ protected string ErrorMessage { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Parameters @@ -106,7 +107,7 @@ protected List SetPointKey { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List<[SetPoint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SetPoint.cs)\> ### UseChangedObject @@ -116,7 +117,7 @@ protected virtual bool UseChangedObject { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseInterface @@ -126,7 +127,7 @@ protected bool UseInterface { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -150,7 +151,7 @@ public virtual void Build(Document docToAdd, List lstSetPointKeys) `docToAdd` Document -`lstSetPointKeys` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstSetPointKeys` List ### OnFinalBuild\(string, Document\) @@ -160,7 +161,7 @@ protected virtual ObjectBase OnFinalBuild(string strObjName, Document doc) #### Parameters -`strObjName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strObjName` string `doc` Document @@ -176,7 +177,7 @@ protected virtual ObjectBase OnObjectChangeBuild(string strObjName, Document doc #### Parameters -`strObjName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strObjName` string `doc` Document @@ -208,7 +209,7 @@ protected virtual bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Success\(\) @@ -218,7 +219,7 @@ public bool Success() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -228,9 +229,9 @@ public virtual bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BuilderJoint-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BuilderJoint-1.md index 16f0eb7359..f88138ff82 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BuilderJoint-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BuilderJoint-1.md @@ -1,4 +1,5 @@ -# Class BuilderJoint +# Class BuilderJoint + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -13,7 +14,7 @@ public abstract class BuilderJoint : BuilderNamed, IBuilder where T : Obje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [BuilderSymmetric](VM.Managed.DAFUL.Builder.BuilderSymmetric\-1.md) ← [BuilderNamed](VM.Managed.DAFUL.Builder.BuilderNamed\-1.md) ← @@ -109,5 +110,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BuilderNamed-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BuilderNamed-1.md index 9c41b57d30..a8bc18aa5d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BuilderNamed-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BuilderNamed-1.md @@ -1,4 +1,5 @@ -# Class BuilderNamed +# Class BuilderNamed + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -13,7 +14,7 @@ public abstract class BuilderNamed : BuilderSymmetric, IBuilder where T : #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [BuilderSymmetric](VM.Managed.DAFUL.Builder.BuilderSymmetric\-1.md) ← [BuilderNamed](VM.Managed.DAFUL.Builder.BuilderNamed\-1.md) @@ -69,7 +70,7 @@ public virtual string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -85,7 +86,7 @@ protected void CheckUnit(Document3D docParent, Document3D docSub, string Propert `docSub` Document3D -`PropertyFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`PropertyFilePath` string ### OnPostBuild\(ObjectBase, Document\) @@ -101,5 +102,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BuilderSymmetric-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BuilderSymmetric-1.md index d72f9d0f3e..9baa472bbf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BuilderSymmetric-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.BuilderSymmetric-1.md @@ -1,4 +1,5 @@ -# Class BuilderSymmetric +# Class BuilderSymmetric + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -13,7 +14,7 @@ public abstract class BuilderSymmetric : BuilderBase, IBuilder where T : O #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [BuilderSymmetric](VM.Managed.DAFUL.Builder.BuilderSymmetric\-1.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CADExportBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CADExportBase.md index 67a80be6f3..f9dec56e56 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CADExportBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CADExportBase.md @@ -1,4 +1,5 @@ -# Class CADExportBase +# Class CADExportBase + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class CADExportBase : IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CADExportBase](VM.Managed.DAFUL.Builder.CADExportBase.md) #### Derived @@ -45,7 +46,7 @@ protected bool m_bSuccess #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Properties @@ -67,7 +68,7 @@ public string PropertyFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -91,7 +92,7 @@ public void Build(Document docToAdd, List lstSetPointKeys) `docToAdd` Document -`lstSetPointKeys` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstSetPointKeys` List ### BuildImpl\(Document\) @@ -111,7 +112,7 @@ public bool Success() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -121,9 +122,9 @@ public bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CADExportBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CADExportBody.md index bc06a88293..6096d2457e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CADExportBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CADExportBody.md @@ -1,4 +1,5 @@ -# Class CADExportBody +# Class CADExportBody + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class CADExportBody : CADExportBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CADExportBase](VM.Managed.DAFUL.Builder.CADExportBase.md) ← [CADExportBody](VM.Managed.DAFUL.Builder.CADExportBody.md) @@ -52,7 +53,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### ObjectNames @@ -62,7 +63,7 @@ public string[] ObjectNames { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CADExportFile.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CADExportFile.md index bcbf352f01..728a3fee61 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CADExportFile.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CADExportFile.md @@ -1,4 +1,5 @@ -# Class CADExportFile +# Class CADExportFile + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class CADExportFile : CADExportBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CADExportBase](VM.Managed.DAFUL.Builder.CADExportBase.md) ← [CADExportFile](VM.Managed.DAFUL.Builder.CADExportFile.md) @@ -52,7 +53,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CADImport.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CADImport.md index 10aa27372a..5a176c07b0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CADImport.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CADImport.md @@ -1,4 +1,5 @@ -# Class CADImport +# Class CADImport + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class CADImport : IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CADImport](VM.Managed.DAFUL.Builder.CADImport.md) #### Derived @@ -44,7 +45,7 @@ protected bool m_bSuccess #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Properties @@ -66,7 +67,7 @@ public bool Healing { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### InputArray @@ -76,7 +77,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### PropertyFilePath @@ -86,7 +87,7 @@ public string PropertyFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ResultType @@ -96,7 +97,7 @@ public string ResultType { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UnitType @@ -130,7 +131,7 @@ public void Build(Document docToAdd, List lstSetPointKeys) `docToAdd` Document -`lstSetPointKeys` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstSetPointKeys` List ### BuildImpl\(Document\) @@ -150,7 +151,7 @@ public bool Success() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -160,9 +161,9 @@ public bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CADReplace.AttributeInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CADReplace.AttributeInfo.md index 34abedf053..a59f93968a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CADReplace.AttributeInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CADReplace.AttributeInfo.md @@ -1,4 +1,5 @@ -# Class CADReplace.AttributeInfo +# Class CADReplace.AttributeInfo + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class CADReplace.AttributeInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CADReplace.AttributeInfo](VM.Managed.DAFUL.Builder.CADReplace.AttributeInfo.md) #### Extension Methods @@ -36,7 +37,7 @@ public string[] Attributes { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### UseAll @@ -46,5 +47,5 @@ public bool UseAll { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CADReplace.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CADReplace.md index 47416e2290..2e03b6cbbd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CADReplace.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CADReplace.md @@ -1,4 +1,5 @@ -# Class CADReplace +# Class CADReplace + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class CADReplace : CADImport, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CADImport](VM.Managed.DAFUL.Builder.CADImport.md) ← [CADReplace](VM.Managed.DAFUL.Builder.CADReplace.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CPlacingConnector.CPlacingConnector.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CPlacingConnector.CPlacingConnector.md index 0d01bdadbc..ca6b39936d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CPlacingConnector.CPlacingConnector.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CPlacingConnector.CPlacingConnector.md @@ -1,4 +1,5 @@ -# Class CPlacingConnector +# Class CPlacingConnector + Namespace: [VM.Managed.DAFUL.Builder.CPlacingConnector](VM.Managed.DAFUL.Builder.CPlacingConnector.md) Assembly: VMBldCPlacingConnector.dll @@ -9,10 +10,10 @@ public class CPlacingConnector : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [CPlacingConnector](VM.Managed.DAFUL.Builder.CPlacingConnector.CPlacingConnector.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -75,5 +76,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CPlacingConnector.GeometryBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CPlacingConnector.GeometryBase-1.md index 1979c3a2d3..595da95578 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CPlacingConnector.GeometryBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CPlacingConnector.GeometryBase-1.md @@ -1,4 +1,5 @@ -# Class GeometryBase +# Class GeometryBase + Namespace: [VM.Managed.DAFUL.Builder.CPlacingConnector](VM.Managed.DAFUL.Builder.CPlacingConnector.md) Assembly: VMBldCPlacingConnector.dll @@ -13,10 +14,10 @@ public class GeometryBase : BuilderNamed, IBuilder where T : ObjectBase, n #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [GeometryBase](VM.Managed.DAFUL.Builder.CPlacingConnector.GeometryBase\-1.md) #### Implements @@ -25,29 +26,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CPlacingConnector.Pin.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CPlacingConnector.Pin.md index eaa292775e..06c9ff451c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CPlacingConnector.Pin.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CPlacingConnector.Pin.md @@ -1,4 +1,5 @@ -# Class Pin +# Class Pin + Namespace: [VM.Managed.DAFUL.Builder.CPlacingConnector](VM.Managed.DAFUL.Builder.CPlacingConnector.md) Assembly: VMBldCPlacingConnector.dll @@ -9,10 +10,10 @@ public class Pin : GeometryBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [GeometryBase](VM.Managed.DAFUL.Builder.CPlacingConnector.GeometryBase\-1.md) ← [Pin](VM.Managed.DAFUL.Builder.CPlacingConnector.Pin.md) @@ -25,29 +26,29 @@ IBuilder [GeometryBase.Body](VM.Managed.DAFUL.Builder.CPlacingConnector.GeometryBase\-1.md\#VM\_Managed\_DAFUL\_Builder\_CPlacingConnector\_GeometryBase\_1\_Body), [GeometryBase.Position](VM.Managed.DAFUL.Builder.CPlacingConnector.GeometryBase\-1.md\#VM\_Managed\_DAFUL\_Builder\_CPlacingConnector\_GeometryBase\_1\_Position), [GeometryBase.DirectionZ](VM.Managed.DAFUL.Builder.CPlacingConnector.GeometryBase\-1.md\#VM\_Managed\_DAFUL\_Builder\_CPlacingConnector\_GeometryBase\_1\_DirectionZ), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -79,5 +80,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CPlacingConnector.Pulley.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CPlacingConnector.Pulley.md index 3c00888ab0..fe4814bdf4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CPlacingConnector.Pulley.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CPlacingConnector.Pulley.md @@ -1,4 +1,5 @@ -# Class Pulley +# Class Pulley + Namespace: [VM.Managed.DAFUL.Builder.CPlacingConnector](VM.Managed.DAFUL.Builder.CPlacingConnector.md) Assembly: VMBldCPlacingConnector.dll @@ -9,10 +10,10 @@ public class Pulley : GeometryBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [GeometryBase](VM.Managed.DAFUL.Builder.CPlacingConnector.GeometryBase\-1.md) ← [Pulley](VM.Managed.DAFUL.Builder.CPlacingConnector.Pulley.md) @@ -25,29 +26,29 @@ IBuilder [GeometryBase.Body](VM.Managed.DAFUL.Builder.CPlacingConnector.GeometryBase\-1.md\#VM\_Managed\_DAFUL\_Builder\_CPlacingConnector\_GeometryBase\_1\_Body), [GeometryBase.Position](VM.Managed.DAFUL.Builder.CPlacingConnector.GeometryBase\-1.md\#VM\_Managed\_DAFUL\_Builder\_CPlacingConnector\_GeometryBase\_1\_Position), [GeometryBase.DirectionZ](VM.Managed.DAFUL.Builder.CPlacingConnector.GeometryBase\-1.md\#VM\_Managed\_DAFUL\_Builder\_CPlacingConnector\_GeometryBase\_1\_DirectionZ), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -79,5 +80,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CPlacingConnector.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CPlacingConnector.md index f023733fee..99a81dfab5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CPlacingConnector.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CPlacingConnector.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Builder.CPlacingConnector +# Namespace VM.Managed.DAFUL.Builder.CPlacingConnector + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Car.Force.BumpstopBBPP.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Car.Force.BumpstopBBPP.md index ff6eef7184..52ddc39aa1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Car.Force.BumpstopBBPP.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Car.Force.BumpstopBBPP.md @@ -1,4 +1,5 @@ -# Class BumpstopBBPP +# Class BumpstopBBPP + Namespace: [VM.Managed.DAFUL.Builder.Car.Force](VM.Managed.DAFUL.Builder.Car.Force.md) Assembly: VMBldCar.dll @@ -9,11 +10,11 @@ public class BumpstopBBPP : Connector ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [BumpstopBBPP](VM.Managed.DAFUL.Builder.Car.Force.BumpstopBBPP.md) #### Implements @@ -22,36 +23,36 @@ IBuilder #### Inherited Members -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -77,7 +78,7 @@ public string PropertyFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -95,5 +96,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Car.Force.DamperBBPP.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Car.Force.DamperBBPP.md index aa97db4417..d5e7be9de9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Car.Force.DamperBBPP.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Car.Force.DamperBBPP.md @@ -1,4 +1,5 @@ -# Class DamperBBPP +# Class DamperBBPP + Namespace: [VM.Managed.DAFUL.Builder.Car.Force](VM.Managed.DAFUL.Builder.Car.Force.md) Assembly: VMBldCar.dll @@ -9,11 +10,11 @@ public class DamperBBPP : Connector ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [DamperBBPP](VM.Managed.DAFUL.Builder.Car.Force.DamperBBPP.md) #### Implements @@ -22,36 +23,36 @@ IBuilder #### Inherited Members -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -77,7 +78,7 @@ public string PropertyFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -95,5 +96,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Car.Force.ReboundstopBBPP.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Car.Force.ReboundstopBBPP.md index 30cdd3dcd3..5c0b948647 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Car.Force.ReboundstopBBPP.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Car.Force.ReboundstopBBPP.md @@ -1,4 +1,5 @@ -# Class ReboundstopBBPP +# Class ReboundstopBBPP + Namespace: [VM.Managed.DAFUL.Builder.Car.Force](VM.Managed.DAFUL.Builder.Car.Force.md) Assembly: VMBldCar.dll @@ -9,11 +10,11 @@ public class ReboundstopBBPP : Connector ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [ReboundstopBBPP](VM.Managed.DAFUL.Builder.Car.Force.ReboundstopBBPP.md) #### Implements @@ -22,36 +23,36 @@ IBuilder #### Inherited Members -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -77,7 +78,7 @@ public string PropertyFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -95,5 +96,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Car.Force.SpringBBPP.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Car.Force.SpringBBPP.md index 3b06ed59ee..2a8658c478 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Car.Force.SpringBBPP.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Car.Force.SpringBBPP.md @@ -1,4 +1,5 @@ -# Class SpringBBPP +# Class SpringBBPP + Namespace: [VM.Managed.DAFUL.Builder.Car.Force](VM.Managed.DAFUL.Builder.Car.Force.md) Assembly: VMBldCar.dll @@ -9,11 +10,11 @@ public class SpringBBPP : Connector ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [SpringBBPP](VM.Managed.DAFUL.Builder.Car.Force.SpringBBPP.md) #### Implements @@ -22,36 +23,36 @@ IBuilder #### Inherited Members -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -77,7 +78,7 @@ public string PropertyFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -95,5 +96,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Car.Force.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Car.Force.md index 7df9f89245..4c5da15d75 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Car.Force.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Car.Force.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Builder.Car.Force +# Namespace VM.Managed.DAFUL.Builder.Car.Force + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Chained.ChainedPlacing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Chained.ChainedPlacing.md index 93d37e8ce8..ba63949c68 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Chained.ChainedPlacing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Chained.ChainedPlacing.md @@ -1,4 +1,5 @@ -# Class ChainedPlacing +# Class ChainedPlacing + Namespace: [VM.Managed.DAFUL.Builder.Chained](VM.Managed.DAFUL.Builder.Chained.md) Assembly: VMBldChained.dll @@ -9,10 +10,10 @@ public class ChainedPlacing : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [ChainedPlacing](VM.Managed.DAFUL.Builder.Chained.ChainedPlacing.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -69,7 +70,7 @@ public string[] ObjectNames { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -87,5 +88,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Chained.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Chained.md index 5e1fdc94b7..ef67e55656 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Chained.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Chained.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Builder.Chained +# Namespace VM.Managed.DAFUL.Builder.Chained + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.ChangeEdgeColor.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.ChangeEdgeColor.md index 892d3941fc..600d193466 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.ChangeEdgeColor.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.ChangeEdgeColor.md @@ -1,4 +1,5 @@ -# Class ChangeEdgeColor +# Class ChangeEdgeColor + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class ChangeEdgeColor : IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ChangeEdgeColor](VM.Managed.DAFUL.Builder.ChangeEdgeColor.md) #### Implements @@ -50,7 +51,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### ObjectKey @@ -60,7 +61,7 @@ public string[] ObjectKey { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -84,7 +85,7 @@ public void Build(Document docToAdd, List lstSetPointKeys) `docToAdd` Document -`lstSetPointKeys` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstSetPointKeys` List ### BuildImpl\(Document\) @@ -104,7 +105,7 @@ public bool Success() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -114,9 +115,9 @@ public bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.ChangeFaceColor.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.ChangeFaceColor.md index 5143177341..df36e32284 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.ChangeFaceColor.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.ChangeFaceColor.md @@ -1,4 +1,5 @@ -# Class ChangeFaceColor +# Class ChangeFaceColor + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class ChangeFaceColor : IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ChangeFaceColor](VM.Managed.DAFUL.Builder.ChangeFaceColor.md) #### Implements @@ -50,7 +51,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### ObjectKey @@ -60,7 +61,7 @@ public string[] ObjectKey { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -84,7 +85,7 @@ public void Build(Document docToAdd, List lstSetPointKeys) `docToAdd` Document -`lstSetPointKeys` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstSetPointKeys` List ### BuildImpl\(Document\) @@ -104,7 +105,7 @@ public bool Success() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -114,9 +115,9 @@ public bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CheckSolidHelper.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CheckSolidHelper.md index 96fd81b9d2..dc0e3b70ce 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CheckSolidHelper.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CheckSolidHelper.md @@ -1,4 +1,5 @@ -# Class CheckSolidHelper +# Class CheckSolidHelper + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class CheckSolidHelper #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CheckSolidHelper](VM.Managed.DAFUL.Builder.CheckSolidHelper.md) #### Extension Methods @@ -36,5 +37,5 @@ public static bool UseCheckSolid { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CircularPlane.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CircularPlane.md index c46de05958..5e82a6859d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CircularPlane.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CircularPlane.md @@ -1,4 +1,5 @@ -# Class CircularPlane +# Class CircularPlane + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class CircularPlane : ImprintSheet, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BooleanBase](VM.Managed.DAFUL.Builder.BooleanBase\-1.md) ← [Imprint](VM.Managed.DAFUL.Builder.Imprint.md) ← [ImprintSheet](VM.Managed.DAFUL.Builder.ImprintSheet.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CoSim.FileGen.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CoSim.FileGen.md index 738bc33f27..ff88581140 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CoSim.FileGen.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CoSim.FileGen.md @@ -1,4 +1,5 @@ -# Class FileGen +# Class FileGen + Namespace: [VM.Managed.DAFUL.Builder.CoSim](VM.Managed.DAFUL.Builder.CoSim.md) Assembly: VMBldCoSim.dll @@ -9,10 +10,10 @@ public class FileGen : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [FileGen](VM.Managed.DAFUL.Builder.CoSim.FileGen.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -75,5 +76,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CoSim.Matlab.MFileGen.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CoSim.Matlab.MFileGen.md index 72547821a8..cc3c950d1a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CoSim.Matlab.MFileGen.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CoSim.Matlab.MFileGen.md @@ -1,4 +1,5 @@ -# Class MFileGen +# Class MFileGen + Namespace: [VM.Managed.DAFUL.Builder.CoSim.Matlab](VM.Managed.DAFUL.Builder.CoSim.Matlab.md) Assembly: VMBldCoSimMatlab.dll @@ -9,10 +10,10 @@ public class MFileGen : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [MFileGen](VM.Managed.DAFUL.Builder.CoSim.Matlab.MFileGen.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -75,5 +76,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CoSim.Matlab.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CoSim.Matlab.md index 6cdbb4062e..ed181d0015 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CoSim.Matlab.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CoSim.Matlab.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Builder.CoSim.Matlab +# Namespace VM.Managed.DAFUL.Builder.CoSim.Matlab + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CoSim.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CoSim.md index a021358c31..56d522c73f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CoSim.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.CoSim.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Builder.CoSim +# Namespace VM.Managed.DAFUL.Builder.CoSim + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Connector-5.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Connector-5.md index c00ad005d7..37428106a2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Connector-5.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Connector-5.md @@ -1,4 +1,5 @@ -# Class Connector +# Class Connector + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -21,7 +22,7 @@ public class Connector : #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [BuilderSymmetric](VM.Managed.DAFUL.Builder.BuilderSymmetric\-1.md) ← [BuilderNamed](VM.Managed.DAFUL.Builder.BuilderNamed\-1.md) ← @@ -91,7 +92,7 @@ protected override bool AddToDoc { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### BaseConnectable @@ -123,7 +124,7 @@ protected virtual void HookBeforeReplace(Property propertyOriginal) #### Parameters -`propertyOriginal` Property +`propertyOriginal` [Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ### OnPostAddDoc\(ObjectBase\) @@ -149,5 +150,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.BallBBP.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.BallBBP.md index d9a8d9b1d7..e07dd4f3a8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.BallBBP.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.BallBBP.md @@ -1,4 +1,5 @@ -# Class BallBBP +# Class BallBBP + Namespace: [VM.Managed.DAFUL.Builder.Constraints](VM.Managed.DAFUL.Builder.Constraints.md) Assembly: VMBldCB.dll @@ -9,11 +10,11 @@ public class BallBBP : Connector ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [BallBBP](VM.Managed.DAFUL.Builder.Constraints.BallBBP.md) #### Implements @@ -22,36 +23,36 @@ IBuilder #### Inherited Members -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.ConVelBBPDDD.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.ConVelBBPDDD.md index 2c10f70634..3aa2ab6c7b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.ConVelBBPDDD.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.ConVelBBPDDD.md @@ -1,4 +1,5 @@ -# Class ConVelBBPDDD +# Class ConVelBBPDDD + Namespace: [VM.Managed.DAFUL.Builder.Constraints](VM.Managed.DAFUL.Builder.Constraints.md) Assembly: VMBldCP.dll @@ -9,11 +10,11 @@ public class ConVelBBPDDD : Connector ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [ConVelBBPDDD](VM.Managed.DAFUL.Builder.Constraints.ConVelBBPDDD.md) #### Implements @@ -22,36 +23,36 @@ IBuilder #### Inherited Members -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.Coupler-2.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.Coupler-2.md index d4837619f1..0be4db75e2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.Coupler-2.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.Coupler-2.md @@ -1,4 +1,5 @@ -# Class Coupler +# Class Coupler + Namespace: [VM.Managed.DAFUL.Builder.Constraints](VM.Managed.DAFUL.Builder.Constraints.md) Assembly: VMBldCP.dll @@ -15,10 +16,10 @@ public class Coupler : BuilderNamed, IBuilder where T : CouplerBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [Coupler](VM.Managed.DAFUL.Builder.Constraints.Coupler\-2.md) #### Implements @@ -27,29 +28,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -103,5 +104,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.CouplerCableJJ.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.CouplerCableJJ.md index c09e14bd95..b1674a1d7b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.CouplerCableJJ.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.CouplerCableJJ.md @@ -1,4 +1,5 @@ -# Class CouplerCableJJ +# Class CouplerCableJJ + Namespace: [VM.Managed.DAFUL.Builder.Constraints](VM.Managed.DAFUL.Builder.Constraints.md) Assembly: VMBldCP.dll @@ -9,10 +10,10 @@ public class CouplerCableJJ : Coupler, IBuil #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [Coupler](VM.Managed.DAFUL.Builder.Constraints.Coupler\-2.md) ← [CouplerCableJJ](VM.Managed.DAFUL.Builder.Constraints.CouplerCableJJ.md) @@ -25,29 +26,29 @@ IBuilder [Coupler.OnPostBuild\(ObjectBase, Document\)](VM.Managed.DAFUL.Builder.Constraints.Coupler\-2.md\#VM\_Managed\_DAFUL\_Builder\_Constraints\_Coupler\_2\_OnPostBuild\_VM\_Managed\_ObjectBase\_VM\_Managed\_Document\_), [Coupler.CurrentJoint1](VM.Managed.DAFUL.Builder.Constraints.Coupler\-2.md\#VM\_Managed\_DAFUL\_Builder\_Constraints\_Coupler\_2\_CurrentJoint1), [Coupler.CurrentJoint2](VM.Managed.DAFUL.Builder.Constraints.Coupler\-2.md\#VM\_Managed\_DAFUL\_Builder\_Constraints\_Coupler\_2\_CurrentJoint2), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.CouplerGearJJ.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.CouplerGearJJ.md index 957dc5777d..055877e7b3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.CouplerGearJJ.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.CouplerGearJJ.md @@ -1,4 +1,5 @@ -# Class CouplerGearJJ +# Class CouplerGearJJ + Namespace: [VM.Managed.DAFUL.Builder.Constraints](VM.Managed.DAFUL.Builder.Constraints.md) Assembly: VMBldCP.dll @@ -9,10 +10,10 @@ public class CouplerGearJJ : Coupler, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [Coupler](VM.Managed.DAFUL.Builder.Constraints.Coupler\-2.md) ← [CouplerGearJJ](VM.Managed.DAFUL.Builder.Constraints.CouplerGearJJ.md) @@ -25,29 +26,29 @@ IBuilder [Coupler.OnPostBuild\(ObjectBase, Document\)](VM.Managed.DAFUL.Builder.Constraints.Coupler\-2.md\#VM\_Managed\_DAFUL\_Builder\_Constraints\_Coupler\_2\_OnPostBuild\_VM\_Managed\_ObjectBase\_VM\_Managed\_Document\_), [Coupler.CurrentJoint1](VM.Managed.DAFUL.Builder.Constraints.Coupler\-2.md\#VM\_Managed\_DAFUL\_Builder\_Constraints\_Coupler\_2\_CurrentJoint1), [Coupler.CurrentJoint2](VM.Managed.DAFUL.Builder.Constraints.Coupler\-2.md\#VM\_Managed\_DAFUL\_Builder\_Constraints\_Coupler\_2\_CurrentJoint2), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.CouplerJJ.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.CouplerJJ.md index 017c4af81d..de5ec93cab 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.CouplerJJ.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.CouplerJJ.md @@ -1,4 +1,5 @@ -# Class CouplerJJ +# Class CouplerJJ + Namespace: [VM.Managed.DAFUL.Builder.Constraints](VM.Managed.DAFUL.Builder.Constraints.md) Assembly: VMBldCP.dll @@ -9,10 +10,10 @@ public class CouplerJJ : Coupler, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [Coupler](VM.Managed.DAFUL.Builder.Constraints.Coupler\-2.md) ← [CouplerJJ](VM.Managed.DAFUL.Builder.Constraints.CouplerJJ.md) @@ -25,29 +26,29 @@ IBuilder [Coupler.OnPostBuild\(ObjectBase, Document\)](VM.Managed.DAFUL.Builder.Constraints.Coupler\-2.md\#VM\_Managed\_DAFUL\_Builder\_Constraints\_Coupler\_2\_OnPostBuild\_VM\_Managed\_ObjectBase\_VM\_Managed\_Document\_), [Coupler.CurrentJoint1](VM.Managed.DAFUL.Builder.Constraints.Coupler\-2.md\#VM\_Managed\_DAFUL\_Builder\_Constraints\_Coupler\_2\_CurrentJoint1), [Coupler.CurrentJoint2](VM.Managed.DAFUL.Builder.Constraints.Coupler\-2.md\#VM\_Managed\_DAFUL\_Builder\_Constraints\_Coupler\_2\_CurrentJoint2), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -79,5 +80,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.CouplerJJJ.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.CouplerJJJ.md index e6490aa811..8b8d3e1d97 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.CouplerJJJ.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.CouplerJJJ.md @@ -1,4 +1,5 @@ -# Class CouplerJJJ +# Class CouplerJJJ + Namespace: [VM.Managed.DAFUL.Builder.Constraints](VM.Managed.DAFUL.Builder.Constraints.md) Assembly: VMBldCP.dll @@ -9,10 +10,10 @@ public class CouplerJJJ : Coupler, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [Coupler](VM.Managed.DAFUL.Builder.Constraints.Coupler\-2.md) ← [CouplerJJJ](VM.Managed.DAFUL.Builder.Constraints.CouplerJJJ.md) @@ -25,29 +26,29 @@ IBuilder [Coupler.OnPostBuild\(ObjectBase, Document\)](VM.Managed.DAFUL.Builder.Constraints.Coupler\-2.md\#VM\_Managed\_DAFUL\_Builder\_Constraints\_Coupler\_2\_OnPostBuild\_VM\_Managed\_ObjectBase\_VM\_Managed\_Document\_), [Coupler.CurrentJoint1](VM.Managed.DAFUL.Builder.Constraints.Coupler\-2.md\#VM\_Managed\_DAFUL\_Builder\_Constraints\_Coupler\_2\_CurrentJoint1), [Coupler.CurrentJoint2](VM.Managed.DAFUL.Builder.Constraints.Coupler\-2.md\#VM\_Managed\_DAFUL\_Builder\_Constraints\_Coupler\_2\_CurrentJoint2), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -79,5 +80,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.CouplerRackPinionJJ.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.CouplerRackPinionJJ.md index 76fc3dc189..b4f19ee7d6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.CouplerRackPinionJJ.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.CouplerRackPinionJJ.md @@ -1,4 +1,5 @@ -# Class CouplerRackPinionJJ +# Class CouplerRackPinionJJ + Namespace: [VM.Managed.DAFUL.Builder.Constraints](VM.Managed.DAFUL.Builder.Constraints.md) Assembly: VMBldCP.dll @@ -9,10 +10,10 @@ public class CouplerRackPinionJJ : Coupler ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [Coupler](VM.Managed.DAFUL.Builder.Constraints.Coupler\-2.md) ← [CouplerRackPinionJJ](VM.Managed.DAFUL.Builder.Constraints.CouplerRackPinionJJ.md) @@ -25,29 +26,29 @@ IBuilder [Coupler.OnPostBuild\(ObjectBase, Document\)](VM.Managed.DAFUL.Builder.Constraints.Coupler\-2.md\#VM\_Managed\_DAFUL\_Builder\_Constraints\_Coupler\_2\_OnPostBuild\_VM\_Managed\_ObjectBase\_VM\_Managed\_Document\_), [Coupler.CurrentJoint1](VM.Managed.DAFUL.Builder.Constraints.Coupler\-2.md\#VM\_Managed\_DAFUL\_Builder\_Constraints\_Coupler\_2\_CurrentJoint1), [Coupler.CurrentJoint2](VM.Managed.DAFUL.Builder.Constraints.Coupler\-2.md\#VM\_Managed\_DAFUL\_Builder\_Constraints\_Coupler\_2\_CurrentJoint2), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.CylindricalBBPD.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.CylindricalBBPD.md index 46a0738cc4..438efaca77 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.CylindricalBBPD.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.CylindricalBBPD.md @@ -1,4 +1,5 @@ -# Class CylindricalBBPD +# Class CylindricalBBPD + Namespace: [VM.Managed.DAFUL.Builder.Constraints](VM.Managed.DAFUL.Builder.Constraints.md) Assembly: VMBldCB.dll @@ -9,11 +10,11 @@ public class CylindricalBBPD : Connector ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [CylindricalBBPD](VM.Managed.DAFUL.Builder.Constraints.CylindricalBBPD.md) #### Implements @@ -22,36 +23,36 @@ IBuilder #### Inherited Members -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.DistanceBBPP.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.DistanceBBPP.md index b67d4c5b06..fbcefb5dc6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.DistanceBBPP.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.DistanceBBPP.md @@ -1,4 +1,5 @@ -# Class DistanceBBPP +# Class DistanceBBPP + Namespace: [VM.Managed.DAFUL.Builder.Constraints](VM.Managed.DAFUL.Builder.Constraints.md) Assembly: VMBldCP.dll @@ -9,11 +10,11 @@ public class DistanceBBPP : Connector ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [DistanceBBPP](VM.Managed.DAFUL.Builder.Constraints.DistanceBBPP.md) #### Implements @@ -22,36 +23,36 @@ IBuilder #### Inherited Members -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.FixedBBP.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.FixedBBP.md index 7c62fc555d..3ec45a7b8e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.FixedBBP.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.FixedBBP.md @@ -1,4 +1,5 @@ -# Class FixedBBP +# Class FixedBBP + Namespace: [VM.Managed.DAFUL.Builder.Constraints](VM.Managed.DAFUL.Builder.Constraints.md) Assembly: VMBldCB.dll @@ -9,11 +10,11 @@ public class FixedBBP : Connector ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [FixedBBP](VM.Managed.DAFUL.Builder.Constraints.FixedBBP.md) #### Implements @@ -22,36 +23,36 @@ IBuilder #### Inherited Members -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.InlineBBPP.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.InlineBBPP.md index 883a0bae36..e3432f085d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.InlineBBPP.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.InlineBBPP.md @@ -1,4 +1,5 @@ -# Class InlineBBPP +# Class InlineBBPP + Namespace: [VM.Managed.DAFUL.Builder.Constraints](VM.Managed.DAFUL.Builder.Constraints.md) Assembly: VMBldCP.dll @@ -9,11 +10,11 @@ public class InlineBBPP : Connector ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [InlineBBPP](VM.Managed.DAFUL.Builder.Constraints.InlineBBPP.md) #### Implements @@ -22,36 +23,36 @@ IBuilder #### Inherited Members -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.InplaneBBPPD.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.InplaneBBPPD.md index 93017a29cb..36d80cbe7c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.InplaneBBPPD.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.InplaneBBPPD.md @@ -1,4 +1,5 @@ -# Class InplaneBBPPD +# Class InplaneBBPPD + Namespace: [VM.Managed.DAFUL.Builder.Constraints](VM.Managed.DAFUL.Builder.Constraints.md) Assembly: VMBldCP.dll @@ -9,11 +10,11 @@ public class InplaneBBPPD : Connector ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [InplaneBBPPD](VM.Managed.DAFUL.Builder.Constraints.InplaneBBPPD.md) #### Implements @@ -22,36 +23,36 @@ IBuilder #### Inherited Members -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.OrientationBBP.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.OrientationBBP.md index c3764cecac..7b06f13c6b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.OrientationBBP.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.OrientationBBP.md @@ -1,4 +1,5 @@ -# Class OrientationBBP +# Class OrientationBBP + Namespace: [VM.Managed.DAFUL.Builder.Constraints](VM.Managed.DAFUL.Builder.Constraints.md) Assembly: VMBldCP.dll @@ -9,11 +10,11 @@ public class OrientationBBP : Connector ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [OrientationBBP](VM.Managed.DAFUL.Builder.Constraints.OrientationBBP.md) #### Implements @@ -22,36 +23,36 @@ IBuilder #### Inherited Members -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.ParallelBBPPD.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.ParallelBBPPD.md index 596c761855..bca84c4653 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.ParallelBBPPD.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.ParallelBBPPD.md @@ -1,4 +1,5 @@ -# Class ParallelBBPPD +# Class ParallelBBPPD + Namespace: [VM.Managed.DAFUL.Builder.Constraints](VM.Managed.DAFUL.Builder.Constraints.md) Assembly: VMBldCP.dll @@ -9,11 +10,11 @@ public class ParallelBBPPD : Connector ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [ParallelBBPPD](VM.Managed.DAFUL.Builder.Constraints.ParallelBBPPD.md) #### Implements @@ -22,36 +23,36 @@ IBuilder #### Inherited Members -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.PerpendicularBBPDD.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.PerpendicularBBPDD.md index ff6ceb61ff..3b845ae653 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.PerpendicularBBPDD.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.PerpendicularBBPDD.md @@ -1,4 +1,5 @@ -# Class PerpendicularBBPDD +# Class PerpendicularBBPDD + Namespace: [VM.Managed.DAFUL.Builder.Constraints](VM.Managed.DAFUL.Builder.Constraints.md) Assembly: VMBldCP.dll @@ -9,11 +10,11 @@ public class PerpendicularBBPDD : Connector ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [PerpendicularBBPDD](VM.Managed.DAFUL.Builder.Constraints.PerpendicularBBPDD.md) #### Implements @@ -22,36 +23,36 @@ IBuilder #### Inherited Members -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.PerpendicularBBPPDD.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.PerpendicularBBPPDD.md index e36ccd7007..ecccd62474 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.PerpendicularBBPPDD.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.PerpendicularBBPPDD.md @@ -1,4 +1,5 @@ -# Class PerpendicularBBPPDD +# Class PerpendicularBBPPDD + Namespace: [VM.Managed.DAFUL.Builder.Constraints](VM.Managed.DAFUL.Builder.Constraints.md) Assembly: VMBldCP.dll @@ -9,11 +10,11 @@ public class PerpendicularBBPPDD : Connector ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [PerpendicularBBPPDD](VM.Managed.DAFUL.Builder.Constraints.PerpendicularBBPPDD.md) #### Implements @@ -22,36 +23,36 @@ IBuilder #### Inherited Members -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.PlanarBBPD.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.PlanarBBPD.md index 06f3caba90..ab3afd2554 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.PlanarBBPD.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.PlanarBBPD.md @@ -1,4 +1,5 @@ -# Class PlanarBBPD +# Class PlanarBBPD + Namespace: [VM.Managed.DAFUL.Builder.Constraints](VM.Managed.DAFUL.Builder.Constraints.md) Assembly: VMBldCB.dll @@ -9,11 +10,11 @@ public class PlanarBBPD : Connector ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [PlanarBBPD](VM.Managed.DAFUL.Builder.Constraints.PlanarBBPD.md) #### Implements @@ -22,36 +23,36 @@ IBuilder #### Inherited Members -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.RevoluteBBP.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.RevoluteBBP.md index 640ecf5073..0d7375897e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.RevoluteBBP.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.RevoluteBBP.md @@ -1,4 +1,5 @@ -# Class RevoluteBBP +# Class RevoluteBBP + Namespace: [VM.Managed.DAFUL.Builder.Constraints](VM.Managed.DAFUL.Builder.Constraints.md) Assembly: VMBldCB.dll @@ -9,11 +10,11 @@ public class RevoluteBBP : Connector ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [RevoluteBBP](VM.Managed.DAFUL.Builder.Constraints.RevoluteBBP.md) #### Implements @@ -22,36 +23,36 @@ IBuilder #### Inherited Members -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.RevoluteBBPD.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.RevoluteBBPD.md index 451db5a787..37e15ab9c2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.RevoluteBBPD.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.RevoluteBBPD.md @@ -1,4 +1,5 @@ -# Class RevoluteBBPD +# Class RevoluteBBPD + Namespace: [VM.Managed.DAFUL.Builder.Constraints](VM.Managed.DAFUL.Builder.Constraints.md) Assembly: VMBldCB.dll @@ -9,11 +10,11 @@ public class RevoluteBBPD : Connector ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [RevoluteBBPD](VM.Managed.DAFUL.Builder.Constraints.RevoluteBBPD.md) #### Implements @@ -22,36 +23,36 @@ IBuilder #### Inherited Members -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.ScrewBBPD.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.ScrewBBPD.md index c1bbceeeb9..90a1c729ee 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.ScrewBBPD.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.ScrewBBPD.md @@ -1,4 +1,5 @@ -# Class ScrewBBPD +# Class ScrewBBPD + Namespace: [VM.Managed.DAFUL.Builder.Constraints](VM.Managed.DAFUL.Builder.Constraints.md) Assembly: VMBldCP.dll @@ -9,11 +10,11 @@ public class ScrewBBPD : Connector ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [ScrewBBPD](VM.Managed.DAFUL.Builder.Constraints.ScrewBBPD.md) #### Implements @@ -22,36 +23,36 @@ IBuilder #### Inherited Members -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.TranslationalBBPD.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.TranslationalBBPD.md index 6b6ab07718..286aab4f4c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.TranslationalBBPD.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.TranslationalBBPD.md @@ -1,4 +1,5 @@ -# Class TranslationalBBPD +# Class TranslationalBBPD + Namespace: [VM.Managed.DAFUL.Builder.Constraints](VM.Managed.DAFUL.Builder.Constraints.md) Assembly: VMBldCB.dll @@ -9,11 +10,11 @@ public class TranslationalBBPD : Connector ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [TranslationalBBPD](VM.Managed.DAFUL.Builder.Constraints.TranslationalBBPD.md) #### Implements @@ -22,36 +23,36 @@ IBuilder #### Inherited Members -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.UniversalBBPDD.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.UniversalBBPDD.md index 5fc7764a59..6dd591ad7f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.UniversalBBPDD.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.UniversalBBPDD.md @@ -1,4 +1,5 @@ -# Class UniversalBBPDD +# Class UniversalBBPDD + Namespace: [VM.Managed.DAFUL.Builder.Constraints](VM.Managed.DAFUL.Builder.Constraints.md) Assembly: VMBldCP.dll @@ -9,11 +10,11 @@ public class UniversalBBPDD : Connector ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [UniversalBBPDD](VM.Managed.DAFUL.Builder.Constraints.UniversalBBPDD.md) #### Implements @@ -22,36 +23,36 @@ IBuilder #### Inherited Members -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.UniversalBBPDDDD.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.UniversalBBPDDDD.md index 5a0a77092b..dc7d51474d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.UniversalBBPDDDD.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.UniversalBBPDDDD.md @@ -1,4 +1,5 @@ -# Class UniversalBBPDDDD +# Class UniversalBBPDDDD + Namespace: [VM.Managed.DAFUL.Builder.Constraints](VM.Managed.DAFUL.Builder.Constraints.md) Assembly: VMBldCP.dll @@ -9,11 +10,11 @@ public class UniversalBBPDDDD : Connector ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [UniversalBBPDDDD](VM.Managed.DAFUL.Builder.Constraints.UniversalBBPDDDD.md) #### Implements @@ -22,36 +23,36 @@ IBuilder #### Inherited Members -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.md index da54decc60..87413f3adc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Constraints.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Builder.Constraints +# Namespace VM.Managed.DAFUL.Builder.Constraints + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.AutoContact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.AutoContact.md index 1b60d4a020..32a7b4ad18 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.AutoContact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.AutoContact.md @@ -1,4 +1,5 @@ -# Class AutoContact +# Class AutoContact + Namespace: [VM.Managed.DAFUL.Builder.Contact](VM.Managed.DAFUL.Builder.Contact.md) Assembly: VMBldCt.dll @@ -9,10 +10,10 @@ public class AutoContact : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [AutoContact](VM.Managed.DAFUL.Builder.Contact.AutoContact.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -79,7 +80,7 @@ public string[] ObjectList { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -97,5 +98,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.CVCV.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.CVCV.md index 421c5b7862..7ae663c3ca 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.CVCV.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.CVCV.md @@ -1,4 +1,5 @@ -# Class CVCV +# Class CVCV + Namespace: [VM.Managed.DAFUL.Builder.Contact](VM.Managed.DAFUL.Builder.Contact.md) Assembly: VMBldCt.dll @@ -9,10 +10,10 @@ public class CVCV : ContactConstraint, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [ContactConstraint](VM.Managed.DAFUL.Builder.Contact.ContactConstraint\-2.md) ← [CVCV](VM.Managed.DAFUL.Builder.Contact.CVCV.md) @@ -23,29 +24,29 @@ IBuilder #### Inherited Members [ContactConstraint.OnPostBuild\(ObjectBase, Document\)](VM.Managed.DAFUL.Builder.Contact.ContactConstraint\-2.md\#VM\_Managed\_DAFUL\_Builder\_Contact\_ContactConstraint\_2\_OnPostBuild\_VM\_Managed\_ObjectBase\_VM\_Managed\_Document\_), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -99,5 +100,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.CYTMC.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.CYTMC.md index 028ff40368..c1c796867b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.CYTMC.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.CYTMC.md @@ -1,4 +1,5 @@ -# Class CYTMC +# Class CYTMC + Namespace: [VM.Managed.DAFUL.Builder.Contact](VM.Managed.DAFUL.Builder.Contact.md) Assembly: VMBldCt.dll @@ -9,10 +10,10 @@ public class CYTMC : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [CYTMC](VM.Managed.DAFUL.Builder.Contact.CYTMC.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -79,7 +80,7 @@ public string[] BaseCurveset { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### BottomPosition @@ -127,5 +128,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.ColorCurveSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.ColorCurveSet.md index bf87ffb515..870ce6311e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.ColorCurveSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.ColorCurveSet.md @@ -1,4 +1,5 @@ -# Class ColorCurveSet +# Class ColorCurveSet + Namespace: [VM.Managed.DAFUL.Builder.Contact](VM.Managed.DAFUL.Builder.Contact.md) Assembly: VMBldCt.dll @@ -9,10 +10,10 @@ public class ColorCurveSet : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [ColorCurveSet](VM.Managed.DAFUL.Builder.Contact.ColorCurveSet.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -69,7 +70,7 @@ protected override bool AddToDoc { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ColorArray @@ -79,7 +80,7 @@ public string[] ColorArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### Connectable @@ -107,5 +108,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.ColorFaceSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.ColorFaceSet.md index 32a5068133..36496fc519 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.ColorFaceSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.ColorFaceSet.md @@ -1,4 +1,5 @@ -# Class ColorFaceSet +# Class ColorFaceSet + Namespace: [VM.Managed.DAFUL.Builder.Contact](VM.Managed.DAFUL.Builder.Contact.md) Assembly: VMBldCt.dll @@ -9,10 +10,10 @@ public class ColorFaceSet : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [ColorFaceSet](VM.Managed.DAFUL.Builder.Contact.ColorFaceSet.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -69,7 +70,7 @@ protected override bool AddToDoc { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ColorArray @@ -79,7 +80,7 @@ public string[] ColorArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### Connectable @@ -107,5 +108,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.ContactConstraint-2.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.ContactConstraint-2.md index 997993c225..ad8855adcc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.ContactConstraint-2.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.ContactConstraint-2.md @@ -1,4 +1,5 @@ -# Class ContactConstraint +# Class ContactConstraint + Namespace: [VM.Managed.DAFUL.Builder.Contact](VM.Managed.DAFUL.Builder.Contact.md) Assembly: VMBldCt.dll @@ -15,10 +16,10 @@ public class ContactConstraint : BuilderNamed, IBuilder where T : C #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [ContactConstraint](VM.Managed.DAFUL.Builder.Contact.ContactConstraint\-2.md) #### Implements @@ -27,29 +28,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -81,5 +82,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.ContactTolerance.GapInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.ContactTolerance.GapInfo.md index 74408e4b8e..0422278e1f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.ContactTolerance.GapInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.ContactTolerance.GapInfo.md @@ -1,4 +1,5 @@ -# Struct ContactTolerance.GapInfo +# Struct ContactTolerance.GapInfo + Namespace: [VM.Managed.DAFUL.Builder.Contact](VM.Managed.DAFUL.Builder.Contact.md) Assembly: VMBldCt.dll @@ -17,7 +18,7 @@ public string GapName { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IsExist @@ -27,7 +28,7 @@ public bool IsExist { readonly get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Target @@ -37,5 +38,5 @@ public PickedObject Target { readonly get; set; } #### Property Value - PickedObject + [PickedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/PickedResult.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.ContactTolerance.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.ContactTolerance.md index 03208199dc..0e8343ba38 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.ContactTolerance.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.ContactTolerance.md @@ -1,4 +1,5 @@ -# Class ContactTolerance +# Class ContactTolerance + Namespace: [VM.Managed.DAFUL.Builder.Contact](VM.Managed.DAFUL.Builder.Contact.md) Assembly: VMBldCt.dll @@ -9,7 +10,7 @@ public class ContactTolerance : IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ContactTolerance](VM.Managed.DAFUL.Builder.Contact.ContactTolerance.md) #### Implements @@ -52,5 +53,5 @@ public bool Success() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.CurveSetBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.CurveSetBase.md index 0508b28609..f373f65bd8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.CurveSetBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.CurveSetBase.md @@ -1,4 +1,5 @@ -# Class CurveSetBase +# Class CurveSetBase + Namespace: [VM.Managed.DAFUL.Builder.Contact](VM.Managed.DAFUL.Builder.Contact.md) Assembly: VMBldCt.dll @@ -9,10 +10,10 @@ public class CurveSetBase : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [CurveSetBase](VM.Managed.DAFUL.Builder.Contact.CurveSetBase.md) #### Derived @@ -26,29 +27,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -74,5 +75,5 @@ protected override bool AddToDoc { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.CurveSetForEdges.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.CurveSetForEdges.md index 4fdc9cc732..c56965e93f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.CurveSetForEdges.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.CurveSetForEdges.md @@ -1,4 +1,5 @@ -# Class CurveSetForEdges +# Class CurveSetForEdges + Namespace: [VM.Managed.DAFUL.Builder.Contact](VM.Managed.DAFUL.Builder.Contact.md) Assembly: VMBldCt.dll @@ -9,10 +10,10 @@ public class CurveSetForEdges : CurveSetBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [CurveSetBase](VM.Managed.DAFUL.Builder.Contact.CurveSetBase.md) ← [CurveSetForEdges](VM.Managed.DAFUL.Builder.Contact.CurveSetForEdges.md) @@ -27,29 +28,29 @@ IBuilder #### Inherited Members [CurveSetBase.AddToDoc](VM.Managed.DAFUL.Builder.Contact.CurveSetBase.md\#VM\_Managed\_DAFUL\_Builder\_Contact\_CurveSetBase\_AddToDoc), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -75,7 +76,7 @@ public string[] ObjectKey { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -93,5 +94,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.CurveSetForEdgesInPart.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.CurveSetForEdgesInPart.md index 2537c7f06d..a1d98a85f3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.CurveSetForEdgesInPart.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.CurveSetForEdgesInPart.md @@ -1,4 +1,5 @@ -# Class CurveSetForEdgesInPart +# Class CurveSetForEdgesInPart + Namespace: [VM.Managed.DAFUL.Builder.Contact](VM.Managed.DAFUL.Builder.Contact.md) Assembly: VMBldCt.dll @@ -9,10 +10,10 @@ public class CurveSetForEdgesInPart : CurveSetForEdges, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [CurveSetBase](VM.Managed.DAFUL.Builder.Contact.CurveSetBase.md) ← [CurveSetForEdges](VM.Managed.DAFUL.Builder.Contact.CurveSetForEdges.md) ← [CurveSetForEdgesInPart](VM.Managed.DAFUL.Builder.Contact.CurveSetForEdgesInPart.md) @@ -26,29 +27,29 @@ IBuilder [CurveSetForEdges.OnPostBuild\(ObjectBase, Document\)](VM.Managed.DAFUL.Builder.Contact.CurveSetForEdges.md\#VM\_Managed\_DAFUL\_Builder\_Contact\_CurveSetForEdges\_OnPostBuild\_VM\_Managed\_ObjectBase\_VM\_Managed\_Document\_), [CurveSetForEdges.ObjectKey](VM.Managed.DAFUL.Builder.Contact.CurveSetForEdges.md\#VM\_Managed\_DAFUL\_Builder\_Contact\_CurveSetForEdges\_ObjectKey), [CurveSetBase.AddToDoc](VM.Managed.DAFUL.Builder.Contact.CurveSetBase.md\#VM\_Managed\_DAFUL\_Builder\_Contact\_CurveSetBase\_AddToDoc), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -80,5 +81,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.CurveSetForImport.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.CurveSetForImport.md index f2f2ce5737..a1125d21da 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.CurveSetForImport.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.CurveSetForImport.md @@ -1,4 +1,5 @@ -# Class CurveSetForImport +# Class CurveSetForImport + Namespace: [VM.Managed.DAFUL.Builder.Contact](VM.Managed.DAFUL.Builder.Contact.md) Assembly: VMBldCt.dll @@ -9,10 +10,10 @@ public class CurveSetForImport : CurveSetBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [CurveSetBase](VM.Managed.DAFUL.Builder.Contact.CurveSetBase.md) ← [CurveSetForImport](VM.Managed.DAFUL.Builder.Contact.CurveSetForImport.md) @@ -27,29 +28,29 @@ IBuilder #### Inherited Members [CurveSetBase.AddToDoc](VM.Managed.DAFUL.Builder.Contact.CurveSetBase.md\#VM\_Managed\_DAFUL\_Builder\_Contact\_CurveSetBase\_AddToDoc), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -85,7 +86,7 @@ public string Path { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -97,13 +98,13 @@ protected List LoadPointDataFile(string loadStr, string extStr) #### Parameters -`loadStr` [string](https://learn.microsoft.com/dotnet/api/system.string) +`loadStr` string -`extStr` [string](https://learn.microsoft.com/dotnet/api/system.string) +`extStr` string #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\[\]\> + List ### OnPostBuild\(ObjectBase, Document\) @@ -119,7 +120,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReadPointDataFile\(string\) @@ -129,9 +130,9 @@ protected string ReadPointDataFile(string fileName) #### Parameters -`fileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`fileName` string #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.CurveSetForImportInPart.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.CurveSetForImportInPart.md index c70fc13c27..19f93a5a19 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.CurveSetForImportInPart.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.CurveSetForImportInPart.md @@ -1,4 +1,5 @@ -# Class CurveSetForImportInPart +# Class CurveSetForImportInPart + Namespace: [VM.Managed.DAFUL.Builder.Contact](VM.Managed.DAFUL.Builder.Contact.md) Assembly: VMBldCt.dll @@ -9,10 +10,10 @@ public class CurveSetForImportInPart : CurveSetForImport, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [CurveSetBase](VM.Managed.DAFUL.Builder.Contact.CurveSetBase.md) ← [CurveSetForImport](VM.Managed.DAFUL.Builder.Contact.CurveSetForImport.md) ← [CurveSetForImportInPart](VM.Managed.DAFUL.Builder.Contact.CurveSetForImportInPart.md) @@ -29,29 +30,29 @@ IBuilder [CurveSetForImport.Path](VM.Managed.DAFUL.Builder.Contact.CurveSetForImport.md\#VM\_Managed\_DAFUL\_Builder\_Contact\_CurveSetForImport\_Path), [CurveSetForImport.Connectable](VM.Managed.DAFUL.Builder.Contact.CurveSetForImport.md\#VM\_Managed\_DAFUL\_Builder\_Contact\_CurveSetForImport\_Connectable), [CurveSetBase.AddToDoc](VM.Managed.DAFUL.Builder.Contact.CurveSetBase.md\#VM\_Managed\_DAFUL\_Builder\_Contact\_CurveSetBase\_AddToDoc), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -83,5 +84,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.ExtractFaceSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.ExtractFaceSet.md index 3261ec6a35..2279f26839 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.ExtractFaceSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.ExtractFaceSet.md @@ -1,4 +1,5 @@ -# Class ExtractFaceSet +# Class ExtractFaceSet + Namespace: [VM.Managed.DAFUL.Builder.Contact](VM.Managed.DAFUL.Builder.Contact.md) Assembly: VMBldCt.dll @@ -9,7 +10,7 @@ public class ExtractFaceSet : ExtractFaceSetBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ExtractFaceSetBase](VM.Managed.DAFUL.Builder.Contact.ExtractFaceSetBase.md) ← [ExtractFaceSet](VM.Managed.DAFUL.Builder.Contact.ExtractFaceSet.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.ExtractFaceSetBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.ExtractFaceSetBase.md index 4c4282fdd2..50316edca0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.ExtractFaceSetBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.ExtractFaceSetBase.md @@ -1,4 +1,5 @@ -# Class ExtractFaceSetBase +# Class ExtractFaceSetBase + Namespace: [VM.Managed.DAFUL.Builder.Contact](VM.Managed.DAFUL.Builder.Contact.md) Assembly: VMBldCt.dll @@ -9,7 +10,7 @@ public class ExtractFaceSetBase : IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ExtractFaceSetBase](VM.Managed.DAFUL.Builder.Contact.ExtractFaceSetBase.md) #### Derived @@ -55,7 +56,7 @@ public string FirstFaceSetName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### InputArray @@ -65,7 +66,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### Parameters @@ -75,7 +76,7 @@ public PickedResult[] Parameters { get; set; } #### Property Value - PickedResult\[\] + [PickedResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/PickedResult.cs)\[\] ### SecondConnectable @@ -95,7 +96,7 @@ public string SecondFaceSetName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SplitFirstBody @@ -105,7 +106,7 @@ public bool SplitFirstBody { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SplitSecondBody @@ -115,7 +116,7 @@ public bool SplitSecondBody { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TargetFaces @@ -135,7 +136,7 @@ public double Tolerance { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UseTolerance @@ -145,7 +146,7 @@ public bool UseTolerance { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -157,9 +158,9 @@ protected virtual void CreateFaceSet(string strName, SolidBody sbParent, Face[] #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string -`sbParent` SolidBody +`sbParent` [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) `arFace` Face\[\] @@ -173,7 +174,7 @@ protected virtual void CreateFaceSet(string strName, Body sbParent, Face[] arFac #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string `sbParent` Body @@ -189,5 +190,5 @@ public bool Success() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.ExtractFaceSetMF.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.ExtractFaceSetMF.md index f41170820b..036dc68216 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.ExtractFaceSetMF.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.ExtractFaceSetMF.md @@ -1,4 +1,5 @@ -# Class ExtractFaceSetMF +# Class ExtractFaceSetMF + Namespace: [VM.Managed.DAFUL.Builder.Contact](VM.Managed.DAFUL.Builder.Contact.md) Assembly: VMBldCt.dll @@ -9,7 +10,7 @@ public class ExtractFaceSetMF : ExtractFaceSetBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ExtractFaceSetBase](VM.Managed.DAFUL.Builder.Contact.ExtractFaceSetBase.md) ← [ExtractFaceSetMF](VM.Managed.DAFUL.Builder.Contact.ExtractFaceSetMF.md) @@ -68,7 +69,7 @@ public string[] ObjectKey { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### SecondConnectable diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.FaceSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.FaceSet.md index b73e445547..7081edecf6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.FaceSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.FaceSet.md @@ -1,4 +1,5 @@ -# Class FaceSet +# Class FaceSet + Namespace: [VM.Managed.DAFUL.Builder.Contact](VM.Managed.DAFUL.Builder.Contact.md) Assembly: VMBldCt.dll @@ -9,10 +10,10 @@ public class FaceSet : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [FaceSet](VM.Managed.DAFUL.Builder.Contact.FaceSet.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -69,7 +70,7 @@ protected override bool AddToDoc { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ObjectKey @@ -79,7 +80,7 @@ public string[] ObjectKey { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -97,5 +98,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.GeneralContact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.GeneralContact.md index 98387a6417..50f4416c43 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.GeneralContact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.GeneralContact.md @@ -1,4 +1,5 @@ -# Class GeneralContact +# Class GeneralContact + Namespace: [VM.Managed.DAFUL.Builder.Contact](VM.Managed.DAFUL.Builder.Contact.md) Assembly: VMBldCt.dll @@ -9,10 +10,10 @@ public class GeneralContact : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [GeneralContact](VM.Managed.DAFUL.Builder.Contact.GeneralContact.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -97,5 +98,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.GeneralContact_Faces.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.GeneralContact_Faces.md index 02e7423201..48e60d447e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.GeneralContact_Faces.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.GeneralContact_Faces.md @@ -1,4 +1,5 @@ -# Class GeneralContact\_Faces +# Class GeneralContact\_Faces + Namespace: [VM.Managed.DAFUL.Builder.Contact](VM.Managed.DAFUL.Builder.Contact.md) Assembly: VMBldCt.dll @@ -9,10 +10,10 @@ public class GeneralContact_Faces : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [GeneralContact\_Faces](VM.Managed.DAFUL.Builder.Contact.GeneralContact\_Faces.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -69,7 +70,7 @@ public PickedFace ActionGeometry { get; set; } #### Property Value - PickedFace + [PickedFace](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Split.cs) ### BaseGeometry @@ -79,7 +80,7 @@ public PickedFace BaseGeometry { get; set; } #### Property Value - PickedFace + [PickedFace](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Split.cs) ## Methods @@ -97,5 +98,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.MCTMC.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.MCTMC.md index 2e47a67718..b431ebc765 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.MCTMC.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.MCTMC.md @@ -1,4 +1,5 @@ -# Class MCTMC +# Class MCTMC + Namespace: [VM.Managed.DAFUL.Builder.Contact](VM.Managed.DAFUL.Builder.Contact.md) Assembly: VMBldCt.dll @@ -9,10 +10,10 @@ public class MCTMC : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [MCTMC](VM.Managed.DAFUL.Builder.Contact.MCTMC.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -107,5 +108,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.MbyNContact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.MbyNContact.md index ec606676e9..b4f27e6337 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.MbyNContact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.MbyNContact.md @@ -1,4 +1,5 @@ -# Class MbyNContact +# Class MbyNContact + Namespace: [VM.Managed.DAFUL.Builder.Contact](VM.Managed.DAFUL.Builder.Contact.md) Assembly: VMBldCt.dll @@ -9,10 +10,10 @@ public class MbyNContact : MultipleContactBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [MultipleContactBase](VM.Managed.DAFUL.Builder.Contact.MultipleContactBase\-1.md) ← [MbyNContact](VM.Managed.DAFUL.Builder.Contact.MbyNContact.md) @@ -26,29 +27,29 @@ IBuilder [MultipleContactBase.GetContactType\(\)](VM.Managed.DAFUL.Builder.Contact.MultipleContactBase\-1.md\#VM\_Managed\_DAFUL\_Builder\_Contact\_MultipleContactBase\_1\_GetContactType), [MultipleContactBase.GetMultipleInfoList\(List\)](VM.Managed.DAFUL.Builder.Contact.MultipleContactBase\-1.md\#VM\_Managed\_DAFUL\_Builder\_Contact\_MultipleContactBase\_1\_GetMultipleInfoList\_System\_Collections\_Generic\_List\_VM\_Managed\_DAFUL\_IContactable\_\_), [MultipleContactBase.IsAllowSwitch](VM.Managed.DAFUL.Builder.Contact.MultipleContactBase\-1.md\#VM\_Managed\_DAFUL\_Builder\_Contact\_MultipleContactBase\_1\_IsAllowSwitch), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -74,7 +75,7 @@ public string[] ActionList { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### BaseList @@ -84,7 +85,7 @@ public string[] BaseList { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### IsAllowSwitch @@ -94,7 +95,7 @@ protected override bool IsAllowSwitch { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -112,5 +113,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.MultipleContactBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.MultipleContactBase-1.md index ea952d6b5b..9c303dbe67 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.MultipleContactBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.MultipleContactBase-1.md @@ -1,4 +1,5 @@ -# Class MultipleContactBase +# Class MultipleContactBase + Namespace: [VM.Managed.DAFUL.Builder.Contact](VM.Managed.DAFUL.Builder.Contact.md) Assembly: VMBldCt.dll @@ -13,10 +14,10 @@ public abstract class MultipleContactBase : BuilderNamed, IBuilder where T #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [MultipleContactBase](VM.Managed.DAFUL.Builder.Contact.MultipleContactBase\-1.md) #### Implements @@ -25,29 +26,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -73,7 +74,7 @@ protected virtual bool IsAllowSwitch { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -95,11 +96,11 @@ public MultipleContactInfo[] GetMultipleInfoList(List lst) #### Parameters -`lst` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lst` List #### Returns - MultipleContactInfo\[\] + [MultipleContactInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MultipleContactBase.cs)\[\] ### GetPropType\(\) @@ -109,5 +110,5 @@ protected string GetPropType() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.NCombinationContact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.NCombinationContact.md index 002a1a1a63..cb79a88eaf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.NCombinationContact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.NCombinationContact.md @@ -1,4 +1,5 @@ -# Class NCombinationContact +# Class NCombinationContact + Namespace: [VM.Managed.DAFUL.Builder.Contact](VM.Managed.DAFUL.Builder.Contact.md) Assembly: VMBldCt.dll @@ -9,10 +10,10 @@ public class NCombinationContact : MultipleContactBase, IBu #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [MultipleContactBase](VM.Managed.DAFUL.Builder.Contact.MultipleContactBase\-1.md) ← [NCombinationContact](VM.Managed.DAFUL.Builder.Contact.NCombinationContact.md) @@ -26,29 +27,29 @@ IBuilder [MultipleContactBase.GetContactType\(\)](VM.Managed.DAFUL.Builder.Contact.MultipleContactBase\-1.md\#VM\_Managed\_DAFUL\_Builder\_Contact\_MultipleContactBase\_1\_GetContactType), [MultipleContactBase.GetMultipleInfoList\(List\)](VM.Managed.DAFUL.Builder.Contact.MultipleContactBase\-1.md\#VM\_Managed\_DAFUL\_Builder\_Contact\_MultipleContactBase\_1\_GetMultipleInfoList\_System\_Collections\_Generic\_List\_VM\_Managed\_DAFUL\_IContactable\_\_), [MultipleContactBase.IsAllowSwitch](VM.Managed.DAFUL.Builder.Contact.MultipleContactBase\-1.md\#VM\_Managed\_DAFUL\_Builder\_Contact\_MultipleContactBase\_1\_IsAllowSwitch), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -74,7 +75,7 @@ public string[] ObjectList { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -92,5 +93,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.PTCV.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.PTCV.md index 534ca8b06c..56761f26ce 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.PTCV.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.PTCV.md @@ -1,4 +1,5 @@ -# Class PTCV +# Class PTCV + Namespace: [VM.Managed.DAFUL.Builder.Contact](VM.Managed.DAFUL.Builder.Contact.md) Assembly: VMBldCt.dll @@ -9,10 +10,10 @@ public class PTCV : ContactConstraint, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [ContactConstraint](VM.Managed.DAFUL.Builder.Contact.ContactConstraint\-2.md) ← [PTCV](VM.Managed.DAFUL.Builder.Contact.PTCV.md) @@ -23,29 +24,29 @@ IBuilder #### Inherited Members [ContactConstraint.OnPostBuild\(ObjectBase, Document\)](VM.Managed.DAFUL.Builder.Contact.ContactConstraint\-2.md\#VM\_Managed\_DAFUL\_Builder\_Contact\_ContactConstraint\_2\_OnPostBuild\_VM\_Managed\_ObjectBase\_VM\_Managed\_Document\_), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -109,5 +110,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.PTSF.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.PTSF.md index cfaa7a0a1b..2ded9f7662 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.PTSF.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.PTSF.md @@ -1,4 +1,5 @@ -# Class PTSF +# Class PTSF + Namespace: [VM.Managed.DAFUL.Builder.Contact](VM.Managed.DAFUL.Builder.Contact.md) Assembly: VMBldCt.dll @@ -9,10 +10,10 @@ public class PTSF : ContactConstraint, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [ContactConstraint](VM.Managed.DAFUL.Builder.Contact.ContactConstraint\-2.md) ← [PTSF](VM.Managed.DAFUL.Builder.Contact.PTSF.md) @@ -23,29 +24,29 @@ IBuilder #### Inherited Members [ContactConstraint.OnPostBuild\(ObjectBase, Document\)](VM.Managed.DAFUL.Builder.Contact.ContactConstraint\-2.md\#VM\_Managed\_DAFUL\_Builder\_Contact\_ContactConstraint\_2\_OnPostBuild\_VM\_Managed\_ObjectBase\_VM\_Managed\_Document\_), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -109,5 +110,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.PartColorCurveSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.PartColorCurveSet.md index 06a3e93b2d..50023bf7f5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.PartColorCurveSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.PartColorCurveSet.md @@ -1,4 +1,5 @@ -# Class PartColorCurveSet +# Class PartColorCurveSet + Namespace: [VM.Managed.DAFUL.Builder.Contact](VM.Managed.DAFUL.Builder.Contact.md) Assembly: VMBldCt.dll @@ -9,10 +10,10 @@ public class PartColorCurveSet : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [PartColorCurveSet](VM.Managed.DAFUL.Builder.Contact.PartColorCurveSet.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -69,7 +70,7 @@ protected override bool AddToDoc { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ColorArray @@ -79,7 +80,7 @@ public string[] ColorArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### Connectable @@ -107,5 +108,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.PartColorFaceSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.PartColorFaceSet.md index fee3bb064d..547fee3286 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.PartColorFaceSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.PartColorFaceSet.md @@ -1,4 +1,5 @@ -# Class PartColorFaceSet +# Class PartColorFaceSet + Namespace: [VM.Managed.DAFUL.Builder.Contact](VM.Managed.DAFUL.Builder.Contact.md) Assembly: VMBldCt.dll @@ -9,10 +10,10 @@ public class PartColorFaceSet : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [PartColorFaceSet](VM.Managed.DAFUL.Builder.Contact.PartColorFaceSet.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -69,7 +70,7 @@ protected override bool AddToDoc { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ColorArray @@ -79,7 +80,7 @@ public string[] ColorArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### Connectable @@ -107,5 +108,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.PartFaceSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.PartFaceSet.md index 8ef27c5d97..c387049924 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.PartFaceSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.PartFaceSet.md @@ -1,4 +1,5 @@ -# Class PartFaceSet +# Class PartFaceSet + Namespace: [VM.Managed.DAFUL.Builder.Contact](VM.Managed.DAFUL.Builder.Contact.md) Assembly: VMBldCt.dll @@ -9,10 +10,10 @@ public class PartFaceSet : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [PartFaceSet](VM.Managed.DAFUL.Builder.Contact.PartFaceSet.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -69,7 +70,7 @@ protected override bool AddToDoc { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ObjectKey @@ -79,7 +80,7 @@ public string[] ObjectKey { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -97,5 +98,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.PickedCurveset.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.PickedCurveset.md index f79da66234..2925fe8ab2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.PickedCurveset.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.PickedCurveset.md @@ -1,4 +1,5 @@ -# Class PickedCurveset +# Class PickedCurveset + Namespace: [VM.Managed.DAFUL.Builder.Contact](VM.Managed.DAFUL.Builder.Contact.md) Assembly: VMBldCt.dll @@ -9,7 +10,7 @@ public class PickedCurveset #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PickedCurveset](VM.Managed.DAFUL.Builder.Contact.PickedCurveset.md) #### Extension Methods @@ -36,5 +37,5 @@ public string[] List { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.RTR3D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.RTR3D.md index c328105e55..f457d83653 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.RTR3D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.RTR3D.md @@ -1,4 +1,5 @@ -# Class RTR3D +# Class RTR3D + Namespace: [VM.Managed.DAFUL.Builder.Contact](VM.Managed.DAFUL.Builder.Contact.md) Assembly: VMBldCt.dll @@ -9,10 +10,10 @@ public class RTR3D : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [RTR3D](VM.Managed.DAFUL.Builder.Contact.RTR3D.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -97,5 +98,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.SPTMC.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.SPTMC.md index b7d51e5241..18c4e03a25 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.SPTMC.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.SPTMC.md @@ -1,4 +1,5 @@ -# Class SPTMC +# Class SPTMC + Namespace: [VM.Managed.DAFUL.Builder.Contact](VM.Managed.DAFUL.Builder.Contact.md) Assembly: VMBldCt.dll @@ -9,10 +10,10 @@ public class SPTMC : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [SPTMC](VM.Managed.DAFUL.Builder.Contact.SPTMC.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -79,7 +80,7 @@ public string[] BaseCurveset { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### Position @@ -117,5 +118,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.md index 91c248d372..dff8209bc9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Contact.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Builder.Contact +# Namespace VM.Managed.DAFUL.Builder.Contact + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.BC.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.BC.md index 6de22d9f61..810f161cb2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.BC.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.BC.md @@ -1,4 +1,5 @@ -# Class BC +# Class BC + Namespace: [VM.Managed.DAFUL.Builder.FE](VM.Managed.DAFUL.Builder.FE.md) Assembly: VMBldFE.dll @@ -9,10 +10,10 @@ public class BC : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [BC](VM.Managed.DAFUL.Builder.FE.BC.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -87,5 +88,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.Contact.FTF3D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.Contact.FTF3D.md index 59a67c7666..2fb133a42d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.Contact.FTF3D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.Contact.FTF3D.md @@ -1,4 +1,5 @@ -# Class FTF3D +# Class FTF3D + Namespace: [VM.Managed.DAFUL.Builder.FE.Contact](VM.Managed.DAFUL.Builder.FE.Contact.md) Assembly: VMBldFECt.dll @@ -9,10 +10,10 @@ public class FTF3D : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [FTF3D](VM.Managed.DAFUL.Builder.FE.Contact.FTF3D.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -97,5 +98,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.Contact.FTR3D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.Contact.FTR3D.md index d9117f90d2..ac2ffaeece 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.Contact.FTR3D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.Contact.FTR3D.md @@ -1,4 +1,5 @@ -# Class FTR3D +# Class FTR3D + Namespace: [VM.Managed.DAFUL.Builder.FE.Contact](VM.Managed.DAFUL.Builder.FE.Contact.md) Assembly: VMBldFECt.dll @@ -9,10 +10,10 @@ public class FTR3D : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [FTR3D](VM.Managed.DAFUL.Builder.FE.Contact.FTR3D.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -97,5 +98,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.Contact.NTSF.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.Contact.NTSF.md index 13df4d53dc..16a8f0eaa3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.Contact.NTSF.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.Contact.NTSF.md @@ -1,4 +1,5 @@ -# Class NTSF +# Class NTSF + Namespace: [VM.Managed.DAFUL.Builder.FE.Contact](VM.Managed.DAFUL.Builder.FE.Contact.md) Assembly: VMBldFECt.dll @@ -9,10 +10,10 @@ public class NTSF : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [NTSF](VM.Managed.DAFUL.Builder.FE.Contact.NTSF.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -97,5 +98,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.Contact.Tie.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.Contact.Tie.md index d9ffdeea05..1e980b5039 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.Contact.Tie.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.Contact.Tie.md @@ -1,4 +1,5 @@ -# Class Tie +# Class Tie + Namespace: [VM.Managed.DAFUL.Builder.FE.Contact](VM.Managed.DAFUL.Builder.FE.Contact.md) Assembly: VMBldFECt.dll @@ -9,10 +10,10 @@ public class Tie : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [Tie](VM.Managed.DAFUL.Builder.FE.Contact.Tie.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -97,7 +98,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -107,9 +108,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.Contact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.Contact.md index 284c05bda1..42527a8bee 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.Contact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.Contact.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Builder.FE.Contact +# Namespace VM.Managed.DAFUL.Builder.FE.Contact + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.Force.CLoad.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.Force.CLoad.md index e8a2e11874..9dd866b3b8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.Force.CLoad.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.Force.CLoad.md @@ -1,4 +1,5 @@ -# Class CLoad +# Class CLoad + Namespace: [VM.Managed.DAFUL.Builder.FE.Force](VM.Managed.DAFUL.Builder.FE.Force.md) Assembly: VMBldFE.dll @@ -9,10 +10,10 @@ public class CLoad : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [CLoad](VM.Managed.DAFUL.Builder.FE.Force.CLoad.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -87,5 +88,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.Force.PLoad.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.Force.PLoad.md index 558ba9a1b4..4216aa5251 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.Force.PLoad.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.Force.PLoad.md @@ -1,4 +1,5 @@ -# Class PLoad +# Class PLoad + Namespace: [VM.Managed.DAFUL.Builder.FE.Force](VM.Managed.DAFUL.Builder.FE.Force.md) Assembly: VMBldFE.dll @@ -9,10 +10,10 @@ public class PLoad : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [PLoad](VM.Managed.DAFUL.Builder.FE.Force.PLoad.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -87,5 +88,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.Force.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.Force.md index c0ec39151d..911cd9a561 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.Force.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.Force.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Builder.FE.Force +# Namespace VM.Managed.DAFUL.Builder.FE.Force + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.NodalBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.NodalBody.md index 03ec1c6613..80afcb500c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.NodalBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.NodalBody.md @@ -1,4 +1,5 @@ -# Class NodalBody +# Class NodalBody + Namespace: [VM.Managed.DAFUL.Builder.FE](VM.Managed.DAFUL.Builder.FE.md) Assembly: VMBldFE.dll @@ -9,10 +10,10 @@ public class NodalBody : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [NodalBody](VM.Managed.DAFUL.Builder.FE.NodalBody.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -69,7 +70,7 @@ public string PropertyFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -97,5 +98,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.ReplaceFEBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.ReplaceFEBody.md index 07cca6ce00..de74426dd6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.ReplaceFEBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.ReplaceFEBody.md @@ -1,4 +1,5 @@ -# Class ReplaceFEBody +# Class ReplaceFEBody + Namespace: [VM.Managed.DAFUL.Builder.FE](VM.Managed.DAFUL.Builder.FE.md) Assembly: VMBldFE.dll @@ -9,7 +10,7 @@ public class ReplaceFEBody : IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ReplaceFEBody](VM.Managed.DAFUL.Builder.FE.ReplaceFEBody.md) #### Implements @@ -40,7 +41,7 @@ protected bool m_bSuccess #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Properties @@ -52,7 +53,7 @@ public bool AllowMulti { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### BuildObject @@ -82,7 +83,7 @@ public bool HideRemoveMessage { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Parameters @@ -92,7 +93,7 @@ public PickedResult[] Parameters { get; set; } #### Property Value - PickedResult\[\] + [PickedResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/PickedResult.cs)\[\] ### PropertyFilePath @@ -102,7 +103,7 @@ public string PropertyFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -126,7 +127,7 @@ public void Build(Document docToAdd, List lstSetPointKeys) `docToAdd` Document -`lstSetPointKeys` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstSetPointKeys` List ### BuildImpl\(Document\) @@ -146,7 +147,7 @@ public bool Success() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -156,9 +157,9 @@ public bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.ShellToSolid.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.ShellToSolid.md index d620df0b10..9efdd0d1eb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.ShellToSolid.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.ShellToSolid.md @@ -1,4 +1,5 @@ -# Class ShellToSolid +# Class ShellToSolid + Namespace: [VM.Managed.DAFUL.Builder.FE](VM.Managed.DAFUL.Builder.FE.md) Assembly: VMBldFE.dll @@ -9,7 +10,7 @@ public class ShellToSolid : IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ShellToSolid](VM.Managed.DAFUL.Builder.FE.ShellToSolid.md) #### Implements @@ -40,7 +41,7 @@ protected bool m_bSuccess #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Properties @@ -62,7 +63,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -86,7 +87,7 @@ public void Build(Document docToAdd, List lstSetPointKeys) `docToAdd` Document -`lstSetPointKeys` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstSetPointKeys` List ### BuildImpl\(Document\) @@ -106,7 +107,7 @@ public bool Success() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -116,9 +117,9 @@ public bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.md index 7893c2e73e..9c512c48b3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FE.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Builder.FE +# Namespace VM.Managed.DAFUL.Builder.FE + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FEFilm.FEFilm.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FEFilm.FEFilm.md index b40b39e5eb..f0099b2371 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FEFilm.FEFilm.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FEFilm.FEFilm.md @@ -1,4 +1,5 @@ -# Class FEFilm +# Class FEFilm + Namespace: [VM.Managed.DAFUL.Builder.FEFilm](VM.Managed.DAFUL.Builder.FEFilm.md) Assembly: VMBldFEFilm.dll @@ -9,10 +10,10 @@ public class FEFilm : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [FEFilm](VM.Managed.DAFUL.Builder.FEFilm.FEFilm.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -69,7 +70,7 @@ public string[] PathList { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -87,5 +88,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FEFilm.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FEFilm.md index 1be506f5a8..81aab0a83d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FEFilm.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FEFilm.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Builder.FEFilm +# Namespace VM.Managed.DAFUL.Builder.FEFilm + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.BushBBP.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.BushBBP.md index 9d136cc4ff..4338501c1f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.BushBBP.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.BushBBP.md @@ -1,4 +1,5 @@ -# Class BushBBP +# Class BushBBP + Namespace: [VM.Managed.DAFUL.Builder.Force](VM.Managed.DAFUL.Builder.Force.md) Assembly: VMBldFB.dll @@ -9,11 +10,11 @@ public class BushBBP : BushBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [BushBase](VM.Managed.DAFUL.Builder.Force.BushBase\-2.md) ← [BushBBP](VM.Managed.DAFUL.Builder.Force.BushBBP.md) @@ -26,36 +27,36 @@ IBuilder [BushBase.OnPostAddDoc\(ObjectBase\)](VM.Managed.DAFUL.Builder.Force.BushBase\-2.md\#VM\_Managed\_DAFUL\_Builder\_Force\_BushBase\_2\_OnPostAddDoc\_VM\_Managed\_ObjectBase\_), [BushBase.HookBeforeReplace\(Property\)](VM.Managed.DAFUL.Builder.Force.BushBase\-2.md\#VM\_Managed\_DAFUL\_Builder\_Force\_BushBase\_2\_HookBeforeReplace\_VM\_Managed\_Property\_), [BushBase.PropertyFilePath](VM.Managed.DAFUL.Builder.Force.BushBase\-2.md\#VM\_Managed\_DAFUL\_Builder\_Force\_BushBase\_2\_PropertyFilePath), -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.BushBBPD.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.BushBBPD.md index f2bca5c06f..c490fcef6c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.BushBBPD.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.BushBBPD.md @@ -1,4 +1,5 @@ -# Class BushBBPD +# Class BushBBPD + Namespace: [VM.Managed.DAFUL.Builder.Force](VM.Managed.DAFUL.Builder.Force.md) Assembly: VMBldFB.dll @@ -9,11 +10,11 @@ public class BushBBPD : BushBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [BushBase](VM.Managed.DAFUL.Builder.Force.BushBase\-2.md) ← [BushBBPD](VM.Managed.DAFUL.Builder.Force.BushBBPD.md) @@ -26,36 +27,36 @@ IBuilder [BushBase.OnPostAddDoc\(ObjectBase\)](VM.Managed.DAFUL.Builder.Force.BushBase\-2.md\#VM\_Managed\_DAFUL\_Builder\_Force\_BushBase\_2\_OnPostAddDoc\_VM\_Managed\_ObjectBase\_), [BushBase.HookBeforeReplace\(Property\)](VM.Managed.DAFUL.Builder.Force.BushBase\-2.md\#VM\_Managed\_DAFUL\_Builder\_Force\_BushBase\_2\_HookBeforeReplace\_VM\_Managed\_Property\_), [BushBase.PropertyFilePath](VM.Managed.DAFUL.Builder.Force.BushBase\-2.md\#VM\_Managed\_DAFUL\_Builder\_Force\_BushBase\_2\_PropertyFilePath), -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.BushBBPO.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.BushBBPO.md index 5a21f276b1..c64b009a46 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.BushBBPO.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.BushBBPO.md @@ -1,4 +1,5 @@ -# Class BushBBPO +# Class BushBBPO + Namespace: [VM.Managed.DAFUL.Builder.Force](VM.Managed.DAFUL.Builder.Force.md) Assembly: VMBldFB.dll @@ -9,11 +10,11 @@ public class BushBBPO : BushBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [BushBase](VM.Managed.DAFUL.Builder.Force.BushBase\-2.md) ← [BushBBPO](VM.Managed.DAFUL.Builder.Force.BushBBPO.md) @@ -26,36 +27,36 @@ IBuilder [BushBase.OnPostAddDoc\(ObjectBase\)](VM.Managed.DAFUL.Builder.Force.BushBase\-2.md\#VM\_Managed\_DAFUL\_Builder\_Force\_BushBase\_2\_OnPostAddDoc\_VM\_Managed\_ObjectBase\_), [BushBase.HookBeforeReplace\(Property\)](VM.Managed.DAFUL.Builder.Force.BushBase\-2.md\#VM\_Managed\_DAFUL\_Builder\_Force\_BushBase\_2\_HookBeforeReplace\_VM\_Managed\_Property\_), [BushBase.PropertyFilePath](VM.Managed.DAFUL.Builder.Force.BushBase\-2.md\#VM\_Managed\_DAFUL\_Builder\_Force\_BushBase\_2\_PropertyFilePath), -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.BushBase-2.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.BushBase-2.md index 4e66e8aa9d..739c06fcc8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.BushBase-2.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.BushBase-2.md @@ -1,4 +1,5 @@ -# Class BushBase +# Class BushBase + Namespace: [VM.Managed.DAFUL.Builder.Force](VM.Managed.DAFUL.Builder.Force.md) Assembly: VMBldFB.dll @@ -15,11 +16,11 @@ public class BushBase : Connector ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [BushBase](VM.Managed.DAFUL.Builder.Force.BushBase\-2.md) #### Implements @@ -28,36 +29,36 @@ IBuilder #### Inherited Members -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -83,7 +84,7 @@ public string PropertyFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -95,7 +96,7 @@ protected override void HookBeforeReplace(Property propertyOriginal) #### Parameters -`propertyOriginal` Property +`propertyOriginal` [Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ### OnPostAddDoc\(ObjectBase\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.ExternalLoad.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.ExternalLoad.md index 47708dbdcc..e2b4485322 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.ExternalLoad.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.ExternalLoad.md @@ -1,4 +1,5 @@ -# Class ExternalLoad +# Class ExternalLoad + Namespace: [VM.Managed.DAFUL.Builder.Force](VM.Managed.DAFUL.Builder.Force.md) Assembly: VMBldFP.dll @@ -9,10 +10,10 @@ public class ExternalLoad : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [ExternalLoad](VM.Managed.DAFUL.Builder.Force.ExternalLoad.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -87,5 +88,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.LeafSpring.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.LeafSpring.md index e26b93e194..29878762a8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.LeafSpring.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.LeafSpring.md @@ -1,4 +1,5 @@ -# Class LeafSpring +# Class LeafSpring + Namespace: [VM.Managed.DAFUL.Builder.Force](VM.Managed.DAFUL.Builder.Force.md) Assembly: VMBldFP.dll @@ -9,10 +10,10 @@ public class LeafSpring : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [LeafSpring](VM.Managed.DAFUL.Builder.Force.LeafSpring.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -147,5 +148,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.MatrixBBPP.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.MatrixBBPP.md index d56932cf27..4e27439ffe 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.MatrixBBPP.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.MatrixBBPP.md @@ -1,4 +1,5 @@ -# Class MatrixBBPP +# Class MatrixBBPP + Namespace: [VM.Managed.DAFUL.Builder.Force](VM.Managed.DAFUL.Builder.Force.md) Assembly: VMBldFP.dll @@ -9,11 +10,11 @@ public class MatrixBBPP : Connector ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [MatrixBBPP](VM.Managed.DAFUL.Builder.Force.MatrixBBPP.md) #### Implements @@ -22,36 +23,36 @@ IBuilder #### Inherited Members -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.RScalarBBPD.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.RScalarBBPD.md index cf2f923c12..dcf83b2f4c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.RScalarBBPD.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.RScalarBBPD.md @@ -1,4 +1,5 @@ -# Class RScalarBBPD +# Class RScalarBBPD + Namespace: [VM.Managed.DAFUL.Builder.Force](VM.Managed.DAFUL.Builder.Force.md) Assembly: VMBldFP.dll @@ -9,11 +10,11 @@ public class RScalarBBPD : Connector ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [RScalarBBPD](VM.Managed.DAFUL.Builder.Force.RScalarBBPD.md) #### Implements @@ -22,36 +23,36 @@ IBuilder #### Inherited Members -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.RScalarJ.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.RScalarJ.md index 798ef45dad..2244b30278 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.RScalarJ.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.RScalarJ.md @@ -1,4 +1,5 @@ -# Class RScalarJ +# Class RScalarJ + Namespace: [VM.Managed.DAFUL.Builder.Force](VM.Managed.DAFUL.Builder.Force.md) Assembly: VMBldFP.dll @@ -9,11 +10,11 @@ public class RScalarJ : BuilderJoint, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← -BuilderJoint ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[BuilderJoint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderJoint.cs) ← [RScalarJ](VM.Managed.DAFUL.Builder.Force.RScalarJ.md) #### Implements @@ -22,32 +23,32 @@ IBuilder #### Inherited Members -BuilderJoint.OnPostBuild\(ObjectBase, Document\), -BuilderJoint.FindReferenceParent\(IConnectable, Document\), -BuilderJoint.GetJointForReference\(IRSpringDamperComponent\), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderJoint.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderJoint.cs), +[BuilderJoint.FindReferenceParent\(IConnectable, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderJoint.cs), +[BuilderJoint.GetJointForReference\(IRSpringDamperComponent\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderJoint.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -91,5 +92,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.RSpringDamperJ.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.RSpringDamperJ.md index 2ca786c0be..15cc52312d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.RSpringDamperJ.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.RSpringDamperJ.md @@ -1,4 +1,5 @@ -# Class RSpringDamperJ +# Class RSpringDamperJ + Namespace: [VM.Managed.DAFUL.Builder.Force](VM.Managed.DAFUL.Builder.Force.md) Assembly: VMBldFB.dll @@ -9,11 +10,11 @@ public class RSpringDamperJ : BuilderJoint, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← -BuilderJoint ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[BuilderJoint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderJoint.cs) ← [RSpringDamperJ](VM.Managed.DAFUL.Builder.Force.RSpringDamperJ.md) #### Implements @@ -22,32 +23,32 @@ IBuilder #### Inherited Members -BuilderJoint.OnPostBuild\(ObjectBase, Document\), -BuilderJoint.FindReferenceParent\(IConnectable, Document\), -BuilderJoint.GetJointForReference\(IRSpringDamperComponent\), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderJoint.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderJoint.cs), +[BuilderJoint.FindReferenceParent\(IConnectable, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderJoint.cs), +[BuilderJoint.GetJointForReference\(IRSpringDamperComponent\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderJoint.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -91,5 +92,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.TScalarBBPP.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.TScalarBBPP.md index c9bbcbf6ee..3b97e145e9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.TScalarBBPP.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.TScalarBBPP.md @@ -1,4 +1,5 @@ -# Class TScalarBBPP +# Class TScalarBBPP + Namespace: [VM.Managed.DAFUL.Builder.Force](VM.Managed.DAFUL.Builder.Force.md) Assembly: VMBldFP.dll @@ -9,11 +10,11 @@ public class TScalarBBPP : Connector ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [TScalarBBPP](VM.Managed.DAFUL.Builder.Force.TScalarBBPP.md) #### Implements @@ -22,36 +23,36 @@ IBuilder #### Inherited Members -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.TSpringDamperBBPP.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.TSpringDamperBBPP.md index e7ab98a666..046d27c0f4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.TSpringDamperBBPP.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.TSpringDamperBBPP.md @@ -1,4 +1,5 @@ -# Class TSpringDamperBBPP +# Class TSpringDamperBBPP + Namespace: [VM.Managed.DAFUL.Builder.Force](VM.Managed.DAFUL.Builder.Force.md) Assembly: VMBldFB.dll @@ -9,11 +10,11 @@ public class TSpringDamperBBPP : Connector ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [TSpringDamperBBPP](VM.Managed.DAFUL.Builder.Force.TSpringDamperBBPP.md) #### Implements @@ -22,36 +23,36 @@ IBuilder #### Inherited Members -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -83,5 +84,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.VectorBBP.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.VectorBBP.md index 77bb0e2b9b..1551e59174 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.VectorBBP.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.VectorBBP.md @@ -1,4 +1,5 @@ -# Class VectorBBP +# Class VectorBBP + Namespace: [VM.Managed.DAFUL.Builder.Force](VM.Managed.DAFUL.Builder.Force.md) Assembly: VMBldFP.dll @@ -9,11 +10,11 @@ public class VectorBBP : Connector ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [VectorBBP](VM.Managed.DAFUL.Builder.Force.VectorBBP.md) #### Implements @@ -22,36 +23,36 @@ IBuilder #### Inherited Members -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.VectorBBPP.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.VectorBBPP.md index d98384eaad..ea20e47f64 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.VectorBBPP.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.VectorBBPP.md @@ -1,4 +1,5 @@ -# Class VectorBBPP +# Class VectorBBPP + Namespace: [VM.Managed.DAFUL.Builder.Force](VM.Managed.DAFUL.Builder.Force.md) Assembly: VMBldFP.dll @@ -9,11 +10,11 @@ public class VectorBBPP : Connector ← -BuilderSymmetric ← -BuilderNamed ← -Connector ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs) ← [VectorBBPP](VM.Managed.DAFUL.Builder.Force.VectorBBPP.md) #### Implements @@ -22,36 +23,36 @@ IBuilder #### Inherited Members -Connector.HookBeforeReplace\(Property\), -Connector.OnPostBuild\(ObjectBase, Document\), -Connector.OnPostAddDoc\(ObjectBase\), -Connector.BaseConnectable, -Connector.ActionConnectable, -Connector.AddToDoc, -Connector.BuildObject, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[Connector.HookBeforeReplace\(Property\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[Connector.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Connector.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.md index 7e5412bf96..5ca980edba 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Force.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Builder.Force +# Namespace VM.Managed.DAFUL.Builder.Force + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FourDirection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FourDirection.md index eb41789d25..fc19913712 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FourDirection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.FourDirection.md @@ -1,4 +1,5 @@ -# Struct FourDirection +# Struct FourDirection + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -21,7 +22,7 @@ public int NumberOfDirection { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -33,11 +34,11 @@ public void SetDirection(Marker BM, Marker AM, PickedResult[] pickresult, int nu #### Parameters -`BM` Marker +`BM` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) -`AM` Marker +`AM` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) `pickresult` [PickedResult](VM.Managed.DAFUL.Builder.PickedResult.md)\[\] -`numberofpoint` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`numberofpoint` int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddBearingToRBEInFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddBearingToRBEInFE.md index 1b12cdaf64..c0a84f4464 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddBearingToRBEInFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddBearingToRBEInFE.md @@ -1,4 +1,5 @@ -# Class AddBearingToRBEInFE +# Class AddBearingToRBEInFE + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,7 +10,7 @@ public class AddBearingToRBEInFE : AddBearingToRBEInMeshBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AddEntityBase](VM.Managed.DAFUL.Builder.GearTrain.AddEntityBase.md) ← [AddBearingToRBEInMeshBase](VM.Managed.DAFUL.Builder.GearTrain.AddBearingToRBEInMeshBase.md) ← [AddBearingToRBEInFE](VM.Managed.DAFUL.Builder.GearTrain.AddBearingToRBEInFE.md) @@ -72,11 +73,11 @@ protected override RacewayBuilderForRBEInFE GetRacewayBuilder(GeometryBase beari #### Parameters -`bearing_geom` GeometryBase +`bearing_geom` [GeometryBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GeometryBase.cs) #### Returns - RacewayBuilderForRBEInFE + [RacewayBuilderForRBEInFE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BearingRacewayBuilder.cs) ### GetRacewayGeometry\(RacewayBuilderForRBEInFE\) @@ -86,11 +87,11 @@ protected override GeometryBase GetRacewayGeometry(RacewayBuilderForRBEInFE bear #### Parameters -`bearingBuilder` RacewayBuilderForRBEInFE +`bearingBuilder` [RacewayBuilderForRBEInFE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BearingRacewayBuilder.cs) #### Returns - GeometryBase + [GeometryBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GeometryBase.cs) ### GetTmpRacewayGeometry\(RacewayGeometryInfo, HiddenDocumentMeshBase, DirectionBase, OMatrix, bool\) @@ -100,17 +101,17 @@ protected override GeometryBase GetTmpRacewayGeometry(RacewayGeometryInfo rgInfo #### Parameters -`rgInfo` RacewayGeometryInfo +`rgInfo` [RacewayGeometryInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BearingRacewayGeometryInfo.cs) -`hiddenDoc` HiddenDocumentMeshBase +`hiddenDoc` [HiddenDocumentMeshBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) `zAxis` DirectionBase `matO` OMatrix -`bAddDoc` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bAddDoc` bool #### Returns - GeometryBase + [GeometryBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GeometryBase.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddBearingToRBEInMeshBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddBearingToRBEInMeshBase.md index 307fa5071e..265af37086 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddBearingToRBEInMeshBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddBearingToRBEInMeshBase.md @@ -1,4 +1,5 @@ -# Class AddBearingToRBEInMeshBase +# Class AddBearingToRBEInMeshBase + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,7 +10,7 @@ public abstract class AddBearingToRBEInMeshBase : AddEntityBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AddEntityBase](VM.Managed.DAFUL.Builder.GearTrain.AddEntityBase.md) ← [AddBearingToRBEInMeshBase](VM.Managed.DAFUL.Builder.GearTrain.AddBearingToRBEInMeshBase.md) @@ -102,11 +103,11 @@ protected virtual RacewayBuilderForRBEInFE GetRacewayBuilder(GeometryBase bearin #### Parameters -`bearing_geom` GeometryBase +`bearing_geom` [GeometryBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GeometryBase.cs) #### Returns - RacewayBuilderForRBEInFE + [RacewayBuilderForRBEInFE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BearingRacewayBuilder.cs) ### GetRacewayGeometry\(RacewayBuilderForRBEInFE\) @@ -116,11 +117,11 @@ protected virtual GeometryBase GetRacewayGeometry(RacewayBuilderForRBEInFE beari #### Parameters -`bearingBuilder` RacewayBuilderForRBEInFE +`bearingBuilder` [RacewayBuilderForRBEInFE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BearingRacewayBuilder.cs) #### Returns - GeometryBase + [GeometryBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GeometryBase.cs) ### GetTmpRacewayGeometry\(RacewayGeometryInfo, HiddenDocumentMeshBase, DirectionBase, OMatrix, bool\) @@ -130,19 +131,19 @@ protected virtual GeometryBase GetTmpRacewayGeometry(RacewayGeometryInfo rgInfo, #### Parameters -`rgInfo` RacewayGeometryInfo +`rgInfo` [RacewayGeometryInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BearingRacewayGeometryInfo.cs) -`hiddenDoc` HiddenDocumentMeshBase +`hiddenDoc` [HiddenDocumentMeshBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) `zAxis` DirectionBase `matO` OMatrix -`bAddDoc` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bAddDoc` bool #### Returns - GeometryBase + [GeometryBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GeometryBase.cs) ### RBEName\(IConnectable\) @@ -156,7 +157,7 @@ protected virtual string RBEName(IConnectable con) #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Validate\(IList\) @@ -166,9 +167,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddBearingToRBEInMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddBearingToRBEInMeshFree.md index 7498b4ac53..31ac52be37 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddBearingToRBEInMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddBearingToRBEInMeshFree.md @@ -1,4 +1,5 @@ -# Class AddBearingToRBEInMeshFree +# Class AddBearingToRBEInMeshFree + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,7 +10,7 @@ public class AddBearingToRBEInMeshFree : AddBearingToRBEInMeshBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AddEntityBase](VM.Managed.DAFUL.Builder.GearTrain.AddEntityBase.md) ← [AddBearingToRBEInMeshBase](VM.Managed.DAFUL.Builder.GearTrain.AddBearingToRBEInMeshBase.md) ← [AddBearingToRBEInMeshFree](VM.Managed.DAFUL.Builder.GearTrain.AddBearingToRBEInMeshFree.md) @@ -72,11 +73,11 @@ protected override RacewayBuilderForRBEInFE GetRacewayBuilder(GeometryBase beari #### Parameters -`bearing_geom` GeometryBase +`bearing_geom` [GeometryBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GeometryBase.cs) #### Returns - RacewayBuilderForRBEInFE + [RacewayBuilderForRBEInFE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BearingRacewayBuilder.cs) ### GetRacewayGeometry\(RacewayBuilderForRBEInFE\) @@ -86,11 +87,11 @@ protected override GeometryBase GetRacewayGeometry(RacewayBuilderForRBEInFE bear #### Parameters -`bearingBuilder` RacewayBuilderForRBEInFE +`bearingBuilder` [RacewayBuilderForRBEInFE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BearingRacewayBuilder.cs) #### Returns - GeometryBase + [GeometryBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GeometryBase.cs) ### GetTmpRacewayGeometry\(RacewayGeometryInfo, HiddenDocumentMeshBase, DirectionBase, OMatrix, bool\) @@ -100,19 +101,19 @@ protected override GeometryBase GetTmpRacewayGeometry(RacewayGeometryInfo rgInfo #### Parameters -`rgInfo` RacewayGeometryInfo +`rgInfo` [RacewayGeometryInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BearingRacewayGeometryInfo.cs) -`hiddenDoc` HiddenDocumentMeshBase +`hiddenDoc` [HiddenDocumentMeshBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) `zAxis` DirectionBase `matO` OMatrix -`bAddDoc` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bAddDoc` bool #### Returns - GeometryBase + [GeometryBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GeometryBase.cs) ### RBEName\(IConnectable\) @@ -126,5 +127,5 @@ protected override string RBEName(IConnectable con) #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddBearingToShaft.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddBearingToShaft.md index bde6d1d76e..ea09432ff5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddBearingToShaft.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddBearingToShaft.md @@ -1,4 +1,5 @@ -# Class AddBearingToShaft +# Class AddBearingToShaft + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,7 +10,7 @@ public class AddBearingToShaft : AddDesignerToShaftBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AddEntityBase](VM.Managed.DAFUL.Builder.GearTrain.AddEntityBase.md) ← [AddDesignerToShaftBase](VM.Managed.DAFUL.Builder.GearTrain.AddDesignerToShaftBase.md) ← [AddBearingToShaft](VM.Managed.DAFUL.Builder.GearTrain.AddBearingToShaft.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddDesignerToShaftBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddDesignerToShaftBase.md index 7ead9dd7f9..274a26e4b3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddDesignerToShaftBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddDesignerToShaftBase.md @@ -1,4 +1,5 @@ -# Class AddDesignerToShaftBase +# Class AddDesignerToShaftBase + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,7 +10,7 @@ public class AddDesignerToShaftBase : AddEntityBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AddEntityBase](VM.Managed.DAFUL.Builder.GearTrain.AddEntityBase.md) ← [AddDesignerToShaftBase](VM.Managed.DAFUL.Builder.GearTrain.AddDesignerToShaftBase.md) @@ -68,7 +69,7 @@ protected GearTrainDocument m_docGT #### Field Value - GearTrainDocument + [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) ### m\_docShaftSet @@ -78,7 +79,7 @@ protected HiddenShaftSetDocument m_docShaftSet #### Field Value - HiddenShaftSetDocument + [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddEntityBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddEntityBase.md index f2e0b27d9c..88d83f38b5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddEntityBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddEntityBase.md @@ -1,4 +1,5 @@ -# Class AddEntityBase +# Class AddEntityBase + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,7 +10,7 @@ public class AddEntityBase : IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AddEntityBase](VM.Managed.DAFUL.Builder.GearTrain.AddEntityBase.md) #### Derived @@ -47,7 +48,7 @@ protected bool m_bSuccess #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Properties @@ -59,7 +60,7 @@ public static bool AllowCheckError { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### BuildObject @@ -79,7 +80,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### Parameters @@ -89,7 +90,7 @@ public PickedResult[] Parameters { get; set; } #### Property Value - PickedResult\[\] + [PickedResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/PickedResult.cs)\[\] ## Methods @@ -121,25 +122,25 @@ protected bool CheckMissShaft(string strRP, double dOffset, double dDepth, doubl #### Parameters -`strRP` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRP` string -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double -`dDepth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDepth` double -`shaftLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`shaftLength` double -`strError` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strError` string -`strCaption` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCaption` string -`dTotalOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTotalOffset` double `typeRP` ReferencePointType #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CheckNodesetWithTreatRBE\(HiddenDocument, string\) @@ -149,13 +150,13 @@ protected bool CheckNodesetWithTreatRBE(HiddenDocument hiddenDoc, string strRBE) #### Parameters -`hiddenDoc` HiddenDocument +`hiddenDoc` [HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) -`strRBE` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRBE` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CheckOverlap\(List, double, double, string, string\) @@ -165,19 +166,19 @@ protected bool CheckOverlap(List lstOverlap, double dTotalOffset, doub #### Parameters -`lstOverlap` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\[\]\> +`lstOverlap` List -`dTotalOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTotalOffset` double -`dDepth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDepth` double -`strError` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strError` string -`strCaption` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCaption` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CheckSection\(HiddenShaftSetDocument, string\) @@ -187,13 +188,13 @@ protected bool CheckSection(HiddenShaftSetDocument hiddenDoc, string strCaption) #### Parameters -`hiddenDoc` HiddenShaftSetDocument +`hiddenDoc` [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) -`strCaption` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCaption` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetGearInfo\(GearTrainDocument, ref GearGeometryInfo, ref IGearSet, ref WebPropertyValue\) @@ -203,13 +204,13 @@ protected void GetGearInfo(GearTrainDocument docGT, ref GearGeometryInfo ggInfo, #### Parameters -`docGT` GearTrainDocument +`docGT` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) -`ggInfo` GearGeometryInfo +`ggInfo` [GearGeometryInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearGeometryInfo.cs) `gearSet` IGearSet -`webValue` WebPropertyValue +`webValue` [WebPropertyValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearInfo.cs) ### GetRollingBearingInfo\(GearTrainDocument, ref RacewayGeometryInfo, ref Bearing\) @@ -219,11 +220,11 @@ protected void GetRollingBearingInfo(GearTrainDocument docGT, ref RacewayGeometr #### Parameters -`docGT` GearTrainDocument +`docGT` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) -`geom_info` RacewayGeometryInfo +`geom_info` [RacewayGeometryInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BearingRacewayGeometryInfo.cs) -`bearing` Bearing +`bearing` [Bearing](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/Bearing.cs) ### GetSlidingBearingInfo\(GearTrainDocument, ref SBGeometryInfo, ref SlidingBearing, ref enSBContactType\) @@ -233,11 +234,11 @@ protected void GetSlidingBearingInfo(GearTrainDocument docGT, ref SBGeometryInfo #### Parameters -`docGT` GearTrainDocument +`docGT` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) -`geom_info` SBGeometryInfo +`geom_info` [SBGeometryInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/SlidingBearing.cs) -`bearing` SlidingBearing +`bearing` [SlidingBearing](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/SlidingBearing.cs) `enCType` enSBContactType @@ -251,7 +252,7 @@ protected void MatchGear(IGearSet gearSet, List lstRes) `gearSet` IGearSet -`lstRes` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstRes` List ### SetClearance\(ClearanceInfo\) @@ -261,7 +262,7 @@ protected void SetClearance(ClearanceInfo cInfo) #### Parameters -`cInfo` ClearanceInfo +`cInfo` [ClearanceInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GeometryInfoBase.cs) ### SetColor\(BuilderColor, BuilderColorGeom, AddedWebBuilder\) @@ -275,7 +276,7 @@ protected void SetColor(BuilderColor color, BuilderColorGeom gearsetBuilder, Add `gearsetBuilder` BuilderColorGeom -`webBuilder` AddedWebBuilder +`webBuilder` [AddedWebBuilder](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/WebBuilder.cs) ### Success\(\) @@ -285,7 +286,7 @@ public bool Success() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -295,9 +296,9 @@ public virtual bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddGearEntityBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddGearEntityBase.md index db2881dcc0..e8fb4c1a9e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddGearEntityBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddGearEntityBase.md @@ -1,4 +1,5 @@ -# Class AddGearEntityBase +# Class AddGearEntityBase + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,7 +10,7 @@ public abstract class AddGearEntityBase : AddEntityBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AddEntityBase](VM.Managed.DAFUL.Builder.GearTrain.AddEntityBase.md) ← [AddGearEntityBase](VM.Managed.DAFUL.Builder.GearTrain.AddGearEntityBase.md) @@ -68,7 +69,7 @@ protected void AddPairGeneralGear(List lstRes, IGearSet gearSet, B #### Parameters -`lstRes` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstRes` List `gearSet` IGearSet diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddGearToRBEInFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddGearToRBEInFE.md index f2fdd60ae4..8b2ccf27d5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddGearToRBEInFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddGearToRBEInFE.md @@ -1,4 +1,5 @@ -# Class AddGearToRBEInFE +# Class AddGearToRBEInFE + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,7 +10,7 @@ public class AddGearToRBEInFE : AddGearToRBEInMeshBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AddEntityBase](VM.Managed.DAFUL.Builder.GearTrain.AddEntityBase.md) ← [AddGearEntityBase](VM.Managed.DAFUL.Builder.GearTrain.AddGearEntityBase.md) ← [AddGearToRBEInMeshBase](VM.Managed.DAFUL.Builder.GearTrain.AddGearToRBEInMeshBase.md) ← @@ -76,19 +77,19 @@ protected virtual GearGeometryForRBEInFE CreateGearGeom(GearGeometryInfo gInfo, #### Parameters -`gInfo` GearGeometryInfo +`gInfo` [GearGeometryInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearGeometryInfo.cs) `con` IConnectable -`doc` HiddenDocumentMeshBase +`doc` [HiddenDocumentMeshBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) `dirZ` DirectionBase -`typeParent` GearBuilder.ParentType +`typeParent` [GearBuilder](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearBuilder.cs).[ParentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearBuilder.cs) `typeRP` ReferencePointType -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double `vecBearingOffset` Vector @@ -96,7 +97,7 @@ protected virtual GearGeometryForRBEInFE CreateGearGeom(GearGeometryInfo gInfo, #### Returns - GearGeometryForRBEInFE + [GearGeometryForRBEInFE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GeometryForRBEInFE.cs) ### GetGearBuilder\(GeometryBase\) @@ -106,11 +107,11 @@ protected override GearBuilderForRBEInFE GetGearBuilder(GeometryBase gearGeom) #### Parameters -`gearGeom` GeometryBase +`gearGeom` [GeometryBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GeometryBase.cs) #### Returns - GearBuilderForRBEInFE + [GearBuilderForRBEInFE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BuilderForRBEInFE.cs) ### GetTmpGearGeometry\(GearGeometryInfo, IConnectable, HiddenDocumentMeshBase, DirectionBase, ParentType, ReferencePointType, double, Vector, OMatrix\) @@ -120,19 +121,19 @@ protected override GeometryBase GetTmpGearGeometry(GearGeometryInfo ggInfo, ICon #### Parameters -`ggInfo` GearGeometryInfo +`ggInfo` [GearGeometryInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearGeometryInfo.cs) `con` IConnectable -`hiddenDoc` HiddenDocumentMeshBase +`hiddenDoc` [HiddenDocumentMeshBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) `zAxis` DirectionBase -`typeParent` GearBuilder.ParentType +`typeParent` [GearBuilder](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearBuilder.cs).[ParentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearBuilder.cs) `typeRP` ReferencePointType -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double `vecBearingOffset` Vector @@ -140,5 +141,5 @@ protected override GeometryBase GetTmpGearGeometry(GearGeometryInfo ggInfo, ICon #### Returns - GeometryBase + [GeometryBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GeometryBase.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddGearToRBEInMeshBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddGearToRBEInMeshBase.md index 737fbee0bd..43e7d633b0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddGearToRBEInMeshBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddGearToRBEInMeshBase.md @@ -1,4 +1,5 @@ -# Class AddGearToRBEInMeshBase +# Class AddGearToRBEInMeshBase + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,7 +10,7 @@ public abstract class AddGearToRBEInMeshBase : AddGearEntityBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AddEntityBase](VM.Managed.DAFUL.Builder.GearTrain.AddEntityBase.md) ← [AddGearEntityBase](VM.Managed.DAFUL.Builder.GearTrain.AddGearEntityBase.md) ← [AddGearToRBEInMeshBase](VM.Managed.DAFUL.Builder.GearTrain.AddGearToRBEInMeshBase.md) @@ -81,11 +82,11 @@ protected virtual GearBuilderForRBEInFE GetGearBuilder(GeometryBase gearGeom) #### Parameters -`gearGeom` GeometryBase +`gearGeom` [GeometryBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GeometryBase.cs) #### Returns - GearBuilderForRBEInFE + [GearBuilderForRBEInFE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BuilderForRBEInFE.cs) ### GetTmpGearGeometry\(GearGeometryInfo, IConnectable, HiddenDocumentMeshBase, DirectionBase, ParentType, ReferencePointType, double, Vector, OMatrix\) @@ -95,19 +96,19 @@ protected virtual GeometryBase GetTmpGearGeometry(GearGeometryInfo ggInfo, IConn #### Parameters -`ggInfo` GearGeometryInfo +`ggInfo` [GearGeometryInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearGeometryInfo.cs) `con` IConnectable -`hiddenDoc` HiddenDocumentMeshBase +`hiddenDoc` [HiddenDocumentMeshBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) `zAxis` DirectionBase -`typeParent` GearBuilder.ParentType +`typeParent` [GearBuilder](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearBuilder.cs).[ParentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearBuilder.cs) `typeRP` ReferencePointType -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double `vecBearingOffset` Vector @@ -115,7 +116,7 @@ protected virtual GeometryBase GetTmpGearGeometry(GearGeometryInfo ggInfo, IConn #### Returns - GeometryBase + [GeometryBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GeometryBase.cs) ### RBEName\(IConnectable\) @@ -129,7 +130,7 @@ protected virtual string RBEName(IConnectable con) #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Validate\(IList\) @@ -139,9 +140,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddGearToRBEInMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddGearToRBEInMeshFree.md index 499da95145..0f88abcbd6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddGearToRBEInMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddGearToRBEInMeshFree.md @@ -1,4 +1,5 @@ -# Class AddGearToRBEInMeshFree +# Class AddGearToRBEInMeshFree + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,7 +10,7 @@ public class AddGearToRBEInMeshFree : AddGearToRBEInMeshBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AddEntityBase](VM.Managed.DAFUL.Builder.GearTrain.AddEntityBase.md) ← [AddGearEntityBase](VM.Managed.DAFUL.Builder.GearTrain.AddGearEntityBase.md) ← [AddGearToRBEInMeshBase](VM.Managed.DAFUL.Builder.GearTrain.AddGearToRBEInMeshBase.md) ← @@ -76,19 +77,19 @@ protected virtual GearGeometryForRBEInMeshFree CreateGearGeom(GearGeometryInfo g #### Parameters -`gInfo` GearGeometryInfo +`gInfo` [GearGeometryInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearGeometryInfo.cs) `con` IConnectable -`doc` HiddenDocumentMeshBase +`doc` [HiddenDocumentMeshBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) `dirZ` DirectionBase -`typeParent` GearBuilder.ParentType +`typeParent` [GearBuilder](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearBuilder.cs).[ParentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearBuilder.cs) `typeRP` ReferencePointType -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double `vecBearingOffset` Vector @@ -96,7 +97,7 @@ protected virtual GearGeometryForRBEInMeshFree CreateGearGeom(GearGeometryInfo g #### Returns - GearGeometryForRBEInMeshFree + [GearGeometryForRBEInMeshFree](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GeometryForRBEInMeshFree.cs) ### GetGearBuilder\(GeometryBase\) @@ -106,11 +107,11 @@ protected override GearBuilderForRBEInFE GetGearBuilder(GeometryBase gearGeom) #### Parameters -`gearGeom` GeometryBase +`gearGeom` [GeometryBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GeometryBase.cs) #### Returns - GearBuilderForRBEInFE + [GearBuilderForRBEInFE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/BuilderForRBEInFE.cs) ### GetTmpGearGeometry\(GearGeometryInfo, IConnectable, HiddenDocumentMeshBase, DirectionBase, ParentType, ReferencePointType, double, Vector, OMatrix\) @@ -120,19 +121,19 @@ protected override GeometryBase GetTmpGearGeometry(GearGeometryInfo ggInfo, ICon #### Parameters -`ggInfo` GearGeometryInfo +`ggInfo` [GearGeometryInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearGeometryInfo.cs) `con` IConnectable -`hiddenDoc` HiddenDocumentMeshBase +`hiddenDoc` [HiddenDocumentMeshBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) `zAxis` DirectionBase -`typeParent` GearBuilder.ParentType +`typeParent` [GearBuilder](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearBuilder.cs).[ParentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearBuilder.cs) `typeRP` ReferencePointType -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double `vecBearingOffset` Vector @@ -140,7 +141,7 @@ protected override GeometryBase GetTmpGearGeometry(GearGeometryInfo ggInfo, ICon #### Returns - GeometryBase + [GeometryBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GeometryBase.cs) ### RBEName\(IConnectable\) @@ -154,5 +155,5 @@ protected override string RBEName(IConnectable con) #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddGearToShaft.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddGearToShaft.md index b8e1eafae8..4df1c921de 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddGearToShaft.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddGearToShaft.md @@ -1,4 +1,5 @@ -# Class AddGearToShaft +# Class AddGearToShaft + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,7 +10,7 @@ public class AddGearToShaft : AddGearEntityBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AddEntityBase](VM.Managed.DAFUL.Builder.GearTrain.AddEntityBase.md) ← [AddGearEntityBase](VM.Managed.DAFUL.Builder.GearTrain.AddGearEntityBase.md) ← [AddGearToShaft](VM.Managed.DAFUL.Builder.GearTrain.AddGearToShaft.md) @@ -80,21 +81,21 @@ protected virtual GearGeometry CreateGearGeom(GearGeometryInfo ggInfo, HiddenSha #### Parameters -`ggInfo` GearGeometryInfo +`ggInfo` [GearGeometryInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearGeometryInfo.cs) -`hiddenDoc` HiddenShaftSetDocument +`hiddenDoc` [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) `typeRP` ReferencePointType -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double `vecPoint` VectorBase -`typeParent` GearBuilder.ParentType +`typeParent` [GearBuilder](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearBuilder.cs).[ParentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearBuilder.cs) `vecBearingOffset` Vector #### Returns - GearGeometry + [GearGeometry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearGeometry.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddMeasurePointToShaft.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddMeasurePointToShaft.md index 1126e17990..9963188154 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddMeasurePointToShaft.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddMeasurePointToShaft.md @@ -1,4 +1,5 @@ -# Class AddMeasurePointToShaft +# Class AddMeasurePointToShaft + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,10 +10,10 @@ public class AddMeasurePointToShaft : AddPointEntityToShaft, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [AddPointEntityToShaft](VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToShaft\-1.md) ← [AddMeasurePointToShaft](VM.Managed.DAFUL.Builder.GearTrain.AddMeasurePointToShaft.md) @@ -30,29 +31,29 @@ IBuilder [AddPointEntityToShaft.CheckContainsEntity\(HiddenShaftSetDocument\)](VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToShaft\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_AddPointEntityToShaft\_1\_CheckContainsEntity\_VM\_Managed\_DAFUL\_GearTrain\_HiddenShaftSetDocument\_), [AddPointEntityToShaft.OnPostAddDoc\(ObjectBase\)](VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToShaft\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_AddPointEntityToShaft\_1\_OnPostAddDoc\_VM\_Managed\_ObjectBase\_), [AddPointEntityToShaft.InputArray](VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToShaft\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_AddPointEntityToShaft\_1\_InputArray), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -78,11 +79,11 @@ protected override bool CheckContainsEntity(HiddenShaftSetDocument hiddenDoc) #### Parameters -`hiddenDoc` HiddenShaftSetDocument +`hiddenDoc` [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OnPostBuild\(ObjectBase, Document\) @@ -98,5 +99,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToRBE-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToRBE-1.md index 9aac25cfa5..d4c770b825 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToRBE-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToRBE-1.md @@ -1,4 +1,5 @@ -# Class AddPointEntityToRBE +# Class AddPointEntityToRBE + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -13,10 +14,10 @@ public abstract class AddPointEntityToRBE : BuilderNamed, IBuilder where T #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [AddPointEntityToRBE](VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToRBE\-1.md) #### Implements @@ -25,29 +26,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -73,7 +74,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### RBEConnectable @@ -95,11 +96,11 @@ protected string RBEName(HiddenDocumentMeshBase hiddenMeshDoc) #### Parameters -`hiddenMeshDoc` HiddenDocumentMeshBase +`hiddenMeshDoc` [HiddenDocumentMeshBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Validate\(IList\) @@ -109,9 +110,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToShaft-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToShaft-1.md index 1b12f460cb..cb4d872a13 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToShaft-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToShaft-1.md @@ -1,4 +1,5 @@ -# Class AddPointEntityToShaft +# Class AddPointEntityToShaft + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -13,10 +14,10 @@ public abstract class AddPointEntityToShaft : BuilderNamed, IBuilder where #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [AddPointEntityToShaft](VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToShaft\-1.md) #### Implements @@ -25,29 +26,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -73,7 +74,7 @@ protected double m_dOffset #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_dReferPoint @@ -83,7 +84,7 @@ protected double m_dReferPoint #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_dWitdh @@ -93,7 +94,7 @@ protected double m_dWitdh #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_typeRef @@ -103,7 +104,7 @@ protected PointEntityOnShaftSet.ReferenceType m_typeRef #### Field Value - PointEntityOnShaftSet.ReferenceType + [PointEntityOnShaftSet](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/PointEntityOnShaftSet.cs).[ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/PointEntityOnShaftSet.cs) ## Properties @@ -115,7 +116,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -127,11 +128,11 @@ protected virtual bool CheckContainsEntity(HiddenShaftSetDocument hiddenDoc) #### Parameters -`hiddenDoc` HiddenShaftSetDocument +`hiddenDoc` [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CheckOnShaftSet\(Document\) @@ -145,7 +146,7 @@ protected bool CheckOnShaftSet(Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OnPostAddDoc\(ObjectBase\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddPointLoadToRBE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddPointLoadToRBE.md index a1196aad23..ee5a93bc0c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddPointLoadToRBE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddPointLoadToRBE.md @@ -1,4 +1,5 @@ -# Class AddPointLoadToRBE +# Class AddPointLoadToRBE + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,10 +10,10 @@ public class AddPointLoadToRBE : AddPointEntityToRBE, IBui #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [AddPointEntityToRBE](VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToRBE\-1.md) ← [AddPointLoadToRBE](VM.Managed.DAFUL.Builder.GearTrain.AddPointLoadToRBE.md) @@ -26,29 +27,29 @@ IBuilder [AddPointEntityToRBE.Validate\(IList\)](VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToRBE\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_AddPointEntityToRBE\_1\_Validate\_System\_Collections\_Generic\_IList\_System\_String\_\_), [AddPointEntityToRBE.RBEConnectable](VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToRBE\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_AddPointEntityToRBE\_1\_RBEConnectable), [AddPointEntityToRBE.InputArray](VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToRBE\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_AddPointEntityToRBE\_1\_InputArray), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -80,5 +81,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddPointloadToShaft.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddPointloadToShaft.md index e487d6f800..e526358df8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddPointloadToShaft.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddPointloadToShaft.md @@ -1,4 +1,5 @@ -# Class AddPointloadToShaft +# Class AddPointloadToShaft + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,10 +10,10 @@ public class AddPointloadToShaft : AddPointEntityToShaft, IBuil #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [AddPointEntityToShaft](VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToShaft\-1.md) ← [AddPointloadToShaft](VM.Managed.DAFUL.Builder.GearTrain.AddPointloadToShaft.md) @@ -30,29 +31,29 @@ IBuilder [AddPointEntityToShaft.CheckContainsEntity\(HiddenShaftSetDocument\)](VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToShaft\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_AddPointEntityToShaft\_1\_CheckContainsEntity\_VM\_Managed\_DAFUL\_GearTrain\_HiddenShaftSetDocument\_), [AddPointEntityToShaft.OnPostAddDoc\(ObjectBase\)](VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToShaft\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_AddPointEntityToShaft\_1\_OnPostAddDoc\_VM\_Managed\_ObjectBase\_), [AddPointEntityToShaft.InputArray](VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToShaft\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_AddPointEntityToShaft\_1\_InputArray), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -78,11 +79,11 @@ protected override bool CheckContainsEntity(HiddenShaftSetDocument hiddenDoc) #### Parameters -`hiddenDoc` HiddenShaftSetDocument +`hiddenDoc` [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OnPostBuild\(ObjectBase, Document\) @@ -98,5 +99,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddPowerLoadToRBE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddPowerLoadToRBE.md index 2b61f428f9..7125678e62 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddPowerLoadToRBE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddPowerLoadToRBE.md @@ -1,4 +1,5 @@ -# Class AddPowerLoadToRBE +# Class AddPowerLoadToRBE + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,10 +10,10 @@ public class AddPowerLoadToRBE : AddPointEntityToRBE, IBui #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [AddPointEntityToRBE](VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToRBE\-1.md) ← [AddPowerLoadToRBE](VM.Managed.DAFUL.Builder.GearTrain.AddPowerLoadToRBE.md) @@ -26,29 +27,29 @@ IBuilder [AddPointEntityToRBE.Validate\(IList\)](VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToRBE\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_AddPointEntityToRBE\_1\_Validate\_System\_Collections\_Generic\_IList\_System\_String\_\_), [AddPointEntityToRBE.RBEConnectable](VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToRBE\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_AddPointEntityToRBE\_1\_RBEConnectable), [AddPointEntityToRBE.InputArray](VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToRBE\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_AddPointEntityToRBE\_1\_InputArray), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -80,5 +81,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddPowerloadToShaft.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddPowerloadToShaft.md index 2b2c912054..6b2478f012 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddPowerloadToShaft.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddPowerloadToShaft.md @@ -1,4 +1,5 @@ -# Class AddPowerloadToShaft +# Class AddPowerloadToShaft + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,10 +10,10 @@ public class AddPowerloadToShaft : AddPointEntityToShaft, IBuil #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [AddPointEntityToShaft](VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToShaft\-1.md) ← [AddPowerloadToShaft](VM.Managed.DAFUL.Builder.GearTrain.AddPowerloadToShaft.md) @@ -30,29 +31,29 @@ IBuilder [AddPointEntityToShaft.CheckContainsEntity\(HiddenShaftSetDocument\)](VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToShaft\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_AddPointEntityToShaft\_1\_CheckContainsEntity\_VM\_Managed\_DAFUL\_GearTrain\_HiddenShaftSetDocument\_), [AddPointEntityToShaft.OnPostAddDoc\(ObjectBase\)](VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToShaft\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_AddPointEntityToShaft\_1\_OnPostAddDoc\_VM\_Managed\_ObjectBase\_), [AddPointEntityToShaft.InputArray](VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToShaft\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_AddPointEntityToShaft\_1\_InputArray), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -78,11 +79,11 @@ protected override bool CheckContainsEntity(HiddenShaftSetDocument hiddenDoc) #### Parameters -`hiddenDoc` HiddenShaftSetDocument +`hiddenDoc` [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OnPostBuild\(ObjectBase, Document\) @@ -98,5 +99,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddRackToRBEInFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddRackToRBEInFE.md index 371c65edc8..647635b0f0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddRackToRBEInFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddRackToRBEInFE.md @@ -1,4 +1,5 @@ -# Class AddRackToRBEInFE +# Class AddRackToRBEInFE + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,7 +10,7 @@ public class AddRackToRBEInFE : AddGearToRBEInFE, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AddEntityBase](VM.Managed.DAFUL.Builder.GearTrain.AddEntityBase.md) ← [AddGearEntityBase](VM.Managed.DAFUL.Builder.GearTrain.AddGearEntityBase.md) ← [AddGearToRBEInMeshBase](VM.Managed.DAFUL.Builder.GearTrain.AddGearToRBEInMeshBase.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddRackToRBEInMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddRackToRBEInMeshFree.md index 2c986c2a0a..f5760d4cbe 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddRackToRBEInMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddRackToRBEInMeshFree.md @@ -1,4 +1,5 @@ -# Class AddRackToRBEInMeshFree +# Class AddRackToRBEInMeshFree + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,7 +10,7 @@ public class AddRackToRBEInMeshFree : AddGearToRBEInMeshFree, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AddEntityBase](VM.Managed.DAFUL.Builder.GearTrain.AddEntityBase.md) ← [AddGearEntityBase](VM.Managed.DAFUL.Builder.GearTrain.AddGearEntityBase.md) ← [AddGearToRBEInMeshBase](VM.Managed.DAFUL.Builder.GearTrain.AddGearToRBEInMeshBase.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddRackToShaft.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddRackToShaft.md index a963d0f17e..8aa1135409 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddRackToShaft.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddRackToShaft.md @@ -1,4 +1,5 @@ -# Class AddRackToShaft +# Class AddRackToShaft + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,7 +10,7 @@ public class AddRackToShaft : AddGearToShaft, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AddEntityBase](VM.Managed.DAFUL.Builder.GearTrain.AddEntityBase.md) ← [AddGearEntityBase](VM.Managed.DAFUL.Builder.GearTrain.AddGearEntityBase.md) ← [AddGearToShaft](VM.Managed.DAFUL.Builder.GearTrain.AddGearToShaft.md) ← @@ -79,21 +80,21 @@ protected override GearGeometry CreateGearGeom(GearGeometryInfo ggInfo, HiddenSh #### Parameters -`ggInfo` GearGeometryInfo +`ggInfo` [GearGeometryInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearGeometryInfo.cs) -`hiddenDoc` HiddenShaftSetDocument +`hiddenDoc` [HiddenShaftSetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenShaftSetDocument.cs) `typeRP` ReferencePointType -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double `vecPoint` VectorBase -`typeParent` GearBuilder.ParentType +`typeParent` [GearBuilder](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearBuilder.cs).[ParentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearBuilder.cs) `vecBearingOffset` Vector #### Returns - GearGeometry + [GearGeometry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearGeometry.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddSlidingBearingToRBEInFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddSlidingBearingToRBEInFE.md index 6b1fc7499b..c01bac18f8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddSlidingBearingToRBEInFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddSlidingBearingToRBEInFE.md @@ -1,4 +1,5 @@ -# Class AddSlidingBearingToRBEInFE +# Class AddSlidingBearingToRBEInFE + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,7 +10,7 @@ public class AddSlidingBearingToRBEInFE : AddSlidingBearingToRBEInMeshBase, IBui #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AddEntityBase](VM.Managed.DAFUL.Builder.GearTrain.AddEntityBase.md) ← [AddSlidingBearingToRBEInMeshBase](VM.Managed.DAFUL.Builder.GearTrain.AddSlidingBearingToRBEInMeshBase.md) ← [AddSlidingBearingToRBEInFE](VM.Managed.DAFUL.Builder.GearTrain.AddSlidingBearingToRBEInFE.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddSlidingBearingToRBEInMeshBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddSlidingBearingToRBEInMeshBase.md index 35ab86529f..cf6c2046be 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddSlidingBearingToRBEInMeshBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddSlidingBearingToRBEInMeshBase.md @@ -1,4 +1,5 @@ -# Class AddSlidingBearingToRBEInMeshBase +# Class AddSlidingBearingToRBEInMeshBase + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,7 +10,7 @@ public abstract class AddSlidingBearingToRBEInMeshBase : AddEntityBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AddEntityBase](VM.Managed.DAFUL.Builder.GearTrain.AddEntityBase.md) ← [AddSlidingBearingToRBEInMeshBase](VM.Managed.DAFUL.Builder.GearTrain.AddSlidingBearingToRBEInMeshBase.md) @@ -78,5 +79,5 @@ protected virtual string RBEName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddSlidingBearingToRBEInMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddSlidingBearingToRBEInMeshFree.md index 2cfdc9e395..97e7f093f9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddSlidingBearingToRBEInMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddSlidingBearingToRBEInMeshFree.md @@ -1,4 +1,5 @@ -# Class AddSlidingBearingToRBEInMeshFree +# Class AddSlidingBearingToRBEInMeshFree + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,7 +10,7 @@ public class AddSlidingBearingToRBEInMeshFree : AddSlidingBearingToRBEInMeshBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AddEntityBase](VM.Managed.DAFUL.Builder.GearTrain.AddEntityBase.md) ← [AddSlidingBearingToRBEInMeshBase](VM.Managed.DAFUL.Builder.GearTrain.AddSlidingBearingToRBEInMeshBase.md) ← [AddSlidingBearingToRBEInMeshFree](VM.Managed.DAFUL.Builder.GearTrain.AddSlidingBearingToRBEInMeshFree.md) @@ -66,7 +67,7 @@ protected override string RBEName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddSlidingBearingToShaft.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddSlidingBearingToShaft.md index 8bb6b1352c..2aac124b79 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddSlidingBearingToShaft.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddSlidingBearingToShaft.md @@ -1,4 +1,5 @@ -# Class AddSlidingBearingToShaft +# Class AddSlidingBearingToShaft + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,7 +10,7 @@ public class AddSlidingBearingToShaft : AddDesignerToShaftBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AddEntityBase](VM.Managed.DAFUL.Builder.GearTrain.AddEntityBase.md) ← [AddDesignerToShaftBase](VM.Managed.DAFUL.Builder.GearTrain.AddDesignerToShaftBase.md) ← [AddSlidingBearingToShaft](VM.Managed.DAFUL.Builder.GearTrain.AddSlidingBearingToShaft.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddUnbalanceMassToRBE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddUnbalanceMassToRBE.md index 3027be6447..8b416d9039 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddUnbalanceMassToRBE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddUnbalanceMassToRBE.md @@ -1,4 +1,5 @@ -# Class AddUnbalanceMassToRBE +# Class AddUnbalanceMassToRBE + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,10 +10,10 @@ public class AddUnbalanceMassToRBE : AddPointEntityToRBE ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [AddPointEntityToRBE](VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToRBE\-1.md) ← [AddUnbalanceMassToRBE](VM.Managed.DAFUL.Builder.GearTrain.AddUnbalanceMassToRBE.md) @@ -26,29 +27,29 @@ IBuilder [AddPointEntityToRBE.Validate\(IList\)](VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToRBE\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_AddPointEntityToRBE\_1\_Validate\_System\_Collections\_Generic\_IList\_System\_String\_\_), [AddPointEntityToRBE.RBEConnectable](VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToRBE\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_AddPointEntityToRBE\_1\_RBEConnectable), [AddPointEntityToRBE.InputArray](VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToRBE\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_AddPointEntityToRBE\_1\_InputArray), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -80,5 +81,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddUnbalanceMassToShaft.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddUnbalanceMassToShaft.md index 9e6396a8cd..bf06c3d2a9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddUnbalanceMassToShaft.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.AddUnbalanceMassToShaft.md @@ -1,4 +1,5 @@ -# Class AddUnbalanceMassToShaft +# Class AddUnbalanceMassToShaft + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,10 +10,10 @@ public class AddUnbalanceMassToShaft : AddPointEntityToShaft ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [AddPointEntityToShaft](VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToShaft\-1.md) ← [AddUnbalanceMassToShaft](VM.Managed.DAFUL.Builder.GearTrain.AddUnbalanceMassToShaft.md) @@ -30,29 +31,29 @@ IBuilder [AddPointEntityToShaft.CheckContainsEntity\(HiddenShaftSetDocument\)](VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToShaft\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_AddPointEntityToShaft\_1\_CheckContainsEntity\_VM\_Managed\_DAFUL\_GearTrain\_HiddenShaftSetDocument\_), [AddPointEntityToShaft.OnPostAddDoc\(ObjectBase\)](VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToShaft\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_AddPointEntityToShaft\_1\_OnPostAddDoc\_VM\_Managed\_ObjectBase\_), [AddPointEntityToShaft.InputArray](VM.Managed.DAFUL.Builder.GearTrain.AddPointEntityToShaft\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_AddPointEntityToShaft\_1\_InputArray), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -84,5 +85,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.Bearing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.Bearing.md index b111260da8..7b36ace80f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.Bearing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.Bearing.md @@ -1,4 +1,5 @@ -# Class Bearing +# Class Bearing + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -11,10 +12,10 @@ public class Bearing : BearingBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [OpenDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md) ← [BearingBase](VM.Managed.DAFUL.Builder.GearTrain.BearingBase\-1.md) ← [Bearing](VM.Managed.DAFUL.Builder.GearTrain.Bearing.md) @@ -33,29 +34,29 @@ IBuilder [OpenDesigner.HiddenDocument](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_HiddenDocument), [OpenDesigner.AlwaysDesignerOpen](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_AlwaysDesignerOpen), [OpenDesigner.ShowDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_ShowDesigner), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -81,7 +82,7 @@ public string InnerRacewayColor { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -99,5 +100,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.BearingBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.BearingBase-1.md index 87e380fc85..b52ab0611a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.BearingBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.BearingBase-1.md @@ -1,4 +1,5 @@ -# Class BearingBase +# Class BearingBase + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -13,10 +14,10 @@ public abstract class BearingBase : OpenDesigner, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [OpenDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md) ← [BearingBase](VM.Managed.DAFUL.Builder.GearTrain.BearingBase\-1.md) @@ -31,29 +32,29 @@ IBuilder [OpenDesigner.HiddenDocument](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_HiddenDocument), [OpenDesigner.AlwaysDesignerOpen](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_AlwaysDesignerOpen), [OpenDesigner.ShowDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_ShowDesigner), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -79,7 +80,7 @@ public string Color { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### InputArray @@ -89,7 +90,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ConceptCarrier.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ConceptCarrier.md index 8cdee3ec64..4dd53a73d3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ConceptCarrier.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ConceptCarrier.md @@ -1,4 +1,5 @@ -# Class ConceptCarrier +# Class ConceptCarrier + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,10 +10,10 @@ public class ConceptCarrier : ShaftSetBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [OpenDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md) ← [ShaftSetBase](VM.Managed.DAFUL.Builder.GearTrain.ShaftSetBase.md) ← [ConceptCarrier](VM.Managed.DAFUL.Builder.GearTrain.ConceptCarrier.md) @@ -28,29 +29,29 @@ IBuilder [OpenDesigner.HiddenDocument](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_HiddenDocument), [OpenDesigner.AlwaysDesignerOpen](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_AlwaysDesignerOpen), [OpenDesigner.ShowDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_ShowDesigner), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -76,7 +77,7 @@ protected override bool AddToDoc { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Color @@ -86,7 +87,7 @@ public string Color { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### InputArray @@ -96,7 +97,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -108,7 +109,7 @@ public static void MakeBearingBuilder(Bearing br, ref Bearing bearing) #### Parameters -`br` Bearing +`br` [Bearing](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/Bearing.cs) `bearing` [Bearing](VM.Managed.DAFUL.Builder.GearTrain.Bearing.md) @@ -126,5 +127,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.Force.MotorEMForce.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.Force.MotorEMForce.md index 3c31d8f26b..f169b88135 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.Force.MotorEMForce.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.Force.MotorEMForce.md @@ -1,4 +1,5 @@ -# Class MotorEMForce +# Class MotorEMForce + Namespace: [VM.Managed.DAFUL.Builder.GearTrain.Force](VM.Managed.DAFUL.Builder.GearTrain.Force.md) Assembly: VMBldGearTrain.dll @@ -9,10 +10,10 @@ public class MotorEMForce : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [MotorEMForce](VM.Managed.DAFUL.Builder.GearTrain.Force.MotorEMForce.md) #### Derived @@ -26,29 +27,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -74,7 +75,7 @@ protected virtual PropertyMotorEMForce.FileFormatType FileFormatType { get; } #### Property Value - PropertyMotorEMForce.FileFormatType + [PropertyMotorEMForce](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/MotorEMForce.cs).[FileFormatType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/MotorEMForce.cs) ### Position @@ -152,5 +153,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.Force.MotorEMForceForAM.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.Force.MotorEMForceForAM.md index 9d13befa86..90355410c4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.Force.MotorEMForceForAM.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.Force.MotorEMForceForAM.md @@ -1,4 +1,5 @@ -# Class MotorEMForceForAM +# Class MotorEMForceForAM + Namespace: [VM.Managed.DAFUL.Builder.GearTrain.Force](VM.Managed.DAFUL.Builder.GearTrain.Force.md) Assembly: VMBldGearTrain.dll @@ -9,10 +10,10 @@ public class MotorEMForceForAM : MotorEMForce, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [MotorEMForce](VM.Managed.DAFUL.Builder.GearTrain.Force.MotorEMForce.md) ← [MotorEMForceForAM](VM.Managed.DAFUL.Builder.GearTrain.Force.MotorEMForceForAM.md) @@ -30,29 +31,29 @@ IBuilder [MotorEMForce.XAxis](VM.Managed.DAFUL.Builder.GearTrain.Force.MotorEMForce.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_Force\_MotorEMForce\_XAxis), [MotorEMForce.ReferenceOfRotational](VM.Managed.DAFUL.Builder.GearTrain.Force.MotorEMForce.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_Force\_MotorEMForce\_ReferenceOfRotational), [MotorEMForce.FileFormatType](VM.Managed.DAFUL.Builder.GearTrain.Force.MotorEMForce.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_Force\_MotorEMForce\_FileFormatType), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -78,5 +79,5 @@ protected override PropertyMotorEMForce.FileFormatType FileFormatType { get; } #### Property Value - PropertyMotorEMForce.FileFormatType + [PropertyMotorEMForce](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/MotorEMForce.cs).[FileFormatType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/MotorEMForce.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.Force.MotorEMForceForJMAG.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.Force.MotorEMForceForJMAG.md index 17b5734ffe..284daae181 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.Force.MotorEMForceForJMAG.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.Force.MotorEMForceForJMAG.md @@ -1,4 +1,5 @@ -# Class MotorEMForceForJMAG +# Class MotorEMForceForJMAG + Namespace: [VM.Managed.DAFUL.Builder.GearTrain.Force](VM.Managed.DAFUL.Builder.GearTrain.Force.md) Assembly: VMBldGearTrain.dll @@ -9,10 +10,10 @@ public class MotorEMForceForJMAG : MotorEMForce, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [MotorEMForce](VM.Managed.DAFUL.Builder.GearTrain.Force.MotorEMForce.md) ← [MotorEMForceForJMAG](VM.Managed.DAFUL.Builder.GearTrain.Force.MotorEMForceForJMAG.md) @@ -30,29 +31,29 @@ IBuilder [MotorEMForce.XAxis](VM.Managed.DAFUL.Builder.GearTrain.Force.MotorEMForce.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_Force\_MotorEMForce\_XAxis), [MotorEMForce.ReferenceOfRotational](VM.Managed.DAFUL.Builder.GearTrain.Force.MotorEMForce.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_Force\_MotorEMForce\_ReferenceOfRotational), [MotorEMForce.FileFormatType](VM.Managed.DAFUL.Builder.GearTrain.Force.MotorEMForce.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_Force\_MotorEMForce\_FileFormatType), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -78,5 +79,5 @@ protected override PropertyMotorEMForce.FileFormatType FileFormatType { get; } #### Property Value - PropertyMotorEMForce.FileFormatType + [PropertyMotorEMForce](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/MotorEMForce.cs).[FileFormatType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/MotorEMForce.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.Force.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.Force.md index c3febd4ac0..30a8921e11 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.Force.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.Force.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Builder.GearTrain.Force +# Namespace VM.Managed.DAFUL.Builder.GearTrain.Force + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetBase-1.md index fbd7c8cb73..f89b48d711 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetBase-1.md @@ -1,4 +1,5 @@ -# Class GearSetBase +# Class GearSetBase + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -13,10 +14,10 @@ public abstract class GearSetBase : OpenDesigner, IBuilder where T : Objec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [OpenDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md) ← [GearSetBase](VM.Managed.DAFUL.Builder.GearTrain.GearSetBase\-1.md) @@ -31,29 +32,29 @@ IBuilder [OpenDesigner.HiddenDocument](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_HiddenDocument), [OpenDesigner.AlwaysDesignerOpen](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_AlwaysDesignerOpen), [OpenDesigner.ShowDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_ShowDesigner), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -79,7 +80,7 @@ protected bool m_bUseAdvanced #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_bUseKissSoftInterface @@ -89,7 +90,7 @@ protected bool m_bUseKissSoftInterface #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Properties @@ -101,7 +102,7 @@ protected virtual string[] CenterDistance { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### Color @@ -111,7 +112,7 @@ public string Color { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### FaceWidth @@ -121,7 +122,7 @@ protected virtual string[] FaceWidth { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### GetName @@ -131,7 +132,7 @@ protected virtual string GetName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### InputArray @@ -141,7 +142,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### NumberOfGear @@ -151,7 +152,7 @@ protected virtual int NumberOfGear { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfTeeth @@ -161,7 +162,7 @@ protected virtual string[] NumberOfTeeth { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### ProfileShift @@ -171,7 +172,7 @@ protected virtual string[] ProfileShift { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -199,7 +200,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -209,9 +210,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetCrossHelical.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetCrossHelical.md index ea8026ff17..5952a137fa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetCrossHelical.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetCrossHelical.md @@ -1,4 +1,5 @@ -# Class GearSetCrossHelical +# Class GearSetCrossHelical + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,10 +10,10 @@ public class GearSetCrossHelical : GearSetBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [OpenDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md) ← [GearSetBase](VM.Managed.DAFUL.Builder.GearTrain.GearSetBase\-1.md) ← [GearSetCrossHelical](VM.Managed.DAFUL.Builder.GearTrain.GearSetCrossHelical.md) @@ -41,29 +42,29 @@ IBuilder [OpenDesigner.HiddenDocument](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_HiddenDocument), [OpenDesigner.AlwaysDesignerOpen](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_AlwaysDesignerOpen), [OpenDesigner.ShowDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_ShowDesigner), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -89,7 +90,7 @@ protected virtual string[] CrossAxisAngle { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -107,7 +108,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -117,9 +118,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetCustom.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetCustom.md index a8bc21cc37..b19243ae6c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetCustom.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetCustom.md @@ -1,4 +1,5 @@ -# Class GearSetCustom +# Class GearSetCustom + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,10 +10,10 @@ public class GearSetCustom : GearSetBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [OpenDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md) ← [GearSetBase](VM.Managed.DAFUL.Builder.GearTrain.GearSetBase\-1.md) ← [GearSetCustom](VM.Managed.DAFUL.Builder.GearTrain.GearSetCustom.md) @@ -41,29 +42,29 @@ IBuilder [OpenDesigner.HiddenDocument](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_HiddenDocument), [OpenDesigner.AlwaysDesignerOpen](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_AlwaysDesignerOpen), [OpenDesigner.ShowDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_ShowDesigner), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -95,7 +96,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -105,9 +106,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetCycloidPin.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetCycloidPin.md index 073d886d6c..143a63917a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetCycloidPin.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetCycloidPin.md @@ -1,4 +1,5 @@ -# Class GearSetCycloidPin +# Class GearSetCycloidPin + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,10 +10,10 @@ public class GearSetCycloidPin : GearSetBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [OpenDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md) ← [GearSetBase](VM.Managed.DAFUL.Builder.GearTrain.GearSetBase\-1.md) ← [GearSetCycloidPin](VM.Managed.DAFUL.Builder.GearTrain.GearSetCycloidPin.md) @@ -41,29 +42,29 @@ IBuilder [OpenDesigner.HiddenDocument](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_HiddenDocument), [OpenDesigner.AlwaysDesignerOpen](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_AlwaysDesignerOpen), [OpenDesigner.ShowDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_ShowDesigner), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -89,7 +90,7 @@ protected string CycloidProfile { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Eccentricity @@ -99,7 +100,7 @@ protected string Eccentricity { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### PinDiameter @@ -109,7 +110,7 @@ protected string PinDiameter { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### PinPitch @@ -119,7 +120,7 @@ protected string PinPitch { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -137,7 +138,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -147,9 +148,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetExternal.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetExternal.md index 90dfd8f5dd..f7d6507520 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetExternal.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetExternal.md @@ -1,4 +1,5 @@ -# Class GearSetExternal +# Class GearSetExternal + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,10 +10,10 @@ public class GearSetExternal : GearSetBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [OpenDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md) ← [GearSetBase](VM.Managed.DAFUL.Builder.GearTrain.GearSetBase\-1.md) ← [GearSetExternal](VM.Managed.DAFUL.Builder.GearTrain.GearSetExternal.md) @@ -41,29 +42,29 @@ IBuilder [OpenDesigner.HiddenDocument](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_HiddenDocument), [OpenDesigner.AlwaysDesignerOpen](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_AlwaysDesignerOpen), [OpenDesigner.ShowDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_ShowDesigner), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -95,5 +96,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetInternal.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetInternal.md index db145837d1..13dd20c26c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetInternal.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetInternal.md @@ -1,4 +1,5 @@ -# Class GearSetInternal +# Class GearSetInternal + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,10 +10,10 @@ public class GearSetInternal : GearSetBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [OpenDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md) ← [GearSetBase](VM.Managed.DAFUL.Builder.GearTrain.GearSetBase\-1.md) ← [GearSetInternal](VM.Managed.DAFUL.Builder.GearTrain.GearSetInternal.md) @@ -41,29 +42,29 @@ IBuilder [OpenDesigner.HiddenDocument](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_HiddenDocument), [OpenDesigner.AlwaysDesignerOpen](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_AlwaysDesignerOpen), [OpenDesigner.ShowDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_ShowDesigner), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -95,7 +96,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -105,9 +106,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetPlanetary.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetPlanetary.md index ffdf92e839..0dd14843f3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetPlanetary.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetPlanetary.md @@ -1,4 +1,5 @@ -# Class GearSetPlanetary +# Class GearSetPlanetary + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,10 +10,10 @@ public class GearSetPlanetary : GearSetBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [OpenDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md) ← [GearSetBase](VM.Managed.DAFUL.Builder.GearTrain.GearSetBase\-1.md) ← [GearSetPlanetary](VM.Managed.DAFUL.Builder.GearTrain.GearSetPlanetary.md) @@ -41,29 +42,29 @@ IBuilder [OpenDesigner.HiddenDocument](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_HiddenDocument), [OpenDesigner.AlwaysDesignerOpen](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_AlwaysDesignerOpen), [OpenDesigner.ShowDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_ShowDesigner), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -89,7 +90,7 @@ protected override string[] CenterDistance { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### FaceWidth @@ -99,7 +100,7 @@ protected override string[] FaceWidth { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### GetName @@ -109,7 +110,7 @@ protected override string GetName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NumberOfGear @@ -119,7 +120,7 @@ protected override int NumberOfGear { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfTeeth @@ -129,7 +130,7 @@ protected override string[] NumberOfTeeth { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### ProfileShift @@ -139,7 +140,7 @@ protected override string[] ProfileShift { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -157,7 +158,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -167,9 +168,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetPlanetaryDP.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetPlanetaryDP.md index 06c640151d..bd62360f44 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetPlanetaryDP.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetPlanetaryDP.md @@ -1,4 +1,5 @@ -# Class GearSetPlanetaryDP +# Class GearSetPlanetaryDP + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,10 +10,10 @@ public class GearSetPlanetaryDP : GearSetBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [OpenDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md) ← [GearSetBase](VM.Managed.DAFUL.Builder.GearTrain.GearSetBase\-1.md) ← [GearSetPlanetaryDP](VM.Managed.DAFUL.Builder.GearTrain.GearSetPlanetaryDP.md) @@ -41,29 +42,29 @@ IBuilder [OpenDesigner.HiddenDocument](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_HiddenDocument), [OpenDesigner.AlwaysDesignerOpen](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_AlwaysDesignerOpen), [OpenDesigner.ShowDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_ShowDesigner), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -89,7 +90,7 @@ protected override string[] CenterDistance { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### FaceWidth @@ -99,7 +100,7 @@ protected override string[] FaceWidth { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### GetName @@ -109,7 +110,7 @@ protected override string GetName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NumberOfGear @@ -119,7 +120,7 @@ protected override int NumberOfGear { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfTeeth @@ -129,7 +130,7 @@ protected override string[] NumberOfTeeth { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### ProfileShift @@ -139,7 +140,7 @@ protected override string[] ProfileShift { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -157,7 +158,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -167,9 +168,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetPlanetaryTS.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetPlanetaryTS.md index c38ffb53fc..c5cfe79865 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetPlanetaryTS.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetPlanetaryTS.md @@ -1,4 +1,5 @@ -# Class GearSetPlanetaryTS +# Class GearSetPlanetaryTS + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,10 +10,10 @@ public class GearSetPlanetaryTS : GearSetBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [OpenDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md) ← [GearSetBase](VM.Managed.DAFUL.Builder.GearTrain.GearSetBase\-1.md) ← [GearSetPlanetaryTS](VM.Managed.DAFUL.Builder.GearTrain.GearSetPlanetaryTS.md) @@ -41,29 +42,29 @@ IBuilder [OpenDesigner.HiddenDocument](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_HiddenDocument), [OpenDesigner.AlwaysDesignerOpen](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_AlwaysDesignerOpen), [OpenDesigner.ShowDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_ShowDesigner), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -89,7 +90,7 @@ protected override string GetName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NumberOfGearDouble @@ -99,7 +100,7 @@ protected int NumberOfGearDouble { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfGearSingle @@ -109,7 +110,7 @@ protected int NumberOfGearSingle { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -127,7 +128,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -137,9 +138,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetRackAndPinion.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetRackAndPinion.md index 13fda80114..bac48d74aa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetRackAndPinion.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetRackAndPinion.md @@ -1,4 +1,5 @@ -# Class GearSetRackAndPinion +# Class GearSetRackAndPinion + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,10 +10,10 @@ public class GearSetRackAndPinion : GearSetBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [OpenDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md) ← [GearSetBase](VM.Managed.DAFUL.Builder.GearTrain.GearSetBase\-1.md) ← [GearSetRackAndPinion](VM.Managed.DAFUL.Builder.GearTrain.GearSetRackAndPinion.md) @@ -41,29 +42,29 @@ IBuilder [OpenDesigner.HiddenDocument](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_HiddenDocument), [OpenDesigner.AlwaysDesignerOpen](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_AlwaysDesignerOpen), [OpenDesigner.ShowDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_ShowDesigner), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -95,7 +96,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -105,9 +106,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetWormAndWormWheel.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetWormAndWormWheel.md index 8d83466445..77b725dfd7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetWormAndWormWheel.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.GearSetWormAndWormWheel.md @@ -1,4 +1,5 @@ -# Class GearSetWormAndWormWheel +# Class GearSetWormAndWormWheel + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,10 +10,10 @@ public class GearSetWormAndWormWheel : GearSetBase, IBu #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [OpenDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md) ← [GearSetBase](VM.Managed.DAFUL.Builder.GearTrain.GearSetBase\-1.md) ← [GearSetWormAndWormWheel](VM.Managed.DAFUL.Builder.GearTrain.GearSetWormAndWormWheel.md) @@ -41,29 +42,29 @@ IBuilder [OpenDesigner.HiddenDocument](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_HiddenDocument), [OpenDesigner.AlwaysDesignerOpen](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_AlwaysDesignerOpen), [OpenDesigner.ShowDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_ShowDesigner), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -95,7 +96,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -105,9 +106,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.HousingBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.HousingBase-1.md index fd3d3a4775..70b5ca9cd8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.HousingBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.HousingBase-1.md @@ -1,4 +1,5 @@ -# Class HousingBase +# Class HousingBase + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -13,10 +14,10 @@ public abstract class HousingBase : OpenDesigner, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [OpenDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md) ← [HousingBase](VM.Managed.DAFUL.Builder.GearTrain.HousingBase\-1.md) @@ -31,29 +32,29 @@ IBuilder [OpenDesigner.HiddenDocument](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_HiddenDocument), [OpenDesigner.AlwaysDesignerOpen](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_AlwaysDesignerOpen), [OpenDesigner.ShowDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_ShowDesigner), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -95,5 +96,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.HousingFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.HousingFE.md index ce434f21ee..40e471118d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.HousingFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.HousingFE.md @@ -1,4 +1,5 @@ -# Class HousingFE +# Class HousingFE + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,10 +10,10 @@ public class HousingFE : HousingFEBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [OpenDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md) ← [HousingBase](VM.Managed.DAFUL.Builder.GearTrain.HousingBase\-1.md) ← [HousingFEBase](VM.Managed.DAFUL.Builder.GearTrain.HousingFEBase\-1.md) ← @@ -32,29 +33,29 @@ IBuilder [OpenDesigner.HiddenDocument](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_HiddenDocument), [OpenDesigner.AlwaysDesignerOpen](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_AlwaysDesignerOpen), [OpenDesigner.ShowDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_ShowDesigner), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -86,5 +87,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.HousingFEBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.HousingFEBase-1.md index b9bc392391..adb6eadcd7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.HousingFEBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.HousingFEBase-1.md @@ -1,4 +1,5 @@ -# Class HousingFEBase +# Class HousingFEBase + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -13,10 +14,10 @@ public abstract class HousingFEBase : HousingBase, IBuilde #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [OpenDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md) ← [HousingBase](VM.Managed.DAFUL.Builder.GearTrain.HousingBase\-1.md) ← [HousingFEBase](VM.Managed.DAFUL.Builder.GearTrain.HousingFEBase\-1.md) @@ -34,29 +35,29 @@ IBuilder [OpenDesigner.HiddenDocument](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_HiddenDocument), [OpenDesigner.AlwaysDesignerOpen](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_AlwaysDesignerOpen), [OpenDesigner.ShowDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_ShowDesigner), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -88,5 +89,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.HousingMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.HousingMeshFree.md index 52c2fb4daf..980586b0a3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.HousingMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.HousingMeshFree.md @@ -1,4 +1,5 @@ -# Class HousingMeshFree +# Class HousingMeshFree + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,10 +10,10 @@ public class HousingMeshFree : HousingMeshFreeBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [OpenDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md) ← [HousingBase](VM.Managed.DAFUL.Builder.GearTrain.HousingBase\-1.md) ← [HousingMeshFreeBase](VM.Managed.DAFUL.Builder.GearTrain.HousingMeshFreeBase\-1.md) ← @@ -32,29 +33,29 @@ IBuilder [OpenDesigner.HiddenDocument](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_HiddenDocument), [OpenDesigner.AlwaysDesignerOpen](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_AlwaysDesignerOpen), [OpenDesigner.ShowDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_ShowDesigner), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -86,5 +87,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.HousingMeshFreeBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.HousingMeshFreeBase-1.md index d3314d068a..878a904a50 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.HousingMeshFreeBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.HousingMeshFreeBase-1.md @@ -1,4 +1,5 @@ -# Class HousingMeshFreeBase +# Class HousingMeshFreeBase + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -13,10 +14,10 @@ public abstract class HousingMeshFreeBase : HousingBase, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [OpenDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md) ← [HousingBase](VM.Managed.DAFUL.Builder.GearTrain.HousingBase\-1.md) ← [HousingMeshFreeBase](VM.Managed.DAFUL.Builder.GearTrain.HousingMeshFreeBase\-1.md) @@ -34,29 +35,29 @@ IBuilder [OpenDesigner.HiddenDocument](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_HiddenDocument), [OpenDesigner.AlwaysDesignerOpen](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_AlwaysDesignerOpen), [OpenDesigner.ShowDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_ShowDesigner), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -88,5 +89,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ImportBase-1.AddEntityFromMeshDoc.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ImportBase-1.AddEntityFromMeshDoc.md index f09927f22f..9d21b21550 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ImportBase-1.AddEntityFromMeshDoc.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ImportBase-1.AddEntityFromMeshDoc.md @@ -1,4 +1,5 @@ -# Delegate ImportBase.AddEntityFromMeshDoc +# Delegate ImportBase.AddEntityFromMeshDoc + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -11,7 +12,7 @@ public delegate void ImportBase.AddEntityFromMeshDoc(Document3D document3D, o `document3D` Document3D -`objParam` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objParam` object #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ImportBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ImportBase-1.md index 8abb11aafb..ea1c34d215 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ImportBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ImportBase-1.md @@ -1,4 +1,5 @@ -# Class ImportBase +# Class ImportBase + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -13,9 +14,9 @@ public abstract class ImportBase : BuilderSymmetric, IBuilder where T : Ob #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← [ImportBase](VM.Managed.DAFUL.Builder.GearTrain.ImportBase\-1.md) #### Implements @@ -24,26 +25,26 @@ IBuilder #### Inherited Members -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -79,7 +80,7 @@ public object m_objExtraParam #### Field Value - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ## Properties @@ -91,7 +92,7 @@ protected override bool AddToDoc { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### AssemblyFileName @@ -101,7 +102,7 @@ protected virtual string AssemblyFileName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### CreatedFilePath @@ -111,7 +112,7 @@ public string CreatedFilePath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### DocumentName @@ -121,7 +122,7 @@ protected virtual string DocumentName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ExtensionName @@ -131,7 +132,7 @@ protected virtual string ExtensionName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -153,7 +154,7 @@ protected void CreateAssemble(InstanceContainer instCon, Document doc) #### Parameters -`instCon` InstanceContainer +`instCon` [InstanceContainer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs) `doc` Document @@ -191,7 +192,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OnAddEntityFromMeshDoc diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ImportMesh.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ImportMesh.md index 40ac22ce23..439d9787bc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ImportMesh.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ImportMesh.md @@ -1,4 +1,5 @@ -# Class ImportMesh +# Class ImportMesh + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,9 +10,9 @@ public class ImportMesh : ImportBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← [ImportBase](VM.Managed.DAFUL.Builder.GearTrain.ImportBase\-1.md) ← [ImportMesh](VM.Managed.DAFUL.Builder.GearTrain.ImportMesh.md) @@ -34,26 +35,26 @@ IBuilder [ImportBase.AssemblyFileName](VM.Managed.DAFUL.Builder.GearTrain.ImportBase\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_ImportBase\_1\_AssemblyFileName), [ImportBase.CreatedFilePath](VM.Managed.DAFUL.Builder.GearTrain.ImportBase\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_ImportBase\_1\_CreatedFilePath), [ImportBase.OnAddEntityFromMeshDoc](VM.Managed.DAFUL.Builder.GearTrain.ImportBase\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_ImportBase\_1\_OnAddEntityFromMeshDoc), -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -79,7 +80,7 @@ protected override string AssemblyFileName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### DocumentName @@ -89,7 +90,7 @@ protected override string DocumentName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ExtensionName @@ -99,7 +100,7 @@ protected override string ExtensionName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### FileName @@ -109,7 +110,7 @@ public string[] FileName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### InputArray @@ -119,7 +120,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -147,7 +148,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -157,9 +158,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ImportPart.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ImportPart.md index 6c5b13e091..29e24bc094 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ImportPart.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ImportPart.md @@ -1,4 +1,5 @@ -# Class ImportPart +# Class ImportPart + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,9 +10,9 @@ public class ImportPart : ImportBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← [ImportBase](VM.Managed.DAFUL.Builder.GearTrain.ImportBase\-1.md) ← [ImportPart](VM.Managed.DAFUL.Builder.GearTrain.ImportPart.md) @@ -34,26 +35,26 @@ IBuilder [ImportBase.AssemblyFileName](VM.Managed.DAFUL.Builder.GearTrain.ImportBase\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_ImportBase\_1\_AssemblyFileName), [ImportBase.CreatedFilePath](VM.Managed.DAFUL.Builder.GearTrain.ImportBase\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_ImportBase\_1\_CreatedFilePath), [ImportBase.OnAddEntityFromMeshDoc](VM.Managed.DAFUL.Builder.GearTrain.ImportBase\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_ImportBase\_1\_OnAddEntityFromMeshDoc), -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -79,7 +80,7 @@ protected override string AssemblyFileName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### DocumentName @@ -89,7 +90,7 @@ protected override string DocumentName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ExtensionName @@ -99,7 +100,7 @@ protected override string ExtensionName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### FileName @@ -109,7 +110,7 @@ public string[] FileName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### Healing @@ -119,7 +120,7 @@ public bool Healing { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### InputArray @@ -129,7 +130,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### PropertyFilePath @@ -139,7 +140,7 @@ public string PropertyFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ResultType @@ -149,7 +150,7 @@ public string ResultType { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UnitType @@ -181,7 +182,7 @@ public void ImportCAD(PartDocument docToAdd) #### Parameters -`docToAdd` PartDocument +`docToAdd` [PartDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs) ### OnPostBuild\(ObjectBase, Document\) @@ -197,5 +198,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.MotorDesigner.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.MotorDesigner.md index 75c9f6d816..62e51f3b81 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.MotorDesigner.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.MotorDesigner.md @@ -1,4 +1,5 @@ -# Class MotorDesigner +# Class MotorDesigner + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,10 +10,10 @@ public class MotorDesigner : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [MotorDesigner](VM.Managed.DAFUL.Builder.GearTrain.MotorDesigner.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -79,7 +80,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### Position @@ -107,5 +108,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner-1.md index 6c67f6a5ff..d4aead2a63 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner-1.md @@ -1,4 +1,5 @@ -# Class OpenDesigner +# Class OpenDesigner + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -13,10 +14,10 @@ public abstract class OpenDesigner : BuilderNamed, IBuilder where T : Obje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [OpenDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md) #### Implements @@ -25,29 +26,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -73,7 +74,7 @@ protected bool AlwaysDesignerOpen { set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### HiddenDocument @@ -83,7 +84,7 @@ protected HiddenDocument HiddenDocument { get; set; } #### Property Value - HiddenDocument + [HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) ### ShowDesigner @@ -93,7 +94,7 @@ public string ShowDesigner { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -121,5 +122,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.RVReducer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.RVReducer.md index 1346260281..a434bce806 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.RVReducer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.RVReducer.md @@ -1,4 +1,5 @@ -# Class RVReducer +# Class RVReducer + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,10 +10,10 @@ public class RVReducer : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [RVReducer](VM.Managed.DAFUL.Builder.GearTrain.RVReducer.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -117,5 +118,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.SectionInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.SectionInfo.md index a982b7f7df..7fc02b1875 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.SectionInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.SectionInfo.md @@ -1,4 +1,5 @@ -# Class SectionInfo +# Class SectionInfo + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,7 +10,7 @@ public class SectionInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SectionInfo](VM.Managed.DAFUL.Builder.GearTrain.SectionInfo.md) #### Extension Methods @@ -36,7 +37,7 @@ public string CrossSection { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### CrossSectionValueInfo @@ -46,5 +47,5 @@ public string[] CrossSectionValueInfo { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.SectionModificationAdd.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.SectionModificationAdd.md index 2324628b30..fc9db3461d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.SectionModificationAdd.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.SectionModificationAdd.md @@ -1,4 +1,5 @@ -# Class SectionModificationAdd +# Class SectionModificationAdd + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,10 +10,10 @@ public class SectionModificationAdd : BuilderNamed
    , IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [SectionModificationAdd](VM.Managed.DAFUL.Builder.GearTrain.SectionModificationAdd.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -79,7 +80,7 @@ public string Length { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -91,9 +92,9 @@ public void CreateSection(Section section, ShaftSet shaftset) #### Parameters -`section` Section +`section` [Section](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/Section.cs) -`shaftset` ShaftSet +`shaftset` [ShaftSet](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/ShaftSet.cs) ### OnPostAddDoc\(ObjectBase\) @@ -119,7 +120,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -129,9 +130,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.SectionModificationSplit.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.SectionModificationSplit.md index 78584956d5..c84986b923 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.SectionModificationSplit.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.SectionModificationSplit.md @@ -1,4 +1,5 @@ -# Class SectionModificationSplit +# Class SectionModificationSplit + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,7 +10,7 @@ public class SectionModificationSplit : IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SectionModificationSplit](VM.Managed.DAFUL.Builder.GearTrain.SectionModificationSplit.md) #### Implements @@ -50,7 +51,7 @@ public PickedResult[] Parameters { get; set; } #### Property Value - PickedResult\[\] + [PickedResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/PickedResult.cs)\[\] ### TargetSection @@ -60,7 +61,7 @@ public Section TargetSection { get; } #### Property Value - Section + [Section](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/Section.cs) ## Methods @@ -82,7 +83,7 @@ public bool Success() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -92,9 +93,9 @@ public bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ShaftSetBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ShaftSetBase.md index 52ec74b89a..82c5d0815e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ShaftSetBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ShaftSetBase.md @@ -1,4 +1,5 @@ -# Class ShaftSetBase +# Class ShaftSetBase + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,10 +10,10 @@ public abstract class ShaftSetBase : OpenDesigner, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [OpenDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md) ← [ShaftSetBase](VM.Managed.DAFUL.Builder.GearTrain.ShaftSetBase.md) @@ -32,29 +33,29 @@ IBuilder [OpenDesigner.HiddenDocument](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_HiddenDocument), [OpenDesigner.AlwaysDesignerOpen](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_AlwaysDesignerOpen), [OpenDesigner.ShowDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_ShowDesigner), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ShaftSetFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ShaftSetFE.md index 5733af5dc4..918da68aff 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ShaftSetFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ShaftSetFE.md @@ -1,4 +1,5 @@ -# Class ShaftSetFE +# Class ShaftSetFE + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,10 +10,10 @@ public class ShaftSetFE : HousingFEBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [OpenDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md) ← [HousingBase](VM.Managed.DAFUL.Builder.GearTrain.HousingBase\-1.md) ← [HousingFEBase](VM.Managed.DAFUL.Builder.GearTrain.HousingFEBase\-1.md) ← @@ -32,29 +33,29 @@ IBuilder [OpenDesigner.HiddenDocument](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_HiddenDocument), [OpenDesigner.AlwaysDesignerOpen](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_AlwaysDesignerOpen), [OpenDesigner.ShowDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_ShowDesigner), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -86,5 +87,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ShaftSetMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ShaftSetMeshFree.md index e7c6662fe0..9471e8bd7f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ShaftSetMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ShaftSetMeshFree.md @@ -1,4 +1,5 @@ -# Class ShaftSetMeshFree +# Class ShaftSetMeshFree + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,10 +10,10 @@ public class ShaftSetMeshFree : HousingMeshFreeBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [OpenDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md) ← [HousingBase](VM.Managed.DAFUL.Builder.GearTrain.HousingBase\-1.md) ← [HousingMeshFreeBase](VM.Managed.DAFUL.Builder.GearTrain.HousingMeshFreeBase\-1.md) ← @@ -32,29 +33,29 @@ IBuilder [OpenDesigner.HiddenDocument](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_HiddenDocument), [OpenDesigner.AlwaysDesignerOpen](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_AlwaysDesignerOpen), [OpenDesigner.ShowDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_ShowDesigner), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -86,5 +87,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ShaftSetSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ShaftSetSimple.md index 4d1123d9e4..93cc4fd510 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ShaftSetSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.ShaftSetSimple.md @@ -1,4 +1,5 @@ -# Class ShaftSetSimple +# Class ShaftSetSimple + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -9,10 +10,10 @@ public class ShaftSetSimple : ShaftSetBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [OpenDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md) ← [ShaftSetBase](VM.Managed.DAFUL.Builder.GearTrain.ShaftSetBase.md) ← [ShaftSetSimple](VM.Managed.DAFUL.Builder.GearTrain.ShaftSetSimple.md) @@ -28,29 +29,29 @@ IBuilder [OpenDesigner.HiddenDocument](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_HiddenDocument), [OpenDesigner.AlwaysDesignerOpen](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_AlwaysDesignerOpen), [OpenDesigner.ShowDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_ShowDesigner), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -76,7 +77,7 @@ public string Color { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### InputArray @@ -86,7 +87,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -114,5 +115,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.SlidingBearing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.SlidingBearing.md index f48a268f7f..7988cb6822 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.SlidingBearing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.SlidingBearing.md @@ -1,4 +1,5 @@ -# Class SlidingBearing +# Class SlidingBearing + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -11,10 +12,10 @@ public class SlidingBearing : BearingBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [OpenDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md) ← [BearingBase](VM.Managed.DAFUL.Builder.GearTrain.BearingBase\-1.md) ← [SlidingBearing](VM.Managed.DAFUL.Builder.GearTrain.SlidingBearing.md) @@ -33,29 +34,29 @@ IBuilder [OpenDesigner.HiddenDocument](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_HiddenDocument), [OpenDesigner.AlwaysDesignerOpen](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_AlwaysDesignerOpen), [OpenDesigner.ShowDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_ShowDesigner), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -93,5 +94,5 @@ The document. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.StiffnessBearing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.StiffnessBearing.md index 68a3457adc..31ff6181c4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.StiffnessBearing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.StiffnessBearing.md @@ -1,4 +1,5 @@ -# Class StiffnessBearing +# Class StiffnessBearing + Namespace: [VM.Managed.DAFUL.Builder.GearTrain](VM.Managed.DAFUL.Builder.GearTrain.md) Assembly: VMBldGearTrain.dll @@ -11,10 +12,10 @@ public class StiffnessBearing : BearingBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [OpenDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md) ← [BearingBase](VM.Managed.DAFUL.Builder.GearTrain.BearingBase\-1.md) ← [StiffnessBearing](VM.Managed.DAFUL.Builder.GearTrain.StiffnessBearing.md) @@ -33,29 +34,29 @@ IBuilder [OpenDesigner.HiddenDocument](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_HiddenDocument), [OpenDesigner.AlwaysDesignerOpen](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_AlwaysDesignerOpen), [OpenDesigner.ShowDesigner](VM.Managed.DAFUL.Builder.GearTrain.OpenDesigner\-1.md\#VM\_Managed\_DAFUL\_Builder\_GearTrain\_OpenDesigner\_1\_ShowDesigner), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -81,7 +82,7 @@ public string InnerRacewayColor { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -99,5 +100,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.md index 20881859e3..086864eee7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.GearTrain.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Builder.GearTrain +# Namespace VM.Managed.DAFUL.Builder.GearTrain + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.HarmonicDrive.CheckClash.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.HarmonicDrive.CheckClash.md index b639734b6f..019c3271e7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.HarmonicDrive.CheckClash.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.HarmonicDrive.CheckClash.md @@ -1,4 +1,5 @@ -# Class HarmonicDrive.CheckClash +# Class HarmonicDrive.CheckClash + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBldHarmonicDrive.dll @@ -9,7 +10,7 @@ public class HarmonicDrive.CheckClash #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [HarmonicDrive.CheckClash](VM.Managed.DAFUL.Builder.HarmonicDrive.CheckClash.md) #### Extension Methods @@ -38,7 +39,7 @@ public KeyInfo TargetKey { get; set; } #### Property Value - KeyInfo + [KeyInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/KeyInfo.cs) ### ToolKey @@ -50,5 +51,5 @@ public KeyInfo ToolKey { get; set; } #### Property Value - KeyInfo + [KeyInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/KeyInfo.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.HarmonicDrive.GetFacewithPointAndDirection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.HarmonicDrive.GetFacewithPointAndDirection.md index 8443cab5aa..56b90d3f6e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.HarmonicDrive.GetFacewithPointAndDirection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.HarmonicDrive.GetFacewithPointAndDirection.md @@ -1,4 +1,5 @@ -# Class HarmonicDrive.GetFacewithPointAndDirection +# Class HarmonicDrive.GetFacewithPointAndDirection + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBldHarmonicDrive.dll @@ -9,7 +10,7 @@ public class HarmonicDrive.GetFacewithPointAndDirection #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [HarmonicDrive.GetFacewithPointAndDirection](VM.Managed.DAFUL.Builder.HarmonicDrive.GetFacewithPointAndDirection.md) #### Extension Methods @@ -62,5 +63,5 @@ public KeyInfo TargetKey { get; set; } #### Property Value - KeyInfo + [KeyInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/KeyInfo.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.HarmonicDrive.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.HarmonicDrive.md index 6893f472cb..f8f8bf1e1e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.HarmonicDrive.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.HarmonicDrive.md @@ -1,4 +1,5 @@ -# Class HarmonicDrive +# Class HarmonicDrive + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBldHarmonicDrive.dll @@ -9,7 +10,7 @@ public class HarmonicDrive : IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [HarmonicDrive](VM.Managed.DAFUL.Builder.HarmonicDrive.md) #### Implements @@ -50,7 +51,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -74,7 +75,7 @@ public void Build(Document docToAdd, List lstSetPointKeys) `docToAdd` Document -`lstSetPointKeys` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstSetPointKeys` List ### Success\(\) @@ -84,7 +85,7 @@ public bool Success() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -94,9 +95,9 @@ public bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.IBuilder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.IBuilder.md index 0bcc0bd52a..72e126c09e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.IBuilder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.IBuilder.md @@ -1,4 +1,5 @@ -# Interface IBuilder +# Interface IBuilder + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -47,7 +48,7 @@ void Build(Document docToAdd, List lstSetPointKeys) `docToAdd` Document -`lstSetPointKeys` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstSetPointKeys` List ### Success\(\) @@ -57,7 +58,7 @@ bool Success() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -67,9 +68,9 @@ bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.IConnectorDirection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.IConnectorDirection.md index d40f9cc42d..8566c2517c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.IConnectorDirection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.IConnectorDirection.md @@ -1,4 +1,5 @@ -# Interface IConnectorDirection +# Interface IConnectorDirection + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -23,7 +24,7 @@ int NumberOfDirection { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -35,11 +36,11 @@ void SetDirection(Marker BM, Marker AM, PickedResult[] pickresult, int numberofp #### Parameters -`BM` Marker +`BM` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) -`AM` Marker +`AM` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) `pickresult` [PickedResult](VM.Managed.DAFUL.Builder.PickedResult.md)\[\] -`numberofpoint` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`numberofpoint` int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.IConnectorOrientation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.IConnectorOrientation.md index d826d07910..b40d56ab85 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.IConnectorOrientation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.IConnectorOrientation.md @@ -1,4 +1,5 @@ -# Interface IConnectorOrientation +# Interface IConnectorOrientation + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -23,7 +24,7 @@ int NumberOfOrientation { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -35,13 +36,13 @@ void SetOrientation(Marker BM, Marker AM, PickedResult[] pickResult, int nNumOfP #### Parameters -`BM` Marker +`BM` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) -`AM` Marker +`AM` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) `pickResult` [PickedResult](VM.Managed.DAFUL.Builder.PickedResult.md)\[\] -`nNumOfPoint` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNumOfPoint` int -`nNumOfDirection` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNumOfDirection` int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.IConnectorPosition.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.IConnectorPosition.md index 1ab6d34ade..ab8c20eb5f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.IConnectorPosition.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.IConnectorPosition.md @@ -1,4 +1,5 @@ -# Interface IConnectorPosition +# Interface IConnectorPosition + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -23,7 +24,7 @@ int NumberOfPoint { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -35,9 +36,9 @@ void SetPosition(Marker BM, Marker AM, PickedResult[] pickresult) #### Parameters -`BM` Marker +`BM` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) -`AM` Marker +`AM` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) `pickresult` [PickedResult](VM.Managed.DAFUL.Builder.PickedResult.md)\[\] diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Imprint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Imprint.md index c9ef905bbb..5e5780f0f9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Imprint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Imprint.md @@ -1,4 +1,5 @@ -# Class Imprint +# Class Imprint + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public abstract class Imprint : BooleanBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BooleanBase](VM.Managed.DAFUL.Builder.BooleanBase\-1.md) ← [Imprint](VM.Managed.DAFUL.Builder.Imprint.md) @@ -74,7 +75,7 @@ protected override string Type { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.ImprintBB.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.ImprintBB.md index 70055267e7..0b8b59f7dc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.ImprintBB.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.ImprintBB.md @@ -1,4 +1,5 @@ -# Class ImprintBB +# Class ImprintBB + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class ImprintBB : ImprintBody, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BooleanBase](VM.Managed.DAFUL.Builder.BooleanBase\-1.md) ← [Imprint](VM.Managed.DAFUL.Builder.Imprint.md) ← [ImprintBody](VM.Managed.DAFUL.Builder.ImprintBody.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.ImprintBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.ImprintBody.md index f59aab11bc..b7eb1326fa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.ImprintBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.ImprintBody.md @@ -1,4 +1,5 @@ -# Class ImprintBody +# Class ImprintBody + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public abstract class ImprintBody : Imprint, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BooleanBase](VM.Managed.DAFUL.Builder.BooleanBase\-1.md) ← [Imprint](VM.Managed.DAFUL.Builder.Imprint.md) ← [ImprintBody](VM.Managed.DAFUL.Builder.ImprintBody.md) @@ -91,7 +92,7 @@ protected override string ExtraArgument { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Parametric @@ -101,7 +102,7 @@ public bool Parametric { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.ImprintFB.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.ImprintFB.md index 3c804ed54d..d2e5e5963a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.ImprintFB.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.ImprintFB.md @@ -1,4 +1,5 @@ -# Class ImprintFB +# Class ImprintFB + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class ImprintFB : ImprintBody, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BooleanBase](VM.Managed.DAFUL.Builder.BooleanBase\-1.md) ← [Imprint](VM.Managed.DAFUL.Builder.Imprint.md) ← [ImprintBody](VM.Managed.DAFUL.Builder.ImprintBody.md) ← @@ -78,7 +79,7 @@ protected override string ExtraArgument { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TargetConnectable diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.ImprintFF.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.ImprintFF.md index 7d4f075004..729c93cd88 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.ImprintFF.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.ImprintFF.md @@ -1,4 +1,5 @@ -# Class ImprintFF +# Class ImprintFF + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class ImprintFF : ImprintBody, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BooleanBase](VM.Managed.DAFUL.Builder.BooleanBase\-1.md) ← [Imprint](VM.Managed.DAFUL.Builder.Imprint.md) ← [ImprintBody](VM.Managed.DAFUL.Builder.ImprintBody.md) ← @@ -78,7 +79,7 @@ protected override string ExtraArgument { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TargetConnectable diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.ImprintSheet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.ImprintSheet.md index ecfdb5b77f..4f4fe74fdf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.ImprintSheet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.ImprintSheet.md @@ -1,4 +1,5 @@ -# Class ImprintSheet +# Class ImprintSheet + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public abstract class ImprintSheet : Imprint, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BooleanBase](VM.Managed.DAFUL.Builder.BooleanBase\-1.md) ← [Imprint](VM.Managed.DAFUL.Builder.Imprint.md) ← [ImprintSheet](VM.Managed.DAFUL.Builder.ImprintSheet.md) @@ -78,7 +79,7 @@ protected override string ExtraArgument { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TargetConnectable diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Intersect.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Intersect.md index 1991ef5929..6c9c1208f2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Intersect.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Intersect.md @@ -1,4 +1,5 @@ -# Class Intersect +# Class Intersect + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class Intersect : Boolean, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BooleanBase](VM.Managed.DAFUL.Builder.BooleanBase\-1.md) ← [Boolean](VM.Managed.DAFUL.Builder.Boolean\-1.md) ← [Intersect](VM.Managed.DAFUL.Builder.Intersect.md) @@ -80,7 +81,7 @@ protected override string Type { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.Actuator-2.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.Actuator-2.md index 11019c6b2d..64a1e5e5cf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.Actuator-2.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.Actuator-2.md @@ -1,4 +1,5 @@ -# Class Actuator +# Class Actuator + Namespace: [VM.Managed.DAFUL.Builder.Linear](VM.Managed.DAFUL.Builder.Linear.md) Assembly: VMBldLinear.dll @@ -15,10 +16,10 @@ public abstract class Actuator : BuilderNamed, IBuilder where T : A #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [Actuator](VM.Managed.DAFUL.Builder.Linear.Actuator\-2.md) #### Implements @@ -27,29 +28,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.ActuatorPSD.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.ActuatorPSD.md index 76abf4316f..234bc9f0a3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.ActuatorPSD.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.ActuatorPSD.md @@ -1,4 +1,5 @@ -# Class ActuatorPSD +# Class ActuatorPSD + Namespace: [VM.Managed.DAFUL.Builder.Linear](VM.Managed.DAFUL.Builder.Linear.md) Assembly: VMBldLinear.dll @@ -9,10 +10,10 @@ public class ActuatorPSD : Actuator, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [Actuator](VM.Managed.DAFUL.Builder.Linear.Actuator\-2.md) ← [ActuatorPSD](VM.Managed.DAFUL.Builder.Linear.ActuatorPSD.md) @@ -22,29 +23,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -70,7 +71,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -88,7 +89,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -98,9 +99,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.ActuatorRotatingMass.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.ActuatorRotatingMass.md index 021fa5518d..62cbc7ee6e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.ActuatorRotatingMass.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.ActuatorRotatingMass.md @@ -1,4 +1,5 @@ -# Class ActuatorRotatingMass +# Class ActuatorRotatingMass + Namespace: [VM.Managed.DAFUL.Builder.Linear](VM.Managed.DAFUL.Builder.Linear.md) Assembly: VMBldLinear.dll @@ -9,10 +10,10 @@ public class ActuatorRotatingMass : Actuator ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [Actuator](VM.Managed.DAFUL.Builder.Linear.Actuator\-2.md) ← [ActuatorRotatingMass](VM.Managed.DAFUL.Builder.Linear.ActuatorRotatingMass.md) @@ -22,29 +23,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -70,7 +71,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -88,7 +89,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -98,9 +99,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.ActuatorSweptSine.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.ActuatorSweptSine.md index fdb5bb3d76..e317a2554b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.ActuatorSweptSine.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.ActuatorSweptSine.md @@ -1,4 +1,5 @@ -# Class ActuatorSweptSine +# Class ActuatorSweptSine + Namespace: [VM.Managed.DAFUL.Builder.Linear](VM.Managed.DAFUL.Builder.Linear.md) Assembly: VMBldLinear.dll @@ -9,10 +10,10 @@ public class ActuatorSweptSine : Actuator ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [Actuator](VM.Managed.DAFUL.Builder.Linear.Actuator\-2.md) ← [ActuatorSweptSine](VM.Managed.DAFUL.Builder.Linear.ActuatorSweptSine.md) @@ -22,29 +23,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -98,5 +99,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.ActuatorUser.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.ActuatorUser.md index 43d356895d..f6175eb447 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.ActuatorUser.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.ActuatorUser.md @@ -1,4 +1,5 @@ -# Class ActuatorUser +# Class ActuatorUser + Namespace: [VM.Managed.DAFUL.Builder.Linear](VM.Managed.DAFUL.Builder.Linear.md) Assembly: VMBldLinear.dll @@ -9,10 +10,10 @@ public class ActuatorUser : Actuator, IBuild #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [Actuator](VM.Managed.DAFUL.Builder.Linear.Actuator\-2.md) ← [ActuatorUser](VM.Managed.DAFUL.Builder.Linear.ActuatorUser.md) @@ -22,29 +23,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -98,5 +99,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.InputChannel.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.InputChannel.md index 81f7ed55cc..0a8f67aadf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.InputChannel.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.InputChannel.md @@ -1,4 +1,5 @@ -# Class InputChannel +# Class InputChannel + Namespace: [VM.Managed.DAFUL.Builder.Linear](VM.Managed.DAFUL.Builder.Linear.md) Assembly: VMBldLinear.dll @@ -9,10 +10,10 @@ public class InputChannel : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [InputChannel](VM.Managed.DAFUL.Builder.Linear.InputChannel.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -79,7 +80,7 @@ public string InputMode { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### InputType @@ -89,7 +90,7 @@ public string InputType { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ObjectName @@ -99,7 +100,7 @@ public string ObjectName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -117,7 +118,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -127,9 +128,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.OutputChannel.CheckedMarker.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.OutputChannel.CheckedMarker.md index a9f7efe186..f98f8af1d3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.OutputChannel.CheckedMarker.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.OutputChannel.CheckedMarker.md @@ -1,4 +1,5 @@ -# Struct OutputChannel.CheckedMarker +# Struct OutputChannel.CheckedMarker + Namespace: [VM.Managed.DAFUL.Builder.Linear](VM.Managed.DAFUL.Builder.Linear.md) Assembly: VMBldLinear.dll @@ -17,7 +18,7 @@ public string Checked { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Marker @@ -27,5 +28,5 @@ public string Marker { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.OutputChannel.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.OutputChannel.md index e154aa42c8..677a84888b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.OutputChannel.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.OutputChannel.md @@ -1,4 +1,5 @@ -# Class OutputChannel +# Class OutputChannel + Namespace: [VM.Managed.DAFUL.Builder.Linear](VM.Managed.DAFUL.Builder.Linear.md) Assembly: VMBldLinear.dll @@ -9,10 +10,10 @@ public class OutputChannel : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [OutputChannel](VM.Managed.DAFUL.Builder.Linear.OutputChannel.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -89,7 +90,7 @@ public string Direction { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ReferenceMarker @@ -109,7 +110,7 @@ public string Type { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -127,5 +128,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.md index 8430360985..42c761a233 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Linear.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Builder.Linear +# Namespace VM.Managed.DAFUL.Builder.Linear + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MarkerBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MarkerBase.md index a9f156f88d..3f6b9db4fb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MarkerBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MarkerBase.md @@ -1,4 +1,5 @@ -# Class MarkerBase +# Class MarkerBase + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class MarkerBase : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [BuilderSymmetric](VM.Managed.DAFUL.Builder.BuilderSymmetric\-1.md) ← [BuilderNamed](VM.Managed.DAFUL.Builder.BuilderNamed\-1.md) ← @@ -69,7 +70,7 @@ protected override bool AddToDoc { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Connectable @@ -97,5 +98,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.BoundaryCondition.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.BoundaryCondition.md index aba1022f9a..3686b9b4b1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.BoundaryCondition.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.BoundaryCondition.md @@ -1,4 +1,5 @@ -# Class BoundaryCondition +# Class BoundaryCondition + Namespace: [VM.Managed.DAFUL.Builder.MeshFree](VM.Managed.DAFUL.Builder.MeshFree.md) Assembly: VMBldMeshFree.dll @@ -9,10 +10,10 @@ public class BoundaryCondition : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [BoundaryCondition](VM.Managed.DAFUL.Builder.MeshFree.BoundaryCondition.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -79,7 +80,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -93,11 +94,11 @@ public static bool CheckGroundBody(IGeometricalComponent faceset, string strErrM `faceset` IGeometricalComponent -`strErrMsg` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strErrMsg` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CheckGroundBody\(List, string\) @@ -107,13 +108,13 @@ public static bool CheckGroundBody(List aryFaceset, strin #### Parameters -`aryFaceset` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`aryFaceset` List -`strErrMsg` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strErrMsg` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OnPostBuild\(ObjectBase, Document\) @@ -129,7 +130,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -139,9 +140,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.BoundaryCondition_Faces.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.BoundaryCondition_Faces.md index d5a9c7c2d5..718ad01ad6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.BoundaryCondition_Faces.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.BoundaryCondition_Faces.md @@ -1,4 +1,5 @@ -# Class BoundaryCondition\_Faces +# Class BoundaryCondition\_Faces + Namespace: [VM.Managed.DAFUL.Builder.MeshFree](VM.Managed.DAFUL.Builder.MeshFree.md) Assembly: VMBldMeshFree.dll @@ -9,10 +10,10 @@ public class BoundaryCondition_Faces : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [BoundaryCondition\_Faces](VM.Managed.DAFUL.Builder.MeshFree.BoundaryCondition\_Faces.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -69,7 +70,7 @@ public string[] BaseGeometry { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### InputArray @@ -79,7 +80,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -91,13 +92,13 @@ public static bool CheckGroundBody(SetFace faceset, string strErrMsg) #### Parameters -`faceset` SetFace +`faceset` [SetFace](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SetFace.cs) -`strErrMsg` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strErrMsg` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CheckGroundBody\(List, string\) @@ -107,13 +108,13 @@ public static bool CheckGroundBody(List aryFaceset, string strErrMsg) #### Parameters -`aryFaceset` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`aryFaceset` List<[SetFace](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SetFace.cs)\> -`strErrMsg` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strErrMsg` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OnPostBuild\(ObjectBase, Document\) @@ -129,7 +130,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -139,9 +140,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.ColorBoundaryCondition.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.ColorBoundaryCondition.md index e7acd79507..284d8cffda 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.ColorBoundaryCondition.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.ColorBoundaryCondition.md @@ -1,4 +1,5 @@ -# Class ColorBoundaryCondition +# Class ColorBoundaryCondition + Namespace: [VM.Managed.DAFUL.Builder.MeshFree](VM.Managed.DAFUL.Builder.MeshFree.md) Assembly: VMBldMeshFree.dll @@ -9,10 +10,10 @@ public class ColorBoundaryCondition : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [ColorBoundaryCondition](VM.Managed.DAFUL.Builder.MeshFree.ColorBoundaryCondition.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -69,7 +70,7 @@ public string[] ColorArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### Connectable @@ -89,7 +90,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -107,7 +108,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -117,9 +118,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.ColorRigidBodyElementPair.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.ColorRigidBodyElementPair.md index b587e552c5..e2bb0435e2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.ColorRigidBodyElementPair.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.ColorRigidBodyElementPair.md @@ -1,4 +1,5 @@ -# Class ColorRigidBodyElementPair +# Class ColorRigidBodyElementPair + Namespace: [VM.Managed.DAFUL.Builder.MeshFree](VM.Managed.DAFUL.Builder.MeshFree.md) Assembly: VMBldMeshFree.dll @@ -9,10 +10,10 @@ public class ColorRigidBodyElementPair : BuilderNamed, IBu #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [ColorRigidBodyElementPair](VM.Managed.DAFUL.Builder.MeshFree.ColorRigidBodyElementPair.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -69,7 +70,7 @@ public string[] ColorArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### ColorArray2 @@ -79,7 +80,7 @@ public string[] ColorArray2 { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### Connectable @@ -117,7 +118,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -127,9 +128,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.ColorRigidBodyElementPairPart.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.ColorRigidBodyElementPairPart.md index aded02c9a0..884146eeb0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.ColorRigidBodyElementPairPart.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.ColorRigidBodyElementPairPart.md @@ -1,4 +1,5 @@ -# Class ColorRigidBodyElementPairPart +# Class ColorRigidBodyElementPairPart + Namespace: [VM.Managed.DAFUL.Builder.MeshFree](VM.Managed.DAFUL.Builder.MeshFree.md) Assembly: VMBldMeshFree.dll @@ -9,10 +10,10 @@ public class ColorRigidBodyElementPairPart : BuilderNamed, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [ColorRigidBodyElementPairPart](VM.Managed.DAFUL.Builder.MeshFree.ColorRigidBodyElementPairPart.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -69,7 +70,7 @@ public string[] ColorArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### ColorArray2 @@ -79,7 +80,7 @@ public string[] ColorArray2 { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### Connectable @@ -117,7 +118,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -127,9 +128,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.ColorRigidBodyElementSingle.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.ColorRigidBodyElementSingle.md index c693e1ce1a..5ed990ecb0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.ColorRigidBodyElementSingle.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.ColorRigidBodyElementSingle.md @@ -1,4 +1,5 @@ -# Class ColorRigidBodyElementSingle +# Class ColorRigidBodyElementSingle + Namespace: [VM.Managed.DAFUL.Builder.MeshFree](VM.Managed.DAFUL.Builder.MeshFree.md) Assembly: VMBldMeshFree.dll @@ -9,10 +10,10 @@ public class ColorRigidBodyElementSingle : BuilderNamed, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [ColorRigidBodyElementSingle](VM.Managed.DAFUL.Builder.MeshFree.ColorRigidBodyElementSingle.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -69,7 +70,7 @@ public string[] ColorArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### Connectable @@ -97,7 +98,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -107,9 +108,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.ColorRigidBodyElementSinglePart.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.ColorRigidBodyElementSinglePart.md index e59b7d744c..d147aa819e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.ColorRigidBodyElementSinglePart.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.ColorRigidBodyElementSinglePart.md @@ -1,4 +1,5 @@ -# Class ColorRigidBodyElementSinglePart +# Class ColorRigidBodyElementSinglePart + Namespace: [VM.Managed.DAFUL.Builder.MeshFree](VM.Managed.DAFUL.Builder.MeshFree.md) Assembly: VMBldMeshFree.dll @@ -9,10 +10,10 @@ public class ColorRigidBodyElementSinglePart : BuilderNamed ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [ColorRigidBodyElementSinglePart](VM.Managed.DAFUL.Builder.MeshFree.ColorRigidBodyElementSinglePart.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -69,7 +70,7 @@ public string[] ColorArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### Connectable @@ -97,7 +98,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -107,9 +108,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Contact.ColorTie.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Contact.ColorTie.md index ce1d2fc588..c40db39396 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Contact.ColorTie.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Contact.ColorTie.md @@ -1,4 +1,5 @@ -# Class ColorTie +# Class ColorTie + Namespace: [VM.Managed.DAFUL.Builder.MeshFree.Contact](VM.Managed.DAFUL.Builder.MeshFree.Contact.md) Assembly: VMBldMeshFree.dll @@ -9,10 +10,10 @@ public class ColorTie : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [ColorTie](VM.Managed.DAFUL.Builder.MeshFree.Contact.ColorTie.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -69,7 +70,7 @@ public string[] ColorArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### ColorArray2 @@ -79,7 +80,7 @@ public string[] ColorArray2 { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### Connectable @@ -117,7 +118,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -127,9 +128,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Contact.ColorTiePart.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Contact.ColorTiePart.md index b70b9457af..063617f5cc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Contact.ColorTiePart.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Contact.ColorTiePart.md @@ -1,4 +1,5 @@ -# Class ColorTiePart +# Class ColorTiePart + Namespace: [VM.Managed.DAFUL.Builder.MeshFree.Contact](VM.Managed.DAFUL.Builder.MeshFree.Contact.md) Assembly: VMBldMeshFree.dll @@ -9,10 +10,10 @@ public class ColorTiePart : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [ColorTiePart](VM.Managed.DAFUL.Builder.MeshFree.Contact.ColorTiePart.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -69,7 +70,7 @@ public string[] ColorArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### ColorArray2 @@ -79,7 +80,7 @@ public string[] ColorArray2 { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### Connectable @@ -117,7 +118,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -127,9 +128,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Contact.Tie.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Contact.Tie.md index ceb1974c76..0014e76049 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Contact.Tie.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Contact.Tie.md @@ -1,4 +1,5 @@ -# Class Tie +# Class Tie + Namespace: [VM.Managed.DAFUL.Builder.MeshFree.Contact](VM.Managed.DAFUL.Builder.MeshFree.Contact.md) Assembly: VMBldMeshFree.dll @@ -9,10 +10,10 @@ public class Tie : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [Tie](VM.Managed.DAFUL.Builder.MeshFree.Contact.Tie.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -97,7 +98,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -107,9 +108,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Contact.Tie_Faces.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Contact.Tie_Faces.md index 2786fd7ae7..8478e9f7be 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Contact.Tie_Faces.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Contact.Tie_Faces.md @@ -1,4 +1,5 @@ -# Class Tie\_Faces +# Class Tie\_Faces + Namespace: [VM.Managed.DAFUL.Builder.MeshFree.Contact](VM.Managed.DAFUL.Builder.MeshFree.Contact.md) Assembly: VMBldMeshFree.dll @@ -9,10 +10,10 @@ public class Tie_Faces : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [Tie\_Faces](VM.Managed.DAFUL.Builder.MeshFree.Contact.Tie\_Faces.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -69,7 +70,7 @@ public PickedFace ActionGeometry { get; set; } #### Property Value - PickedFace + [PickedFace](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Split.cs) ### BaseGeometry @@ -79,7 +80,7 @@ public PickedFace BaseGeometry { get; set; } #### Property Value - PickedFace + [PickedFace](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Split.cs) ## Methods @@ -97,7 +98,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -107,9 +108,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Contact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Contact.md index dbc65fd328..e37b57ec1f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Contact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Contact.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Builder.MeshFree.Contact +# Namespace VM.Managed.DAFUL.Builder.MeshFree.Contact + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Force.ColorConcentratedLoad.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Force.ColorConcentratedLoad.md index 2d80d5a91b..0bd95b2376 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Force.ColorConcentratedLoad.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Force.ColorConcentratedLoad.md @@ -1,4 +1,5 @@ -# Class ColorConcentratedLoad +# Class ColorConcentratedLoad + Namespace: [VM.Managed.DAFUL.Builder.MeshFree.Force](VM.Managed.DAFUL.Builder.MeshFree.Force.md) Assembly: VMBldMeshFree.dll @@ -9,10 +10,10 @@ public class ColorConcentratedLoad : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [ColorConcentratedLoad](VM.Managed.DAFUL.Builder.MeshFree.Force.ColorConcentratedLoad.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -69,7 +70,7 @@ public string[] ColorArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### Connectable @@ -89,7 +90,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -107,7 +108,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -117,9 +118,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Force.ColorPressureLoad.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Force.ColorPressureLoad.md index fb781aa5f3..ef602d4e6d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Force.ColorPressureLoad.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Force.ColorPressureLoad.md @@ -1,4 +1,5 @@ -# Class ColorPressureLoad +# Class ColorPressureLoad + Namespace: [VM.Managed.DAFUL.Builder.MeshFree.Force](VM.Managed.DAFUL.Builder.MeshFree.Force.md) Assembly: VMBldMeshFree.dll @@ -9,10 +10,10 @@ public class ColorPressureLoad : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [ColorPressureLoad](VM.Managed.DAFUL.Builder.MeshFree.Force.ColorPressureLoad.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -69,7 +70,7 @@ public string[] ColorArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### Connectable @@ -89,7 +90,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -107,7 +108,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -117,9 +118,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Force.ConcentratedLoad.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Force.ConcentratedLoad.md index 41c1df65a2..7ab8c13ff1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Force.ConcentratedLoad.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Force.ConcentratedLoad.md @@ -1,4 +1,5 @@ -# Class ConcentratedLoad +# Class ConcentratedLoad + Namespace: [VM.Managed.DAFUL.Builder.MeshFree.Force](VM.Managed.DAFUL.Builder.MeshFree.Force.md) Assembly: VMBldMeshFree.dll @@ -9,10 +10,10 @@ public class ConcentratedLoad : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [ConcentratedLoad](VM.Managed.DAFUL.Builder.MeshFree.Force.ConcentratedLoad.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -79,7 +80,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -97,7 +98,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -107,9 +108,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Force.ConcentratedLoadWithRange.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Force.ConcentratedLoadWithRange.md index fb98b42dc6..2a26e6b044 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Force.ConcentratedLoadWithRange.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Force.ConcentratedLoadWithRange.md @@ -1,4 +1,5 @@ -# Class ConcentratedLoadWithRange +# Class ConcentratedLoadWithRange + Namespace: [VM.Managed.DAFUL.Builder.MeshFree.Force](VM.Managed.DAFUL.Builder.MeshFree.Force.md) Assembly: VMBldMeshFree.dll @@ -9,10 +10,10 @@ public class ConcentratedLoadWithRange : BuilderNamed, IBuilde #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [ConcentratedLoadWithRange](VM.Managed.DAFUL.Builder.MeshFree.Force.ConcentratedLoadWithRange.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -79,7 +80,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### Radius @@ -107,7 +108,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -117,9 +118,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Force.ConcentratedLoad_Faces.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Force.ConcentratedLoad_Faces.md index 5289961c29..408e3d762d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Force.ConcentratedLoad_Faces.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Force.ConcentratedLoad_Faces.md @@ -1,4 +1,5 @@ -# Class ConcentratedLoad\_Faces +# Class ConcentratedLoad\_Faces + Namespace: [VM.Managed.DAFUL.Builder.MeshFree.Force](VM.Managed.DAFUL.Builder.MeshFree.Force.md) Assembly: VMBldMeshFree.dll @@ -9,10 +10,10 @@ public class ConcentratedLoad_Faces : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [ConcentratedLoad\_Faces](VM.Managed.DAFUL.Builder.MeshFree.Force.ConcentratedLoad\_Faces.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -69,7 +70,7 @@ public string[] BaseGeometry { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### InputArray @@ -79,7 +80,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -97,7 +98,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -107,9 +108,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Force.PressureLoad.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Force.PressureLoad.md index 0e372c494d..1bfc1f92e7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Force.PressureLoad.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Force.PressureLoad.md @@ -1,4 +1,5 @@ -# Class PressureLoad +# Class PressureLoad + Namespace: [VM.Managed.DAFUL.Builder.MeshFree.Force](VM.Managed.DAFUL.Builder.MeshFree.Force.md) Assembly: VMBldMeshFree.dll @@ -9,10 +10,10 @@ public class PressureLoad : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [PressureLoad](VM.Managed.DAFUL.Builder.MeshFree.Force.PressureLoad.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -79,7 +80,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -97,7 +98,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -107,9 +108,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Force.PressureLoad_Faces.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Force.PressureLoad_Faces.md index 1a47828e99..c5a62c0346 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Force.PressureLoad_Faces.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Force.PressureLoad_Faces.md @@ -1,4 +1,5 @@ -# Class PressureLoad\_Faces +# Class PressureLoad\_Faces + Namespace: [VM.Managed.DAFUL.Builder.MeshFree.Force](VM.Managed.DAFUL.Builder.MeshFree.Force.md) Assembly: VMBldMeshFree.dll @@ -9,10 +10,10 @@ public class PressureLoad_Faces : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [PressureLoad\_Faces](VM.Managed.DAFUL.Builder.MeshFree.Force.PressureLoad\_Faces.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -69,7 +70,7 @@ public string[] BaseGeometry { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### InputArray @@ -79,7 +80,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -97,7 +98,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -107,9 +108,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Force.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Force.md index d3f1bbe4c5..0f8c87df50 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Force.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Force.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Builder.MeshFree.Force +# Namespace VM.Managed.DAFUL.Builder.MeshFree.Force + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Range.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Range.md index e78a148459..5a859abb07 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Range.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.Range.md @@ -1,4 +1,5 @@ -# Class Range +# Class Range + Namespace: [VM.Managed.DAFUL.Builder.MeshFree](VM.Managed.DAFUL.Builder.MeshFree.md) Assembly: VMBldMeshFree.dll @@ -9,10 +10,10 @@ public class Range : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [Range](VM.Managed.DAFUL.Builder.MeshFree.Range.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -69,7 +70,7 @@ protected override bool AddToDoc { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Connectable @@ -107,5 +108,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.RigidBodyElementPair.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.RigidBodyElementPair.md index 1e1500fbf6..96d0729615 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.RigidBodyElementPair.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.RigidBodyElementPair.md @@ -1,4 +1,5 @@ -# Class RigidBodyElementPair +# Class RigidBodyElementPair + Namespace: [VM.Managed.DAFUL.Builder.MeshFree](VM.Managed.DAFUL.Builder.MeshFree.md) Assembly: VMBldMeshFree.dll @@ -9,10 +10,10 @@ public class RigidBodyElementPair : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [RigidBodyElementPair](VM.Managed.DAFUL.Builder.MeshFree.RigidBodyElementPair.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -97,5 +98,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.RigidBodyElementPair_Faces.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.RigidBodyElementPair_Faces.md index 6ffd1a1253..7013aace5e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.RigidBodyElementPair_Faces.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.RigidBodyElementPair_Faces.md @@ -1,4 +1,5 @@ -# Class RigidBodyElementPair\_Faces +# Class RigidBodyElementPair\_Faces + Namespace: [VM.Managed.DAFUL.Builder.MeshFree](VM.Managed.DAFUL.Builder.MeshFree.md) Assembly: VMBldMeshFree.dll @@ -9,10 +10,10 @@ public class RigidBodyElementPair_Faces : BuilderNamed, IB #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [RigidBodyElementPair\_Faces](VM.Managed.DAFUL.Builder.MeshFree.RigidBodyElementPair\_Faces.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -69,7 +70,7 @@ public PickedFace ActionGeometry { get; set; } #### Property Value - PickedFace + [PickedFace](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Split.cs) ### BaseGeometry @@ -79,7 +80,7 @@ public PickedFace BaseGeometry { get; set; } #### Property Value - PickedFace + [PickedFace](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/Split.cs) ## Methods @@ -97,5 +98,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.RigidBodyElementSingle.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.RigidBodyElementSingle.md index f0292e0161..4016088a25 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.RigidBodyElementSingle.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.RigidBodyElementSingle.md @@ -1,4 +1,5 @@ -# Class RigidBodyElementSingle +# Class RigidBodyElementSingle + Namespace: [VM.Managed.DAFUL.Builder.MeshFree](VM.Managed.DAFUL.Builder.MeshFree.md) Assembly: VMBldMeshFree.dll @@ -9,10 +10,10 @@ public class RigidBodyElementSingle : BuilderNamed, IBui #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [RigidBodyElementSingle](VM.Managed.DAFUL.Builder.MeshFree.RigidBodyElementSingle.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -87,7 +88,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -97,9 +98,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.RigidBodyElementSingle_Faces.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.RigidBodyElementSingle_Faces.md index 7a14993982..88e73919cc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.RigidBodyElementSingle_Faces.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.RigidBodyElementSingle_Faces.md @@ -1,4 +1,5 @@ -# Class RigidBodyElementSingle\_Faces +# Class RigidBodyElementSingle\_Faces + Namespace: [VM.Managed.DAFUL.Builder.MeshFree](VM.Managed.DAFUL.Builder.MeshFree.md) Assembly: VMBldMeshFree.dll @@ -9,10 +10,10 @@ public class RigidBodyElementSingle_Faces : BuilderNamed #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [RigidBodyElementSingle\_Faces](VM.Managed.DAFUL.Builder.MeshFree.RigidBodyElementSingle\_Faces.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -69,7 +70,7 @@ public string[] BaseGeometry { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -87,7 +88,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -97,9 +98,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.WeldFile.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.WeldFile.md index 0b78fd64e6..c332a60f54 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.WeldFile.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.WeldFile.md @@ -1,4 +1,5 @@ -# Class WeldFile +# Class WeldFile + Namespace: [VM.Managed.DAFUL.Builder.MeshFree](VM.Managed.DAFUL.Builder.MeshFree.md) Assembly: VMBldMeshFree.dll @@ -9,10 +10,10 @@ public class WeldFile : WeldNPoint, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [WeldNPoint](VM.Managed.DAFUL.Builder.MeshFree.WeldNPoint.md) ← [WeldFile](VM.Managed.DAFUL.Builder.MeshFree.WeldFile.md) @@ -34,29 +35,29 @@ IBuilder [WeldNPoint.Points](VM.Managed.DAFUL.Builder.MeshFree.WeldNPoint.md\#VM\_Managed\_DAFUL\_Builder\_MeshFree\_WeldNPoint\_Points), [WeldNPoint.Directions](VM.Managed.DAFUL.Builder.MeshFree.WeldNPoint.md\#VM\_Managed\_DAFUL\_Builder\_MeshFree\_WeldNPoint\_Directions), [WeldNPoint.Ranges](VM.Managed.DAFUL.Builder.MeshFree.WeldNPoint.md\#VM\_Managed\_DAFUL\_Builder\_MeshFree\_WeldNPoint\_Ranges), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -82,7 +83,7 @@ public string PropertyFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -100,7 +101,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SetInputResultData\(\) @@ -110,5 +111,5 @@ protected override bool SetInputResultData() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.WeldNPoint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.WeldNPoint.md index 8006273a12..b281a60f8c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.WeldNPoint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.WeldNPoint.md @@ -1,4 +1,5 @@ -# Class WeldNPoint +# Class WeldNPoint + Namespace: [VM.Managed.DAFUL.Builder.MeshFree](VM.Managed.DAFUL.Builder.MeshFree.md) Assembly: VMBldMeshFree.dll @@ -9,10 +10,10 @@ public class WeldNPoint : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [WeldNPoint](VM.Managed.DAFUL.Builder.MeshFree.WeldNPoint.md) #### Derived @@ -26,29 +27,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -94,7 +95,7 @@ public string Color { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Directions @@ -104,7 +105,7 @@ protected List Directions { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### MaterialProperty @@ -114,7 +115,7 @@ public string MaterialProperty { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NoOfElements @@ -124,7 +125,7 @@ public int NoOfElements { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Points @@ -134,7 +135,7 @@ protected List Points { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### Radius @@ -154,7 +155,7 @@ protected List Ranges { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ## Methods @@ -172,7 +173,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SetInputResultData\(\) @@ -182,7 +183,7 @@ protected virtual bool SetInputResultData() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -192,9 +193,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.WeldTwoPoint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.WeldTwoPoint.md index e1d18fc255..07a1cc8af8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.WeldTwoPoint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.WeldTwoPoint.md @@ -1,4 +1,5 @@ -# Class WeldTwoPoint +# Class WeldTwoPoint + Namespace: [VM.Managed.DAFUL.Builder.MeshFree](VM.Managed.DAFUL.Builder.MeshFree.md) Assembly: VMBldMeshFree.dll @@ -9,10 +10,10 @@ public class WeldTwoPoint : WeldNPoint, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [WeldNPoint](VM.Managed.DAFUL.Builder.MeshFree.WeldNPoint.md) ← [WeldTwoPoint](VM.Managed.DAFUL.Builder.MeshFree.WeldTwoPoint.md) @@ -34,29 +35,29 @@ IBuilder [WeldNPoint.Points](VM.Managed.DAFUL.Builder.MeshFree.WeldNPoint.md\#VM\_Managed\_DAFUL\_Builder\_MeshFree\_WeldNPoint\_Points), [WeldNPoint.Directions](VM.Managed.DAFUL.Builder.MeshFree.WeldNPoint.md\#VM\_Managed\_DAFUL\_Builder\_MeshFree\_WeldNPoint\_Directions), [WeldNPoint.Ranges](VM.Managed.DAFUL.Builder.MeshFree.WeldNPoint.md\#VM\_Managed\_DAFUL\_Builder\_MeshFree\_WeldNPoint\_Ranges), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -100,7 +101,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SetInputResultData\(\) @@ -110,7 +111,7 @@ protected override bool SetInputResultData() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -120,9 +121,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.md index 933e4ecad2..ca037c164d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.MeshFree.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Builder.MeshFree +# Namespace VM.Managed.DAFUL.Builder.MeshFree + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Mesher.MeshGenerator.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Mesher.MeshGenerator.md index ef847b42e4..bc330ca394 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Mesher.MeshGenerator.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Mesher.MeshGenerator.md @@ -1,4 +1,5 @@ -# Class MeshGenerator +# Class MeshGenerator + Namespace: [VM.Managed.DAFUL.Builder.Mesher](VM.Managed.DAFUL.Builder.Mesher.md) Assembly: VMBldMesher.dll @@ -9,7 +10,7 @@ public class MeshGenerator : IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [MeshGenerator](VM.Managed.DAFUL.Builder.Mesher.MeshGenerator.md) #### Implements @@ -40,7 +41,7 @@ public bool AddToModelFlag { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### BuildObject @@ -70,7 +71,7 @@ public bool CreateGroupFlag { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GroupName @@ -80,7 +81,7 @@ public string GroupName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ImportMeshFlag @@ -90,7 +91,7 @@ public bool ImportMeshFlag { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### InputArray @@ -100,7 +101,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### MeshFilePath @@ -110,7 +111,7 @@ public string MeshFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NodalBodyName @@ -120,7 +121,7 @@ public string NodalBodyName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Parameters @@ -130,7 +131,7 @@ public PickedResult[] Parameters { get; set; } #### Property Value - PickedResult\[\] + [PickedResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/PickedResult.cs)\[\] ## Methods @@ -154,7 +155,7 @@ public void Build(Document docToAdd, List lstSetPointKeys) `docToAdd` Document -`lstSetPointKeys` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstSetPointKeys` List ### Success\(\) @@ -164,7 +165,7 @@ public bool Success() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -174,9 +175,9 @@ public bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Mesher.MeshGeneratorPart.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Mesher.MeshGeneratorPart.md index 727810c746..ac9505318e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Mesher.MeshGeneratorPart.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Mesher.MeshGeneratorPart.md @@ -1,4 +1,5 @@ -# Class MeshGeneratorPart +# Class MeshGeneratorPart + Namespace: [VM.Managed.DAFUL.Builder.Mesher](VM.Managed.DAFUL.Builder.Mesher.md) Assembly: VMBldMesher.dll @@ -9,7 +10,7 @@ public class MeshGeneratorPart : IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [MeshGeneratorPart](VM.Managed.DAFUL.Builder.Mesher.MeshGeneratorPart.md) #### Implements @@ -40,7 +41,7 @@ public bool AddToModelFlag { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### BuildObject @@ -60,7 +61,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### MeshFilePath @@ -70,7 +71,7 @@ public string MeshFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -94,7 +95,7 @@ public void Build(Document docToAdd, List lstSetPointKeys) `docToAdd` Document -`lstSetPointKeys` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstSetPointKeys` List ### Success\(\) @@ -104,7 +105,7 @@ public bool Success() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Validate\(IList\) @@ -114,9 +115,9 @@ public bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Mesher.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Mesher.md index 7b56ea50fd..374183c8ac 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Mesher.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Mesher.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Builder.Mesher +# Namespace VM.Managed.DAFUL.Builder.Mesher + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.NoneDirection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.NoneDirection.md index 75154462b7..f26ce7e06f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.NoneDirection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.NoneDirection.md @@ -1,4 +1,5 @@ -# Struct NoneDirection +# Struct NoneDirection + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -21,7 +22,7 @@ public int NumberOfDirection { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -33,11 +34,11 @@ public void SetDirection(Marker BM, Marker AM, PickedResult[] pickresult, int nu #### Parameters -`BM` Marker +`BM` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) -`AM` Marker +`AM` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) `pickresult` [PickedResult](VM.Managed.DAFUL.Builder.PickedResult.md)\[\] -`numberofpoint` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`numberofpoint` int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.NoneOrientation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.NoneOrientation.md index 7bb0a3e190..0803b8dbdd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.NoneOrientation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.NoneOrientation.md @@ -1,4 +1,5 @@ -# Struct NoneOrientation +# Struct NoneOrientation + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -21,7 +22,7 @@ public int NumberOfOrientation { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -33,13 +34,13 @@ public void SetOrientation(Marker BM, Marker AM, PickedResult[] pickResult, int #### Parameters -`BM` Marker +`BM` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) -`AM` Marker +`AM` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) `pickResult` [PickedResult](VM.Managed.DAFUL.Builder.PickedResult.md)\[\] -`nNumOfPoint` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNumOfPoint` int -`nNumOfDirection` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNumOfDirection` int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.OneDirection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.OneDirection.md index b80105893e..9fc5eafb55 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.OneDirection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.OneDirection.md @@ -1,4 +1,5 @@ -# Struct OneDirection +# Struct OneDirection + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -21,7 +22,7 @@ public int NumberOfDirection { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -33,11 +34,11 @@ public void SetDirection(Marker BM, Marker AM, PickedResult[] pickresult, int nu #### Parameters -`BM` Marker +`BM` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) -`AM` Marker +`AM` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) `pickresult` [PickedResult](VM.Managed.DAFUL.Builder.PickedResult.md)\[\] -`numberofpoint` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`numberofpoint` int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.OneOrientation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.OneOrientation.md index 43837d400e..acad980bac 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.OneOrientation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.OneOrientation.md @@ -1,4 +1,5 @@ -# Struct OneOrientation +# Struct OneOrientation + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -21,7 +22,7 @@ public int NumberOfOrientation { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -33,13 +34,13 @@ public void SetOrientation(Marker BM, Marker AM, PickedResult[] pickResult, int #### Parameters -`BM` Marker +`BM` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) -`AM` Marker +`AM` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) `pickResult` [PickedResult](VM.Managed.DAFUL.Builder.PickedResult.md)\[\] -`nNumOfPoint` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNumOfPoint` int -`nNumOfDirection` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNumOfDirection` int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.OnePointPosition.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.OnePointPosition.md index 21e691f6f9..23872e77cf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.OnePointPosition.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.OnePointPosition.md @@ -1,4 +1,5 @@ -# Struct OnePointPosition +# Struct OnePointPosition + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -21,7 +22,7 @@ public int NumberOfPoint { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -33,9 +34,9 @@ public void SetPosition(Marker BM, Marker AM, PickedResult[] pickresult) #### Parameters -`BM` Marker +`BM` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) -`AM` Marker +`AM` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) `pickresult` [PickedResult](VM.Managed.DAFUL.Builder.PickedResult.md)\[\] diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PartMarker.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PartMarker.md index 457d4da977..322a837d4d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PartMarker.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PartMarker.md @@ -1,4 +1,5 @@ -# Class PartMarker +# Class PartMarker + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class PartMarker : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [BuilderSymmetric](VM.Managed.DAFUL.Builder.BuilderSymmetric\-1.md) ← [BuilderNamed](VM.Managed.DAFUL.Builder.BuilderNamed\-1.md) ← @@ -75,5 +76,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PickedDirection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PickedDirection.md index 6432a767a8..51764466f4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PickedDirection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PickedDirection.md @@ -1,4 +1,5 @@ -# Class PickedDirection +# Class PickedDirection + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class PickedDirection : PickedResult #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PickedResult](VM.Managed.DAFUL.Builder.PickedResult.md) ← [PickedDirection](VM.Managed.DAFUL.Builder.PickedDirection.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PickedFace.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PickedFace.md index 679b4024d1..d0ea0b828a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PickedFace.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PickedFace.md @@ -1,4 +1,5 @@ -# Class PickedFace +# Class PickedFace + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class PickedFace #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PickedFace](VM.Managed.DAFUL.Builder.PickedFace.md) #### Extension Methods @@ -36,5 +37,5 @@ public string[] ObjectKey { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PickedObject.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PickedObject.md index 6d29e99047..2971075c37 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PickedObject.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PickedObject.md @@ -1,4 +1,5 @@ -# Class PickedObject +# Class PickedObject + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class PickedObject : PickedResult #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PickedResult](VM.Managed.DAFUL.Builder.PickedResult.md) ← [PickedObject](VM.Managed.DAFUL.Builder.PickedObject.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PickedOrientation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PickedOrientation.md index 904754f135..82a46f4905 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PickedOrientation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PickedOrientation.md @@ -1,4 +1,5 @@ -# Class PickedOrientation +# Class PickedOrientation + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class PickedOrientation : PickedResult #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PickedResult](VM.Managed.DAFUL.Builder.PickedResult.md) ← [PickedOrientation](VM.Managed.DAFUL.Builder.PickedOrientation.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PickedPoint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PickedPoint.md index 7f75e78dca..8c92eac584 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PickedPoint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PickedPoint.md @@ -1,4 +1,5 @@ -# Class PickedPoint +# Class PickedPoint + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class PickedPoint : PickedResult #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PickedResult](VM.Managed.DAFUL.Builder.PickedResult.md) ← [PickedPoint](VM.Managed.DAFUL.Builder.PickedPoint.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PickedResult.PickedType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PickedResult.PickedType.md index b9fa3cf3e0..060d060661 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PickedResult.PickedType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PickedResult.PickedType.md @@ -1,4 +1,5 @@ -# Enum PickedResult.PickedType +# Enum PickedResult.PickedType + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PickedResult.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PickedResult.md index 42d56d01fb..c8b7141830 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PickedResult.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PickedResult.md @@ -1,4 +1,5 @@ -# Class PickedResult +# Class PickedResult + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public abstract class PickedResult #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PickedResult](VM.Managed.DAFUL.Builder.PickedResult.md) #### Derived diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PickedTransform.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PickedTransform.md index e660d92cf0..52ad2c664a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PickedTransform.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.PickedTransform.md @@ -1,4 +1,5 @@ -# Class PickedTransform +# Class PickedTransform + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class PickedTransform : PickedResult #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PickedResult](VM.Managed.DAFUL.Builder.PickedResult.md) ← [PickedTransform](VM.Managed.DAFUL.Builder.PickedTransform.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.RectanglePlane.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.RectanglePlane.md index 135e01c28d..a56a9caabc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.RectanglePlane.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.RectanglePlane.md @@ -1,4 +1,5 @@ -# Class RectanglePlane +# Class RectanglePlane + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class RectanglePlane : ImprintSheet, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BooleanBase](VM.Managed.DAFUL.Builder.BooleanBase\-1.md) ← [Imprint](VM.Managed.DAFUL.Builder.Imprint.md) ← [ImprintSheet](VM.Managed.DAFUL.Builder.ImprintSheet.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.RequestBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.RequestBase-1.md index 3006965bb9..b57b9f1c5a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.RequestBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.RequestBase-1.md @@ -1,4 +1,5 @@ -# Class RequestBase +# Class RequestBase + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -13,7 +14,7 @@ public class RequestBase : BuilderNamed, IBuilder where T : RequestBase, n #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [BuilderSymmetric](VM.Managed.DAFUL.Builder.BuilderSymmetric\-1.md) ← [BuilderNamed](VM.Managed.DAFUL.Builder.BuilderNamed\-1.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.RequestConnectedEntity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.RequestConnectedEntity.md index b19e1c0d38..1a21f1e8b3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.RequestConnectedEntity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.RequestConnectedEntity.md @@ -1,4 +1,5 @@ -# Class RequestConnectedEntity +# Class RequestConnectedEntity + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class RequestConnectedEntity : RequestBase, IBuil #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [BuilderSymmetric](VM.Managed.DAFUL.Builder.BuilderSymmetric\-1.md) ← [BuilderNamed](VM.Managed.DAFUL.Builder.BuilderNamed\-1.md) ← @@ -77,5 +78,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.RequestEntities.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.RequestEntities.md index 58e94394d2..0782e856f3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.RequestEntities.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.RequestEntities.md @@ -1,4 +1,5 @@ -# Class RequestEntities +# Class RequestEntities + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class RequestEntities : IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [RequestEntities](VM.Managed.DAFUL.Builder.RequestEntities.md) #### Implements @@ -40,7 +41,7 @@ public string[] ActionBodies { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### Name @@ -50,5 +51,5 @@ public string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.RequestEntity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.RequestEntity.md index c471208268..8673d21e1c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.RequestEntity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.RequestEntity.md @@ -1,4 +1,5 @@ -# Class RequestEntity +# Class RequestEntity + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class RequestEntity : IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [RequestEntity](VM.Managed.DAFUL.Builder.RequestEntity.md) #### Implements @@ -50,7 +51,7 @@ public RequestEntity Entity { get; } #### Property Value - RequestEntity + [RequestEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/RequestEntity.cs) ### Name @@ -60,7 +61,7 @@ public string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Parameters diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.RequestKinematic.CheckedMarker.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.RequestKinematic.CheckedMarker.md index c39032e179..7c764c2efe 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.RequestKinematic.CheckedMarker.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.RequestKinematic.CheckedMarker.md @@ -1,4 +1,5 @@ -# Struct RequestKinematic.CheckedMarker +# Struct RequestKinematic.CheckedMarker + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -17,9 +18,9 @@ public CheckedMarker(string check, string marker) #### Parameters -`check` [string](https://learn.microsoft.com/dotnet/api/system.string) +`check` string -`marker` [string](https://learn.microsoft.com/dotnet/api/system.string) +`marker` string ## Properties @@ -31,7 +32,7 @@ public string Checked { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Marker @@ -41,5 +42,5 @@ public string Marker { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.RequestKinematic.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.RequestKinematic.md index c54201714d..c2434b54e9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.RequestKinematic.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.RequestKinematic.md @@ -1,4 +1,5 @@ -# Class RequestKinematic +# Class RequestKinematic + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -11,7 +12,7 @@ public class RequestKinematic : RequestBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [BuilderSymmetric](VM.Managed.DAFUL.Builder.BuilderSymmetric\-1.md) ← [BuilderNamed](VM.Managed.DAFUL.Builder.BuilderNamed\-1.md) ← @@ -73,7 +74,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### ReferenceMarker @@ -101,5 +102,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.RequestStructure.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.RequestStructure.md index 0fcc6e75d2..2aeb1bcb2c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.RequestStructure.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.RequestStructure.md @@ -1,4 +1,5 @@ -# Class RequestStructure +# Class RequestStructure + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -11,7 +12,7 @@ public class RequestStructure : RequestBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [BuilderSymmetric](VM.Managed.DAFUL.Builder.BuilderSymmetric\-1.md) ← [BuilderNamed](VM.Managed.DAFUL.Builder.BuilderNamed\-1.md) ← @@ -79,5 +80,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidBodyRoller.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidBodyRoller.md index 7f46afd4f5..c2d708b38f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidBodyRoller.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidBodyRoller.md @@ -1,4 +1,5 @@ -# Class SolidBodyRoller +# Class SolidBodyRoller + Namespace: [VM.Managed.DAFUL.Builder.Roller](VM.Managed.DAFUL.Builder.Roller.md) Assembly: VMBldRoller.dll @@ -9,10 +10,10 @@ public abstract class SolidBodyRoller : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [SolidBodyRoller](VM.Managed.DAFUL.Builder.Roller.SolidBodyRoller.md) #### Derived @@ -29,29 +30,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -77,7 +78,7 @@ protected double m_TreadRadius #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Properties @@ -89,7 +90,7 @@ protected override bool AddToDoc { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Color @@ -99,7 +100,7 @@ public string Color { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Interface @@ -109,7 +110,7 @@ public bool Interface { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -147,5 +148,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidBodyRollerCenter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidBodyRollerCenter.md index 7be8251b55..59b7e75f01 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidBodyRollerCenter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidBodyRollerCenter.md @@ -1,4 +1,5 @@ -# Class SolidBodyRollerCenter +# Class SolidBodyRollerCenter + Namespace: [VM.Managed.DAFUL.Builder.Roller](VM.Managed.DAFUL.Builder.Roller.md) Assembly: VMBldRoller.dll @@ -9,10 +10,10 @@ public class SolidBodyRollerCenter : SolidBodyRoller, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [SolidBodyRoller](VM.Managed.DAFUL.Builder.Roller.SolidBodyRoller.md) ← [SolidBodyRollerCenter](VM.Managed.DAFUL.Builder.Roller.SolidBodyRollerCenter.md) @@ -29,29 +30,29 @@ IBuilder [SolidBodyRoller.Interface](VM.Managed.DAFUL.Builder.Roller.SolidBodyRoller.md\#VM\_Managed\_DAFUL\_Builder\_Roller\_SolidBodyRoller\_Interface), [SolidBodyRoller.Color](VM.Managed.DAFUL.Builder.Roller.SolidBodyRoller.md\#VM\_Managed\_DAFUL\_Builder\_Roller\_SolidBodyRoller\_Color), [SolidBodyRoller.AddToDoc](VM.Managed.DAFUL.Builder.Roller.SolidBodyRoller.md\#VM\_Managed\_DAFUL\_Builder\_Roller\_SolidBodyRoller\_AddToDoc), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidBodyRollerDouble.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidBodyRollerDouble.md index 69b4c04c34..55121de615 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidBodyRollerDouble.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidBodyRollerDouble.md @@ -1,4 +1,5 @@ -# Class SolidBodyRollerDouble +# Class SolidBodyRollerDouble + Namespace: [VM.Managed.DAFUL.Builder.Roller](VM.Managed.DAFUL.Builder.Roller.md) Assembly: VMBldRoller.dll @@ -9,10 +10,10 @@ public class SolidBodyRollerDouble : SolidBodyRoller, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [SolidBodyRoller](VM.Managed.DAFUL.Builder.Roller.SolidBodyRoller.md) ← [SolidBodyRollerDouble](VM.Managed.DAFUL.Builder.Roller.SolidBodyRollerDouble.md) @@ -29,29 +30,29 @@ IBuilder [SolidBodyRoller.Interface](VM.Managed.DAFUL.Builder.Roller.SolidBodyRoller.md\#VM\_Managed\_DAFUL\_Builder\_Roller\_SolidBodyRoller\_Interface), [SolidBodyRoller.Color](VM.Managed.DAFUL.Builder.Roller.SolidBodyRoller.md\#VM\_Managed\_DAFUL\_Builder\_Roller\_SolidBodyRoller\_Color), [SolidBodyRoller.AddToDoc](VM.Managed.DAFUL.Builder.Roller.SolidBodyRoller.md\#VM\_Managed\_DAFUL\_Builder\_Roller\_SolidBodyRoller\_AddToDoc), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidBodyRollerFlat.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidBodyRollerFlat.md index aa12822dc5..0f9c595038 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidBodyRollerFlat.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidBodyRollerFlat.md @@ -1,4 +1,5 @@ -# Class SolidBodyRollerFlat +# Class SolidBodyRollerFlat + Namespace: [VM.Managed.DAFUL.Builder.Roller](VM.Managed.DAFUL.Builder.Roller.md) Assembly: VMBldRoller.dll @@ -9,10 +10,10 @@ public class SolidBodyRollerFlat : SolidBodyRoller, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [SolidBodyRoller](VM.Managed.DAFUL.Builder.Roller.SolidBodyRoller.md) ← [SolidBodyRollerFlat](VM.Managed.DAFUL.Builder.Roller.SolidBodyRollerFlat.md) @@ -29,29 +30,29 @@ IBuilder [SolidBodyRoller.Interface](VM.Managed.DAFUL.Builder.Roller.SolidBodyRoller.md\#VM\_Managed\_DAFUL\_Builder\_Roller\_SolidBodyRoller\_Interface), [SolidBodyRoller.Color](VM.Managed.DAFUL.Builder.Roller.SolidBodyRoller.md\#VM\_Managed\_DAFUL\_Builder\_Roller\_SolidBodyRoller\_Color), [SolidBodyRoller.AddToDoc](VM.Managed.DAFUL.Builder.Roller.SolidBodyRoller.md\#VM\_Managed\_DAFUL\_Builder\_Roller\_SolidBodyRoller\_AddToDoc), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidBodyRollerGeneral.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidBodyRollerGeneral.md index deaa246beb..e07e1568b2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidBodyRollerGeneral.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidBodyRollerGeneral.md @@ -1,4 +1,5 @@ -# Class SolidBodyRollerGeneral +# Class SolidBodyRollerGeneral + Namespace: [VM.Managed.DAFUL.Builder.Roller](VM.Managed.DAFUL.Builder.Roller.md) Assembly: VMBldRoller.dll @@ -9,10 +10,10 @@ public class SolidBodyRollerGeneral : SolidBodyRoller, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [SolidBodyRoller](VM.Managed.DAFUL.Builder.Roller.SolidBodyRoller.md) ← [SolidBodyRollerGeneral](VM.Managed.DAFUL.Builder.Roller.SolidBodyRollerGeneral.md) @@ -29,29 +30,29 @@ IBuilder [SolidBodyRoller.Interface](VM.Managed.DAFUL.Builder.Roller.SolidBodyRoller.md\#VM\_Managed\_DAFUL\_Builder\_Roller\_SolidBodyRoller\_Interface), [SolidBodyRoller.Color](VM.Managed.DAFUL.Builder.Roller.SolidBodyRoller.md\#VM\_Managed\_DAFUL\_Builder\_Roller\_SolidBodyRoller\_Color), [SolidBodyRoller.AddToDoc](VM.Managed.DAFUL.Builder.Roller.SolidBodyRoller.md\#VM\_Managed\_DAFUL\_Builder\_Roller\_SolidBodyRoller\_AddToDoc), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidBodyRollerSingle.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidBodyRollerSingle.md index 2be1d63168..c3a992789f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidBodyRollerSingle.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidBodyRollerSingle.md @@ -1,4 +1,5 @@ -# Class SolidBodyRollerSingle +# Class SolidBodyRollerSingle + Namespace: [VM.Managed.DAFUL.Builder.Roller](VM.Managed.DAFUL.Builder.Roller.md) Assembly: VMBldRoller.dll @@ -9,10 +10,10 @@ public class SolidBodyRollerSingle : SolidBodyRoller, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [SolidBodyRoller](VM.Managed.DAFUL.Builder.Roller.SolidBodyRoller.md) ← [SolidBodyRollerSingle](VM.Managed.DAFUL.Builder.Roller.SolidBodyRollerSingle.md) @@ -29,29 +30,29 @@ IBuilder [SolidBodyRoller.Interface](VM.Managed.DAFUL.Builder.Roller.SolidBodyRoller.md\#VM\_Managed\_DAFUL\_Builder\_Roller\_SolidBodyRoller\_Interface), [SolidBodyRoller.Color](VM.Managed.DAFUL.Builder.Roller.SolidBodyRoller.md\#VM\_Managed\_DAFUL\_Builder\_Roller\_SolidBodyRoller\_Color), [SolidBodyRoller.AddToDoc](VM.Managed.DAFUL.Builder.Roller.SolidBodyRoller.md\#VM\_Managed\_DAFUL\_Builder\_Roller\_SolidBodyRoller\_AddToDoc), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidRoller.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidRoller.md index 9321d43a66..ed686edc93 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidRoller.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidRoller.md @@ -1,4 +1,5 @@ -# Class SolidRoller +# Class SolidRoller + Namespace: [VM.Managed.DAFUL.Builder.Roller](VM.Managed.DAFUL.Builder.Roller.md) Assembly: VMBldRoller.dll @@ -9,8 +10,8 @@ public abstract class SolidRoller : BuilderBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← [SolidRoller](VM.Managed.DAFUL.Builder.Roller.SolidRoller.md) #### Derived @@ -27,23 +28,23 @@ IBuilder #### Inherited Members -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -69,7 +70,7 @@ protected double m_TreadRadius #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Properties @@ -81,7 +82,7 @@ protected override bool AddToDoc { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Color @@ -91,7 +92,7 @@ public string Color { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -129,5 +130,5 @@ protected override sealed bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidRollerCenter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidRollerCenter.md index bca8b6f048..de4c1a7624 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidRollerCenter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidRollerCenter.md @@ -1,4 +1,5 @@ -# Class SolidRollerCenter +# Class SolidRollerCenter + Namespace: [VM.Managed.DAFUL.Builder.Roller](VM.Managed.DAFUL.Builder.Roller.md) Assembly: VMBldRoller.dll @@ -9,8 +10,8 @@ public class SolidRollerCenter : SolidRoller, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← [SolidRoller](VM.Managed.DAFUL.Builder.Roller.SolidRoller.md) ← [SolidRollerCenter](VM.Managed.DAFUL.Builder.Roller.SolidRollerCenter.md) @@ -26,23 +27,23 @@ IBuilder [SolidRoller.GetCurrentBuilder\(\)](VM.Managed.DAFUL.Builder.Roller.SolidRoller.md\#VM\_Managed\_DAFUL\_Builder\_Roller\_SolidRoller\_GetCurrentBuilder), [SolidRoller.Color](VM.Managed.DAFUL.Builder.Roller.SolidRoller.md\#VM\_Managed\_DAFUL\_Builder\_Roller\_SolidRoller\_Color), [SolidRoller.AddToDoc](VM.Managed.DAFUL.Builder.Roller.SolidRoller.md\#VM\_Managed\_DAFUL\_Builder\_Roller\_SolidRoller\_AddToDoc), -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidRollerDouble.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidRollerDouble.md index 9c6c3ed1f2..4a9a9ee5eb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidRollerDouble.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidRollerDouble.md @@ -1,4 +1,5 @@ -# Class SolidRollerDouble +# Class SolidRollerDouble + Namespace: [VM.Managed.DAFUL.Builder.Roller](VM.Managed.DAFUL.Builder.Roller.md) Assembly: VMBldRoller.dll @@ -9,8 +10,8 @@ public class SolidRollerDouble : SolidRoller, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← [SolidRoller](VM.Managed.DAFUL.Builder.Roller.SolidRoller.md) ← [SolidRollerDouble](VM.Managed.DAFUL.Builder.Roller.SolidRollerDouble.md) @@ -26,23 +27,23 @@ IBuilder [SolidRoller.GetCurrentBuilder\(\)](VM.Managed.DAFUL.Builder.Roller.SolidRoller.md\#VM\_Managed\_DAFUL\_Builder\_Roller\_SolidRoller\_GetCurrentBuilder), [SolidRoller.Color](VM.Managed.DAFUL.Builder.Roller.SolidRoller.md\#VM\_Managed\_DAFUL\_Builder\_Roller\_SolidRoller\_Color), [SolidRoller.AddToDoc](VM.Managed.DAFUL.Builder.Roller.SolidRoller.md\#VM\_Managed\_DAFUL\_Builder\_Roller\_SolidRoller\_AddToDoc), -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidRollerFlat.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidRollerFlat.md index b887e89af4..a60480a8e2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidRollerFlat.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidRollerFlat.md @@ -1,4 +1,5 @@ -# Class SolidRollerFlat +# Class SolidRollerFlat + Namespace: [VM.Managed.DAFUL.Builder.Roller](VM.Managed.DAFUL.Builder.Roller.md) Assembly: VMBldRoller.dll @@ -9,8 +10,8 @@ public class SolidRollerFlat : SolidRoller, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← [SolidRoller](VM.Managed.DAFUL.Builder.Roller.SolidRoller.md) ← [SolidRollerFlat](VM.Managed.DAFUL.Builder.Roller.SolidRollerFlat.md) @@ -26,23 +27,23 @@ IBuilder [SolidRoller.GetCurrentBuilder\(\)](VM.Managed.DAFUL.Builder.Roller.SolidRoller.md\#VM\_Managed\_DAFUL\_Builder\_Roller\_SolidRoller\_GetCurrentBuilder), [SolidRoller.Color](VM.Managed.DAFUL.Builder.Roller.SolidRoller.md\#VM\_Managed\_DAFUL\_Builder\_Roller\_SolidRoller\_Color), [SolidRoller.AddToDoc](VM.Managed.DAFUL.Builder.Roller.SolidRoller.md\#VM\_Managed\_DAFUL\_Builder\_Roller\_SolidRoller\_AddToDoc), -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidRollerGeneral.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidRollerGeneral.md index 8564ca2765..41b3c6e287 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidRollerGeneral.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidRollerGeneral.md @@ -1,4 +1,5 @@ -# Class SolidRollerGeneral +# Class SolidRollerGeneral + Namespace: [VM.Managed.DAFUL.Builder.Roller](VM.Managed.DAFUL.Builder.Roller.md) Assembly: VMBldRoller.dll @@ -9,8 +10,8 @@ public class SolidRollerGeneral : SolidRoller, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← [SolidRoller](VM.Managed.DAFUL.Builder.Roller.SolidRoller.md) ← [SolidRollerGeneral](VM.Managed.DAFUL.Builder.Roller.SolidRollerGeneral.md) @@ -26,23 +27,23 @@ IBuilder [SolidRoller.GetCurrentBuilder\(\)](VM.Managed.DAFUL.Builder.Roller.SolidRoller.md\#VM\_Managed\_DAFUL\_Builder\_Roller\_SolidRoller\_GetCurrentBuilder), [SolidRoller.Color](VM.Managed.DAFUL.Builder.Roller.SolidRoller.md\#VM\_Managed\_DAFUL\_Builder\_Roller\_SolidRoller\_Color), [SolidRoller.AddToDoc](VM.Managed.DAFUL.Builder.Roller.SolidRoller.md\#VM\_Managed\_DAFUL\_Builder\_Roller\_SolidRoller\_AddToDoc), -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidRollerSingle.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidRollerSingle.md index 86741251eb..b5f1360b42 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidRollerSingle.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.SolidRollerSingle.md @@ -1,4 +1,5 @@ -# Class SolidRollerSingle +# Class SolidRollerSingle + Namespace: [VM.Managed.DAFUL.Builder.Roller](VM.Managed.DAFUL.Builder.Roller.md) Assembly: VMBldRoller.dll @@ -9,8 +10,8 @@ public class SolidRollerSingle : SolidRoller, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← [SolidRoller](VM.Managed.DAFUL.Builder.Roller.SolidRoller.md) ← [SolidRollerSingle](VM.Managed.DAFUL.Builder.Roller.SolidRollerSingle.md) @@ -26,23 +27,23 @@ IBuilder [SolidRoller.GetCurrentBuilder\(\)](VM.Managed.DAFUL.Builder.Roller.SolidRoller.md\#VM\_Managed\_DAFUL\_Builder\_Roller\_SolidRoller\_GetCurrentBuilder), [SolidRoller.Color](VM.Managed.DAFUL.Builder.Roller.SolidRoller.md\#VM\_Managed\_DAFUL\_Builder\_Roller\_SolidRoller\_Color), [SolidRoller.AddToDoc](VM.Managed.DAFUL.Builder.Roller.SolidRoller.md\#VM\_Managed\_DAFUL\_Builder\_Roller\_SolidRoller\_AddToDoc), -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.md index f8dfca08ae..24aa39e914 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Roller.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Builder.Roller +# Namespace VM.Managed.DAFUL.Builder.Roller + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SheetThicken.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SheetThicken.md index be7b7020eb..a027a51b90 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SheetThicken.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SheetThicken.md @@ -1,4 +1,5 @@ -# Class SheetThicken +# Class SheetThicken + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class SheetThicken : BooleanBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BooleanBase](VM.Managed.DAFUL.Builder.BooleanBase\-1.md) ← [SheetThicken](VM.Managed.DAFUL.Builder.SheetThicken.md) @@ -69,7 +70,7 @@ protected override string Argument { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### InputArray @@ -79,7 +80,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### SheetNames @@ -89,7 +90,7 @@ public string[] SheetNames { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### Thickness @@ -109,7 +110,7 @@ protected override string Type { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -131,9 +132,9 @@ public override bool Validate(IList lstErrorMessage) #### Parameters -`lstErrorMessage` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstErrorMessage` IList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Solid-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Solid-1.md index a1f68b1b1e..e69bef3afb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Solid-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Solid-1.md @@ -1,4 +1,5 @@ -# Class Solid +# Class Solid + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -13,7 +14,7 @@ public abstract class Solid : BuilderBase, IBuilder where T : Builder, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [Solid](VM.Managed.DAFUL.Builder.Solid\-1.md) @@ -65,7 +66,7 @@ protected override bool AddToDoc { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Color @@ -75,7 +76,7 @@ public string Color { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SolidBuilder @@ -113,7 +114,7 @@ protected override sealed bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SetSolidBuilderProperty\(T\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBlockSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBlockSimple.md index e5c88c380b..389f3b90cc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBlockSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBlockSimple.md @@ -1,4 +1,5 @@ -# Class SolidBlockSimple +# Class SolidBlockSimple + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class SolidBlockSimple : Solid, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [Solid](VM.Managed.DAFUL.Builder.Solid\-1.md) ← [SolidBlockSimple](VM.Managed.DAFUL.Builder.SolidBlockSimple.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBody-1.BodyNameInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBody-1.BodyNameInfo.md index 3182a2a169..ef589dbe44 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBody-1.BodyNameInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBody-1.BodyNameInfo.md @@ -1,4 +1,5 @@ -# Class SolidBody.BodyNameInfo +# Class SolidBody.BodyNameInfo + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class SolidBody.BodyNameInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SolidBody.BodyNameInfo](VM.Managed.DAFUL.Builder.SolidBody\-1.BodyNameInfo.md) #### Extension Methods @@ -36,7 +37,7 @@ public string BooleanOption { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Color @@ -46,7 +47,7 @@ public string Color { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### CreateOption @@ -56,7 +57,7 @@ public string CreateOption { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Name @@ -66,5 +67,5 @@ public string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBody-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBody-1.md index 5a7d01a1b4..5f97607222 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBody-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBody-1.md @@ -1,4 +1,5 @@ -# Class SolidBody +# Class SolidBody + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -13,7 +14,7 @@ public abstract class SolidBody : BuilderNamed, IBuilder where T : #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [BuilderSymmetric](VM.Managed.DAFUL.Builder.BuilderSymmetric\-1.md) ← [BuilderNamed](VM.Managed.DAFUL.Builder.BuilderNamed\-1.md) ← @@ -73,7 +74,7 @@ protected override bool AddToDoc { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### BodyName @@ -93,7 +94,7 @@ public bool Interface { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -103,7 +104,7 @@ public override string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SolidBuilder @@ -135,7 +136,7 @@ protected override ObjectBase OnFinalBuild(string strObjName, Document doc) #### Parameters -`strObjName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strObjName` string `doc` Document @@ -167,7 +168,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SetSolidBuilderProperty\(T\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyBlock-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyBlock-1.md index 57eb6e4b82..e28f415b14 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyBlock-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyBlock-1.md @@ -1,4 +1,5 @@ -# Class SolidBodyBlock +# Class SolidBodyBlock + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -13,7 +14,7 @@ public abstract class SolidBodyBlock : SolidBody, IBuilder where T : Build #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [BuilderSymmetric](VM.Managed.DAFUL.Builder.BuilderSymmetric\-1.md) ← [BuilderNamed](VM.Managed.DAFUL.Builder.BuilderNamed\-1.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyBlockSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyBlockSimple.md index e8992585f8..eb0d3098c3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyBlockSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyBlockSimple.md @@ -1,4 +1,5 @@ -# Class SolidBodyBlockSimple +# Class SolidBodyBlockSimple + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class SolidBodyBlockSimple : SolidBodyBlock, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [BuilderSymmetric](VM.Managed.DAFUL.Builder.BuilderSymmetric\-1.md) ← [BuilderNamed](VM.Managed.DAFUL.Builder.BuilderNamed\-1.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyBlockTwoPoint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyBlockTwoPoint.md index b0c60c362d..fb8b3927f4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyBlockTwoPoint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyBlockTwoPoint.md @@ -1,4 +1,5 @@ -# Class SolidBodyBlockTwoPoint +# Class SolidBodyBlockTwoPoint + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class SolidBodyBlockTwoPoint : SolidBodyBlock, IBui #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [BuilderSymmetric](VM.Managed.DAFUL.Builder.BuilderSymmetric\-1.md) ← [BuilderNamed](VM.Managed.DAFUL.Builder.BuilderNamed\-1.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyCone-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyCone-1.md index b74bb1445b..d86ffad2b9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyCone-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyCone-1.md @@ -1,4 +1,5 @@ -# Class SolidBodyCone +# Class SolidBodyCone + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -13,7 +14,7 @@ public abstract class SolidBodyCone : SolidBody, IBuilder where T : Builde #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [BuilderSymmetric](VM.Managed.DAFUL.Builder.BuilderSymmetric\-1.md) ← [BuilderNamed](VM.Managed.DAFUL.Builder.BuilderNamed\-1.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyConeSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyConeSimple.md index 7dfda878c8..935d87bcee 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyConeSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyConeSimple.md @@ -1,4 +1,5 @@ -# Class SolidBodyConeSimple +# Class SolidBodyConeSimple + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public abstract class SolidBodyConeSimple : SolidBodyCone, IB #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [BuilderSymmetric](VM.Managed.DAFUL.Builder.BuilderSymmetric\-1.md) ← [BuilderNamed](VM.Managed.DAFUL.Builder.BuilderNamed\-1.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyCylinder-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyCylinder-1.md index 8569fc05c4..96486333ef 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyCylinder-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyCylinder-1.md @@ -1,4 +1,5 @@ -# Class SolidBodyCylinder +# Class SolidBodyCylinder + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -13,7 +14,7 @@ public abstract class SolidBodyCylinder : SolidBody, IBuilder where T : Bu #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [BuilderSymmetric](VM.Managed.DAFUL.Builder.BuilderSymmetric\-1.md) ← [BuilderNamed](VM.Managed.DAFUL.Builder.BuilderNamed\-1.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyCylinderSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyCylinderSimple.md index 8fa3aac5c9..af19157f7a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyCylinderSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyCylinderSimple.md @@ -1,4 +1,5 @@ -# Class SolidBodyCylinderSimple +# Class SolidBodyCylinderSimple + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class SolidBodyCylinderSimple : SolidBodyCylinder, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [BuilderSymmetric](VM.Managed.DAFUL.Builder.BuilderSymmetric\-1.md) ← [BuilderNamed](VM.Managed.DAFUL.Builder.BuilderNamed\-1.md) ← @@ -129,7 +130,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SetSolidBuilderProperty\(BuilderCylinderSimple\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyEllipseCone-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyEllipseCone-1.md index dfd42aef91..9ab9e2f625 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyEllipseCone-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyEllipseCone-1.md @@ -1,4 +1,5 @@ -# Class SolidBodyEllipseCone +# Class SolidBodyEllipseCone + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -13,7 +14,7 @@ public abstract class SolidBodyEllipseCone : SolidBody, IBuilder where T : #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [BuilderSymmetric](VM.Managed.DAFUL.Builder.BuilderSymmetric\-1.md) ← [BuilderNamed](VM.Managed.DAFUL.Builder.BuilderNamed\-1.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyEllipseConeSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyEllipseConeSimple.md index f9fac99a65..7e81c74bbd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyEllipseConeSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyEllipseConeSimple.md @@ -1,4 +1,5 @@ -# Class SolidBodyEllipseConeSimple +# Class SolidBodyEllipseConeSimple + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class SolidBodyEllipseConeSimple : SolidBodyEllipseCone](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [BuilderSymmetric](VM.Managed.DAFUL.Builder.BuilderSymmetric\-1.md) ← [BuilderNamed](VM.Managed.DAFUL.Builder.BuilderNamed\-1.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyEllipseCylinder-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyEllipseCylinder-1.md index 705daa633f..b0a3aa63b6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyEllipseCylinder-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyEllipseCylinder-1.md @@ -1,4 +1,5 @@ -# Class SolidBodyEllipseCylinder +# Class SolidBodyEllipseCylinder + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -13,7 +14,7 @@ public abstract class SolidBodyEllipseCylinder : SolidBody, IBuilder where #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [BuilderSymmetric](VM.Managed.DAFUL.Builder.BuilderSymmetric\-1.md) ← [BuilderNamed](VM.Managed.DAFUL.Builder.BuilderNamed\-1.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyEllipseCylinderSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyEllipseCylinderSimple.md index 1efe7e1087..edeaadc03c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyEllipseCylinderSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyEllipseCylinderSimple.md @@ -1,4 +1,5 @@ -# Class SolidBodyEllipseCylinderSimple +# Class SolidBodyEllipseCylinderSimple + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class SolidBodyEllipseCylinderSimple : SolidBodyEllipseCylinder](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [BuilderSymmetric](VM.Managed.DAFUL.Builder.BuilderSymmetric\-1.md) ← [BuilderNamed](VM.Managed.DAFUL.Builder.BuilderNamed\-1.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodySphere-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodySphere-1.md index c87ba08bff..648c3d4042 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodySphere-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodySphere-1.md @@ -1,4 +1,5 @@ -# Class SolidBodySphere +# Class SolidBodySphere + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -13,7 +14,7 @@ public abstract class SolidBodySphere : SolidBody, IBuilder where T : Buil #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [BuilderSymmetric](VM.Managed.DAFUL.Builder.BuilderSymmetric\-1.md) ← [BuilderNamed](VM.Managed.DAFUL.Builder.BuilderNamed\-1.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodySphereSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodySphereSimple.md index d505af6fff..19567bdca4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodySphereSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodySphereSimple.md @@ -1,4 +1,5 @@ -# Class SolidBodySphereSimple +# Class SolidBodySphereSimple + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class SolidBodySphereSimple : SolidBodySphere, IBuil #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [BuilderSymmetric](VM.Managed.DAFUL.Builder.BuilderSymmetric\-1.md) ← [BuilderNamed](VM.Managed.DAFUL.Builder.BuilderNamed\-1.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyTriPlate-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyTriPlate-1.md index eec53c1ac1..2aa7845511 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyTriPlate-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyTriPlate-1.md @@ -1,4 +1,5 @@ -# Class SolidBodyTriPlate +# Class SolidBodyTriPlate + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -13,7 +14,7 @@ public abstract class SolidBodyTriPlate : SolidBody, IBuilder where T : Bu #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [BuilderSymmetric](VM.Managed.DAFUL.Builder.BuilderSymmetric\-1.md) ← [BuilderNamed](VM.Managed.DAFUL.Builder.BuilderNamed\-1.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyTriPlateSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyTriPlateSimple.md index 21c47ac9e0..d89cd42239 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyTriPlateSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidBodyTriPlateSimple.md @@ -1,4 +1,5 @@ -# Class SolidBodyTriPlateSimple +# Class SolidBodyTriPlateSimple + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class SolidBodyTriPlateSimple : SolidBodyTriPlate, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [BuilderSymmetric](VM.Managed.DAFUL.Builder.BuilderSymmetric\-1.md) ← [BuilderNamed](VM.Managed.DAFUL.Builder.BuilderNamed\-1.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidCylinderSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidCylinderSimple.md index 50506a8239..a95ec8a56b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidCylinderSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidCylinderSimple.md @@ -1,4 +1,5 @@ -# Class SolidCylinderSimple +# Class SolidCylinderSimple + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class SolidCylinderSimple : Solid, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [Solid](VM.Managed.DAFUL.Builder.Solid\-1.md) ← [SolidCylinderSimple](VM.Managed.DAFUL.Builder.SolidCylinderSimple.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidSphereSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidSphereSimple.md index 6e637114b5..8d8ca81be3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidSphereSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidSphereSimple.md @@ -1,4 +1,5 @@ -# Class SolidSphereSimple +# Class SolidSphereSimple + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class SolidSphereSimple : Solid, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [Solid](VM.Managed.DAFUL.Builder.Solid\-1.md) ← [SolidSphereSimple](VM.Managed.DAFUL.Builder.SolidSphereSimple.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidTriPlateSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidTriPlateSimple.md index d4965a5049..39c2367b37 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidTriPlateSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SolidTriPlateSimple.md @@ -1,4 +1,5 @@ -# Class SolidTriPlateSimple +# Class SolidTriPlateSimple + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class SolidTriPlateSimple : Solid, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [Solid](VM.Managed.DAFUL.Builder.Solid\-1.md) ← [SolidTriPlateSimple](VM.Managed.DAFUL.Builder.SolidTriPlateSimple.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Sprocket.SolidBodySprocket.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Sprocket.SolidBodySprocket.md index c42dbc8948..0c90476936 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Sprocket.SolidBodySprocket.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Sprocket.SolidBodySprocket.md @@ -1,4 +1,5 @@ -# Class SolidBodySprocket +# Class SolidBodySprocket + Namespace: [VM.Managed.DAFUL.Builder.Sprocket](VM.Managed.DAFUL.Builder.Sprocket.md) Assembly: VMBldSprocket.dll @@ -9,10 +10,10 @@ public class SolidBodySprocket : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [SolidBodySprocket](VM.Managed.DAFUL.Builder.Sprocket.SolidBodySprocket.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -69,7 +70,7 @@ protected override bool AddToDoc { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Color @@ -79,7 +80,7 @@ public string Color { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Interface @@ -89,7 +90,7 @@ public bool Interface { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ProfileType @@ -137,5 +138,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Sprocket.SolidSprocket.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Sprocket.SolidSprocket.md index 65e74c8767..a218b612ce 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Sprocket.SolidSprocket.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Sprocket.SolidSprocket.md @@ -1,4 +1,5 @@ -# Class SolidSprocket +# Class SolidSprocket + Namespace: [VM.Managed.DAFUL.Builder.Sprocket](VM.Managed.DAFUL.Builder.Sprocket.md) Assembly: VMBldSprocket.dll @@ -9,8 +10,8 @@ public class SolidSprocket : BuilderBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← [SolidSprocket](VM.Managed.DAFUL.Builder.Sprocket.SolidSprocket.md) #### Implements @@ -19,23 +20,23 @@ IBuilder #### Inherited Members -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -61,7 +62,7 @@ protected override bool AddToDoc { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Color @@ -71,7 +72,7 @@ public string Color { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ProfileType @@ -119,5 +120,5 @@ protected override sealed bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Sprocket.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Sprocket.md index 493e337d57..dcc831dea1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Sprocket.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Sprocket.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Builder.Sprocket +# Namespace VM.Managed.DAFUL.Builder.Sprocket + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SubSystem.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SubSystem.md index 813a85ab8f..c5c3a9a142 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SubSystem.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SubSystem.md @@ -1,4 +1,5 @@ -# Class SubSystem +# Class SubSystem + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class SubSystem : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [BuilderSymmetric](VM.Managed.DAFUL.Builder.BuilderSymmetric\-1.md) ← [BuilderNamed](VM.Managed.DAFUL.Builder.BuilderNamed\-1.md) ← @@ -69,7 +70,7 @@ public string PropertyFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -97,5 +98,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Subtract.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Subtract.md index 638a0d7386..0b3d0c2bde 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Subtract.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Subtract.md @@ -1,4 +1,5 @@ -# Class Subtract +# Class Subtract + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class Subtract : Boolean, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BooleanBase](VM.Managed.DAFUL.Builder.BooleanBase\-1.md) ← [Boolean](VM.Managed.DAFUL.Builder.Boolean\-1.md) ← [Subtract](VM.Managed.DAFUL.Builder.Subtract.md) @@ -80,7 +81,7 @@ protected override string Type { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -106,9 +107,9 @@ protected override bool CheckValid(Document doc, List lstBodies) `doc` Document -`lstBodies` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstBodies` List #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SurfaceWithCurvesetsBuilder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SurfaceWithCurvesetsBuilder.md index 81b692f836..e8d5b0d3d7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SurfaceWithCurvesetsBuilder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SurfaceWithCurvesetsBuilder.md @@ -1,4 +1,5 @@ -# Class SurfaceWithCurvesetsBuilder +# Class SurfaceWithCurvesetsBuilder + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBldBallPlacing.dll @@ -9,10 +10,10 @@ public class SurfaceWithCurvesetsBuilder : BuilderNamed, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [SurfaceWithCurvesetsBuilder](VM.Managed.DAFUL.Builder.SurfaceWithCurvesetsBuilder.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -79,7 +80,7 @@ public SetCurveForEdges EndCurveset { get; } #### Property Value - SetCurveForEdges + [SetCurveForEdges](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SetCurveForEdges.cs) ### Faceset @@ -89,7 +90,7 @@ public SetFace Faceset { get; } #### Property Value - SetFace + [SetFace](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SetFace.cs) ### NumberOfSlice @@ -109,7 +110,7 @@ public string Path { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### StartCurveset @@ -119,7 +120,7 @@ public SetCurveForEdges StartCurveset { get; } #### Property Value - SetCurveForEdges + [SetCurveForEdges](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SetCurveForEdges.cs) ## Methods @@ -137,5 +138,5 @@ protected override bool OnPostBuild(ObjectBase created, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SwitchableBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SwitchableBody.md index 15927a40b6..8eec87f59a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SwitchableBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.SwitchableBody.md @@ -1,4 +1,5 @@ -# Class SwitchableBody +# Class SwitchableBody + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class SwitchableBody : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BuilderBase](VM.Managed.DAFUL.Builder.BuilderBase\-1.md) ← [BuilderSymmetric](VM.Managed.DAFUL.Builder.BuilderSymmetric\-1.md) ← [BuilderNamed](VM.Managed.DAFUL.Builder.BuilderNamed\-1.md) ← @@ -69,7 +70,7 @@ public string[] ObjectNames { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -87,5 +88,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Thermal.Convection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Thermal.Convection.md index 6477f2205a..d6c9226fae 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Thermal.Convection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Thermal.Convection.md @@ -1,4 +1,5 @@ -# Class Convection +# Class Convection + Namespace: [VM.Managed.DAFUL.Builder.Thermal](VM.Managed.DAFUL.Builder.Thermal.md) Assembly: VMBldThermal.dll @@ -9,10 +10,10 @@ public class Convection : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [Convection](VM.Managed.DAFUL.Builder.Thermal.Convection.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -87,5 +88,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Thermal.HeatFlow.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Thermal.HeatFlow.md index e7fb6cefbf..96d4e4a2eb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Thermal.HeatFlow.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Thermal.HeatFlow.md @@ -1,4 +1,5 @@ -# Class HeatFlow +# Class HeatFlow + Namespace: [VM.Managed.DAFUL.Builder.Thermal](VM.Managed.DAFUL.Builder.Thermal.md) Assembly: VMBldThermal.dll @@ -9,10 +10,10 @@ public class HeatFlow : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [HeatFlow](VM.Managed.DAFUL.Builder.Thermal.HeatFlow.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -87,5 +88,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Thermal.HeatFlux.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Thermal.HeatFlux.md index 504db73195..c9cc6c538c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Thermal.HeatFlux.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Thermal.HeatFlux.md @@ -1,4 +1,5 @@ -# Class HeatFlux +# Class HeatFlux + Namespace: [VM.Managed.DAFUL.Builder.Thermal](VM.Managed.DAFUL.Builder.Thermal.md) Assembly: VMBldThermal.dll @@ -9,10 +10,10 @@ public class HeatFlux : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [HeatFlux](VM.Managed.DAFUL.Builder.Thermal.HeatFlux.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -87,5 +88,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Thermal.HeatGeneration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Thermal.HeatGeneration.md index 2f74055ded..ca0a07c3de 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Thermal.HeatGeneration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Thermal.HeatGeneration.md @@ -1,4 +1,5 @@ -# Class HeatGeneration +# Class HeatGeneration + Namespace: [VM.Managed.DAFUL.Builder.Thermal](VM.Managed.DAFUL.Builder.Thermal.md) Assembly: VMBldThermal.dll @@ -9,10 +10,10 @@ public class HeatGeneration : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [HeatGeneration](VM.Managed.DAFUL.Builder.Thermal.HeatGeneration.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -87,5 +88,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Thermal.Temperature.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Thermal.Temperature.md index 27fdce9ad3..58c5eeefdb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Thermal.Temperature.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Thermal.Temperature.md @@ -1,4 +1,5 @@ -# Class Temperature +# Class Temperature + Namespace: [VM.Managed.DAFUL.Builder.Thermal](VM.Managed.DAFUL.Builder.Thermal.md) Assembly: VMBldThermal.dll @@ -9,10 +10,10 @@ public class Temperature : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [Temperature](VM.Managed.DAFUL.Builder.Thermal.Temperature.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -87,5 +88,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Thermal.ThermalContact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Thermal.ThermalContact.md index 3e50527a8b..b605a48b68 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Thermal.ThermalContact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Thermal.ThermalContact.md @@ -1,4 +1,5 @@ -# Class ThermalContact +# Class ThermalContact + Namespace: [VM.Managed.DAFUL.Builder.Thermal](VM.Managed.DAFUL.Builder.Thermal.md) Assembly: VMBldThermal.dll @@ -9,10 +10,10 @@ public class ThermalContact : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [ThermalContact](VM.Managed.DAFUL.Builder.Thermal.ThermalContact.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -87,5 +88,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Thermal.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Thermal.md index f498087429..0ebc49a7c4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Thermal.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Thermal.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Builder.Thermal +# Namespace VM.Managed.DAFUL.Builder.Thermal + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.ThreeDirection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.ThreeDirection.md index 325fccdc33..d20011d750 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.ThreeDirection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.ThreeDirection.md @@ -1,4 +1,5 @@ -# Struct ThreeDirection +# Struct ThreeDirection + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -21,7 +22,7 @@ public int NumberOfDirection { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -33,11 +34,11 @@ public void SetDirection(Marker BM, Marker AM, PickedResult[] pickresult, int nu #### Parameters -`BM` Marker +`BM` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) -`AM` Marker +`AM` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) `pickresult` [PickedResult](VM.Managed.DAFUL.Builder.PickedResult.md)\[\] -`numberofpoint` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`numberofpoint` int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Tire.Car.Force.TireCarTR.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Tire.Car.Force.TireCarTR.md index 06c32c7e88..027f127b7f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Tire.Car.Force.TireCarTR.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Tire.Car.Force.TireCarTR.md @@ -1,4 +1,5 @@ -# Class TireCarTR +# Class TireCarTR + Namespace: [VM.Managed.DAFUL.Builder.Tire.Car.Force](VM.Managed.DAFUL.Builder.Tire.Car.Force.md) Assembly: VMBldTireCar.dll @@ -9,11 +10,11 @@ public class TireCarTR : TireTRBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← -TireTRBase ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← +[TireTRBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBldTire/TireTRBase.cs) ← [TireCarTR](VM.Managed.DAFUL.Builder.Tire.Car.Force.TireCarTR.md) #### Implements @@ -22,44 +23,44 @@ IBuilder #### Inherited Members -TireTRBase.OnPostBuild\(ObjectBase, Document\), -TireTRBase.GetOrientation\(\), -TireTRBase.MakeWheelBody\(Document\), -TireTRBase.SetDataWheelBody\(WheelBodyBase, Document\), -TireTRBase.BaseConnectable, -TireTRBase.ActionConnectable, -TireTRBase.PropertyFilePath, -TireTRBase.Side, -TireTRBase.CMOffset, -TireTRBase.Mass, -TireTRBase.IxxIyy, -TireTRBase.Izz, -TireTRBase.WheelCenterOffset, -TireTRBase.TreadColor, -TireTRBase.Transform, -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[TireTRBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBldTire/TireTRBase.cs), +[TireTRBase.GetOrientation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBldTire/TireTRBase.cs), +[TireTRBase.MakeWheelBody\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBldTire/TireTRBase.cs), +[TireTRBase.SetDataWheelBody\(WheelBodyBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBldTire/TireTRBase.cs), +[TireTRBase.BaseConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBldTire/TireTRBase.cs), +[TireTRBase.ActionConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBldTire/TireTRBase.cs), +[TireTRBase.PropertyFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBldTire/TireTRBase.cs), +[TireTRBase.Side](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBldTire/TireTRBase.cs), +[TireTRBase.CMOffset](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBldTire/TireTRBase.cs), +[TireTRBase.Mass](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBldTire/TireTRBase.cs), +[TireTRBase.IxxIyy](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBldTire/TireTRBase.cs), +[TireTRBase.Izz](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBldTire/TireTRBase.cs), +[TireTRBase.WheelCenterOffset](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBldTire/TireTRBase.cs), +[TireTRBase.TreadColor](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBldTire/TireTRBase.cs), +[TireTRBase.Transform](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBldTire/TireTRBase.cs), +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -99,7 +100,7 @@ protected override WheelBodyBase MakeWheelBody(Document doc) #### Returns - WheelBodyBase + [WheelBodyBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs) ### OnPostBuild\(ObjectBase, Document\) @@ -115,7 +116,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SetDataWheelBody\(WheelBodyBase, Document\) @@ -125,7 +126,7 @@ protected override void SetDataWheelBody(WheelBodyBase wheel, Document doc) #### Parameters -`wheel` WheelBodyBase +`wheel` [WheelBodyBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs) `doc` Document diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Tire.Car.Force.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Tire.Car.Force.md index 803489a01b..2368635077 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Tire.Car.Force.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Tire.Car.Force.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Builder.Tire.Car.Force +# Namespace VM.Managed.DAFUL.Builder.Tire.Car.Force + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Tire.Force.TireTR.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Tire.Force.TireTR.md index 58631ad6ed..7c6b1a7ccb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Tire.Force.TireTR.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Tire.Force.TireTR.md @@ -1,4 +1,5 @@ -# Class TireTR +# Class TireTR + Namespace: [VM.Managed.DAFUL.Builder.Tire.Force](VM.Managed.DAFUL.Builder.Tire.Force.md) Assembly: VMBldTire.dll @@ -9,10 +10,10 @@ public class TireTR : TireTRBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [TireTRBase](VM.Managed.DAFUL.Builder.Tire.Force.TireTRBase\-1.md) ← [TireTR](VM.Managed.DAFUL.Builder.Tire.Force.TireTR.md) @@ -37,29 +38,29 @@ IBuilder [TireTRBase.WheelCenterOffset](VM.Managed.DAFUL.Builder.Tire.Force.TireTRBase\-1.md\#VM\_Managed\_DAFUL\_Builder\_Tire\_Force\_TireTRBase\_1\_WheelCenterOffset), [TireTRBase.TreadColor](VM.Managed.DAFUL.Builder.Tire.Force.TireTRBase\-1.md\#VM\_Managed\_DAFUL\_Builder\_Tire\_Force\_TireTRBase\_1\_TreadColor), [TireTRBase.Transform](VM.Managed.DAFUL.Builder.Tire.Force.TireTRBase\-1.md\#VM\_Managed\_DAFUL\_Builder\_Tire\_Force\_TireTRBase\_1\_Transform), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -95,7 +96,7 @@ public string RoadFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SpinVelocity @@ -121,7 +122,7 @@ protected override WheelBodyBase MakeWheelBody(Document doc) #### Returns - WheelBodyBase + [WheelBodyBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs) ### OnPostBuild\(ObjectBase, Document\) @@ -137,7 +138,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SetDataWheelBody\(WheelBodyBase, Document\) @@ -147,7 +148,7 @@ protected override void SetDataWheelBody(WheelBodyBase wheel, Document doc) #### Parameters -`wheel` WheelBodyBase +`wheel` [WheelBodyBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs) `doc` Document diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Tire.Force.TireTRBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Tire.Force.TireTRBase-1.md index b4a38fdb3b..233c063767 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Tire.Force.TireTRBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Tire.Force.TireTRBase-1.md @@ -1,4 +1,5 @@ -# Class TireTRBase +# Class TireTRBase + Namespace: [VM.Managed.DAFUL.Builder.Tire.Force](VM.Managed.DAFUL.Builder.Tire.Force.md) Assembly: VMBldTire.dll @@ -13,10 +14,10 @@ public abstract class TireTRBase : BuilderNamed, IBuilder where T : Object #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [TireTRBase](VM.Managed.DAFUL.Builder.Tire.Force.TireTRBase\-1.md) #### Implements @@ -25,29 +26,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -133,7 +134,7 @@ public string PropertyFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Side @@ -143,7 +144,7 @@ public WheelBodyBase.SideType Side { get; set; } #### Property Value - WheelBodyBase.SideType + [WheelBodyBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs).[SideType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs) ### Transform @@ -163,7 +164,7 @@ public string TreadColor { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### WheelCenterOffset @@ -199,7 +200,7 @@ protected virtual WheelBodyBase MakeWheelBody(Document doc) #### Returns - WheelBodyBase + [WheelBodyBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs) ### OnPostBuild\(ObjectBase, Document\) @@ -215,7 +216,7 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SetDataWheelBody\(WheelBodyBase, Document\) @@ -225,7 +226,7 @@ protected virtual void SetDataWheelBody(WheelBodyBase wheel, Document doc) #### Parameters -`wheel` WheelBodyBase +`wheel` [WheelBodyBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs) `doc` Document diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Tire.Force.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Tire.Force.md index b2e310b06d..2a317dda46 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Tire.Force.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Tire.Force.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Builder.Tire.Force +# Namespace VM.Managed.DAFUL.Builder.Tire.Force + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.HydroForce.CheckedMultiBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.HydroForce.CheckedMultiBody.md index 3a4a8936e4..db817ebc95 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.HydroForce.CheckedMultiBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.HydroForce.CheckedMultiBody.md @@ -1,4 +1,5 @@ -# Struct HydroForce.CheckedMultiBody +# Struct HydroForce.CheckedMultiBody + Namespace: [VM.Managed.DAFUL.Builder.Track](VM.Managed.DAFUL.Builder.Track.md) Assembly: VMBldTrack.dll @@ -17,9 +18,9 @@ public CheckedMultiBody(string isChecked, string multiBody) #### Parameters -`isChecked` [string](https://learn.microsoft.com/dotnet/api/system.string) +`isChecked` string -`multiBody` [string](https://learn.microsoft.com/dotnet/api/system.string) +`multiBody` string ## Properties @@ -31,7 +32,7 @@ public string Checked { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### MultiBody @@ -41,5 +42,5 @@ public string MultiBody { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.HydroForce.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.HydroForce.md index 1e696be4de..15d1f9ab22 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.HydroForce.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.HydroForce.md @@ -1,4 +1,5 @@ -# Class HydroForce +# Class HydroForce + Namespace: [VM.Managed.DAFUL.Builder.Track](VM.Managed.DAFUL.Builder.Track.md) Assembly: VMBldTrack.dll @@ -9,10 +10,10 @@ public class HydroForce : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [HydroForce](VM.Managed.DAFUL.Builder.Track.HydroForce.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -107,5 +108,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.MTL.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.MTL.md index 7bca55b56f..daef25060d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.MTL.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.MTL.md @@ -1,4 +1,5 @@ -# Class MTL +# Class MTL + Namespace: [VM.Managed.DAFUL.Builder.Track](VM.Managed.DAFUL.Builder.Track.md) Assembly: VMBldTrack.dll @@ -9,10 +10,10 @@ public class MTL : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [MTL](VM.Managed.DAFUL.Builder.Track.MTL.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -89,7 +90,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### Thickness @@ -137,5 +138,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.MultiMTL.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.MultiMTL.md index decde16130..b583f22a55 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.MultiMTL.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.MultiMTL.md @@ -1,4 +1,5 @@ -# Class MultiMTL +# Class MultiMTL + Namespace: [VM.Managed.DAFUL.Builder.Track](VM.Managed.DAFUL.Builder.Track.md) Assembly: VMBldTrack.dll @@ -9,7 +10,7 @@ public class MultiMTL : IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [MultiMTL](VM.Managed.DAFUL.Builder.Track.MultiMTL.md) #### Implements @@ -50,7 +51,7 @@ public string[] InputArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### Name @@ -60,7 +61,7 @@ public string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ObjectNames @@ -70,7 +71,7 @@ public string[] ObjectNames { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### Parameters @@ -80,7 +81,7 @@ public PickedResult[] Parameters { get; set; } #### Property Value - PickedResult\[\] + [PickedResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/PickedResult.cs)\[\] ### Thickness diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SoilInteraction.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SoilInteraction.md index 65fc583a80..eea521abb1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SoilInteraction.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SoilInteraction.md @@ -1,4 +1,5 @@ -# Class SoilInteraction +# Class SoilInteraction + Namespace: [VM.Managed.DAFUL.Builder.Track](VM.Managed.DAFUL.Builder.Track.md) Assembly: VMBldTrack.dll @@ -9,10 +10,10 @@ public class SoilInteraction : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [SoilInteraction](VM.Managed.DAFUL.Builder.Track.SoilInteraction.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -69,7 +70,7 @@ public string[] ActionContactables { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### BaseContactable @@ -97,5 +98,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidBodyLink.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidBodyLink.md index 90cf48cc0b..af4ae48266 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidBodyLink.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidBodyLink.md @@ -1,4 +1,5 @@ -# Class SolidBodyLink +# Class SolidBodyLink + Namespace: [VM.Managed.DAFUL.Builder.Track](VM.Managed.DAFUL.Builder.Track.md) Assembly: VMBldTrack.dll @@ -9,10 +10,10 @@ public abstract class SolidBodyLink : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [SolidBodyLink](VM.Managed.DAFUL.Builder.Track.SolidBodyLink.md) #### Derived @@ -26,29 +27,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -74,7 +75,7 @@ protected override bool AddToDoc { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Color @@ -84,7 +85,7 @@ public string Color { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Interface @@ -94,7 +95,7 @@ public bool Interface { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LDForLinkSombination @@ -104,7 +105,7 @@ protected double LDForLinkSombination { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -142,5 +143,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidBodyLinkLMSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidBodyLinkLMSimple.md index 2037f3190b..2707686bf5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidBodyLinkLMSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidBodyLinkLMSimple.md @@ -1,4 +1,5 @@ -# Class SolidBodyLinkLMSimple +# Class SolidBodyLinkLMSimple + Namespace: [VM.Managed.DAFUL.Builder.Track](VM.Managed.DAFUL.Builder.Track.md) Assembly: VMBldTrack.dll @@ -9,10 +10,10 @@ public class SolidBodyLinkLMSimple : SolidBodyLink, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [SolidBodyLink](VM.Managed.DAFUL.Builder.Track.SolidBodyLink.md) ← [SolidBodyLinkLMSimple](VM.Managed.DAFUL.Builder.Track.SolidBodyLinkLMSimple.md) @@ -29,29 +30,29 @@ IBuilder [SolidBodyLink.Interface](VM.Managed.DAFUL.Builder.Track.SolidBodyLink.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidBodyLink\_Interface), [SolidBodyLink.Color](VM.Managed.DAFUL.Builder.Track.SolidBodyLink.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidBodyLink\_Color), [SolidBodyLink.AddToDoc](VM.Managed.DAFUL.Builder.Track.SolidBodyLink.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidBodyLink\_AddToDoc), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidBodyLinkLMV.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidBodyLinkLMV.md index f7b8f0af04..2243e03290 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidBodyLinkLMV.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidBodyLinkLMV.md @@ -1,4 +1,5 @@ -# Class SolidBodyLinkLMV +# Class SolidBodyLinkLMV + Namespace: [VM.Managed.DAFUL.Builder.Track](VM.Managed.DAFUL.Builder.Track.md) Assembly: VMBldTrack.dll @@ -9,10 +10,10 @@ public class SolidBodyLinkLMV : SolidBodyLink, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [SolidBodyLink](VM.Managed.DAFUL.Builder.Track.SolidBodyLink.md) ← [SolidBodyLinkLMV](VM.Managed.DAFUL.Builder.Track.SolidBodyLinkLMV.md) @@ -29,29 +30,29 @@ IBuilder [SolidBodyLink.Interface](VM.Managed.DAFUL.Builder.Track.SolidBodyLink.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidBodyLink\_Interface), [SolidBodyLink.Color](VM.Managed.DAFUL.Builder.Track.SolidBodyLink.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidBodyLink\_Color), [SolidBodyLink.AddToDoc](VM.Managed.DAFUL.Builder.Track.SolidBodyLink.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidBodyLink\_AddToDoc), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidBodyShoe.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidBodyShoe.md index dff185265e..8ba9bbfd02 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidBodyShoe.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidBodyShoe.md @@ -1,4 +1,5 @@ -# Class SolidBodyShoe +# Class SolidBodyShoe + Namespace: [VM.Managed.DAFUL.Builder.Track](VM.Managed.DAFUL.Builder.Track.md) Assembly: VMBldTrack.dll @@ -9,10 +10,10 @@ public abstract class SolidBodyShoe : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [SolidBodyShoe](VM.Managed.DAFUL.Builder.Track.SolidBodyShoe.md) #### Derived @@ -28,29 +29,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -76,7 +77,7 @@ protected override bool AddToDoc { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Color @@ -86,7 +87,7 @@ public string Color { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Interface @@ -96,7 +97,7 @@ public bool Interface { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LDForShoeSombination @@ -106,7 +107,7 @@ protected double LDForShoeSombination { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -144,5 +145,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidBodyShoeLMDouble.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidBodyShoeLMDouble.md index 1adacb1774..65549b974b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidBodyShoeLMDouble.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidBodyShoeLMDouble.md @@ -1,4 +1,5 @@ -# Class SolidBodyShoeLMDouble +# Class SolidBodyShoeLMDouble + Namespace: [VM.Managed.DAFUL.Builder.Track](VM.Managed.DAFUL.Builder.Track.md) Assembly: VMBldTrack.dll @@ -9,10 +10,10 @@ public class SolidBodyShoeLMDouble : SolidBodyShoe, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [SolidBodyShoe](VM.Managed.DAFUL.Builder.Track.SolidBodyShoe.md) ← [SolidBodyShoeLMDouble](VM.Managed.DAFUL.Builder.Track.SolidBodyShoeLMDouble.md) @@ -29,29 +30,29 @@ IBuilder [SolidBodyShoe.Interface](VM.Managed.DAFUL.Builder.Track.SolidBodyShoe.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidBodyShoe\_Interface), [SolidBodyShoe.Color](VM.Managed.DAFUL.Builder.Track.SolidBodyShoe.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidBodyShoe\_Color), [SolidBodyShoe.AddToDoc](VM.Managed.DAFUL.Builder.Track.SolidBodyShoe.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidBodyShoe\_AddToDoc), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidBodyShoeLMSingle.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidBodyShoeLMSingle.md index 3c84e2c5ee..8a2b161730 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidBodyShoeLMSingle.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidBodyShoeLMSingle.md @@ -1,4 +1,5 @@ -# Class SolidBodyShoeLMSingle +# Class SolidBodyShoeLMSingle + Namespace: [VM.Managed.DAFUL.Builder.Track](VM.Managed.DAFUL.Builder.Track.md) Assembly: VMBldTrack.dll @@ -9,10 +10,10 @@ public class SolidBodyShoeLMSingle : SolidBodyShoe, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [SolidBodyShoe](VM.Managed.DAFUL.Builder.Track.SolidBodyShoe.md) ← [SolidBodyShoeLMSingle](VM.Managed.DAFUL.Builder.Track.SolidBodyShoeLMSingle.md) @@ -29,29 +30,29 @@ IBuilder [SolidBodyShoe.Interface](VM.Managed.DAFUL.Builder.Track.SolidBodyShoe.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidBodyShoe\_Interface), [SolidBodyShoe.Color](VM.Managed.DAFUL.Builder.Track.SolidBodyShoe.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidBodyShoe\_Color), [SolidBodyShoe.AddToDoc](VM.Managed.DAFUL.Builder.Track.SolidBodyShoe.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidBodyShoe\_AddToDoc), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidBodyShoeLMTriple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidBodyShoeLMTriple.md index 79769243e2..edcc0c95ef 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidBodyShoeLMTriple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidBodyShoeLMTriple.md @@ -1,4 +1,5 @@ -# Class SolidBodyShoeLMTriple +# Class SolidBodyShoeLMTriple + Namespace: [VM.Managed.DAFUL.Builder.Track](VM.Managed.DAFUL.Builder.Track.md) Assembly: VMBldTrack.dll @@ -9,10 +10,10 @@ public class SolidBodyShoeLMTriple : SolidBodyShoe, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [SolidBodyShoe](VM.Managed.DAFUL.Builder.Track.SolidBodyShoe.md) ← [SolidBodyShoeLMTriple](VM.Managed.DAFUL.Builder.Track.SolidBodyShoeLMTriple.md) @@ -29,29 +30,29 @@ IBuilder [SolidBodyShoe.Interface](VM.Managed.DAFUL.Builder.Track.SolidBodyShoe.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidBodyShoe\_Interface), [SolidBodyShoe.Color](VM.Managed.DAFUL.Builder.Track.SolidBodyShoe.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidBodyShoe\_Color), [SolidBodyShoe.AddToDoc](VM.Managed.DAFUL.Builder.Track.SolidBodyShoe.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidBodyShoe\_AddToDoc), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidBodyShoeLMUserDefined.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidBodyShoeLMUserDefined.md index 709644f0ae..cc159fb0f8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidBodyShoeLMUserDefined.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidBodyShoeLMUserDefined.md @@ -1,4 +1,5 @@ -# Class SolidBodyShoeLMUserDefined +# Class SolidBodyShoeLMUserDefined + Namespace: [VM.Managed.DAFUL.Builder.Track](VM.Managed.DAFUL.Builder.Track.md) Assembly: VMBldTrack.dll @@ -9,10 +10,10 @@ public class SolidBodyShoeLMUserDefined : SolidBodyShoe, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [SolidBodyShoe](VM.Managed.DAFUL.Builder.Track.SolidBodyShoe.md) ← [SolidBodyShoeLMUserDefined](VM.Managed.DAFUL.Builder.Track.SolidBodyShoeLMUserDefined.md) @@ -29,29 +30,29 @@ IBuilder [SolidBodyShoe.Interface](VM.Managed.DAFUL.Builder.Track.SolidBodyShoe.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidBodyShoe\_Interface), [SolidBodyShoe.Color](VM.Managed.DAFUL.Builder.Track.SolidBodyShoe.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidBodyShoe\_Color), [SolidBodyShoe.AddToDoc](VM.Managed.DAFUL.Builder.Track.SolidBodyShoe.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidBodyShoe\_AddToDoc), -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidLink.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidLink.md index 75af2242d8..de56cc0e92 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidLink.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidLink.md @@ -1,4 +1,5 @@ -# Class SolidLink +# Class SolidLink + Namespace: [VM.Managed.DAFUL.Builder.Track](VM.Managed.DAFUL.Builder.Track.md) Assembly: VMBldTrack.dll @@ -9,8 +10,8 @@ public abstract class SolidLink : BuilderBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← [SolidLink](VM.Managed.DAFUL.Builder.Track.SolidLink.md) #### Derived @@ -24,23 +25,23 @@ IBuilder #### Inherited Members -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -66,7 +67,7 @@ protected override bool AddToDoc { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Color @@ -76,7 +77,7 @@ public string Color { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### LDForLinkSombination @@ -86,7 +87,7 @@ protected double LDForLinkSombination { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -124,5 +125,5 @@ protected override sealed bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidLinkLMSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidLinkLMSimple.md index 82add6e491..d74d9729ff 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidLinkLMSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidLinkLMSimple.md @@ -1,4 +1,5 @@ -# Class SolidLinkLMSimple +# Class SolidLinkLMSimple + Namespace: [VM.Managed.DAFUL.Builder.Track](VM.Managed.DAFUL.Builder.Track.md) Assembly: VMBldTrack.dll @@ -9,8 +10,8 @@ public class SolidLinkLMSimple : SolidLink, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← [SolidLink](VM.Managed.DAFUL.Builder.Track.SolidLink.md) ← [SolidLinkLMSimple](VM.Managed.DAFUL.Builder.Track.SolidLinkLMSimple.md) @@ -26,23 +27,23 @@ IBuilder [SolidLink.LDForLinkSombination](VM.Managed.DAFUL.Builder.Track.SolidLink.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidLink\_LDForLinkSombination), [SolidLink.Color](VM.Managed.DAFUL.Builder.Track.SolidLink.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidLink\_Color), [SolidLink.AddToDoc](VM.Managed.DAFUL.Builder.Track.SolidLink.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidLink\_AddToDoc), -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidLinkLMV.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidLinkLMV.md index 965d055edc..8d68e57a67 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidLinkLMV.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidLinkLMV.md @@ -1,4 +1,5 @@ -# Class SolidLinkLMV +# Class SolidLinkLMV + Namespace: [VM.Managed.DAFUL.Builder.Track](VM.Managed.DAFUL.Builder.Track.md) Assembly: VMBldTrack.dll @@ -9,8 +10,8 @@ public class SolidLinkLMV : SolidLink, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← [SolidLink](VM.Managed.DAFUL.Builder.Track.SolidLink.md) ← [SolidLinkLMV](VM.Managed.DAFUL.Builder.Track.SolidLinkLMV.md) @@ -26,23 +27,23 @@ IBuilder [SolidLink.LDForLinkSombination](VM.Managed.DAFUL.Builder.Track.SolidLink.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidLink\_LDForLinkSombination), [SolidLink.Color](VM.Managed.DAFUL.Builder.Track.SolidLink.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidLink\_Color), [SolidLink.AddToDoc](VM.Managed.DAFUL.Builder.Track.SolidLink.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidLink\_AddToDoc), -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidShoe.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidShoe.md index 10002f1295..a43c3a7ae5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidShoe.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidShoe.md @@ -1,4 +1,5 @@ -# Class SolidShoe +# Class SolidShoe + Namespace: [VM.Managed.DAFUL.Builder.Track](VM.Managed.DAFUL.Builder.Track.md) Assembly: VMBldTrack.dll @@ -9,8 +10,8 @@ public abstract class SolidShoe : BuilderBase, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← [SolidShoe](VM.Managed.DAFUL.Builder.Track.SolidShoe.md) #### Derived @@ -26,23 +27,23 @@ IBuilder #### Inherited Members -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -68,7 +69,7 @@ protected override bool AddToDoc { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Color @@ -78,7 +79,7 @@ public string Color { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### LDForShoeSombination @@ -88,7 +89,7 @@ protected double LDForShoeSombination { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -126,5 +127,5 @@ protected override sealed bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidShoeLMDouble.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidShoeLMDouble.md index 01dcaf95df..6bbfbb781d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidShoeLMDouble.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidShoeLMDouble.md @@ -1,4 +1,5 @@ -# Class SolidShoeLMDouble +# Class SolidShoeLMDouble + Namespace: [VM.Managed.DAFUL.Builder.Track](VM.Managed.DAFUL.Builder.Track.md) Assembly: VMBldTrack.dll @@ -9,8 +10,8 @@ public class SolidShoeLMDouble : SolidShoe, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← [SolidShoe](VM.Managed.DAFUL.Builder.Track.SolidShoe.md) ← [SolidShoeLMDouble](VM.Managed.DAFUL.Builder.Track.SolidShoeLMDouble.md) @@ -26,23 +27,23 @@ IBuilder [SolidShoe.Color](VM.Managed.DAFUL.Builder.Track.SolidShoe.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidShoe\_Color), [SolidShoe.LDForShoeSombination](VM.Managed.DAFUL.Builder.Track.SolidShoe.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidShoe\_LDForShoeSombination), [SolidShoe.AddToDoc](VM.Managed.DAFUL.Builder.Track.SolidShoe.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidShoe\_AddToDoc), -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidShoeLMSingle.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidShoeLMSingle.md index 0551dace93..e111d5a6a0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidShoeLMSingle.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidShoeLMSingle.md @@ -1,4 +1,5 @@ -# Class SolidShoeLMSingle +# Class SolidShoeLMSingle + Namespace: [VM.Managed.DAFUL.Builder.Track](VM.Managed.DAFUL.Builder.Track.md) Assembly: VMBldTrack.dll @@ -9,8 +10,8 @@ public class SolidShoeLMSingle : SolidShoe, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← [SolidShoe](VM.Managed.DAFUL.Builder.Track.SolidShoe.md) ← [SolidShoeLMSingle](VM.Managed.DAFUL.Builder.Track.SolidShoeLMSingle.md) @@ -26,23 +27,23 @@ IBuilder [SolidShoe.Color](VM.Managed.DAFUL.Builder.Track.SolidShoe.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidShoe\_Color), [SolidShoe.LDForShoeSombination](VM.Managed.DAFUL.Builder.Track.SolidShoe.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidShoe\_LDForShoeSombination), [SolidShoe.AddToDoc](VM.Managed.DAFUL.Builder.Track.SolidShoe.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidShoe\_AddToDoc), -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidShoeLMTriple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidShoeLMTriple.md index 1378e78ebd..40b5555574 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidShoeLMTriple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidShoeLMTriple.md @@ -1,4 +1,5 @@ -# Class SolidShoeLMTriple +# Class SolidShoeLMTriple + Namespace: [VM.Managed.DAFUL.Builder.Track](VM.Managed.DAFUL.Builder.Track.md) Assembly: VMBldTrack.dll @@ -9,8 +10,8 @@ public class SolidShoeLMTriple : SolidShoe, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← [SolidShoe](VM.Managed.DAFUL.Builder.Track.SolidShoe.md) ← [SolidShoeLMTriple](VM.Managed.DAFUL.Builder.Track.SolidShoeLMTriple.md) @@ -26,23 +27,23 @@ IBuilder [SolidShoe.Color](VM.Managed.DAFUL.Builder.Track.SolidShoe.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidShoe\_Color), [SolidShoe.LDForShoeSombination](VM.Managed.DAFUL.Builder.Track.SolidShoe.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidShoe\_LDForShoeSombination), [SolidShoe.AddToDoc](VM.Managed.DAFUL.Builder.Track.SolidShoe.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidShoe\_AddToDoc), -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidShoeLMUserDefined.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidShoeLMUserDefined.md index f8c7379899..29a1337de8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidShoeLMUserDefined.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.SolidShoeLMUserDefined.md @@ -1,4 +1,5 @@ -# Class SolidShoeLMUserDefined +# Class SolidShoeLMUserDefined + Namespace: [VM.Managed.DAFUL.Builder.Track](VM.Managed.DAFUL.Builder.Track.md) Assembly: VMBldTrack.dll @@ -9,8 +10,8 @@ public class SolidShoeLMUserDefined : SolidShoe, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← [SolidShoe](VM.Managed.DAFUL.Builder.Track.SolidShoe.md) ← [SolidShoeLMUserDefined](VM.Managed.DAFUL.Builder.Track.SolidShoeLMUserDefined.md) @@ -26,23 +27,23 @@ IBuilder [SolidShoe.Color](VM.Managed.DAFUL.Builder.Track.SolidShoe.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidShoe\_Color), [SolidShoe.LDForShoeSombination](VM.Managed.DAFUL.Builder.Track.SolidShoe.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidShoe\_LDForShoeSombination), [SolidShoe.AddToDoc](VM.Managed.DAFUL.Builder.Track.SolidShoe.md\#VM\_Managed\_DAFUL\_Builder\_Track\_SolidShoe\_AddToDoc), -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.Thrust.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.Thrust.md index 59078016a5..21e50dcd65 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.Thrust.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.Thrust.md @@ -1,4 +1,5 @@ -# Class Thrust +# Class Thrust + Namespace: [VM.Managed.DAFUL.Builder.Track](VM.Managed.DAFUL.Builder.Track.md) Assembly: VMBldTrack.dll @@ -9,10 +10,10 @@ public class Thrust : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [Thrust](VM.Managed.DAFUL.Builder.Track.Thrust.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -117,5 +118,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.TrackPlacing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.TrackPlacing.md index c0bbd0a897..c21a50c1cf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.TrackPlacing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.TrackPlacing.md @@ -1,4 +1,5 @@ -# Class TrackPlacing +# Class TrackPlacing + Namespace: [VM.Managed.DAFUL.Builder.Track](VM.Managed.DAFUL.Builder.Track.md) Assembly: VMBldTrack.dll @@ -9,10 +10,10 @@ public class TrackPlacing : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [TrackPlacing](VM.Managed.DAFUL.Builder.Track.TrackPlacing.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -75,5 +76,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.Water.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.Water.md index 63cf3a8d6c..83672b4c9e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.Water.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.Water.md @@ -1,4 +1,5 @@ -# Class Water +# Class Water + Namespace: [VM.Managed.DAFUL.Builder.Track](VM.Managed.DAFUL.Builder.Track.md) Assembly: VMBldTrack.dll @@ -9,10 +10,10 @@ public class Water : BuilderNamed, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderBase ← -BuilderSymmetric ← -BuilderNamed ← +object ← +[BuilderBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) ← +[BuilderNamed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs) ← [Water](VM.Managed.DAFUL.Builder.Track.Water.md) #### Implements @@ -21,29 +22,29 @@ IBuilder #### Inherited Members -BuilderNamed.OnPostBuild\(ObjectBase, Document\), -BuilderNamed.CheckUnit\(Document3D, Document3D, string\), -BuilderNamed.Name, -BuilderSymmetric.Build\(Document\), -BuilderSymmetric.Symmetric, -BuilderSymmetric.CurrentSymmetric, -BuilderBase.m\_bSuccess, -BuilderBase.Build\(Document\), -BuilderBase.Build\(Document, List\), -BuilderBase.Validate\(IList\), -BuilderBase.Success\(\), -BuilderBase.OnPostBuild\(ObjectBase, Document\), -BuilderBase.OnFinalBuild\(string, Document\), -BuilderBase.OnObjectChangeBuild\(string, Document\), -BuilderBase.OnPostAddDoc\(ObjectBase\), -BuilderBase.Parameters, -BuilderBase.AddToDoc, -BuilderBase.UseChangedObject, -BuilderBase.SetPointKey, -BuilderBase.BuildObject, -BuilderBase.BuildDocument, -BuilderBase.UseInterface, -BuilderBase.ErrorMessage +[BuilderNamed.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.CheckUnit\(Document3D, Document3D, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderNamed.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderNamed.cs), +[BuilderSymmetric.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.Symmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderSymmetric.CurrentSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.m\_bSuccess](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Build\(Document, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Validate\(IList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Success\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostBuild\(ObjectBase, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnFinalBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnObjectChangeBuild\(string, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.OnPostAddDoc\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.Parameters](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.AddToDoc](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseChangedObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.SetPointKey](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.BuildDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.UseInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs), +[BuilderBase.ErrorMessage](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Builders/VMBld/BuilderBase.cs) #### Extension Methods @@ -147,5 +148,5 @@ protected override bool OnPostBuild(ObjectBase obCreated, Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.md index d9b66fce57..e4c4c9ca27 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Track.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Builder.Track +# Namespace VM.Managed.DAFUL.Builder.Track + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.TwoDirection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.TwoDirection.md index c779089980..f86656f2b1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.TwoDirection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.TwoDirection.md @@ -1,4 +1,5 @@ -# Struct TwoDirection +# Struct TwoDirection + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -21,7 +22,7 @@ public int NumberOfDirection { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -33,11 +34,11 @@ public void SetDirection(Marker BM, Marker AM, PickedResult[] pickresult, int nu #### Parameters -`BM` Marker +`BM` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) -`AM` Marker +`AM` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) `pickresult` [PickedResult](VM.Managed.DAFUL.Builder.PickedResult.md)\[\] -`numberofpoint` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`numberofpoint` int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.TwoDirectionUniversal.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.TwoDirectionUniversal.md index 62a378e1e1..3f5e7cb590 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.TwoDirectionUniversal.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.TwoDirectionUniversal.md @@ -1,4 +1,5 @@ -# Struct TwoDirectionUniversal +# Struct TwoDirectionUniversal + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -21,7 +22,7 @@ public int NumberOfDirection { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -33,11 +34,11 @@ public void SetDirection(Marker BM, Marker AM, PickedResult[] pickresult, int nu #### Parameters -`BM` Marker +`BM` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) -`AM` Marker +`AM` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) `pickresult` [PickedResult](VM.Managed.DAFUL.Builder.PickedResult.md)\[\] -`numberofpoint` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`numberofpoint` int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.TwoPointPosition.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.TwoPointPosition.md index 8791a07bba..aff7758be4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.TwoPointPosition.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.TwoPointPosition.md @@ -1,4 +1,5 @@ -# Struct TwoPointPosition +# Struct TwoPointPosition + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -21,7 +22,7 @@ public int NumberOfPoint { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -33,9 +34,9 @@ public void SetPosition(Marker BM, Marker AM, PickedResult[] pickresult) #### Parameters -`BM` Marker +`BM` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) -`AM` Marker +`AM` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) `pickresult` [PickedResult](VM.Managed.DAFUL.Builder.PickedResult.md)\[\] diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.TwoPointPositionofInline.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.TwoPointPositionofInline.md index 7490304ef6..73b299d5be 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.TwoPointPositionofInline.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.TwoPointPositionofInline.md @@ -1,4 +1,5 @@ -# Struct TwoPointPositionofInline +# Struct TwoPointPositionofInline + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -21,7 +22,7 @@ public int NumberOfPoint { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -33,9 +34,9 @@ public void SetPosition(Marker BM, Marker AM, PickedResult[] pickresult) #### Parameters -`BM` Marker +`BM` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) -`AM` Marker +`AM` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) `pickresult` [PickedResult](VM.Managed.DAFUL.Builder.PickedResult.md)\[\] diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Unite.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Unite.md index 5368b84aa3..dd6876c343 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Unite.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.Unite.md @@ -1,4 +1,5 @@ -# Class Unite +# Class Unite + Namespace: [VM.Managed.DAFUL.Builder](VM.Managed.DAFUL.Builder.md) Assembly: VMBld.dll @@ -9,7 +10,7 @@ public class Unite : Boolean, IBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BooleanBase](VM.Managed.DAFUL.Builder.BooleanBase\-1.md) ← [Boolean](VM.Managed.DAFUL.Builder.Boolean\-1.md) ← [Unite](VM.Managed.DAFUL.Builder.Unite.md) @@ -80,7 +81,7 @@ protected override string Type { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.md index 29f2592f72..0499898318 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Builder.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Builder +# Namespace VM.Managed.DAFUL.Builder + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BuilderNut.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BuilderNut.md index a036c74788..6f29c07501 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BuilderNut.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BuilderNut.md @@ -1,4 +1,5 @@ -# Class BuilderNut +# Class BuilderNut + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDBallPlacing.dll @@ -6,14 +7,14 @@ Assembly: VMDBallPlacing.dll The class for nut builder. ```csharp -public class BuilderNut : BuilderColorGeom, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public class BuilderNut : BuilderColorGeom, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -35,8 +36,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, -IAttributeContainer +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +IAttributeContainer, +IHasReplaceableEntity #### Inherited Members @@ -69,6 +71,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -172,7 +176,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -223,7 +227,7 @@ public bool IsRight { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Lead @@ -489,7 +493,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamBase\) @@ -501,5 +505,5 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BuilderParamNut.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BuilderParamNut.md index 88a62d4b3a..f29cf96870 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BuilderParamNut.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BuilderParamNut.md @@ -1,4 +1,5 @@ -# Class BuilderParamNut +# Class BuilderParamNut + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDBallPlacing.dll @@ -11,20 +12,20 @@ public class BuilderParamNut : BuilderParamColorGeom #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderParamBase ← -BuilderParamColorGeom ← +object ← +[BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ← +[BuilderParamColorGeom](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamColorGeom.cs) ← [BuilderParamNut](VM.Managed.DAFUL.BuilderParamNut.md) #### Inherited Members -BuilderParamColorGeom.Color, -BuilderParamBase.ToXmlString\(\), -BuilderParamBase.FinalizeParameter\(\), -BuilderParamBase.SetTypeName\(\), -BuilderParamBase.Key, -BuilderParamBase.TypeName, -BuilderParamBase.Transparency +[BuilderParamColorGeom.Color](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamColorGeom.cs), +[BuilderParamBase.ToXmlString\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.FinalizeParameter\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.SetTypeName\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.Key](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.TypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.Transparency](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) #### Extension Methods @@ -52,7 +53,7 @@ public double BallDiameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### IsRight @@ -64,7 +65,7 @@ public bool IsRight { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Lead @@ -76,7 +77,7 @@ public double Lead { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NutChamperAngle @@ -88,7 +89,7 @@ public double NutChamperAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NutConformity @@ -100,7 +101,7 @@ public double NutConformity { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NutContactAngle @@ -112,7 +113,7 @@ public double NutContactAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NutInnerRadius @@ -124,7 +125,7 @@ public double NutInnerRadius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NutLength @@ -136,7 +137,7 @@ public double NutLength { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NutOD @@ -148,7 +149,7 @@ public double NutOD { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NutPCD @@ -160,7 +161,7 @@ public double NutPCD { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NutScrewEndLength @@ -172,7 +173,7 @@ public double NutScrewEndLength { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NutScrewStartLength @@ -184,7 +185,7 @@ public double NutScrewStartLength { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NutShoulderRadius @@ -196,7 +197,7 @@ public double NutShoulderRadius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NutShoulderType @@ -208,7 +209,7 @@ public int NutShoulderType { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NutStartArcAngle @@ -220,7 +221,7 @@ public double NutStartArcAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NutStartLength @@ -232,7 +233,7 @@ public double NutStartLength { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Position @@ -256,7 +257,7 @@ public double ShaftLength { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ShaftScrewEndLength @@ -268,7 +269,7 @@ public double ShaftScrewEndLength { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ShaftScrewStartAngle @@ -280,7 +281,7 @@ public double ShaftScrewStartAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ShaftScrewStartLength @@ -292,7 +293,7 @@ public double ShaftScrewStartLength { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### XAxis diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BuilderParamShaft.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BuilderParamShaft.md index c95160a5a8..b352f3b235 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BuilderParamShaft.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BuilderParamShaft.md @@ -1,4 +1,5 @@ -# Class BuilderParamShaft +# Class BuilderParamShaft + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDBallPlacing.dll @@ -11,20 +12,20 @@ public class BuilderParamShaft : BuilderParamColorGeom #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -BuilderParamBase ← -BuilderParamColorGeom ← +object ← +[BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ← +[BuilderParamColorGeom](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamColorGeom.cs) ← [BuilderParamShaft](VM.Managed.DAFUL.BuilderParamShaft.md) #### Inherited Members -BuilderParamColorGeom.Color, -BuilderParamBase.ToXmlString\(\), -BuilderParamBase.FinalizeParameter\(\), -BuilderParamBase.SetTypeName\(\), -BuilderParamBase.Key, -BuilderParamBase.TypeName, -BuilderParamBase.Transparency +[BuilderParamColorGeom.Color](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamColorGeom.cs), +[BuilderParamBase.ToXmlString\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.FinalizeParameter\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.SetTypeName\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.Key](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.TypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs), +[BuilderParamBase.Transparency](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) #### Extension Methods @@ -52,7 +53,7 @@ public double BallDiameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### IsRight @@ -64,7 +65,7 @@ public bool IsRight { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Lead @@ -76,7 +77,7 @@ public double Lead { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Position @@ -100,7 +101,7 @@ public double ShaftChamperAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ShaftConformity @@ -112,7 +113,7 @@ public double ShaftConformity { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ShaftContactAngle @@ -124,7 +125,7 @@ public double ShaftContactAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ShaftLength @@ -136,7 +137,7 @@ public double ShaftLength { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ShaftOuterRadius @@ -148,7 +149,7 @@ public double ShaftOuterRadius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ShaftPCD @@ -160,7 +161,7 @@ public double ShaftPCD { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ShaftScrewEndLength @@ -172,7 +173,7 @@ public double ShaftScrewEndLength { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ShaftScrewStartAngle @@ -184,7 +185,7 @@ public double ShaftScrewStartAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ShaftScrewStartLength @@ -196,7 +197,7 @@ public double ShaftScrewStartLength { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ShaftShoulderRadius @@ -208,7 +209,7 @@ public double ShaftShoulderRadius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ShaftShoulderType @@ -220,7 +221,7 @@ public int ShaftShoulderType { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### ShaftStartArcAngle @@ -232,7 +233,7 @@ public double ShaftStartArcAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### XAxis diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BuilderShaft.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BuilderShaft.md index 8727b366b8..ecbe8fe524 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BuilderShaft.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.BuilderShaft.md @@ -1,4 +1,5 @@ -# Class BuilderShaft +# Class BuilderShaft + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDBallPlacing.dll @@ -6,14 +7,14 @@ Assembly: VMDBallPlacing.dll The class for shaft builder. ```csharp -public class BuilderShaft : BuilderColorGeom, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public class BuilderShaft : BuilderColorGeom, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -35,8 +36,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, -IAttributeContainer +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +IAttributeContainer, +IHasReplaceableEntity #### Inherited Members @@ -69,6 +71,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -172,7 +176,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -223,7 +227,7 @@ public bool IsRight { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Lead @@ -429,7 +433,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamBase\) @@ -441,5 +445,5 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CADOperation.CalcBoundingBoxOp.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CADOperation.CalcBoundingBoxOp.md index a7f5fa172a..d29f80a053 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CADOperation.CalcBoundingBoxOp.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CADOperation.CalcBoundingBoxOp.md @@ -1,4 +1,5 @@ -# Class CADOperation.CalcBoundingBoxOp +# Class CADOperation.CalcBoundingBoxOp + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,7 +12,7 @@ public class CADOperation.CalcBoundingBoxOp : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [CADOperation.CalcBoundingBoxOp](VM.Managed.DAFUL.CADOperation.CalcBoundingBoxOp.md) @@ -115,7 +116,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -127,7 +128,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Result @@ -139,7 +140,7 @@ public double[] Result { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CADOperation.ProfilePointOfCurvesetOp.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CADOperation.ProfilePointOfCurvesetOp.md index fff1a9babe..a9de6073b1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CADOperation.ProfilePointOfCurvesetOp.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CADOperation.ProfilePointOfCurvesetOp.md @@ -1,4 +1,5 @@ -# Class CADOperation.ProfilePointOfCurvesetOp +# Class CADOperation.ProfilePointOfCurvesetOp + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,7 +12,7 @@ public class CADOperation.ProfilePointOfCurvesetOp : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [CADOperation.ProfilePointOfCurvesetOp](VM.Managed.DAFUL.CADOperation.ProfilePointOfCurvesetOp.md) @@ -111,7 +112,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -123,7 +124,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -145,17 +146,17 @@ public int GetProfileResult(ref bool bCloseLoop, ref List lst) #### Parameters -`bCloseLoop` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bCloseLoop` bool true if closed loop, otherwise false. -`lst` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lst` List The list of points #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int The number of profiles diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CADOperation.RecalcMassPropOp.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CADOperation.RecalcMassPropOp.md index b3616503f7..d7733613e8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CADOperation.RecalcMassPropOp.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CADOperation.RecalcMassPropOp.md @@ -1,4 +1,5 @@ -# Class CADOperation.RecalcMassPropOp +# Class CADOperation.RecalcMassPropOp + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,7 +12,7 @@ public class CADOperation.RecalcMassPropOp : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [CADOperation.RecalcMassPropOp](VM.Managed.DAFUL.CADOperation.RecalcMassPropOp.md) @@ -111,7 +112,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -123,7 +124,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CADOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CADOperation.md index 7393382022..1bdfc93a57 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CADOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CADOperation.md @@ -1,4 +1,5 @@ -# Class CADOperation +# Class CADOperation + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,7 +12,7 @@ public class CADOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CADOperation](VM.Managed.DAFUL.CADOperation.md) #### Extension Methods @@ -50,7 +51,7 @@ The design frame. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] The bounding box. @@ -68,17 +69,17 @@ public static int GetProfilePointOfCurveset(IContactableRigid2D curveset, ref bo The curveset. -`bCloseLoop` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bCloseLoop` bool The close loop. -`lst` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lst` List The profile point list. #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int The number of profile point. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.AttributeExtraData.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.AttributeExtraData.md index d934040f53..13f7336bb1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.AttributeExtraData.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.AttributeExtraData.md @@ -1,4 +1,5 @@ -# Class AttributeExtraData +# Class AttributeExtraData + Namespace: [VM.Managed.DAFUL.CPlacingConnector](VM.Managed.DAFUL.CPlacingConnector.md) Assembly: VMDCPlacingConnector.dll @@ -11,9 +12,9 @@ public class AttributeExtraData : AttributeBase, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeExtraData](VM.Managed.DAFUL.CPlacingConnector.AttributeExtraData.md) @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -119,7 +120,7 @@ public ExpressionValueVariable ContourFileExportTime { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### CrossCheck @@ -131,7 +132,7 @@ public bool CrossCheck { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.AttributePulleyAndPin.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.AttributePulleyAndPin.md index f43b6b4017..bf150d5f8a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.AttributePulleyAndPin.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.AttributePulleyAndPin.md @@ -1,4 +1,5 @@ -# Class AttributePulleyAndPin +# Class AttributePulleyAndPin + Namespace: [VM.Managed.DAFUL.CPlacingConnector](VM.Managed.DAFUL.CPlacingConnector.md) Assembly: VMDCPlacingConnector.dll @@ -11,9 +12,9 @@ public class AttributePulleyAndPin : AttributeBase, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributePulleyAndPin](VM.Managed.DAFUL.CPlacingConnector.AttributePulleyAndPin.md) @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.AttributeVectorFriction.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.AttributeVectorFriction.md index fd20056c10..2fd3761025 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.AttributeVectorFriction.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.AttributeVectorFriction.md @@ -1,4 +1,5 @@ -# Class AttributeVectorFriction +# Class AttributeVectorFriction + Namespace: [VM.Managed.DAFUL.CPlacingConnector](VM.Managed.DAFUL.CPlacingConnector.md) Assembly: VMDCPlacingConnector.dll @@ -11,9 +12,9 @@ public class AttributeVectorFriction : AttributeBase, IObservableObject, IDispos #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeVectorFriction](VM.Managed.DAFUL.CPlacingConnector.AttributeVectorFriction.md) @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -119,7 +120,7 @@ public ExpressionValueVariable RadialDynamicsThreshold { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RadialFrictionCoefficient @@ -131,7 +132,7 @@ public ExpressionValueVariable RadialFrictionCoefficient { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RadialStaticFrictionCoefficient @@ -143,7 +144,7 @@ public ExpressionValueVariable RadialStaticFrictionCoefficient { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RadialStictionVelocity @@ -155,7 +156,7 @@ public ExpressionValueVariable RadialStictionVelocity { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TangentialContactDampingRatio @@ -167,7 +168,7 @@ public ExpressionValueVariable TangentialContactDampingRatio { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TangentialDynamicsThreshold @@ -179,7 +180,7 @@ public ExpressionValueVariable TangentialDynamicsThreshold { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TangentialFrictionCoefficient @@ -191,7 +192,7 @@ public ExpressionValueVariable TangentialFrictionCoefficient { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TangentialStaticFrictionCoefficient @@ -203,7 +204,7 @@ public ExpressionValueVariable TangentialStaticFrictionCoefficient { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TangentialStictionVelocity @@ -215,7 +216,7 @@ public ExpressionValueVariable TangentialStictionVelocity { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.CPlacingConnector.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.CPlacingConnector.md index 8a78e98a12..ee3c1c6125 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.CPlacingConnector.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.CPlacingConnector.md @@ -1,4 +1,5 @@ -# Class CPlacingConnector +# Class CPlacingConnector + Namespace: [VM.Managed.DAFUL.CPlacingConnector](VM.Managed.DAFUL.CPlacingConnector.md) Assembly: VMDCPlacingConnector.dll @@ -11,14 +12,14 @@ public class CPlacingConnector : Entity, IObservableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [CPlacingConnector](VM.Managed.DAFUL.CPlacingConnector.CPlacingConnector.md) #### Implements @@ -28,7 +29,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -57,34 +58,34 @@ IHasPlacing #### Inherited Members -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -183,7 +184,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -222,7 +223,7 @@ public CPlacingConnector(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -238,7 +239,7 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Hide @@ -250,7 +251,7 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReferenceChainedPlacing @@ -262,7 +263,7 @@ public ChainedPlacing ReferenceChainedPlacing { get; set; } #### Property Value - ChainedPlacing + [ChainedPlacing](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/ChainedPlacing.cs) ## Methods @@ -276,7 +277,7 @@ public virtual void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -290,21 +291,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.ComponentStiffness.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.ComponentStiffness.md index b6aa3c3556..ab28ba2bce 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.ComponentStiffness.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.ComponentStiffness.md @@ -1,4 +1,5 @@ -# Class ComponentStiffness +# Class ComponentStiffness + Namespace: [VM.Managed.DAFUL.CPlacingConnector](VM.Managed.DAFUL.CPlacingConnector.md) Assembly: VMDCPlacingConnector.dll @@ -11,9 +12,9 @@ public abstract class ComponentStiffness : LinkContainer, IObservableObject, IDi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ComponentStiffness](VM.Managed.DAFUL.CPlacingConnector.ComponentStiffness.md) @@ -80,7 +81,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -120,7 +121,7 @@ public ComponentStiffness(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string ## Properties @@ -134,7 +135,7 @@ public bool Calculated { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -146,11 +147,11 @@ public string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The stiffness is null. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.ConnectorGroup.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.ConnectorGroup.md index a8907ed2d4..a54f0938d6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.ConnectorGroup.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.ConnectorGroup.md @@ -1,4 +1,5 @@ -# Class ConnectorGroup +# Class ConnectorGroup + Namespace: [VM.Managed.DAFUL.CPlacingConnector](VM.Managed.DAFUL.CPlacingConnector.md) Assembly: VMDCPlacingConnector.dll @@ -11,14 +12,14 @@ public class ConnectorGroup : MbyNConnector, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← MultipleConnectorBase ← MbyNConnector ← [ConnectorGroup](VM.Managed.DAFUL.CPlacingConnector.ConnectorGroup.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -63,34 +64,34 @@ MbyNConnector.ActionMultipleConnectorInformation, MbyNConnector.HasLayerExplicitly, MultipleConnectorBase.TypeOfMultiConnector, MultipleConnectorBase.TypeOfMultiGeneralConnector, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -189,7 +190,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -228,7 +229,7 @@ public ConnectorGroup(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the contact. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.ContactGroup.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.ContactGroup.md index 0dc4ec828f..c7b43c5f89 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.ContactGroup.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.ContactGroup.md @@ -1,4 +1,5 @@ -# Class ContactGroup +# Class ContactGroup + Namespace: [VM.Managed.DAFUL.CPlacingConnector](VM.Managed.DAFUL.CPlacingConnector.md) Assembly: VMDCPlacingConnector.dll @@ -11,17 +12,17 @@ public class ContactGroup : MbyNContact, IObservableObject, IDisposableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Contact ← -MultipleContactBase ← -MbyNContact ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Contact](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs) ← +[MultipleContactBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MultipleContactBase.cs) ← +[MbyNContact](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MbyNContact.cs) ← [ContactGroup](VM.Managed.DAFUL.CPlacingConnector.ContactGroup.md) #### Implements @@ -31,7 +32,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -67,63 +68,63 @@ IHasReplaceableEntity #### Inherited Members -MbyNContact.Draw\(Canvas\), -MbyNContact.LinkRequestUpdate\(object, LinkEventArgs\), -MbyNContact.OnDeserialization\(object\), -MbyNContact.GetBaseEntities\(\), -MbyNContact.GetActionEntities\(\), -MbyNContact.CheckAttributeMbyNContact\(MultipleContactInfo\[\], MultipleContactInfo\[\]\), -MbyNContact.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -MbyNContact.OnLinkReserved\(ILink, object, EventArgs\), -MbyNContact.IsValidContact\(IContactable\[\], IContactable\[\], MultiContactType\), -MbyNContact.BaseGeometries, -MbyNContact.ActionGeometries, -MbyNContact.ArgumentType, -MultipleContactBase.UpdateIcon\(\), -MultipleContactBase.IsUseContactType\(IContactable, IContactable, MultiContactType\), -MultipleContactBase.IsUseContactType\(IContactable, IContactable, MultiContactType, ref bool\), -MultipleContactBase.MultiContactType, -MultipleContactBase.ReportTypeImpl, -Contact.UpdateIcon\(\), -Contact.Draw\(Canvas\), -Contact.ReDraw\(\), -Contact.WriteTemplateImpl\(XmlWriter\), -Contact.ReadTemplateImpl\(XmlReader\), -Contact.LinkRequestUpdate\(object, LinkEventArgs\), -Contact.LinkRequestDestroy\(object, LinkEventArgs\), -Contact.HasLayerExplicitly, -Contact.Hide, -Contact.ReferenceType, -Contact.ArgumentType, -Contact.ReportTypeImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[MbyNContact.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MbyNContact.cs), +[MbyNContact.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MbyNContact.cs), +[MbyNContact.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MbyNContact.cs), +[MbyNContact.GetBaseEntities\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MbyNContact.cs), +[MbyNContact.GetActionEntities\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MbyNContact.cs), +[MbyNContact.CheckAttributeMbyNContact\(MultipleContactInfo\[\], MultipleContactInfo\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MbyNContact.cs), +[MbyNContact.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MbyNContact.cs), +[MbyNContact.OnLinkReserved\(ILink, object, EventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MbyNContact.cs), +[MbyNContact.IsValidContact\(IContactable\[\], IContactable\[\], MultiContactType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MbyNContact.cs), +[MbyNContact.BaseGeometries](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MbyNContact.cs), +[MbyNContact.ActionGeometries](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MbyNContact.cs), +[MbyNContact.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MbyNContact.cs), +[MultipleContactBase.UpdateIcon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MultipleContactBase.cs), +[MultipleContactBase.IsUseContactType\(IContactable, IContactable, MultiContactType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MultipleContactBase.cs), +[MultipleContactBase.IsUseContactType\(IContactable, IContactable, MultiContactType, ref bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MultipleContactBase.cs), +[MultipleContactBase.MultiContactType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MultipleContactBase.cs), +[MultipleContactBase.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MultipleContactBase.cs), +[Contact.UpdateIcon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Contact.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -222,7 +223,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -261,7 +262,7 @@ public ContactGroup(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the contact. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.ICPlacingEntity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.ICPlacingEntity.md index 5195ca040a..cc8db17005 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.ICPlacingEntity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.ICPlacingEntity.md @@ -1,4 +1,5 @@ -# Interface ICPlacingEntity +# Interface ICPlacingEntity + Namespace: [VM.Managed.DAFUL.CPlacingConnector](VM.Managed.DAFUL.CPlacingConnector.md) Assembly: VMDCPlacingConnector.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.LinkGroup.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.LinkGroup.md index 7857fa4118..af705dc855 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.LinkGroup.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.LinkGroup.md @@ -1,4 +1,5 @@ -# Class LinkGroup +# Class LinkGroup + Namespace: [VM.Managed.DAFUL.CPlacingConnector](VM.Managed.DAFUL.CPlacingConnector.md) Assembly: VMDCPlacingConnector.dll @@ -11,9 +12,9 @@ public abstract class LinkGroup : LinkContainer, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [LinkGroup](VM.Managed.DAFUL.CPlacingConnector.LinkGroup.md) @@ -80,7 +81,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Operation.CalculatePinStiffness.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Operation.CalculatePinStiffness.md index a559000385..31ef03042b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Operation.CalculatePinStiffness.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Operation.CalculatePinStiffness.md @@ -1,4 +1,5 @@ -# Class CalculatePinStiffness +# Class CalculatePinStiffness + Namespace: [VM.Managed.DAFUL.CPlacingConnector.Operation](VM.Managed.DAFUL.CPlacingConnector.Operation.md) Assembly: VMOpCPlacingConnector.dll @@ -11,7 +12,7 @@ public class CalculatePinStiffness : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [CalculatePinStiffness](VM.Managed.DAFUL.CPlacingConnector.Operation.CalculatePinStiffness.md) @@ -87,11 +88,11 @@ public CalculatePinStiffness(string strFilePath, string strPinName) #### Parameters -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string The file path -`strPinName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPinName` string The pin name @@ -121,7 +122,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -143,7 +144,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. @@ -157,7 +158,7 @@ public double Result() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Success\(\) @@ -169,5 +170,5 @@ public bool Success() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Operation.CalculatePulleyStiffness.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Operation.CalculatePulleyStiffness.md index c5f9ffff6f..b16d034060 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Operation.CalculatePulleyStiffness.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Operation.CalculatePulleyStiffness.md @@ -1,4 +1,5 @@ -# Class CalculatePulleyStiffness +# Class CalculatePulleyStiffness + Namespace: [VM.Managed.DAFUL.CPlacingConnector.Operation](VM.Managed.DAFUL.CPlacingConnector.Operation.md) Assembly: VMOpCPlacingConnector.dll @@ -11,7 +12,7 @@ public class CalculatePulleyStiffness : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [CalculatePulleyStiffness](VM.Managed.DAFUL.CPlacingConnector.Operation.CalculatePulleyStiffness.md) @@ -87,15 +88,15 @@ public CalculatePulleyStiffness(string strFilePath, string strPulleyName, string #### Parameters -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string The file path -`strPulleyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPulleyName` string The pulley name -`strPinFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPinFilePath` string The pin file path @@ -125,7 +126,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -169,7 +170,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. @@ -183,7 +184,7 @@ public List Result() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\[\]\> + List ### Success\(\) @@ -195,5 +196,5 @@ public bool Success() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Operation.CalculateSegmentStiffness.MultiKey.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Operation.CalculateSegmentStiffness.MultiKey.md index b3173260f0..8989b29f58 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Operation.CalculateSegmentStiffness.MultiKey.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Operation.CalculateSegmentStiffness.MultiKey.md @@ -1,4 +1,5 @@ -# Class CalculateSegmentStiffness.MultiKey +# Class CalculateSegmentStiffness.MultiKey + Namespace: [VM.Managed.DAFUL.CPlacingConnector.Operation](VM.Managed.DAFUL.CPlacingConnector.Operation.md) Assembly: VMOpCPlacingConnector.dll @@ -11,7 +12,7 @@ public class CalculateSegmentStiffness.MultiKey #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CalculateSegmentStiffness.MultiKey](VM.Managed.DAFUL.CPlacingConnector.Operation.CalculateSegmentStiffness.MultiKey.md) #### Extension Methods @@ -40,5 +41,5 @@ public List ToolKey { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List<[KeyInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/KeyInfo.cs)\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Operation.CalculateSegmentStiffness.UniteParam.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Operation.CalculateSegmentStiffness.UniteParam.md index 126eae5e49..4da6d2bb4b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Operation.CalculateSegmentStiffness.UniteParam.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Operation.CalculateSegmentStiffness.UniteParam.md @@ -1,4 +1,5 @@ -# Class CalculateSegmentStiffness.UniteParam +# Class CalculateSegmentStiffness.UniteParam + Namespace: [VM.Managed.DAFUL.CPlacingConnector.Operation](VM.Managed.DAFUL.CPlacingConnector.Operation.md) Assembly: VMOpCPlacingConnector.dll @@ -11,7 +12,7 @@ public class CalculateSegmentStiffness.UniteParam #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CalculateSegmentStiffness.UniteParam](VM.Managed.DAFUL.CPlacingConnector.Operation.CalculateSegmentStiffness.UniteParam.md) #### Extension Methods @@ -40,7 +41,7 @@ public KeyInfo TargetKey { get; set; } #### Property Value - KeyInfo + [KeyInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/KeyInfo.cs) ### Tools diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Operation.CalculateSegmentStiffness.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Operation.CalculateSegmentStiffness.md index 369f60b2db..73c256323e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Operation.CalculateSegmentStiffness.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Operation.CalculateSegmentStiffness.md @@ -1,4 +1,5 @@ -# Class CalculateSegmentStiffness +# Class CalculateSegmentStiffness + Namespace: [VM.Managed.DAFUL.CPlacingConnector.Operation](VM.Managed.DAFUL.CPlacingConnector.Operation.md) Assembly: VMOpCPlacingConnector.dll @@ -11,7 +12,7 @@ public class CalculateSegmentStiffness : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [CalculateSegmentStiffness](VM.Managed.DAFUL.CPlacingConnector.Operation.CalculateSegmentStiffness.md) @@ -87,7 +88,7 @@ public CalculateSegmentStiffness(string strFilePath) #### Parameters -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string The file path @@ -117,7 +118,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -139,7 +140,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. @@ -153,7 +154,7 @@ public Dictionary Result() #### Returns - [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), VectorBase\> + Dictionary ### Success\(\) @@ -165,5 +166,5 @@ public bool Success() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Operation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Operation.md index 4d8d9e8c0d..040cf4b676 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Operation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Operation.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.CPlacingConnector.Operation +# Namespace VM.Managed.DAFUL.CPlacingConnector.Operation + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PathGroup.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PathGroup.md index 6ade935c28..1255d02b70 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PathGroup.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PathGroup.md @@ -1,4 +1,5 @@ -# Class PathGroup +# Class PathGroup + Namespace: [VM.Managed.DAFUL.CPlacingConnector](VM.Managed.DAFUL.CPlacingConnector.md) Assembly: VMDCPlacingConnector.dll @@ -11,9 +12,9 @@ public class PathGroup : LinkContainer, IObservableObject, IDisposableObject, IL #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [PathGroup](VM.Managed.DAFUL.CPlacingConnector.PathGroup.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -170,7 +171,7 @@ public PathInformation FindInformation(string strPathName) #### Parameters -`strPathName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPathName` string The path name @@ -198,7 +199,7 @@ The document #### Returns - InstanceContainer + [InstanceContainer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs) ### FindPathWithInformation\(PathInformation, Document\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PathInformation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PathInformation.md index bcfc307b53..1e007e99c1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PathInformation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PathInformation.md @@ -1,4 +1,5 @@ -# Class PathInformation +# Class PathInformation + Namespace: [VM.Managed.DAFUL.CPlacingConnector](VM.Managed.DAFUL.CPlacingConnector.md) Assembly: VMDCPlacingConnector.dll @@ -11,9 +12,9 @@ public class PathInformation : LinkContainer, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [PathInformation](VM.Managed.DAFUL.CPlacingConnector.PathInformation.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -128,7 +129,7 @@ public string ModifiedTime { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RelativePath @@ -140,7 +141,7 @@ public string RelativePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Pin.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Pin.md index c43ffba0e5..3d8636fe0a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Pin.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Pin.md @@ -1,4 +1,5 @@ -# Class Pin +# Class Pin + Namespace: [VM.Managed.DAFUL.CPlacingConnector](VM.Managed.DAFUL.CPlacingConnector.md) Assembly: VMDCPlacingConnector.dll @@ -11,14 +12,14 @@ public class Pin : Entity, IObservableObject, IDisposableObject, IL #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [Pin](VM.Managed.DAFUL.CPlacingConnector.Pin.md) #### Implements @@ -28,7 +29,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -57,34 +58,34 @@ IDrawIcon, #### Inherited Members -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -183,7 +184,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -222,7 +223,7 @@ public Pin(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -238,7 +239,7 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Hide @@ -250,7 +251,7 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LeftTransformation @@ -300,7 +301,7 @@ public virtual void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -314,21 +315,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PinShape.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PinShape.md index c84b55779d..c5ce42a036 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PinShape.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PinShape.md @@ -1,4 +1,5 @@ -# Class PinShape +# Class PinShape + Namespace: [VM.Managed.DAFUL.CPlacingConnector](VM.Managed.DAFUL.CPlacingConnector.md) Assembly: VMDCPlacingConnector.dll @@ -11,9 +12,9 @@ public class PinShape : LinkContainer, IObservableObject, IDisposableObject, ILi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [PinShape](VM.Managed.DAFUL.CPlacingConnector.PinShape.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -144,7 +145,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -158,11 +159,11 @@ public string ShapeText(bool bLeft) #### Parameters -`bLeft` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bLeft` bool The left flag #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PinShapeContent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PinShapeContent.md index 298d897b0e..5631d97564 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PinShapeContent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PinShapeContent.md @@ -1,4 +1,5 @@ -# Class PinShapeContent +# Class PinShapeContent + Namespace: [VM.Managed.DAFUL.CPlacingConnector](VM.Managed.DAFUL.CPlacingConnector.md) Assembly: VMDCPlacingConnector.dll @@ -11,9 +12,9 @@ public class PinShapeContent : LinkContainer, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [PinShapeContent](VM.Managed.DAFUL.CPlacingConnector.PinShapeContent.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,11 +117,11 @@ public ExpressionValueVariable Radius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The radius is null. @@ -134,11 +135,11 @@ public ExpressionValueVariable X { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The x is null. @@ -152,11 +153,11 @@ public ExpressionValueVariable Y { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The y is null. @@ -170,11 +171,11 @@ public ExpressionValueVariable Z { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The z is null. @@ -204,7 +205,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PinStiffness.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PinStiffness.md index bf152c036f..c900ce4258 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PinStiffness.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PinStiffness.md @@ -1,4 +1,5 @@ -# Class PinStiffness +# Class PinStiffness + Namespace: [VM.Managed.DAFUL.CPlacingConnector](VM.Managed.DAFUL.CPlacingConnector.md) Assembly: VMDCPlacingConnector.dll @@ -11,9 +12,9 @@ public class PinStiffness : ComponentStiffness, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ComponentStiffness](VM.Managed.DAFUL.CPlacingConnector.ComponentStiffness.md) ← [PinStiffness](VM.Managed.DAFUL.CPlacingConnector.PinStiffness.md) @@ -79,7 +80,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -119,7 +120,7 @@ public PinStiffness(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string ## Properties @@ -133,11 +134,11 @@ public ExpressionValueVariable Stiffness { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The stiffness is null. @@ -167,5 +168,5 @@ public string StiffnessText() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Placing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Placing.md index 0d1717ab28..c8bba3817d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Placing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Placing.md @@ -1,4 +1,5 @@ -# Class Placing +# Class Placing + Namespace: [VM.Managed.DAFUL.CPlacingConnector](VM.Managed.DAFUL.CPlacingConnector.md) Assembly: VMDCPlacingConnector.dll @@ -11,9 +12,9 @@ public class Placing : LinkContainer, IObservableObject, IDisposableObject, ILin #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Placing](VM.Managed.DAFUL.CPlacingConnector.Placing.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PropertyCPlacingConnector.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PropertyCPlacingConnector.md index 2b47387fe0..43dc8c377b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PropertyCPlacingConnector.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PropertyCPlacingConnector.md @@ -1,4 +1,5 @@ -# Class PropertyCPlacingConnector +# Class PropertyCPlacingConnector + Namespace: [VM.Managed.DAFUL.CPlacingConnector](VM.Managed.DAFUL.CPlacingConnector.md) Assembly: VMDCPlacingConnector.dll @@ -11,13 +12,13 @@ public class PropertyCPlacingConnector : Property, IObservableObject, IDisposabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyCPlacingConnector](VM.Managed.DAFUL.CPlacingConnector.PropertyCPlacingConnector.md) #### Implements @@ -31,7 +32,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -40,12 +41,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -144,7 +145,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -223,15 +224,15 @@ public static void FindConnectable(DocumentAnalysis document, ref Dictionary +`baseConnectables` Dictionary The base connectable entity -`actionConnectables` [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2) +`actionConnectables` Dictionary The action connectable entity @@ -245,15 +246,15 @@ public static void FindConnectable(DocumentAnalysis document, Func #### Parameters -`document` DocumentAnalysis +`document` [DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) The document -`funcFilter` [Func](https://learn.microsoft.com/dotnet/api/system.func\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [bool](https://learn.microsoft.com/dotnet/api/system.boolean)\> +`funcFilter` Func The filter function -`connectables` [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2) +`connectables` Dictionary The connectable entity @@ -271,17 +272,17 @@ public static List FindReference(IInstanceContainer instanceContainer The subsystem -`type` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`type` Type The type -`lstConnectable` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstConnectable` List The connectable #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### FindReferenceInCurrentDocument\(DocumentAnalysis, InstanceContainer, IConnectable, ref TMatrix\) @@ -293,11 +294,11 @@ public static IConnectable FindReferenceInCurrentDocument(DocumentAnalysis docum #### Parameters -`document` DocumentAnalysis +`document` [DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) The document -`instance` InstanceContainer +`instance` [InstanceContainer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs) The instance diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PropertyPin.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PropertyPin.md index c28b10ef3e..749c33794c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PropertyPin.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PropertyPin.md @@ -1,4 +1,5 @@ -# Class PropertyPin +# Class PropertyPin + Namespace: [VM.Managed.DAFUL.CPlacingConnector](VM.Managed.DAFUL.CPlacingConnector.md) Assembly: VMDCPlacingConnector.dll @@ -11,13 +12,13 @@ public class PropertyPin : Property, IObservableObject, IDisposableObject, ILink #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyPin](VM.Managed.DAFUL.CPlacingConnector.PropertyPin.md) #### Implements @@ -31,7 +32,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -40,12 +41,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -144,7 +145,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -185,11 +186,11 @@ public ExpressionValueVariable PinRoundRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The pin round radius is null. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PropertyPulley.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PropertyPulley.md index 9e6d928c14..4bc3ed5944 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PropertyPulley.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PropertyPulley.md @@ -1,4 +1,5 @@ -# Class PropertyPulley +# Class PropertyPulley + Namespace: [VM.Managed.DAFUL.CPlacingConnector](VM.Managed.DAFUL.CPlacingConnector.md) Assembly: VMDCPlacingConnector.dll @@ -11,13 +12,13 @@ public class PropertyPulley : Property, IObservableObject, IDisposableObject, IL #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyPulley](VM.Managed.DAFUL.CPlacingConnector.PropertyPulley.md) #### Implements @@ -31,7 +32,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -40,12 +41,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -144,7 +145,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -197,11 +198,11 @@ public ExpressionValueVariable NumberOfRadialPoint { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The number of radial point is null. @@ -215,11 +216,11 @@ public ExpressionValueVariable NumberOfTangentialPoint { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The number of tangential point is null. @@ -235,13 +236,13 @@ public List> GetPointOnSheave(bool bTangentail) #### Parameters -`bTangentail` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bTangentail` bool The tangential use #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)\> + List\> ### Initialize\(ConvertFactor\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Pulley.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Pulley.md index 2afb505e71..64560a7f65 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Pulley.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.Pulley.md @@ -1,4 +1,5 @@ -# Class Pulley +# Class Pulley + Namespace: [VM.Managed.DAFUL.CPlacingConnector](VM.Managed.DAFUL.CPlacingConnector.md) Assembly: VMDCPlacingConnector.dll @@ -11,14 +12,14 @@ public class Pulley : Entity, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [Pulley](VM.Managed.DAFUL.CPlacingConnector.Pulley.md) #### Implements @@ -28,7 +29,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -57,34 +58,34 @@ IDrawIcon, #### Inherited Members -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -183,7 +184,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -222,7 +223,7 @@ public Pulley(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -238,7 +239,7 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Hide @@ -250,7 +251,7 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Parent @@ -288,7 +289,7 @@ public virtual void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -302,21 +303,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PulleyContent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PulleyContent.md index 8b8f8a5e14..526b920bab 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PulleyContent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PulleyContent.md @@ -1,4 +1,5 @@ -# Class PulleyContent +# Class PulleyContent + Namespace: [VM.Managed.DAFUL.CPlacingConnector](VM.Managed.DAFUL.CPlacingConnector.md) Assembly: VMDCPlacingConnector.dll @@ -11,9 +12,9 @@ public class PulleyContent : LinkContainer, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [PulleyContent](VM.Managed.DAFUL.CPlacingConnector.PulleyContent.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,11 +117,11 @@ public ExpressionValueVariable AxialRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The axial radius is null. @@ -134,11 +135,11 @@ public ExpressionValueVariable InnerRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The inner radius is null. @@ -152,11 +153,11 @@ public ExpressionValueVariable Offset { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The offset is null. @@ -170,11 +171,11 @@ public ExpressionValueVariable OuterRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The outer radius is null. @@ -188,11 +189,11 @@ public ExpressionValueVariable SheaveAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The sheave angle is null. @@ -214,7 +215,7 @@ The transform matrix. #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List<[SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs).[TwoPoint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs)\> ### GetStartAndEndPoint\(TMatrix\) @@ -228,7 +229,7 @@ public (VectorBase vecStartPoint, VectorBase vecEndPoint) GetStartAndEndPoint(TM #### Returns - \(VectorBase [vecStartPoint](https://learn.microsoft.com/dotnet/api/system.valuetuple\-vm.managed.vectorbase,vm.managed.vectorbase\-.vecstartpoint), VectorBase [vecEndPoint](https://learn.microsoft.com/dotnet/api/system.valuetuple\-vm.managed.vectorbase,vm.managed.vectorbase\-.vecendpoint)\) + \(VectorBase vecStartPoint, VectorBase vecEndPoint\) ### Initialize\(ConvertFactor\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PulleyStiffness.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PulleyStiffness.md index 9f6b416406..4e527dd30c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PulleyStiffness.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.PulleyStiffness.md @@ -1,4 +1,5 @@ -# Class PulleyStiffness +# Class PulleyStiffness + Namespace: [VM.Managed.DAFUL.CPlacingConnector](VM.Managed.DAFUL.CPlacingConnector.md) Assembly: VMDCPlacingConnector.dll @@ -11,9 +12,9 @@ public class PulleyStiffness : ComponentStiffness, IObservableObject, IDisposabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ComponentStiffness](VM.Managed.DAFUL.CPlacingConnector.ComponentStiffness.md) ← [PulleyStiffness](VM.Managed.DAFUL.CPlacingConnector.PulleyStiffness.md) @@ -79,7 +80,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -119,7 +120,7 @@ public PulleyStiffness(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string ## Properties @@ -133,11 +134,11 @@ public Spline RadialDeformationRatio { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The radial deformation ratio is null. @@ -151,11 +152,11 @@ public Spline Stiffness { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The stiffness is null. @@ -169,7 +170,7 @@ public Spline[] TangentialDeformationRatio { get; set; } #### Property Value - Spline\[\] + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs)\[\] ## Methods @@ -215,5 +216,5 @@ public string TangentialStiffnessText() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.SegmentGroup.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.SegmentGroup.md index d7b02417c9..9b775195c2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.SegmentGroup.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.SegmentGroup.md @@ -1,4 +1,5 @@ -# Class SegmentGroup +# Class SegmentGroup + Namespace: [VM.Managed.DAFUL.CPlacingConnector](VM.Managed.DAFUL.CPlacingConnector.md) Assembly: VMDCPlacingConnector.dll @@ -11,9 +12,9 @@ public class SegmentGroup : LinkContainer, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [SegmentGroup](VM.Managed.DAFUL.CPlacingConnector.SegmentGroup.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -170,7 +171,7 @@ public SegmentInformation FindInformation(string strSegmentName) #### Parameters -`strSegmentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSegmentName` string The segment name @@ -198,7 +199,7 @@ The document #### Returns - InstanceContainer + [InstanceContainer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs) ### FindSegmentWithInformation\(SegmentInformation, Document\) @@ -232,15 +233,15 @@ public VectorBase GetStiffnessWithTwoConnector(string strBaseSegmentName, string #### Parameters -`strBaseSegmentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBaseSegmentName` string The base segment name -`strActionSegmentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strActionSegmentName` string The action segment name -`strStiffnessName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strStiffnessName` string The stiffness name diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.SegmentInformation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.SegmentInformation.md index 1ef9eb1dea..952f4fc150 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.SegmentInformation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.SegmentInformation.md @@ -1,4 +1,5 @@ -# Class SegmentInformation +# Class SegmentInformation + Namespace: [VM.Managed.DAFUL.CPlacingConnector](VM.Managed.DAFUL.CPlacingConnector.md) Assembly: VMDCPlacingConnector.dll @@ -11,9 +12,9 @@ public class SegmentInformation : LinkContainer, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [SegmentInformation](VM.Managed.DAFUL.CPlacingConnector.SegmentInformation.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,7 +117,7 @@ public bool Calculated { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ComponentStiffnessList @@ -140,7 +141,7 @@ public string ModifiedTime { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RelativePath @@ -152,7 +153,7 @@ public string RelativePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### StiffnessList diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.SegmentStiffness.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.SegmentStiffness.md index f818181b4f..178836208a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.SegmentStiffness.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.SegmentStiffness.md @@ -1,4 +1,5 @@ -# Class SegmentStiffness +# Class SegmentStiffness + Namespace: [VM.Managed.DAFUL.CPlacingConnector](VM.Managed.DAFUL.CPlacingConnector.md) Assembly: VMDCPlacingConnector.dll @@ -11,9 +12,9 @@ public class SegmentStiffness : LinkContainer, IObservableObject, IDisposableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [SegmentStiffness](VM.Managed.DAFUL.CPlacingConnector.SegmentStiffness.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,7 +117,7 @@ public string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Stiffness @@ -140,11 +141,11 @@ public ExpressionValueVariable TKX { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception TKX is null. @@ -158,11 +159,11 @@ public ExpressionValueVariable TKY { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception TKY is null. @@ -176,11 +177,11 @@ public ExpressionValueVariable TKZ { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception TKZ is null. @@ -196,13 +197,13 @@ public static bool ContainsActionFilter(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The name #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ContainsBaseFilter\(string\) @@ -214,13 +215,13 @@ public static bool ContainsBaseFilter(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The name #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Initialize\(ConvertFactor\) @@ -246,15 +247,15 @@ public static bool MatchingFilterName(string strBaseName, string strActionName) #### Parameters -`strBaseName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBaseName` string The base name -`strActionName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strActionName` string The action name #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.SegmentToPathGroup.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.SegmentToPathGroup.md index bc5909e1e0..b6e0d5af7b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.SegmentToPathGroup.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.SegmentToPathGroup.md @@ -1,4 +1,5 @@ -# Class SegmentToPathGroup +# Class SegmentToPathGroup + Namespace: [VM.Managed.DAFUL.CPlacingConnector](VM.Managed.DAFUL.CPlacingConnector.md) Assembly: VMDCPlacingConnector.dll @@ -11,9 +12,9 @@ public class SegmentToPathGroup : LinkGroup, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [LinkGroup](VM.Managed.DAFUL.CPlacingConnector.LinkGroup.md) ← [SegmentToPathGroup](VM.Managed.DAFUL.CPlacingConnector.SegmentToPathGroup.md) @@ -79,7 +80,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.SegmentToSegmentGroup.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.SegmentToSegmentGroup.md index 0f06e39c38..1a258fdaa1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.SegmentToSegmentGroup.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.SegmentToSegmentGroup.md @@ -1,4 +1,5 @@ -# Class SegmentToSegmentGroup +# Class SegmentToSegmentGroup + Namespace: [VM.Managed.DAFUL.CPlacingConnector](VM.Managed.DAFUL.CPlacingConnector.md) Assembly: VMDCPlacingConnector.dll @@ -11,9 +12,9 @@ public class SegmentToSegmentGroup : LinkGroup, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [LinkGroup](VM.Managed.DAFUL.CPlacingConnector.LinkGroup.md) ← [SegmentToSegmentGroup](VM.Managed.DAFUL.CPlacingConnector.SegmentToSegmentGroup.md) @@ -79,7 +80,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.md index 2197ac66af..eff2833216 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CPlacingConnector.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.CPlacingConnector +# Namespace VM.Managed.DAFUL.CPlacingConnector + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AccelerationConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AccelerationConfiguration.md index 99b240fe71..c51864c633 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AccelerationConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AccelerationConfiguration.md @@ -1,4 +1,5 @@ -# Class AccelerationConfiguration +# Class AccelerationConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public class AccelerationConfiguration : FullCarAnalysisConfigurationBase, IObse #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [FullCarAnalysisConfigurationBase](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md) ← [AccelerationConfiguration](VM.Managed.DAFUL.Car.AccelerationConfiguration.md) @@ -50,95 +51,98 @@ ILinkUpdateOwner [FullCarAnalysisConfigurationBase.RoadReferencePosition](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadReferencePosition), [FullCarAnalysisConfigurationBase.RoadRotationAngle](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadRotationAngle), [FullCarAnalysisConfigurationBase.RoadOffset](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadOffset), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -182,7 +186,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -261,7 +265,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ActuatorInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ActuatorInfo.md index 257c52637a..0c366210f9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ActuatorInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ActuatorInfo.md @@ -1,4 +1,5 @@ -# Struct ActuatorInfo +# Struct ActuatorInfo + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDFullCar.dll @@ -21,11 +22,11 @@ public ActuatorInfo(Type type, string actuator) #### Parameters -`type` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`type` Type The type. -`actuator` [string](https://learn.microsoft.com/dotnet/api/system.string) +`actuator` string The actuator. @@ -41,7 +42,7 @@ public string Actuator #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ActuatorType @@ -53,7 +54,7 @@ public Type ActuatorType #### Field Value - [Type](https://learn.microsoft.com/dotnet/api/system.type) + Type ## Methods @@ -85,5 +86,5 @@ The obj. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.AccelerationUnitType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.AccelerationUnitType.md index 8635c63e29..f3b4a14e7c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.AccelerationUnitType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.AccelerationUnitType.md @@ -1,4 +1,5 @@ -# Enum AccelerationUnitType +# Enum AccelerationUnitType + Namespace: [VM.Managed.DAFUL.Car.Analysis](VM.Managed.DAFUL.Car.Analysis.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.AngleUnitType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.AngleUnitType.md index 7a7cade09c..91391eff80 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.AngleUnitType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.AngleUnitType.md @@ -1,4 +1,5 @@ -# Enum AngleUnitType +# Enum AngleUnitType + Namespace: [VM.Managed.DAFUL.Car.Analysis](VM.Managed.DAFUL.Car.Analysis.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.ActiveActuators.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.ActiveActuators.md index 6b84281cd9..931d2d8654 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.ActiveActuators.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.ActiveActuators.md @@ -1,4 +1,5 @@ -# Enum ActiveActuators +# Enum ActiveActuators + Namespace: [VM.Managed.DAFUL.Car.Analysis.FourPost](VM.Managed.DAFUL.Car.Analysis.FourPost.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.ActuationType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.ActuationType.md index e5d806aad4..94b43d26a7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.ActuationType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.ActuationType.md @@ -1,4 +1,5 @@ -# Enum ActuationType +# Enum ActuationType + Namespace: [VM.Managed.DAFUL.Car.Analysis.FourPost](VM.Managed.DAFUL.Car.Analysis.FourPost.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.BasisForNumOfOutputSteps.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.BasisForNumOfOutputSteps.md index d883175fe5..eabc719b1e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.BasisForNumOfOutputSteps.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.BasisForNumOfOutputSteps.md @@ -1,4 +1,5 @@ -# Enum BasisForNumOfOutputSteps +# Enum BasisForNumOfOutputSteps + Namespace: [VM.Managed.DAFUL.Car.Analysis.FourPost](VM.Managed.DAFUL.Car.Analysis.FourPost.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.ExcitationMode.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.ExcitationMode.md index ff8a6b5ce6..bfa061887f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.ExcitationMode.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.ExcitationMode.md @@ -1,4 +1,5 @@ -# Enum ExcitationMode +# Enum ExcitationMode + Namespace: [VM.Managed.DAFUL.Car.Analysis.FourPost](VM.Managed.DAFUL.Car.Analysis.FourPost.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.InputLocation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.InputLocation.md index 32fedf6246..57d6457134 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.InputLocation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.InputLocation.md @@ -1,4 +1,5 @@ -# Enum InputLocation +# Enum InputLocation + Namespace: [VM.Managed.DAFUL.Car.Analysis.FourPost](VM.Managed.DAFUL.Car.Analysis.FourPost.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.InputSource.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.InputSource.md index c1be69016a..90958ac8e9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.InputSource.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.InputSource.md @@ -1,4 +1,5 @@ -# Enum InputSource +# Enum InputSource + Namespace: [VM.Managed.DAFUL.Car.Analysis.FourPost](VM.Managed.DAFUL.Car.Analysis.FourPost.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.SloverFunctionAccUnit.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.SloverFunctionAccUnit.md index d4c59a01f8..37c6ee4014 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.SloverFunctionAccUnit.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.SloverFunctionAccUnit.md @@ -1,4 +1,5 @@ -# Enum SloverFunctionAccUnit +# Enum SloverFunctionAccUnit + Namespace: [VM.Managed.DAFUL.Car.Analysis.FourPost](VM.Managed.DAFUL.Car.Analysis.FourPost.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.SloverFunctionDispUnit.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.SloverFunctionDispUnit.md index f640aa2316..f75dfcb90c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.SloverFunctionDispUnit.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.SloverFunctionDispUnit.md @@ -1,4 +1,5 @@ -# Enum SloverFunctionDispUnit +# Enum SloverFunctionDispUnit + Namespace: [VM.Managed.DAFUL.Car.Analysis.FourPost](VM.Managed.DAFUL.Car.Analysis.FourPost.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.SloverFunctionForceUnit.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.SloverFunctionForceUnit.md index addd9b1e8c..6da76c463d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.SloverFunctionForceUnit.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.SloverFunctionForceUnit.md @@ -1,4 +1,5 @@ -# Enum SloverFunctionForceUnit +# Enum SloverFunctionForceUnit + Namespace: [VM.Managed.DAFUL.Car.Analysis.FourPost](VM.Managed.DAFUL.Car.Analysis.FourPost.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.SloverFunctionVelUnit.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.SloverFunctionVelUnit.md index f3ca883269..85ce0a877f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.SloverFunctionVelUnit.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.SloverFunctionVelUnit.md @@ -1,4 +1,5 @@ -# Enum SloverFunctionVelUnit +# Enum SloverFunctionVelUnit + Namespace: [VM.Managed.DAFUL.Car.Analysis.FourPost](VM.Managed.DAFUL.Car.Analysis.FourPost.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.VibrationInputInputDirection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.VibrationInputInputDirection.md index 77e810f4e7..85fd69182f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.VibrationInputInputDirection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.VibrationInputInputDirection.md @@ -1,4 +1,5 @@ -# Enum VibrationInputInputDirection +# Enum VibrationInputInputDirection + Namespace: [VM.Managed.DAFUL.Car.Analysis.FourPost](VM.Managed.DAFUL.Car.Analysis.FourPost.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.VibrationInputLocation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.VibrationInputLocation.md index 48d06dfd8f..15aacf0823 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.VibrationInputLocation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.VibrationInputLocation.md @@ -1,4 +1,5 @@ -# Enum VibrationInputLocation +# Enum VibrationInputLocation + Namespace: [VM.Managed.DAFUL.Car.Analysis.FourPost](VM.Managed.DAFUL.Car.Analysis.FourPost.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.md index 6e7e7ec38b..fe3dd6cfe9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.FourPost.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Car.Analysis.FourPost +# Namespace VM.Managed.DAFUL.Car.Analysis.FourPost + ### Enums diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.ControlType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.ControlType.md index 2a55303223..d00a566e28 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.ControlType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.ControlType.md @@ -1,4 +1,5 @@ -# Enum ControlType +# Enum ControlType + Namespace: [VM.Managed.DAFUL.Car.Analysis.Full](VM.Managed.DAFUL.Car.Analysis.Full.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.CorneringSteeringInputType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.CorneringSteeringInputType.md index a4e094f062..41852dee2b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.CorneringSteeringInputType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.CorneringSteeringInputType.md @@ -1,4 +1,5 @@ -# Enum CorneringSteeringInputType +# Enum CorneringSteeringInputType + Namespace: [VM.Managed.DAFUL.Car.Analysis.Full](VM.Managed.DAFUL.Car.Analysis.Full.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.GearPositionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.GearPositionType.md index 840e19b6cd..a08a7cf95f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.GearPositionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.GearPositionType.md @@ -1,4 +1,5 @@ -# Enum GearPositionType +# Enum GearPositionType + Namespace: [VM.Managed.DAFUL.Car.Analysis.Full](VM.Managed.DAFUL.Car.Analysis.Full.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.LongtudinalSlip.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.LongtudinalSlip.md index 3f475645fc..e9c6652d8f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.LongtudinalSlip.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.LongtudinalSlip.md @@ -1,4 +1,5 @@ -# Enum LongtudinalSlip +# Enum LongtudinalSlip + Namespace: [VM.Managed.DAFUL.Car.Analysis.Full](VM.Managed.DAFUL.Car.Analysis.Full.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.SpeedControlType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.SpeedControlType.md index 9885aae9dc..325b80ee5e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.SpeedControlType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.SpeedControlType.md @@ -1,4 +1,5 @@ -# Enum SpeedControlType +# Enum SpeedControlType + Namespace: [VM.Managed.DAFUL.Car.Analysis.Full](VM.Managed.DAFUL.Car.Analysis.Full.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.SteadyStatePrephaseType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.SteadyStatePrephaseType.md index e8cc870402..a9166e17c0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.SteadyStatePrephaseType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.SteadyStatePrephaseType.md @@ -1,4 +1,5 @@ -# Enum SteadyStatePrephaseType +# Enum SteadyStatePrephaseType + Namespace: [VM.Managed.DAFUL.Car.Analysis.Full](VM.Managed.DAFUL.Car.Analysis.Full.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.SteeringInputType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.SteeringInputType.md index e871b62a81..29a459deba 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.SteeringInputType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.SteeringInputType.md @@ -1,4 +1,5 @@ -# Enum SteeringInputType +# Enum SteeringInputType + Namespace: [VM.Managed.DAFUL.Car.Analysis.Full](VM.Managed.DAFUL.Car.Analysis.Full.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.StraightLineSteeringInputType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.StraightLineSteeringInputType.md index e2408f2b45..c94c8bac48 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.StraightLineSteeringInputType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.StraightLineSteeringInputType.md @@ -1,4 +1,5 @@ -# Enum StraightLineSteeringInputType +# Enum StraightLineSteeringInputType + Namespace: [VM.Managed.DAFUL.Car.Analysis.Full](VM.Managed.DAFUL.Car.Analysis.Full.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.StraightLoopType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.StraightLoopType.md index 72d565b097..5bd9f42f72 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.StraightLoopType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.StraightLoopType.md @@ -1,4 +1,5 @@ -# Enum StraightLoopType +# Enum StraightLoopType + Namespace: [VM.Managed.DAFUL.Car.Analysis.Full](VM.Managed.DAFUL.Car.Analysis.Full.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.TurnDirectionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.TurnDirectionType.md index 0aa8a170c3..6f7a52f610 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.TurnDirectionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.TurnDirectionType.md @@ -1,4 +1,5 @@ -# Enum TurnDirectionType +# Enum TurnDirectionType + Namespace: [VM.Managed.DAFUL.Car.Analysis.Full](VM.Managed.DAFUL.Car.Analysis.Full.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.md index 9f856bcfc1..3c5221ec3e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Full.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Car.Analysis.Full +# Namespace VM.Managed.DAFUL.Car.Analysis.Full + ### Enums diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Suspension.CoordinateSystemType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Suspension.CoordinateSystemType.md index 7ad0714d3a..507562cf8e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Suspension.CoordinateSystemType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Suspension.CoordinateSystemType.md @@ -1,4 +1,5 @@ -# Enum CoordinateSystemType +# Enum CoordinateSystemType + Namespace: [VM.Managed.DAFUL.Car.Analysis.Suspension](VM.Managed.DAFUL.Car.Analysis.Suspension.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Suspension.SteeringInputType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Suspension.SteeringInputType.md index cb57ff4bcb..46cebed5c0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Suspension.SteeringInputType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Suspension.SteeringInputType.md @@ -1,4 +1,5 @@ -# Enum SteeringInputType +# Enum SteeringInputType + Namespace: [VM.Managed.DAFUL.Car.Analysis.Suspension](VM.Managed.DAFUL.Car.Analysis.Suspension.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Suspension.TravelMotionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Suspension.TravelMotionType.md index 8c240e880a..6c87d996a6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Suspension.TravelMotionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Suspension.TravelMotionType.md @@ -1,4 +1,5 @@ -# Enum TravelMotionType +# Enum TravelMotionType + Namespace: [VM.Managed.DAFUL.Car.Analysis.Suspension](VM.Managed.DAFUL.Car.Analysis.Suspension.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Suspension.VerticalModeForSetupType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Suspension.VerticalModeForSetupType.md index e6509dedbd..5673df09e7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Suspension.VerticalModeForSetupType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Suspension.VerticalModeForSetupType.md @@ -1,4 +1,5 @@ -# Enum VerticalModeForSetupType +# Enum VerticalModeForSetupType + Namespace: [VM.Managed.DAFUL.Car.Analysis.Suspension](VM.Managed.DAFUL.Car.Analysis.Suspension.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Suspension.VerticalType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Suspension.VerticalType.md index 1ea62a5986..39a2b5ca04 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Suspension.VerticalType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Suspension.VerticalType.md @@ -1,4 +1,5 @@ -# Enum VerticalType +# Enum VerticalType + Namespace: [VM.Managed.DAFUL.Car.Analysis.Suspension](VM.Managed.DAFUL.Car.Analysis.Suspension.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Suspension.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Suspension.md index 1fdacde8e7..5d9551bd48 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Suspension.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.Suspension.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Car.Analysis.Suspension +# Namespace VM.Managed.DAFUL.Car.Analysis.Suspension + ### Enums diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.VelocityUnitType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.VelocityUnitType.md index 4ce1302bcf..ba4366442b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.VelocityUnitType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.VelocityUnitType.md @@ -1,4 +1,5 @@ -# Enum VelocityUnitType +# Enum VelocityUnitType + Namespace: [VM.Managed.DAFUL.Car.Analysis](VM.Managed.DAFUL.Car.Analysis.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.md index 99a9d872f6..b49c4d1a08 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Car.Analysis +# Namespace VM.Managed.DAFUL.Car.Analysis + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis3DRoad.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis3DRoad.md index 390ca7f473..faf253d737 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis3DRoad.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Analysis3DRoad.md @@ -1,4 +1,5 @@ -# Class Analysis3DRoad +# Class Analysis3DRoad + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class Analysis3DRoad : CourseBase, IHasInitialVel #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [FullCarAnalysisBase](VM.Managed.DAFUL.Car.FullCarAnalysisBase.md) ← [CourseBase](VM.Managed.DAFUL.Car.CourseBase.md) ← @@ -81,7 +82,7 @@ public string DriverFile { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### LongitudialAcc @@ -93,7 +94,7 @@ public double LongitudialAcc { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SpeedControlType @@ -117,7 +118,7 @@ public double TimeOfStart { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TireRadiusPosition @@ -129,7 +130,7 @@ public override int TireRadiusPosition { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -143,7 +144,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisAcceleration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisAcceleration.md index c4f1d6138e..850f9618d5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisAcceleration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisAcceleration.md @@ -1,4 +1,5 @@ -# Class AnalysisAcceleration +# Class AnalysisAcceleration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisAcceleration : StraightLineBase, IHasInitialVel #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [FullCarAnalysisBase](VM.Managed.DAFUL.Car.FullCarAnalysisBase.md) ← [StraightLineBase](VM.Managed.DAFUL.Car.StraightLineBase.md) ← @@ -82,7 +83,7 @@ public double AccelerationValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### FinalThrottleValue @@ -94,7 +95,7 @@ public double FinalThrottleValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### IsShiftGears @@ -106,7 +107,7 @@ public bool IsShiftGears { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SteeringInputType @@ -130,7 +131,7 @@ public double StepDuration { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StraightLoopType @@ -154,7 +155,7 @@ public override int TireRadiusPosition { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -168,7 +169,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisBase.md index d5eb8a5b00..2ce4271af7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisBase.md @@ -1,4 +1,5 @@ -# Class AnalysisBase +# Class AnalysisBase + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public abstract class AnalysisBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) #### Derived @@ -76,7 +77,7 @@ public bool IsSim { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -96,7 +97,7 @@ The type. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetConvertUnit\(VelocityUnitType\) @@ -114,7 +115,7 @@ The type. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetConvertUnit\(AccelerationUnitType\) @@ -132,7 +133,7 @@ The type. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetGravity\(\) @@ -142,7 +143,7 @@ protected double GetGravity() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetTestRigMotionUSUBArgument\(string\[\]\) @@ -154,7 +155,7 @@ public virtual void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisBraking.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisBraking.md index 93e56085f3..a420ee81f6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisBraking.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisBraking.md @@ -1,4 +1,5 @@ -# Class AnalysisBraking +# Class AnalysisBraking + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisBraking : StraightLineBase, IHasInitialVel #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [FullCarAnalysisBase](VM.Managed.DAFUL.Car.FullCarAnalysisBase.md) ← [StraightLineBase](VM.Managed.DAFUL.Car.StraightLineBase.md) ← @@ -94,7 +95,7 @@ public double DecelerationValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### FinalBrakeValue @@ -106,7 +107,7 @@ public double FinalBrakeValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SteeringInputType @@ -130,7 +131,7 @@ public double StepDuration { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TireRadiusPosition @@ -142,7 +143,7 @@ public override int TireRadiusPosition { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -156,7 +157,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisBrakingInTurn.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisBrakingInTurn.md index 6bcac29762..04b05a2cbd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisBrakingInTurn.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisBrakingInTurn.md @@ -1,4 +1,5 @@ -# Class AnalysisBrakingInTurn +# Class AnalysisBrakingInTurn + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisBrakingInTurn : CorneringBase, IHasInitialVel, IHasLengthUn #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [FullCarAnalysisBase](VM.Managed.DAFUL.Car.FullCarAnalysisBase.md) ← [CorneringBase](VM.Managed.DAFUL.Car.CorneringBase.md) ← @@ -85,7 +86,7 @@ public double BrakeDeceler { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### InitialVelocityCornering @@ -97,7 +98,7 @@ public override double InitialVelocityCornering { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### LateralAcc @@ -109,7 +110,7 @@ public double LateralAcc { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MaxBrakeDuration @@ -121,7 +122,7 @@ public double MaxBrakeDuration { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SteeringInputType @@ -145,7 +146,7 @@ public override int TireRadiusPosition { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### TurnRadius @@ -157,7 +158,7 @@ public double TurnRadius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UnitOfLength @@ -183,7 +184,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisConstantRadiusCornering.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisConstantRadiusCornering.md index 7a3e0dc5d5..0605388de7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisConstantRadiusCornering.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisConstantRadiusCornering.md @@ -1,4 +1,5 @@ -# Class AnalysisConstantRadiusCornering +# Class AnalysisConstantRadiusCornering + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisConstantRadiusCornering : CorneringBase, IHasInitialVel, IH #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [FullCarAnalysisBase](VM.Managed.DAFUL.Car.FullCarAnalysisBase.md) ← [CorneringBase](VM.Managed.DAFUL.Car.CorneringBase.md) ← @@ -109,7 +110,7 @@ public double DurationManeuver { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### FinalAcceleration @@ -121,7 +122,7 @@ public double FinalAcceleration { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### FinalVelocity @@ -133,7 +134,7 @@ public double FinalVelocity { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### InitialAcceleration @@ -145,7 +146,7 @@ public double InitialAcceleration { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### InitialVelocity @@ -157,7 +158,7 @@ public double InitialVelocity { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### InitialVelocityCornering @@ -169,7 +170,7 @@ public override double InitialVelocityCornering { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### IsSiftGears @@ -181,7 +182,7 @@ public bool IsSiftGears { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TireRadiusPosition @@ -193,7 +194,7 @@ public override int TireRadiusPosition { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### TurnRadius @@ -205,7 +206,7 @@ public double TurnRadius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UnitOfLength @@ -243,7 +244,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisCorneringWithSteerRelease.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisCorneringWithSteerRelease.md index 1723080f82..400a4e9f74 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisCorneringWithSteerRelease.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisCorneringWithSteerRelease.md @@ -1,4 +1,5 @@ -# Class AnalysisCorneringWithSteerRelease +# Class AnalysisCorneringWithSteerRelease + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisCorneringWithSteerRelease : CorneringBase, IHasInitialVel, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [FullCarAnalysisBase](VM.Managed.DAFUL.Car.FullCarAnalysisBase.md) ← [CorneringBase](VM.Managed.DAFUL.Car.CorneringBase.md) ← @@ -85,7 +86,7 @@ public double Acceleration { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### AccelerationUnitType @@ -109,7 +110,7 @@ public override double InitialVelocityCornering { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### LongitudinalVelocity @@ -121,7 +122,7 @@ public double LongitudinalVelocity { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Radius @@ -133,7 +134,7 @@ public double Radius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SteadyStatePrephaseType @@ -157,7 +158,7 @@ public override int TireRadiusPosition { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### UnitOfLength @@ -195,7 +196,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisDrift.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisDrift.md index 29426dd9f1..cc8bb38fbe 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisDrift.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisDrift.md @@ -1,4 +1,5 @@ -# Class AnalysisDrift +# Class AnalysisDrift + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisDrift : OpenLoopSteeringBase, IAnalysisDrift, IHasInitialVe #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [FullCarAnalysisBase](VM.Managed.DAFUL.Car.FullCarAnalysisBase.md) ← [OpenLoopSteeringBase](VM.Managed.DAFUL.Car.OpenLoopSteeringBase.md) ← @@ -82,7 +83,7 @@ public double InitThrottle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Steer @@ -94,7 +95,7 @@ public double Steer { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SteeringInputType @@ -118,7 +119,7 @@ public double Throttle_Ramp { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TireRadiusPosition @@ -130,7 +131,7 @@ public override int TireRadiusPosition { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -144,7 +145,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisExternFiles.ExternFileType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisExternFiles.ExternFileType.md index 22e193ff37..0520bd18ad 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisExternFiles.ExternFileType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisExternFiles.ExternFileType.md @@ -1,4 +1,5 @@ -# Enum AnalysisExternFiles.ExternFileType +# Enum AnalysisExternFiles.ExternFileType + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisExternFiles.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisExternFiles.md index d0d0db2194..2f6f624013 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisExternFiles.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisExternFiles.md @@ -1,4 +1,5 @@ -# Class AnalysisExternFiles +# Class AnalysisExternFiles + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisExternFiles : AnalysisBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [AnalysisExternFiles](VM.Managed.DAFUL.Car.AnalysisExternFiles.md) @@ -80,7 +81,7 @@ public string[] Files { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### LoadAnalyResults @@ -92,5 +93,5 @@ public bool LoadAnalyResults { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisFileDriven.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisFileDriven.md index e4064c2519..0f77db5aa4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisFileDriven.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisFileDriven.md @@ -1,4 +1,5 @@ -# Class AnalysisFileDriven +# Class AnalysisFileDriven + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisFileDriven : FullCarAnalysisBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [FullCarAnalysisBase](VM.Managed.DAFUL.Car.FullCarAnalysisBase.md) ← [AnalysisFileDriven](VM.Managed.DAFUL.Car.AnalysisFileDriven.md) @@ -73,7 +74,7 @@ public string[] Files { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### TireRadiusPosition @@ -85,5 +86,5 @@ public override int TireRadiusPosition { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisFishHook.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisFishHook.md index 795f9691d3..b379a3cac8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisFishHook.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisFishHook.md @@ -1,4 +1,5 @@ -# Class AnalysisFishHook +# Class AnalysisFishHook + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisFishHook : OpenLoopSteeringBase, IHasInitialVel #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [FullCarAnalysisBase](VM.Managed.DAFUL.Car.FullCarAnalysisBase.md) ← [OpenLoopSteeringBase](VM.Managed.DAFUL.Car.OpenLoopSteeringBase.md) ← @@ -81,7 +82,7 @@ public double FirstSteer_Angle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### FirstStep\_Duration @@ -93,7 +94,7 @@ public double FirstStep_Duration { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### FirstTurnDir @@ -117,7 +118,7 @@ public double FirstTurn_Duration { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SecondSteer\_Angle @@ -129,7 +130,7 @@ public double SecondSteer_Angle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SecondStep\_Duration @@ -141,7 +142,7 @@ public double SecondStep_Duration { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SecondTurnDirectionType @@ -165,7 +166,7 @@ public double SecondTurn_Duration { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TireRadiusPosition @@ -177,7 +178,7 @@ public override int TireRadiusPosition { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -191,7 +192,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisFourPostRide.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisFourPostRide.md index 5762529618..11f06be511 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisFourPostRide.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisFourPostRide.md @@ -1,4 +1,5 @@ -# Class AnalysisFourPostRide +# Class AnalysisFourPostRide + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDFullCar.dll @@ -11,22 +12,22 @@ public class AnalysisFourPostRide : FourPostAnalysisBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -AnalysisBase ← +object ← +[AnalysisBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs) ← [FourPostAnalysisBase](VM.Managed.DAFUL.Car.FourPostAnalysisBase.md) ← [AnalysisFourPostRide](VM.Managed.DAFUL.Car.AnalysisFourPostRide.md) #### Inherited Members [FourPostAnalysisBase.GetTestRigMotionUSUBArgumentCore\(string, AnalysisFourPostRideInfo, string\[\]\)](VM.Managed.DAFUL.Car.FourPostAnalysisBase.md\#VM\_Managed\_DAFUL\_Car\_FourPostAnalysisBase\_GetTestRigMotionUSUBArgumentCore\_System\_String\_VM\_Managed\_DAFUL\_Car\_AnalysisFourPostRideInfo\_System\_String\_\_\_), -AnalysisBase.m\_pLnkContainer, -AnalysisBase.SetModified\(\), -AnalysisBase.GetTestRigMotionUSUBArgument\(string\[\]\), -AnalysisBase.GetConvertUnit\(LengthUnitType\), -AnalysisBase.GetGravity\(\), -AnalysisBase.GetConvertUnit\(VelocityUnitType\), -AnalysisBase.GetConvertUnit\(AccelerationUnitType\), -AnalysisBase.IsSim +[AnalysisBase.m\_pLnkContainer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.SetModified\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetTestRigMotionUSUBArgument\(string\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetConvertUnit\(LengthUnitType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetGravity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetConvertUnit\(VelocityUnitType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetConvertUnit\(AccelerationUnitType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.IsSim](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs) #### Extension Methods @@ -84,7 +85,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. @@ -98,11 +99,11 @@ public bool MakeSpline(List[] arSpl) #### Parameters -`arSpl` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\[\]\>\[\] +`arSpl` List\[\] The ar SPL. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisFourPostRideInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisFourPostRideInfo.md index 2690242c21..e35bc3bc83 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisFourPostRideInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisFourPostRideInfo.md @@ -1,4 +1,5 @@ -# Class AnalysisFourPostRideInfo +# Class AnalysisFourPostRideInfo + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDFullCar.dll @@ -11,7 +12,7 @@ public class AnalysisFourPostRideInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisFourPostRideInfo](VM.Managed.DAFUL.Car.AnalysisFourPostRideInfo.md) #### Extension Methods @@ -104,7 +105,7 @@ public double AmplitudeValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### BasisForNumOfOutputSteps @@ -128,7 +129,7 @@ public double Calculated_TimeLag { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Calculated\_Wheelbase @@ -140,7 +141,7 @@ public double Calculated_Wheelbase { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DispUnit @@ -164,7 +165,7 @@ public double End_Frequency { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Excitation\_Mode @@ -224,7 +225,7 @@ public string LFront { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### LRear @@ -236,7 +237,7 @@ public string LRear { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### MinNo\_OutputStepsPerInput @@ -248,7 +249,7 @@ public double MinNo_OutputStepsPerInput { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NumOfOutputsSteps @@ -260,7 +261,7 @@ public double NumOfOutputsSteps { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Output\_Frequency @@ -272,7 +273,7 @@ public double Output_Frequency { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Output\_Interval @@ -284,7 +285,7 @@ public double Output_Interval { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RFront @@ -296,7 +297,7 @@ public string RFront { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RRear @@ -308,7 +309,7 @@ public string RRear { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Spline\_File @@ -320,7 +321,7 @@ public string Spline_File { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Start\_Frequency @@ -332,7 +333,7 @@ public double Start_Frequency { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TargetValue\_Basis @@ -344,7 +345,7 @@ public double TargetValue_Basis { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Vechile\_Speed @@ -356,7 +357,7 @@ public double Vechile_Speed { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### VelUnit diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisFourPostVibration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisFourPostVibration.md index 2efc5515c8..56f1a9f958 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisFourPostVibration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisFourPostVibration.md @@ -1,4 +1,5 @@ -# Class AnalysisFourPostVibration +# Class AnalysisFourPostVibration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDFullCar.dll @@ -11,8 +12,8 @@ public class AnalysisFourPostVibration : AnalysisFrequencyBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -AnalysisBase ← +object ← +[AnalysisBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs) ← [AnalysisFrequencyBase](VM.Managed.DAFUL.Car.AnalysisFrequencyBase.md) ← [AnalysisFourPostVibration](VM.Managed.DAFUL.Car.AnalysisFourPostVibration.md) @@ -22,14 +23,14 @@ AnalysisBase ← [AnalysisFrequencyBase.EndValue](VM.Managed.DAFUL.Car.AnalysisFrequencyBase.md\#VM\_Managed\_DAFUL\_Car\_AnalysisFrequencyBase\_EndValue), [AnalysisFrequencyBase.StepsValue](VM.Managed.DAFUL.Car.AnalysisFrequencyBase.md\#VM\_Managed\_DAFUL\_Car\_AnalysisFrequencyBase\_StepsValue), [AnalysisFrequencyBase.Increment\_Type](VM.Managed.DAFUL.Car.AnalysisFrequencyBase.md\#VM\_Managed\_DAFUL\_Car\_AnalysisFrequencyBase\_Increment\_Type), -AnalysisBase.m\_pLnkContainer, -AnalysisBase.SetModified\(\), -AnalysisBase.GetTestRigMotionUSUBArgument\(string\[\]\), -AnalysisBase.GetConvertUnit\(LengthUnitType\), -AnalysisBase.GetGravity\(\), -AnalysisBase.GetConvertUnit\(VelocityUnitType\), -AnalysisBase.GetConvertUnit\(AccelerationUnitType\), -AnalysisBase.IsSim +[AnalysisBase.m\_pLnkContainer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.SetModified\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetTestRigMotionUSUBArgument\(string\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetConvertUnit\(LengthUnitType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetGravity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetConvertUnit\(VelocityUnitType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetConvertUnit\(AccelerationUnitType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.IsSim](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisFourPostVibrationInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisFourPostVibrationInfo.md index 77c3d2d554..64874c7a33 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisFourPostVibrationInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisFourPostVibrationInfo.md @@ -1,4 +1,5 @@ -# Class AnalysisFourPostVibrationInfo +# Class AnalysisFourPostVibrationInfo + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDFullCar.dll @@ -11,7 +12,7 @@ public class AnalysisFourPostVibrationInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisFourPostVibrationInfo](VM.Managed.DAFUL.Car.AnalysisFourPostVibrationInfo.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisFrequencyBase.IncrementType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisFrequencyBase.IncrementType.md index afc096c445..8a6114461b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisFrequencyBase.IncrementType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisFrequencyBase.IncrementType.md @@ -1,4 +1,5 @@ -# Enum AnalysisFrequencyBase.IncrementType +# Enum AnalysisFrequencyBase.IncrementType + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDFullCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisFrequencyBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisFrequencyBase.md index 2f57bbaea1..040d16eff0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisFrequencyBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisFrequencyBase.md @@ -1,4 +1,5 @@ -# Class AnalysisFrequencyBase +# Class AnalysisFrequencyBase + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDFullCar.dll @@ -11,8 +12,8 @@ public abstract class AnalysisFrequencyBase : AnalysisBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -AnalysisBase ← +object ← +[AnalysisBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs) ← [AnalysisFrequencyBase](VM.Managed.DAFUL.Car.AnalysisFrequencyBase.md) #### Derived @@ -22,14 +23,14 @@ AnalysisBase ← #### Inherited Members -AnalysisBase.m\_pLnkContainer, -AnalysisBase.SetModified\(\), -AnalysisBase.GetTestRigMotionUSUBArgument\(string\[\]\), -AnalysisBase.GetConvertUnit\(LengthUnitType\), -AnalysisBase.GetGravity\(\), -AnalysisBase.GetConvertUnit\(VelocityUnitType\), -AnalysisBase.GetConvertUnit\(AccelerationUnitType\), -AnalysisBase.IsSim +[AnalysisBase.m\_pLnkContainer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.SetModified\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetTestRigMotionUSUBArgument\(string\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetConvertUnit\(LengthUnitType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetGravity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetConvertUnit\(VelocityUnitType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetConvertUnit\(AccelerationUnitType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.IsSim](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs) #### Extension Methods @@ -73,7 +74,7 @@ public double BeginValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### EndValue @@ -85,7 +86,7 @@ public double EndValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Increment\_Type @@ -109,5 +110,5 @@ public uint StepsValue { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisISOLaneChange.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisISOLaneChange.md index ec6667bff2..1714196475 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisISOLaneChange.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisISOLaneChange.md @@ -1,4 +1,5 @@ -# Class AnalysisISOLaneChange +# Class AnalysisISOLaneChange + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisISOLaneChange : CourseBase, IHasInitialVel #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [FullCarAnalysisBase](VM.Managed.DAFUL.Car.FullCarAnalysisBase.md) ← [CourseBase](VM.Managed.DAFUL.Car.CourseBase.md) ← @@ -81,7 +82,7 @@ public override int TireRadiusPosition { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -95,7 +96,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisImpulseSteer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisImpulseSteer.md index b8ada83c79..5fab18984d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisImpulseSteer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisImpulseSteer.md @@ -1,4 +1,5 @@ -# Class AnalysisImpulseSteer +# Class AnalysisImpulseSteer + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisImpulseSteer : AnalysisSteerBase, IHasInitialVel #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [FullCarAnalysisBase](VM.Managed.DAFUL.Car.FullCarAnalysisBase.md) ← [OpenLoopSteeringBase](VM.Managed.DAFUL.Car.OpenLoopSteeringBase.md) ← @@ -89,7 +90,7 @@ public double CycleLen { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MaximumSteer @@ -101,7 +102,7 @@ public double MaximumSteer { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TireRadiusPosition @@ -113,7 +114,7 @@ public override int TireRadiusPosition { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -127,7 +128,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisInfo.md index a878a6a3d6..c846a13da5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisInfo.md @@ -1,4 +1,5 @@ -# Class AnalysisInfo +# Class AnalysisInfo + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisInfo](VM.Managed.DAFUL.Car.AnalysisInfo.md) #### Extension Methods @@ -68,7 +69,7 @@ public double Final_CamberAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Final\_SlipAngle @@ -80,7 +81,7 @@ public double Final_SlipAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Final\_SlipRatio @@ -92,7 +93,7 @@ public double Final_SlipRatio { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Final\_Velocity @@ -104,7 +105,7 @@ public double Final_Velocity { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Final\_VerticalLoad @@ -116,7 +117,7 @@ public double Final_VerticalLoad { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### InitVelocity @@ -128,7 +129,7 @@ public double InitVelocity { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### InitVerticalLoad @@ -140,7 +141,7 @@ public double InitVerticalLoad { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Initial\_CamberAngle @@ -152,7 +153,7 @@ public double Initial_CamberAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Initial\_SlipAngle @@ -164,7 +165,7 @@ public double Initial_SlipAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Initial\_SlipRatio @@ -176,7 +177,7 @@ public double Initial_SlipRatio { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### LongitudinalSlipType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisJudder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisJudder.md index 54cacf068a..b4e6baf87c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisJudder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisJudder.md @@ -1,4 +1,5 @@ -# Class AnalysisJudder +# Class AnalysisJudder + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDFullCar.dll @@ -11,8 +12,8 @@ public class AnalysisJudder : ShimmyJudderAnalysisBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -AnalysisBase ← +object ← +[AnalysisBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs) ← [AnalysisFrequencyBase](VM.Managed.DAFUL.Car.AnalysisFrequencyBase.md) ← [ShimmyJudderAnalysisBase](VM.Managed.DAFUL.Car.ShimmyJudderAnalysisBase.md) ← [AnalysisJudder](VM.Managed.DAFUL.Car.AnalysisJudder.md) @@ -23,14 +24,14 @@ AnalysisBase ← [AnalysisFrequencyBase.EndValue](VM.Managed.DAFUL.Car.AnalysisFrequencyBase.md\#VM\_Managed\_DAFUL\_Car\_AnalysisFrequencyBase\_EndValue), [AnalysisFrequencyBase.StepsValue](VM.Managed.DAFUL.Car.AnalysisFrequencyBase.md\#VM\_Managed\_DAFUL\_Car\_AnalysisFrequencyBase\_StepsValue), [AnalysisFrequencyBase.Increment\_Type](VM.Managed.DAFUL.Car.AnalysisFrequencyBase.md\#VM\_Managed\_DAFUL\_Car\_AnalysisFrequencyBase\_Increment\_Type), -AnalysisBase.m\_pLnkContainer, -AnalysisBase.SetModified\(\), -AnalysisBase.GetTestRigMotionUSUBArgument\(string\[\]\), -AnalysisBase.GetConvertUnit\(LengthUnitType\), -AnalysisBase.GetGravity\(\), -AnalysisBase.GetConvertUnit\(VelocityUnitType\), -AnalysisBase.GetConvertUnit\(AccelerationUnitType\), -AnalysisBase.IsSim +[AnalysisBase.m\_pLnkContainer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.SetModified\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetTestRigMotionUSUBArgument\(string\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetConvertUnit\(LengthUnitType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetGravity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetConvertUnit\(VelocityUnitType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetConvertUnit\(AccelerationUnitType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.IsSim](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisLiftOffTurnIn.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisLiftOffTurnIn.md index c54efac755..ff33558fd6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisLiftOffTurnIn.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisLiftOffTurnIn.md @@ -1,4 +1,5 @@ -# Class AnalysisLiftOffTurnIn +# Class AnalysisLiftOffTurnIn + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisLiftOffTurnIn : CorneringBase, IHasInitialVel, IHasLengthUn #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [FullCarAnalysisBase](VM.Managed.DAFUL.Car.FullCarAnalysisBase.md) ← [CorneringBase](VM.Managed.DAFUL.Car.CorneringBase.md) ← @@ -85,7 +86,7 @@ public double DelayOfClutch { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DelayOfSteering @@ -97,7 +98,7 @@ public double DelayOfSteering { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DelayOfThrottle @@ -109,7 +110,7 @@ public double DelayOfThrottle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### InitialVelocityCornering @@ -121,7 +122,7 @@ public override double InitialVelocityCornering { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### IsDisengageClutchDuringLiftOff @@ -133,7 +134,7 @@ public bool IsDisengageClutchDuringLiftOff { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LateralAcc @@ -145,7 +146,7 @@ public double LateralAcc { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RampOfSteering @@ -157,7 +158,7 @@ public double RampOfSteering { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StepDurationOfClutch @@ -169,7 +170,7 @@ public double StepDurationOfClutch { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StepDurationOfThrottle @@ -181,7 +182,7 @@ public double StepDurationOfThrottle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TireRadiusPosition @@ -193,7 +194,7 @@ public override int TireRadiusPosition { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### TurnRadius @@ -205,7 +206,7 @@ public double TurnRadius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UnitOfLength @@ -231,7 +232,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisOppositeTravel.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisOppositeTravel.md index e550f3338e..73c1698025 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisOppositeTravel.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisOppositeTravel.md @@ -1,4 +1,5 @@ -# Class AnalysisOppositeTravel +# Class AnalysisOppositeTravel + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisOppositeTravel : AnalysisParallelTravel #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [SuspensionAnalysisBase](VM.Managed.DAFUL.Car.SuspensionAnalysisBase.md) ← [AnalysisParallelTravel](VM.Managed.DAFUL.Car.AnalysisParallelTravel.md) ← @@ -105,7 +106,7 @@ public override string SteeringFunctionArgument { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -119,11 +120,11 @@ public override void GetDataForLoadCase(int nStep, Dictionary +`dicCol` Dictionary<[SuspensionLoadCase](VM.Managed.DAFUL.Car.SuspensionLoadCase.md).[Column](VM.Managed.DAFUL.Car.SuspensionLoadCase.Column.md), double\[\]\> The column information. @@ -141,11 +142,11 @@ protected override void GetDataForLoadCaseCore(int nStep, Dictionary +`dicCol` Dictionary<[SuspensionLoadCase](VM.Managed.DAFUL.Car.SuspensionLoadCase.md).[Column](VM.Managed.DAFUL.Car.SuspensionLoadCase.Column.md), double\[\]\> The column information. @@ -163,7 +164,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. @@ -177,7 +178,7 @@ public override void GetXmlData(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. @@ -205,7 +206,7 @@ public override void SetXmlData(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisParallelTravel.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisParallelTravel.md index 18a286eeb0..16092e06a1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisParallelTravel.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisParallelTravel.md @@ -1,4 +1,5 @@ -# Class AnalysisParallelTravel +# Class AnalysisParallelTravel + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisParallelTravel : SuspensionAnalysisBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [SuspensionAnalysisBase](VM.Managed.DAFUL.Car.SuspensionAnalysisBase.md) ← [AnalysisParallelTravel](VM.Managed.DAFUL.Car.AnalysisParallelTravel.md) @@ -81,7 +82,7 @@ public double BumpTravelOfOpposit { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ReboundTravelOfOpposit @@ -93,7 +94,7 @@ public double ReboundTravelOfOpposit { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SteeringFunctionArgument @@ -105,7 +106,7 @@ public override string SteeringFunctionArgument { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SteeringPosition @@ -117,7 +118,7 @@ public double SteeringPosition { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TravelMotionType @@ -143,11 +144,11 @@ public override void GetDataForLoadCase(int nStep, Dictionary +`dicCol` Dictionary<[SuspensionLoadCase](VM.Managed.DAFUL.Car.SuspensionLoadCase.md).[Column](VM.Managed.DAFUL.Car.SuspensionLoadCase.Column.md), double\[\]\> The column information. @@ -165,11 +166,11 @@ protected virtual void GetDataForLoadCaseCore(int nStep, Dictionary +`dicCol` Dictionary<[SuspensionLoadCase](VM.Managed.DAFUL.Car.SuspensionLoadCase.md).[Column](VM.Managed.DAFUL.Car.SuspensionLoadCase.Column.md), double\[\]\> The column information. @@ -187,7 +188,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. @@ -201,7 +202,7 @@ public override void GetXmlData(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. @@ -229,7 +230,7 @@ public override void SetXmlData(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisPowerOffCornering.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisPowerOffCornering.md index 319d836467..321559789c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisPowerOffCornering.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisPowerOffCornering.md @@ -1,4 +1,5 @@ -# Class AnalysisPowerOffCornering +# Class AnalysisPowerOffCornering + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisPowerOffCornering : CorneringBase, IHasInitialVel, IHasLeng #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [FullCarAnalysisBase](VM.Managed.DAFUL.Car.FullCarAnalysisBase.md) ← [CorneringBase](VM.Managed.DAFUL.Car.CorneringBase.md) ← @@ -85,7 +86,7 @@ public double DelayOfClutch { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DelayOfThrottle @@ -97,7 +98,7 @@ public double DelayOfThrottle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### InitialVelocityCornering @@ -109,7 +110,7 @@ public override double InitialVelocityCornering { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### IsDisengageClutchDuringPowerOff @@ -121,7 +122,7 @@ public bool IsDisengageClutchDuringPowerOff { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LateralAcc @@ -133,7 +134,7 @@ public double LateralAcc { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SteeringInputType @@ -157,7 +158,7 @@ public double StepDurationOfClutch { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StepDurationOfThrottle @@ -169,7 +170,7 @@ public double StepDurationOfThrottle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TireRadiusPosition @@ -181,7 +182,7 @@ public override int TireRadiusPosition { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### TurnRadius @@ -193,7 +194,7 @@ public double TurnRadius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UnitOfLength @@ -219,7 +220,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisPowerOffStraightLine.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisPowerOffStraightLine.md index 22f68ada37..f3b2f45e8c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisPowerOffStraightLine.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisPowerOffStraightLine.md @@ -1,4 +1,5 @@ -# Class AnalysisPowerOffStraightLine +# Class AnalysisPowerOffStraightLine + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisPowerOffStraightLine : StraightLineBase, IHasInitialVel #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [FullCarAnalysisBase](VM.Managed.DAFUL.Car.FullCarAnalysisBase.md) ← [StraightLineBase](VM.Managed.DAFUL.Car.StraightLineBase.md) ← @@ -82,7 +83,7 @@ public double DelayOfClutch { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DeleyOfThrottle @@ -94,7 +95,7 @@ public double DeleyOfThrottle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### IsDisengageClutchDuringPowerOff @@ -106,7 +107,7 @@ public bool IsDisengageClutchDuringPowerOff { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsStraightLineControl @@ -118,7 +119,7 @@ public bool IsStraightLineControl { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SWAValue @@ -130,7 +131,7 @@ public double SWAValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StepDurationOfClutch @@ -142,7 +143,7 @@ public double StepDurationOfClutch { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StepDurationOfThrottle @@ -154,7 +155,7 @@ public double StepDurationOfThrottle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TireRadiusPosition @@ -166,7 +167,7 @@ public override int TireRadiusPosition { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -180,7 +181,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisRampSteer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisRampSteer.md index 8afa2a8274..5e0d38392a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisRampSteer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisRampSteer.md @@ -1,4 +1,5 @@ -# Class AnalysisRampSteer +# Class AnalysisRampSteer + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisRampSteer : AnalysisSteerBase, IHasInitialVel #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [FullCarAnalysisBase](VM.Managed.DAFUL.Car.FullCarAnalysisBase.md) ← [OpenLoopSteeringBase](VM.Managed.DAFUL.Car.OpenLoopSteeringBase.md) ← @@ -85,7 +86,7 @@ public double InitialSteer { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RampValue @@ -97,7 +98,7 @@ public double RampValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TireRadiusPosition @@ -109,7 +110,7 @@ public override int TireRadiusPosition { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -123,7 +124,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisRandomMotion.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisRandomMotion.md index 07dd82397a..9f276d299f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisRandomMotion.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisRandomMotion.md @@ -1,4 +1,5 @@ -# Class AnalysisRandomMotion +# Class AnalysisRandomMotion + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisRandomMotion : AnalysisBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [AnalysisRandomMotion](VM.Managed.DAFUL.Car.AnalysisRandomMotion.md) @@ -68,7 +69,7 @@ public string LMotion { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RMotion @@ -80,5 +81,5 @@ public string RMotion { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisRideDrum.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisRideDrum.md index 60ee960a89..257b501a9a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisRideDrum.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisRideDrum.md @@ -1,4 +1,5 @@ -# Class AnalysisRideDrum +# Class AnalysisRideDrum + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisRideDrum : TireAnalysisBase, IHasInitialVel #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [TireAnalysisBase](VM.Managed.DAFUL.Car.TireAnalysisBase.md) ← [AnalysisRideDrum](VM.Managed.DAFUL.Car.AnalysisRideDrum.md) @@ -89,7 +90,7 @@ public double Cleat_StartingAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DiameterValue @@ -101,7 +102,7 @@ public double DiameterValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DrumInfo @@ -125,7 +126,7 @@ protected override double InitialVelocity { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Number\_Cleats @@ -137,7 +138,7 @@ public uint Number_Cleats { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ## Methods @@ -151,7 +152,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisRideGeneral.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisRideGeneral.md index b6d01146b6..327e1dbdf5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisRideGeneral.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisRideGeneral.md @@ -1,4 +1,5 @@ -# Class AnalysisRideGeneral +# Class AnalysisRideGeneral + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisRideGeneral : TireAnalysisBase, IHasInitialVel #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [TireAnalysisBase](VM.Managed.DAFUL.Car.TireAnalysisBase.md) ← [AnalysisRideGeneral](VM.Managed.DAFUL.Car.AnalysisRideGeneral.md) @@ -89,7 +90,7 @@ protected override double InitialVelocity { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RoadFile @@ -101,7 +102,7 @@ public string RoadFile { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -115,7 +116,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisRollVertical.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisRollVertical.md index ee8d8760ae..1895cc8656 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisRollVertical.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisRollVertical.md @@ -1,4 +1,5 @@ -# Class AnalysisRollVertical +# Class AnalysisRollVertical + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisRollVertical : SuspensionAnalysisBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [SuspensionAnalysisBase](VM.Managed.DAFUL.Car.SuspensionAnalysisBase.md) ← [AnalysisRollVertical](VM.Managed.DAFUL.Car.AnalysisRollVertical.md) @@ -77,7 +78,7 @@ public double RollAngleLowerValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RollAngleUpperValue @@ -89,7 +90,7 @@ public double RollAngleUpperValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SteeringFunctionArgument @@ -101,7 +102,7 @@ public override string SteeringFunctionArgument { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SteeringPosition @@ -113,7 +114,7 @@ public double SteeringPosition { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TotalVerticalForceValue @@ -125,7 +126,7 @@ public double TotalVerticalForceValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -139,11 +140,11 @@ public override void GetDataForLoadCase(int nStep, Dictionary +`dicCol` Dictionary<[SuspensionLoadCase](VM.Managed.DAFUL.Car.SuspensionLoadCase.md).[Column](VM.Managed.DAFUL.Car.SuspensionLoadCase.Column.md), double\[\]\> The column information. @@ -161,7 +162,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. @@ -175,7 +176,7 @@ public override void GetXmlData(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. @@ -203,7 +204,7 @@ public override void SetXmlData(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisShimmy.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisShimmy.md index 5a041819f4..f661b2e320 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisShimmy.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisShimmy.md @@ -1,4 +1,5 @@ -# Class AnalysisShimmy +# Class AnalysisShimmy + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDFullCar.dll @@ -11,8 +12,8 @@ public class AnalysisShimmy : ShimmyJudderAnalysisBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -AnalysisBase ← +object ← +[AnalysisBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs) ← [AnalysisFrequencyBase](VM.Managed.DAFUL.Car.AnalysisFrequencyBase.md) ← [ShimmyJudderAnalysisBase](VM.Managed.DAFUL.Car.ShimmyJudderAnalysisBase.md) ← [AnalysisShimmy](VM.Managed.DAFUL.Car.AnalysisShimmy.md) @@ -23,14 +24,14 @@ AnalysisBase ← [AnalysisFrequencyBase.EndValue](VM.Managed.DAFUL.Car.AnalysisFrequencyBase.md\#VM\_Managed\_DAFUL\_Car\_AnalysisFrequencyBase\_EndValue), [AnalysisFrequencyBase.StepsValue](VM.Managed.DAFUL.Car.AnalysisFrequencyBase.md\#VM\_Managed\_DAFUL\_Car\_AnalysisFrequencyBase\_StepsValue), [AnalysisFrequencyBase.Increment\_Type](VM.Managed.DAFUL.Car.AnalysisFrequencyBase.md\#VM\_Managed\_DAFUL\_Car\_AnalysisFrequencyBase\_Increment\_Type), -AnalysisBase.m\_pLnkContainer, -AnalysisBase.SetModified\(\), -AnalysisBase.GetTestRigMotionUSUBArgument\(string\[\]\), -AnalysisBase.GetConvertUnit\(LengthUnitType\), -AnalysisBase.GetGravity\(\), -AnalysisBase.GetConvertUnit\(VelocityUnitType\), -AnalysisBase.GetConvertUnit\(AccelerationUnitType\), -AnalysisBase.IsSim +[AnalysisBase.m\_pLnkContainer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.SetModified\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetTestRigMotionUSUBArgument\(string\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetConvertUnit\(LengthUnitType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetGravity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetConvertUnit\(VelocityUnitType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetConvertUnit\(AccelerationUnitType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.IsSim](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSingleLaneChange.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSingleLaneChange.md index e2bea0e98c..5fa96d07dc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSingleLaneChange.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSingleLaneChange.md @@ -1,4 +1,5 @@ -# Class AnalysisSingleLaneChange +# Class AnalysisSingleLaneChange + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisSingleLaneChange : AnalysisImpulseSteer, IHasInitialVel #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [FullCarAnalysisBase](VM.Managed.DAFUL.Car.FullCarAnalysisBase.md) ← [OpenLoopSteeringBase](VM.Managed.DAFUL.Car.OpenLoopSteeringBase.md) ← @@ -90,7 +91,7 @@ public double InitialSteer { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TireRadiusPosition @@ -102,7 +103,7 @@ public override int TireRadiusPosition { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -116,7 +117,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSingleTravel.SideType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSingleTravel.SideType.md index b428064428..3ed5e5f9b5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSingleTravel.SideType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSingleTravel.SideType.md @@ -1,4 +1,5 @@ -# Enum AnalysisSingleTravel.SideType +# Enum AnalysisSingleTravel.SideType + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSingleTravel.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSingleTravel.md index 2ce3800287..7380d40367 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSingleTravel.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSingleTravel.md @@ -1,4 +1,5 @@ -# Class AnalysisSingleTravel +# Class AnalysisSingleTravel + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisSingleTravel : AnalysisOppositeTravel #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [SuspensionAnalysisBase](VM.Managed.DAFUL.Car.SuspensionAnalysisBase.md) ← [AnalysisParallelTravel](VM.Managed.DAFUL.Car.AnalysisParallelTravel.md) ← @@ -98,7 +99,7 @@ public double FixedWheelCenterValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SideValue @@ -122,7 +123,7 @@ public override string SteeringFunctionArgument { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -136,11 +137,11 @@ public override void GetDataForLoadCase(int nStep, Dictionary +`dicCol` Dictionary<[SuspensionLoadCase](VM.Managed.DAFUL.Car.SuspensionLoadCase.md).[Column](VM.Managed.DAFUL.Car.SuspensionLoadCase.Column.md), double\[\]\> The column information. @@ -158,11 +159,11 @@ protected override void GetDataForLoadCaseCore(int nStep, Dictionary +`dicCol` Dictionary<[SuspensionLoadCase](VM.Managed.DAFUL.Car.SuspensionLoadCase.md).[Column](VM.Managed.DAFUL.Car.SuspensionLoadCase.Column.md), double\[\]\> The column information. @@ -180,7 +181,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. @@ -194,7 +195,7 @@ public override void GetXmlData(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. @@ -222,7 +223,7 @@ public override void SetXmlData(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.AligningTorque.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.AligningTorque.md index 493539ae4f..64e9bf7ca5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.AligningTorque.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.AligningTorque.md @@ -1,4 +1,5 @@ -# Class AnalysisStaticLoad.AligningTorque +# Class AnalysisStaticLoad.AligningTorque + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisStaticLoad.AligningTorque : AnalysisStaticLoad.StaticRoadBa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisStaticLoad.StaticRoadBaseInfo](VM.Managed.DAFUL.Car.AnalysisStaticLoad.StaticRoadBaseInfo.md) ← [AnalysisStaticLoad.AligningTorque](VM.Managed.DAFUL.Car.AnalysisStaticLoad.AligningTorque.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.BrakingForce.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.BrakingForce.md index 10dbe5bbfc..a7789c297a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.BrakingForce.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.BrakingForce.md @@ -1,4 +1,5 @@ -# Class AnalysisStaticLoad.BrakingForce +# Class AnalysisStaticLoad.BrakingForce + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisStaticLoad.BrakingForce : AnalysisStaticLoad.StaticRoadBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisStaticLoad.StaticRoadBaseInfo](VM.Managed.DAFUL.Car.AnalysisStaticLoad.StaticRoadBaseInfo.md) ← [AnalysisStaticLoad.BrakingForce](VM.Managed.DAFUL.Car.AnalysisStaticLoad.BrakingForce.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.CorneringForce.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.CorneringForce.md index 668252dbef..f79d0955b9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.CorneringForce.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.CorneringForce.md @@ -1,4 +1,5 @@ -# Class AnalysisStaticLoad.CorneringForce +# Class AnalysisStaticLoad.CorneringForce + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisStaticLoad.CorneringForce : AnalysisStaticLoad.StaticRoadBa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisStaticLoad.StaticRoadBaseInfo](VM.Managed.DAFUL.Car.AnalysisStaticLoad.StaticRoadBaseInfo.md) ← [AnalysisStaticLoad.CorneringForce](VM.Managed.DAFUL.Car.AnalysisStaticLoad.CorneringForce.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.DamageForce.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.DamageForce.md index 7b7dd3c7be..85665aa034 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.DamageForce.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.DamageForce.md @@ -1,4 +1,5 @@ -# Class AnalysisStaticLoad.DamageForce +# Class AnalysisStaticLoad.DamageForce + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisStaticLoad.DamageForce : AnalysisStaticLoad.StaticRoadBaseI #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisStaticLoad.StaticRoadBaseInfo](VM.Managed.DAFUL.Car.AnalysisStaticLoad.StaticRoadBaseInfo.md) ← [AnalysisStaticLoad.DamageForce](VM.Managed.DAFUL.Car.AnalysisStaticLoad.DamageForce.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.DamageRadius.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.DamageRadius.md index 8344a27c34..a8e72cde70 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.DamageRadius.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.DamageRadius.md @@ -1,4 +1,5 @@ -# Class AnalysisStaticLoad.DamageRadius +# Class AnalysisStaticLoad.DamageRadius + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisStaticLoad.DamageRadius #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisStaticLoad.DamageRadius](VM.Managed.DAFUL.Car.AnalysisStaticLoad.DamageRadius.md) #### Extension Methods @@ -56,7 +57,7 @@ public double L { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### R @@ -68,7 +69,7 @@ public double R { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.OverturningTorque.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.OverturningTorque.md index 765a5c6f8c..bc4d3b3b44 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.OverturningTorque.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.OverturningTorque.md @@ -1,4 +1,5 @@ -# Class AnalysisStaticLoad.OverturningTorque +# Class AnalysisStaticLoad.OverturningTorque + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisStaticLoad.OverturningTorque : AnalysisStaticLoad.StaticRoa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisStaticLoad.StaticRoadBaseInfo](VM.Managed.DAFUL.Car.AnalysisStaticLoad.StaticRoadBaseInfo.md) ← [AnalysisStaticLoad.OverturningTorque](VM.Managed.DAFUL.Car.AnalysisStaticLoad.OverturningTorque.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.RollResTorque.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.RollResTorque.md index 69e455df4e..994d60540d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.RollResTorque.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.RollResTorque.md @@ -1,4 +1,5 @@ -# Class AnalysisStaticLoad.RollResTorque +# Class AnalysisStaticLoad.RollResTorque + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisStaticLoad.RollResTorque : AnalysisStaticLoad.StaticRoadBas #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisStaticLoad.StaticRoadBaseInfo](VM.Managed.DAFUL.Car.AnalysisStaticLoad.StaticRoadBaseInfo.md) ← [AnalysisStaticLoad.RollResTorque](VM.Managed.DAFUL.Car.AnalysisStaticLoad.RollResTorque.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.StaticRoadBaseInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.StaticRoadBaseInfo.md index bba0adbab3..d8854f2376 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.StaticRoadBaseInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.StaticRoadBaseInfo.md @@ -1,4 +1,5 @@ -# Class AnalysisStaticLoad.StaticRoadBaseInfo +# Class AnalysisStaticLoad.StaticRoadBaseInfo + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisStaticLoad.StaticRoadBaseInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisStaticLoad.StaticRoadBaseInfo](VM.Managed.DAFUL.Car.AnalysisStaticLoad.StaticRoadBaseInfo.md) #### Derived @@ -67,7 +68,7 @@ public double LWRL { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### LWRR @@ -79,7 +80,7 @@ public double LWRR { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UPRL @@ -91,7 +92,7 @@ public double UPRL { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UPRR @@ -103,7 +104,7 @@ public double UPRR { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.TractionForce.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.TractionForce.md index be62f67b4b..75443ed74a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.TractionForce.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.TractionForce.md @@ -1,4 +1,5 @@ -# Class AnalysisStaticLoad.TractionForce +# Class AnalysisStaticLoad.TractionForce + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisStaticLoad.TractionForce : AnalysisStaticLoad.StaticRoadBas #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisStaticLoad.StaticRoadBaseInfo](VM.Managed.DAFUL.Car.AnalysisStaticLoad.StaticRoadBaseInfo.md) ← [AnalysisStaticLoad.TractionForce](VM.Managed.DAFUL.Car.AnalysisStaticLoad.TractionForce.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.VerticalInputType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.VerticalInputType.md index e40da54dea..03f6d84e66 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.VerticalInputType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.VerticalInputType.md @@ -1,4 +1,5 @@ -# Enum AnalysisStaticLoad.VerticalInputType +# Enum AnalysisStaticLoad.VerticalInputType + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.VerticalLength.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.VerticalLength.md index a60eb924c9..c1b30948f8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.VerticalLength.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.VerticalLength.md @@ -1,4 +1,5 @@ -# Class AnalysisStaticLoad.VerticalLength +# Class AnalysisStaticLoad.VerticalLength + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisStaticLoad.VerticalLength : AnalysisStaticLoad.StaticRoadBa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisStaticLoad.StaticRoadBaseInfo](VM.Managed.DAFUL.Car.AnalysisStaticLoad.StaticRoadBaseInfo.md) ← [AnalysisStaticLoad.VerticalLength](VM.Managed.DAFUL.Car.AnalysisStaticLoad.VerticalLength.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.md index 8e96fbb33f..9dd02ef6ea 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStaticLoad.md @@ -1,4 +1,5 @@ -# Class AnalysisStaticLoad +# Class AnalysisStaticLoad + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisStaticLoad : SuspensionAnalysisBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [SuspensionAnalysisBase](VM.Managed.DAFUL.Car.SuspensionAnalysisBase.md) ← [AnalysisStaticLoad](VM.Managed.DAFUL.Car.AnalysisStaticLoad.md) @@ -173,7 +174,7 @@ public double SteerLimit_Lower { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SteerLimit\_Upper @@ -185,7 +186,7 @@ public double SteerLimit_Upper { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SteeringFunctionArgument @@ -197,7 +198,7 @@ public override string SteeringFunctionArgument { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TractionForceInfo @@ -247,11 +248,11 @@ public override void GetDataForLoadCase(int nStep, Dictionary +`dicCol` Dictionary<[SuspensionLoadCase](VM.Managed.DAFUL.Car.SuspensionLoadCase.md).[Column](VM.Managed.DAFUL.Car.SuspensionLoadCase.Column.md), double\[\]\> The column information. @@ -269,7 +270,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. @@ -283,7 +284,7 @@ public override void GetXmlData(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. @@ -311,7 +312,7 @@ public override void SetXmlData(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSteadyBatch.BatchType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSteadyBatch.BatchType.md index 70278573d0..c4ae38b86c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSteadyBatch.BatchType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSteadyBatch.BatchType.md @@ -1,4 +1,5 @@ -# Enum AnalysisSteadyBatch.BatchType +# Enum AnalysisSteadyBatch.BatchType + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSteadyBatch.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSteadyBatch.md index 62641a567e..0e229e6f59 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSteadyBatch.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSteadyBatch.md @@ -1,4 +1,5 @@ -# Class AnalysisSteadyBatch +# Class AnalysisSteadyBatch + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisSteadyBatch : TireAnalysisBase, IHasInitialVel #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [TireAnalysisBase](VM.Managed.DAFUL.Car.TireAnalysisBase.md) ← [AnalysisSteadyBatch](VM.Managed.DAFUL.Car.AnalysisSteadyBatch.md) @@ -101,7 +102,7 @@ protected override double InitialVelocity { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### IsCamberAngle @@ -113,7 +114,7 @@ public bool IsCamberAngle { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsSlipAngle @@ -125,7 +126,7 @@ public bool IsSlipAngle { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsSlipRatio @@ -137,7 +138,7 @@ public bool IsSlipRatio { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsVerticalLoad @@ -149,7 +150,7 @@ public bool IsVerticalLoad { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SlipAngleIncrement\_SlipRatio @@ -161,7 +162,7 @@ public double SlipAngleIncrement_SlipRatio { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SlipAngleIncrement\_VerticalLoad @@ -173,7 +174,7 @@ public double SlipAngleIncrement_VerticalLoad { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SlipAngleInfo @@ -233,7 +234,7 @@ public double VerticalLoadIncrement_CamberAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### VerticalLoadIncrement\_SlipAngle @@ -245,7 +246,7 @@ public double VerticalLoadIncrement_SlipAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### VerticalLoadInfo @@ -277,7 +278,7 @@ The type of batch. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GetTestRigMotionUSUBArgument\(string\[\]\) @@ -289,7 +290,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. @@ -307,7 +308,7 @@ public void GetTestRigMotionUSUBArgument(AnalysisSteadyBatch.BatchType type, str The type. -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The ar parameter. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSteadySingle.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSteadySingle.md index d7f9eb6bf6..f5139cffda 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSteadySingle.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSteadySingle.md @@ -1,4 +1,5 @@ -# Class AnalysisSteadySingle +# Class AnalysisSteadySingle + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisSteadySingle : TireAnalysisBase, IHasInitialVel #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [TireAnalysisBase](VM.Managed.DAFUL.Car.TireAnalysisBase.md) ← [AnalysisSteadySingle](VM.Managed.DAFUL.Car.AnalysisSteadySingle.md) @@ -77,7 +78,7 @@ protected override double InitialVelocity { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SingleInfo @@ -103,7 +104,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSteerBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSteerBase.md index 014d05c206..7e6cac6c0a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSteerBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSteerBase.md @@ -1,4 +1,5 @@ -# Class AnalysisSteerBase +# Class AnalysisSteerBase + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public abstract class AnalysisSteerBase : OpenLoopSteeringBase, IHasInitialVel #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [FullCarAnalysisBase](VM.Managed.DAFUL.Car.FullCarAnalysisBase.md) ← [OpenLoopSteeringBase](VM.Managed.DAFUL.Car.OpenLoopSteeringBase.md) ← @@ -88,7 +89,7 @@ public bool IsCruiseControl { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SteeringInputType @@ -112,5 +113,5 @@ public double TimeOfStart { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSteering.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSteering.md index 9ef679bc04..7aa4071696 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSteering.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSteering.md @@ -1,4 +1,5 @@ -# Class AnalysisSteering +# Class AnalysisSteering + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisSteering : SuspensionAnalysisBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [SuspensionAnalysisBase](VM.Managed.DAFUL.Car.SuspensionAnalysisBase.md) ← [AnalysisSteering](VM.Managed.DAFUL.Car.AnalysisSteering.md) @@ -89,7 +90,7 @@ public double LWFHeightValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### LowerSteeringLimitValue @@ -101,7 +102,7 @@ public double LowerSteeringLimitValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RWFHeightValue @@ -113,7 +114,7 @@ public double RWFHeightValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SteeringFunctionArgument @@ -125,7 +126,7 @@ public override string SteeringFunctionArgument { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UpperSteeringLimitValue @@ -137,7 +138,7 @@ public double UpperSteeringLimitValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -151,11 +152,11 @@ public override void GetDataForLoadCase(int nStep, Dictionary +`dicCol` Dictionary<[SuspensionLoadCase](VM.Managed.DAFUL.Car.SuspensionLoadCase.md).[Column](VM.Managed.DAFUL.Car.SuspensionLoadCase.Column.md), double\[\]\> The column information. @@ -173,7 +174,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. @@ -187,7 +188,7 @@ public override void GetXmlData(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. @@ -215,7 +216,7 @@ public override void SetXmlData(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStepSteer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStepSteer.md index 7337e0c54a..c244bc784b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStepSteer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisStepSteer.md @@ -1,4 +1,5 @@ -# Class AnalysisStepSteer +# Class AnalysisStepSteer + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisStepSteer : AnalysisSteerBase, IHasInitialVel #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [FullCarAnalysisBase](VM.Managed.DAFUL.Car.FullCarAnalysisBase.md) ← [OpenLoopSteeringBase](VM.Managed.DAFUL.Car.OpenLoopSteeringBase.md) ← @@ -85,7 +86,7 @@ public double FinalSteer { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### InitialSteer @@ -97,7 +98,7 @@ public double InitialSteer { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StepDuration @@ -109,7 +110,7 @@ public double StepDuration { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TireRadiusPosition @@ -121,7 +122,7 @@ public override int TireRadiusPosition { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -135,7 +136,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSweptSineSteer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSweptSineSteer.md index dc1fefdba9..b3eefc4725 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSweptSineSteer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisSweptSineSteer.md @@ -1,4 +1,5 @@ -# Class AnalysisSweptSineSteer +# Class AnalysisSweptSineSteer + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisSweptSineSteer : AnalysisSteerBase, IHasInitialVel #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [FullCarAnalysisBase](VM.Managed.DAFUL.Car.FullCarAnalysisBase.md) ← [OpenLoopSteeringBase](VM.Managed.DAFUL.Car.OpenLoopSteeringBase.md) ← @@ -85,7 +86,7 @@ public double FrequencyRateValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### InitFrequency @@ -97,7 +98,7 @@ public double InitFrequency { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### InitialSteer @@ -109,7 +110,7 @@ public double InitialSteer { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MaxiFrequency @@ -121,7 +122,7 @@ public double MaxiFrequency { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MaximumSteer @@ -133,7 +134,7 @@ public double MaximumSteer { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TireRadiusPosition @@ -145,7 +146,7 @@ public override int TireRadiusPosition { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -159,7 +160,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisTransientBatch.BatchType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisTransientBatch.BatchType.md index 689d41c17d..0f91daf325 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisTransientBatch.BatchType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisTransientBatch.BatchType.md @@ -1,4 +1,5 @@ -# Enum AnalysisTransientBatch.BatchType +# Enum AnalysisTransientBatch.BatchType + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisTransientBatch.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisTransientBatch.md index 71fd04ca60..b0666dc366 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisTransientBatch.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisTransientBatch.md @@ -1,4 +1,5 @@ -# Class AnalysisTransientBatch +# Class AnalysisTransientBatch + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisTransientBatch : TireAnalysisBase, IHasInitialVel #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [TireAnalysisBase](VM.Managed.DAFUL.Car.TireAnalysisBase.md) ← [AnalysisTransientBatch](VM.Managed.DAFUL.Car.AnalysisTransientBatch.md) @@ -89,7 +90,7 @@ protected override double InitialVelocity { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### IsLateral @@ -101,7 +102,7 @@ public bool IsLateral { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsLongitudinal @@ -113,7 +114,7 @@ public bool IsLongitudinal { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LateralInfo @@ -175,7 +176,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. @@ -193,7 +194,7 @@ public void GetTestRigMotionUSUBArgument(AnalysisTransientBatch.BatchType type, The type. -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The ar parameter. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisTransientSingle.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisTransientSingle.md index 0f3ec6b6e9..cf28f85b00 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisTransientSingle.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AnalysisTransientSingle.md @@ -1,4 +1,5 @@ -# Class AnalysisTransientSingle +# Class AnalysisTransientSingle + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class AnalysisTransientSingle : TireAnalysisBase, IHasInitialVel #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [TireAnalysisBase](VM.Managed.DAFUL.Car.TireAnalysisBase.md) ← [AnalysisTransientSingle](VM.Managed.DAFUL.Car.AnalysisTransientSingle.md) @@ -77,7 +78,7 @@ protected override double InitialVelocity { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SingleInfo @@ -103,7 +104,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AntiRollBarDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AntiRollBarDocument.md index 30b5dc45e0..73dbe51c1e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AntiRollBarDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.AntiRollBarDocument.md @@ -1,4 +1,5 @@ -# Class AntiRollBarDocument +# Class AntiRollBarDocument + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,16 +12,16 @@ public class AntiRollBarDocument : SubSystemDocument, IObservableObject, IDispos #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← [AntiRollBarDocument](VM.Managed.DAFUL.Car.AntiRollBarDocument.md) #### Implements @@ -32,7 +33,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -54,100 +55,100 @@ IPostTemplateBasedDocument, #### Inherited Members -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -242,8 +243,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -254,9 +253,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -270,12 +269,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -553,7 +549,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -584,7 +580,7 @@ public AntiRollBarDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -600,7 +596,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### Interfaces @@ -612,7 +608,7 @@ protected override InterfaceManager Interfaces { get; } #### Property Value - InterfaceManager + [InterfaceManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InterfaceManager.cs) ### MinorRoleType @@ -646,13 +642,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The fullname of type. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The category. @@ -666,7 +662,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string The category name. @@ -696,7 +692,7 @@ protected override void LoadTemplateBasedXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -710,7 +706,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -724,7 +720,7 @@ protected override void SaveTemplateBasedXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ApplyParameterOperation.ApplyParameterCallback.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ApplyParameterOperation.ApplyParameterCallback.md index f3bd0810da..32b7ec517e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ApplyParameterOperation.ApplyParameterCallback.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ApplyParameterOperation.ApplyParameterCallback.md @@ -1,4 +1,5 @@ -# Delegate ApplyParameterOperation.ApplyParameterCallback +# Delegate ApplyParameterOperation.ApplyParameterCallback + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public delegate bool ApplyParameterOperation.ApplyParameterCallback() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ApplyParameterOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ApplyParameterOperation.md index 5df378cc5b..d8795c1a88 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ApplyParameterOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ApplyParameterOperation.md @@ -1,4 +1,5 @@ -# Class ApplyParameterOperation +# Class ApplyParameterOperation + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class ApplyParameterOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ApplyParameterOperation](VM.Managed.DAFUL.Car.ApplyParameterOperation.md) @@ -111,7 +112,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Success @@ -123,7 +124,7 @@ public bool Success { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.BodyDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.BodyDocument.md index cbf0dbb949..64fb74b919 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.BodyDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.BodyDocument.md @@ -1,4 +1,5 @@ -# Class BodyDocument +# Class BodyDocument + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,16 +12,16 @@ public class BodyDocument : SubSystemDocument, IObservableObject, IDisposableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← [BodyDocument](VM.Managed.DAFUL.Car.BodyDocument.md) #### Implements @@ -32,7 +33,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -54,100 +55,100 @@ IPostTemplateBasedDocument, #### Inherited Members -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -242,8 +243,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -254,9 +253,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -270,12 +269,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -553,7 +549,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -584,7 +580,7 @@ public BodyDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -600,7 +596,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### Interfaces @@ -612,7 +608,7 @@ protected override InterfaceManager Interfaces { get; } #### Property Value - InterfaceManager + [InterfaceManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InterfaceManager.cs) ### MinorRoleType @@ -646,13 +642,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The fullname of type. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The category. @@ -666,7 +662,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the STR category. @@ -696,7 +692,7 @@ protected override void LoadTemplateBasedXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -710,7 +706,7 @@ protected override void SaveTemplateBasedXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.BrakeSystemDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.BrakeSystemDocument.md index ff73e667f8..6435cdccc9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.BrakeSystemDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.BrakeSystemDocument.md @@ -1,4 +1,5 @@ -# Class BrakeSystemDocument +# Class BrakeSystemDocument + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,16 +12,16 @@ public class BrakeSystemDocument : SubSystemDocument, IObservableObject, IDispos #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← [BrakeSystemDocument](VM.Managed.DAFUL.Car.BrakeSystemDocument.md) #### Implements @@ -32,7 +33,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -54,100 +55,100 @@ IPostTemplateBasedDocument, #### Inherited Members -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -242,8 +243,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -254,9 +253,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -270,12 +269,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -553,7 +549,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -584,7 +580,7 @@ public BrakeSystemDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -600,7 +596,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### Interfaces @@ -612,7 +608,7 @@ protected override InterfaceManager Interfaces { get; } #### Property Value - InterfaceManager + [InterfaceManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InterfaceManager.cs) ### MinorRoleType @@ -646,13 +642,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The fullname of type. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The category. @@ -666,7 +662,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the STR category. @@ -696,7 +692,7 @@ protected override void LoadTemplateBasedXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -710,7 +706,7 @@ protected override void SaveTemplateBasedXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.BrakingConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.BrakingConfiguration.md index be052d13f4..84d4263676 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.BrakingConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.BrakingConfiguration.md @@ -1,4 +1,5 @@ -# Class BrakingConfiguration +# Class BrakingConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public class BrakingConfiguration : FullCarAnalysisConfigurationBase, IObservabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [FullCarAnalysisConfigurationBase](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md) ← [BrakingConfiguration](VM.Managed.DAFUL.Car.BrakingConfiguration.md) @@ -50,95 +51,98 @@ ILinkUpdateOwner [FullCarAnalysisConfigurationBase.RoadReferencePosition](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadReferencePosition), [FullCarAnalysisConfigurationBase.RoadRotationAngle](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadRotationAngle), [FullCarAnalysisConfigurationBase.RoadOffset](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadOffset), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -182,7 +186,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -249,7 +253,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.BrakingInTurnConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.BrakingInTurnConfiguration.md index 515417c072..fa4855e8be 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.BrakingInTurnConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.BrakingInTurnConfiguration.md @@ -1,4 +1,5 @@ -# Class BrakingInTurnConfiguration +# Class BrakingInTurnConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public class BrakingInTurnConfiguration : FullCarAnalysisConfigurationBase, IObs #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [FullCarAnalysisConfigurationBase](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md) ← [BrakingInTurnConfiguration](VM.Managed.DAFUL.Car.BrakingInTurnConfiguration.md) @@ -50,95 +51,98 @@ ILinkUpdateOwner [FullCarAnalysisConfigurationBase.RoadReferencePosition](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadReferencePosition), [FullCarAnalysisConfigurationBase.RoadRotationAngle](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadRotationAngle), [FullCarAnalysisConfigurationBase.RoadOffset](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadOffset), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -182,7 +186,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -249,7 +253,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.CADOperation.SetMinorRoleForInterfaceOp.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.CADOperation.SetMinorRoleForInterfaceOp.md index 7b19ddd966..e37eaf1c19 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.CADOperation.SetMinorRoleForInterfaceOp.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.CADOperation.SetMinorRoleForInterfaceOp.md @@ -1,4 +1,5 @@ -# Class CADOperation.SetMinorRoleForInterfaceOp +# Class CADOperation.SetMinorRoleForInterfaceOp + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class CADOperation.SetMinorRoleForInterfaceOp : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [CADOperation.SetMinorRoleForInterfaceOp](VM.Managed.DAFUL.Car.CADOperation.SetMinorRoleForInterfaceOp.md) @@ -95,7 +96,7 @@ public SetMinorRoleForInterfaceOp(Dictionary dic) #### Parameters -`dic` [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [MinorRole](VM.Managed.DAFUL.Car.MinorRole.md)\> +`dic` Dictionary The objectbase and minor role. @@ -111,7 +112,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -123,7 +124,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.CADOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.CADOperation.md index 16f469316f..f09147a4ec 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.CADOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.CADOperation.md @@ -1,4 +1,5 @@ -# Class CADOperation +# Class CADOperation + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class CADOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CADOperation](VM.Managed.DAFUL.Car.CADOperation.md) #### Extension Methods @@ -40,7 +41,7 @@ public static void SetMinorRoleForInterface(Dictionary dic) #### Parameters -`dic` [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [MinorRole](VM.Managed.DAFUL.Car.MinorRole.md)\> +`dic` Dictionary The objectbase and interface names. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.CleatShape.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.CleatShape.md index 869ab6a4ec..79680d3cc8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.CleatShape.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.CleatShape.md @@ -1,4 +1,5 @@ -# Class CleatShape +# Class CleatShape + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public abstract class CleatShape #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CleatShape](VM.Managed.DAFUL.Car.CleatShape.md) #### Derived @@ -89,11 +90,11 @@ public abstract string GetXZData(double dEndTime) #### Parameters -`dEndTime` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dEndTime` double The d end time. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.CleatShapeType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.CleatShapeType.md index 997b0deb89..66e11a1c9b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.CleatShapeType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.CleatShapeType.md @@ -1,4 +1,5 @@ -# Enum CleatShapeType +# Enum CleatShapeType + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ConstantRadiusCorneringConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ConstantRadiusCorneringConfiguration.md index 21abb20af5..d82a803054 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ConstantRadiusCorneringConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ConstantRadiusCorneringConfiguration.md @@ -1,4 +1,5 @@ -# Class ConstantRadiusCorneringConfiguration +# Class ConstantRadiusCorneringConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public class ConstantRadiusCorneringConfiguration : FullCarAnalysisConfiguration #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [FullCarAnalysisConfigurationBase](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md) ← [ConstantRadiusCorneringConfiguration](VM.Managed.DAFUL.Car.ConstantRadiusCorneringConfiguration.md) @@ -50,95 +51,98 @@ ILinkUpdateOwner [FullCarAnalysisConfigurationBase.RoadReferencePosition](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadReferencePosition), [FullCarAnalysisConfigurationBase.RoadRotationAngle](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadRotationAngle), [FullCarAnalysisConfigurationBase.RoadOffset](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadOffset), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -182,7 +186,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -249,7 +253,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.CorneringBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.CorneringBase.md index 7afc3325e2..cf524ef73d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.CorneringBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.CorneringBase.md @@ -1,4 +1,5 @@ -# Class CorneringBase +# Class CorneringBase + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public abstract class CorneringBase : FullCarAnalysisBase, IHasInitialVel #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [FullCarAnalysisBase](VM.Managed.DAFUL.Car.FullCarAnalysisBase.md) ← [CorneringBase](VM.Managed.DAFUL.Car.CorneringBase.md) @@ -97,7 +98,7 @@ public double EntityDistance { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### InitialVelocityCornering @@ -109,7 +110,7 @@ public virtual double InitialVelocityCornering { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TimeOfSettle @@ -121,7 +122,7 @@ public double TimeOfSettle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TurnDirectionType @@ -147,7 +148,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.CorneringWithSteerReleaseConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.CorneringWithSteerReleaseConfiguration.md index f367eda56e..2887f315f1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.CorneringWithSteerReleaseConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.CorneringWithSteerReleaseConfiguration.md @@ -1,4 +1,5 @@ -# Class CorneringWithSteerReleaseConfiguration +# Class CorneringWithSteerReleaseConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public class CorneringWithSteerReleaseConfiguration : FullCarAnalysisConfigurati #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [FullCarAnalysisConfigurationBase](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md) ← [CorneringWithSteerReleaseConfiguration](VM.Managed.DAFUL.Car.CorneringWithSteerReleaseConfiguration.md) @@ -50,95 +51,98 @@ ILinkUpdateOwner [FullCarAnalysisConfigurationBase.RoadReferencePosition](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadReferencePosition), [FullCarAnalysisConfigurationBase.RoadRotationAngle](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadRotationAngle), [FullCarAnalysisConfigurationBase.RoadOffset](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadOffset), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -182,7 +186,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -249,7 +253,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.CourseBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.CourseBase.md index 1f48131041..4f6e3f5c6d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.CourseBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.CourseBase.md @@ -1,4 +1,5 @@ -# Class CourseBase +# Class CourseBase + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public abstract class CourseBase : FullCarAnalysisBase, IHasInitialVel #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [FullCarAnalysisBase](VM.Managed.DAFUL.Car.FullCarAnalysisBase.md) ← [CourseBase](VM.Managed.DAFUL.Car.CourseBase.md) @@ -82,7 +83,7 @@ public double InitialVelocity { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### VelocityUnitType @@ -108,7 +109,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.CreateGroupImpl.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.CreateGroupImpl.md index fc7c61934e..def956c868 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.CreateGroupImpl.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.CreateGroupImpl.md @@ -1,4 +1,5 @@ -# Class CreateGroupImpl +# Class CreateGroupImpl + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class CreateGroupImpl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CreateGroupImpl](VM.Managed.DAFUL.Car.CreateGroupImpl.md) #### Extension Methods @@ -40,7 +41,7 @@ public static void CreateGroupForGeneral(SubSystemDocument subDoc) #### Parameters -`subDoc` SubSystemDocument +`subDoc` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document @@ -54,7 +55,7 @@ public static void CreateGroupForSuspension(SubSystemDocument subDoc) #### Parameters -`subDoc` SubSystemDocument +`subDoc` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DocCreateCarAnalysisInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DocCreateCarAnalysisInfo.md index 3b17917cb2..85f3bf7ca6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DocCreateCarAnalysisInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DocCreateCarAnalysisInfo.md @@ -1,4 +1,5 @@ -# Class DocCreateCarAnalysisInfo +# Class DocCreateCarAnalysisInfo + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class DocCreateCarAnalysisInfo : DocFromTemplateInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← DocCreateInfo ← DocFromTemplateInfo ← [DocCreateCarAnalysisInfo](VM.Managed.DAFUL.Car.DocCreateCarAnalysisInfo.md) @@ -57,7 +58,7 @@ public double GravityX { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GravityY @@ -69,7 +70,7 @@ public double GravityY { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GravityZ @@ -81,7 +82,7 @@ public double GravityZ { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### IconSize @@ -93,7 +94,7 @@ public double IconSize { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### IncrementTime @@ -105,7 +106,7 @@ public double IncrementTime { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UseIncrementTime @@ -117,5 +118,5 @@ public bool UseIncrementTime { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DocCreateFourPostTestRigAnalysisInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DocCreateFourPostTestRigAnalysisInfo.md index e967ca5cf1..4a72e89ee8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DocCreateFourPostTestRigAnalysisInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DocCreateFourPostTestRigAnalysisInfo.md @@ -1,4 +1,5 @@ -# Class DocCreateFourPostTestRigAnalysisInfo +# Class DocCreateFourPostTestRigAnalysisInfo + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDFullCar.dll @@ -11,36 +12,36 @@ public class DocCreateFourPostTestRigAnalysisInfo : DocCreateFullCarAnalysisInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← DocCreateInfo ← DocFromTemplateInfo ← -DocCreateCarAnalysisInfo ← -DocCreateFullCarAnalysisInfoExceptWheel ← -DocCreateFullCarAnalysisInfo ← +[DocCreateCarAnalysisInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs) ← +[DocCreateFullCarAnalysisInfoExceptWheel](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs) ← +[DocCreateFullCarAnalysisInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs) ← [DocCreateFourPostTestRigAnalysisInfo](VM.Managed.DAFUL.Car.DocCreateFourPostTestRigAnalysisInfo.md) #### Inherited Members -DocCreateFullCarAnalysisInfo.FrontWheelPath, -DocCreateFullCarAnalysisInfo.RearWheelPath, -DocCreateFullCarAnalysisInfoExceptWheel.AssemblyPath, -DocCreateFullCarAnalysisInfoExceptWheel.FrontSuspensionPath, -DocCreateFullCarAnalysisInfoExceptWheel.RearSuspensionPath, -DocCreateFullCarAnalysisInfoExceptWheel.SteeringPath, -DocCreateFullCarAnalysisInfoExceptWheel.BodyPath, -DocCreateFullCarAnalysisInfoExceptWheel.TestRigPath, -DocCreateFullCarAnalysisInfoExceptWheel.BrakePath, -DocCreateFullCarAnalysisInfoExceptWheel.PowerTrainPath, -DocCreateFullCarAnalysisInfoExceptWheel.OtherPath, -DocCreateFullCarAnalysisInfoExceptWheel.IsBreak, -DocCreateFullCarAnalysisInfoExceptWheel.IsPowerTrain, -DocCreateFullCarAnalysisInfoExceptWheel.IsOther, -DocCreateCarAnalysisInfo.GravityX, -DocCreateCarAnalysisInfo.GravityY, -DocCreateCarAnalysisInfo.GravityZ, -DocCreateCarAnalysisInfo.IconSize, -DocCreateCarAnalysisInfo.IncrementTime, -DocCreateCarAnalysisInfo.UseIncrementTime, +[DocCreateFullCarAnalysisInfo.FrontWheelPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[DocCreateFullCarAnalysisInfo.RearWheelPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[DocCreateFullCarAnalysisInfoExceptWheel.AssemblyPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[DocCreateFullCarAnalysisInfoExceptWheel.FrontSuspensionPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[DocCreateFullCarAnalysisInfoExceptWheel.RearSuspensionPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[DocCreateFullCarAnalysisInfoExceptWheel.SteeringPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[DocCreateFullCarAnalysisInfoExceptWheel.BodyPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[DocCreateFullCarAnalysisInfoExceptWheel.TestRigPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[DocCreateFullCarAnalysisInfoExceptWheel.BrakePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[DocCreateFullCarAnalysisInfoExceptWheel.PowerTrainPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[DocCreateFullCarAnalysisInfoExceptWheel.OtherPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[DocCreateFullCarAnalysisInfoExceptWheel.IsBreak](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[DocCreateFullCarAnalysisInfoExceptWheel.IsPowerTrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[DocCreateFullCarAnalysisInfoExceptWheel.IsOther](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[DocCreateCarAnalysisInfo.GravityX](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[DocCreateCarAnalysisInfo.GravityY](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[DocCreateCarAnalysisInfo.GravityZ](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[DocCreateCarAnalysisInfo.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[DocCreateCarAnalysisInfo.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[DocCreateCarAnalysisInfo.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), DocFromTemplateInfo.TemplatePath, DocCreateInfo.ModeChangeOperation, DocCreateInfo.ActiveMode, diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DocCreateFullCarAnalysisInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DocCreateFullCarAnalysisInfo.md index e4e7b7c8d5..6837b8a44e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DocCreateFullCarAnalysisInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DocCreateFullCarAnalysisInfo.md @@ -1,4 +1,5 @@ -# Class DocCreateFullCarAnalysisInfo +# Class DocCreateFullCarAnalysisInfo + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class DocCreateFullCarAnalysisInfo : DocCreateFullCarAnalysisInfoExceptWh #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← DocCreateInfo ← DocFromTemplateInfo ← [DocCreateCarAnalysisInfo](VM.Managed.DAFUL.Car.DocCreateCarAnalysisInfo.md) ← @@ -71,7 +72,7 @@ public string FrontWheelPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RearWheelPath @@ -83,5 +84,5 @@ public string RearWheelPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DocCreateFullCarAnalysisInfoExceptWheel.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DocCreateFullCarAnalysisInfoExceptWheel.md index 8b953699f0..522fd5182c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DocCreateFullCarAnalysisInfoExceptWheel.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DocCreateFullCarAnalysisInfoExceptWheel.md @@ -1,4 +1,5 @@ -# Class DocCreateFullCarAnalysisInfoExceptWheel +# Class DocCreateFullCarAnalysisInfoExceptWheel + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public abstract class DocCreateFullCarAnalysisInfoExceptWheel : DocCreateCarAnal #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← DocCreateInfo ← DocFromTemplateInfo ← [DocCreateCarAnalysisInfo](VM.Managed.DAFUL.Car.DocCreateCarAnalysisInfo.md) ← @@ -62,7 +63,7 @@ public string AssemblyPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### BodyPath @@ -74,7 +75,7 @@ public string BodyPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### BrakePath @@ -86,7 +87,7 @@ public string BrakePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### FrontSuspensionPath @@ -98,7 +99,7 @@ public string FrontSuspensionPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IsBreak @@ -110,7 +111,7 @@ public bool IsBreak { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsOther @@ -122,7 +123,7 @@ public bool IsOther { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsPowerTrain @@ -134,7 +135,7 @@ public bool IsPowerTrain { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OtherPath @@ -146,7 +147,7 @@ public string OtherPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### PowerTrainPath @@ -158,7 +159,7 @@ public string PowerTrainPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RearSuspensionPath @@ -170,7 +171,7 @@ public string RearSuspensionPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SteeringPath @@ -182,7 +183,7 @@ public string SteeringPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TestRigPath @@ -194,5 +195,5 @@ public string TestRigPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DocCreateHalfCarAnalysisInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DocCreateHalfCarAnalysisInfo.md index 5f2175b411..2be67281bf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DocCreateHalfCarAnalysisInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DocCreateHalfCarAnalysisInfo.md @@ -1,4 +1,5 @@ -# Class DocCreateHalfCarAnalysisInfo +# Class DocCreateHalfCarAnalysisInfo + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class DocCreateHalfCarAnalysisInfo : DocCreateCarAnalysisInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← DocCreateInfo ← DocFromTemplateInfo ← [DocCreateCarAnalysisInfo](VM.Managed.DAFUL.Car.DocCreateCarAnalysisInfo.md) ← @@ -58,7 +59,7 @@ public string AssemblyPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IsOther @@ -70,7 +71,7 @@ public bool IsOther { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsSteering @@ -82,7 +83,7 @@ public bool IsSteering { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OtherPath @@ -94,7 +95,7 @@ public string OtherPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SteeringPath @@ -106,7 +107,7 @@ public string SteeringPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SuspensionPath @@ -118,7 +119,7 @@ public string SuspensionPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TestRigPath @@ -130,5 +131,5 @@ public string TestRigPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DocCreateShimmyJudderTestRigAnalysisInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DocCreateShimmyJudderTestRigAnalysisInfo.md index 9c9ef18164..523ebf9591 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DocCreateShimmyJudderTestRigAnalysisInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DocCreateShimmyJudderTestRigAnalysisInfo.md @@ -1,4 +1,5 @@ -# Class DocCreateShimmyJudderTestRigAnalysisInfo +# Class DocCreateShimmyJudderTestRigAnalysisInfo + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDFullCar.dll @@ -11,33 +12,33 @@ public class DocCreateShimmyJudderTestRigAnalysisInfo : DocCreateFullCarAnalysis #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← DocCreateInfo ← DocFromTemplateInfo ← -DocCreateCarAnalysisInfo ← -DocCreateFullCarAnalysisInfoExceptWheel ← +[DocCreateCarAnalysisInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs) ← +[DocCreateFullCarAnalysisInfoExceptWheel](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs) ← [DocCreateShimmyJudderTestRigAnalysisInfo](VM.Managed.DAFUL.Car.DocCreateShimmyJudderTestRigAnalysisInfo.md) #### Inherited Members -DocCreateFullCarAnalysisInfoExceptWheel.AssemblyPath, -DocCreateFullCarAnalysisInfoExceptWheel.FrontSuspensionPath, -DocCreateFullCarAnalysisInfoExceptWheel.RearSuspensionPath, -DocCreateFullCarAnalysisInfoExceptWheel.SteeringPath, -DocCreateFullCarAnalysisInfoExceptWheel.BodyPath, -DocCreateFullCarAnalysisInfoExceptWheel.TestRigPath, -DocCreateFullCarAnalysisInfoExceptWheel.BrakePath, -DocCreateFullCarAnalysisInfoExceptWheel.PowerTrainPath, -DocCreateFullCarAnalysisInfoExceptWheel.OtherPath, -DocCreateFullCarAnalysisInfoExceptWheel.IsBreak, -DocCreateFullCarAnalysisInfoExceptWheel.IsPowerTrain, -DocCreateFullCarAnalysisInfoExceptWheel.IsOther, -DocCreateCarAnalysisInfo.GravityX, -DocCreateCarAnalysisInfo.GravityY, -DocCreateCarAnalysisInfo.GravityZ, -DocCreateCarAnalysisInfo.IconSize, -DocCreateCarAnalysisInfo.IncrementTime, -DocCreateCarAnalysisInfo.UseIncrementTime, +[DocCreateFullCarAnalysisInfoExceptWheel.AssemblyPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[DocCreateFullCarAnalysisInfoExceptWheel.FrontSuspensionPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[DocCreateFullCarAnalysisInfoExceptWheel.RearSuspensionPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[DocCreateFullCarAnalysisInfoExceptWheel.SteeringPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[DocCreateFullCarAnalysisInfoExceptWheel.BodyPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[DocCreateFullCarAnalysisInfoExceptWheel.TestRigPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[DocCreateFullCarAnalysisInfoExceptWheel.BrakePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[DocCreateFullCarAnalysisInfoExceptWheel.PowerTrainPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[DocCreateFullCarAnalysisInfoExceptWheel.OtherPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[DocCreateFullCarAnalysisInfoExceptWheel.IsBreak](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[DocCreateFullCarAnalysisInfoExceptWheel.IsPowerTrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[DocCreateFullCarAnalysisInfoExceptWheel.IsOther](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[DocCreateCarAnalysisInfo.GravityX](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[DocCreateCarAnalysisInfo.GravityY](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[DocCreateCarAnalysisInfo.GravityZ](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[DocCreateCarAnalysisInfo.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[DocCreateCarAnalysisInfo.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[DocCreateCarAnalysisInfo.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), DocFromTemplateInfo.TemplatePath, DocCreateInfo.ModeChangeOperation, DocCreateInfo.ActiveMode, diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DocCreateTireTestrigAnalysisInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DocCreateTireTestrigAnalysisInfo.md index 712e796fbf..b2c3324195 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DocCreateTireTestrigAnalysisInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DocCreateTireTestrigAnalysisInfo.md @@ -1,4 +1,5 @@ -# Class DocCreateTireTestrigAnalysisInfo +# Class DocCreateTireTestrigAnalysisInfo + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class DocCreateTireTestrigAnalysisInfo : DocCreateCarAnalysisInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← DocCreateInfo ← DocFromTemplateInfo ← [DocCreateCarAnalysisInfo](VM.Managed.DAFUL.Car.DocCreateCarAnalysisInfo.md) ← @@ -58,7 +59,7 @@ public string AssemblyPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TestRigPath @@ -70,7 +71,7 @@ public string TestRigPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### WheelPath @@ -82,5 +83,5 @@ public string WheelPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DocMinorRoleCreateInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DocMinorRoleCreateInfo.md index 9ecf3cd9d0..7985f0d1e1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DocMinorRoleCreateInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DocMinorRoleCreateInfo.md @@ -1,4 +1,5 @@ -# Class DocMinorRoleCreateInfo +# Class DocMinorRoleCreateInfo + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class DocMinorRoleCreateInfo : DocFromTemplateInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← DocCreateInfo ← DocFromTemplateInfo ← [DocMinorRoleCreateInfo](VM.Managed.DAFUL.Car.DocMinorRoleCreateInfo.md) @@ -51,5 +52,5 @@ public int MinorRole { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DriftConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DriftConfiguration.md index 55b0d7c0e4..37d3bfb508 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DriftConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DriftConfiguration.md @@ -1,4 +1,5 @@ -# Class DriftConfiguration +# Class DriftConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public class DriftConfiguration : FullCarAnalysisConfigurationBase, IObservableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [FullCarAnalysisConfigurationBase](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md) ← [DriftConfiguration](VM.Managed.DAFUL.Car.DriftConfiguration.md) @@ -51,95 +52,98 @@ IDriftConfiguration [FullCarAnalysisConfigurationBase.RoadReferencePosition](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadReferencePosition), [FullCarAnalysisConfigurationBase.RoadRotationAngle](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadRotationAngle), [FullCarAnalysisConfigurationBase.RoadOffset](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadOffset), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -183,7 +187,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -250,7 +254,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DriveLineDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DriveLineDocument.md index ea32fd1391..13c671d652 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DriveLineDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.DriveLineDocument.md @@ -1,4 +1,5 @@ -# Class DriveLineDocument +# Class DriveLineDocument + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,16 +12,16 @@ public class DriveLineDocument : SubSystemDocument, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← [DriveLineDocument](VM.Managed.DAFUL.Car.DriveLineDocument.md) #### Implements @@ -32,7 +33,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -54,100 +55,100 @@ IPostTemplateBasedDocument, #### Inherited Members -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -242,8 +243,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -254,9 +253,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -270,12 +269,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -553,7 +549,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -584,7 +580,7 @@ public DriveLineDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -600,7 +596,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### Interfaces @@ -612,7 +608,7 @@ protected override InterfaceManager Interfaces { get; } #### Property Value - InterfaceManager + [InterfaceManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InterfaceManager.cs) ### MinorRoleType @@ -646,13 +642,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The fullname of type. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The category. @@ -666,7 +662,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the STR category. @@ -696,7 +692,7 @@ protected override void LoadTemplateBasedXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -710,7 +706,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -724,7 +720,7 @@ protected override void SaveTemplateBasedXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ExperimentForDrivenControl.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ExperimentForDrivenControl.md index ed5fa8310e..094e98ae82 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ExperimentForDrivenControl.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ExperimentForDrivenControl.md @@ -1,4 +1,5 @@ -# Class ExperimentForDrivenControl +# Class ExperimentForDrivenControl + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class ExperimentForDrivenControl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ExperimentForDrivenControl](VM.Managed.DAFUL.Car.ExperimentForDrivenControl.md) #### Extension Methods @@ -42,7 +43,7 @@ public double ClutchFallTime { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ClutchRaiseTime @@ -54,7 +55,7 @@ public double ClutchRaiseTime { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GearPosition @@ -66,7 +67,7 @@ public int GearPosition { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GearShiftTime @@ -78,7 +79,7 @@ public double GearShiftTime { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### InitialVelocity @@ -90,7 +91,7 @@ public double InitialVelocity { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MiniManeuvers @@ -102,7 +103,7 @@ public List MiniManeuvers { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> + List ### ThrottleFallTime @@ -114,7 +115,7 @@ public double ThrottleFallTime { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ThrottleOffDelay @@ -126,7 +127,7 @@ public double ThrottleOffDelay { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ThrottleOnDelay @@ -138,7 +139,7 @@ public double ThrottleOnDelay { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ThrottleRaiseTime @@ -150,7 +151,7 @@ public double ThrottleRaiseTime { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -164,7 +165,7 @@ public void GetUSUBArgumentForFileDriven(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The ar parameter. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ExternalFilesConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ExternalFilesConfiguration.md index dbd2b5dadd..3656994db1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ExternalFilesConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ExternalFilesConfiguration.md @@ -1,4 +1,5 @@ -# Class ExternalFilesConfiguration +# Class ExternalFilesConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public class ExternalFilesConfiguration : SuspensionAnalysisConfigurationBase, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [SuspensionAnalysisConfigurationBase](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md) ← [ExternalFilesConfiguration](VM.Managed.DAFUL.Car.ExternalFilesConfiguration.md) @@ -38,95 +39,98 @@ IEnableManager [SuspensionAnalysisConfigurationBase.AnalysisName](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_SuspensionAnalysisConfigurationBase\_AnalysisName), [SuspensionAnalysisConfigurationBase.Analysis](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_SuspensionAnalysisConfigurationBase\_Analysis), [SuspensionAnalysisConfigurationBase.AnalysisType](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_SuspensionAnalysisConfigurationBase\_AnalysisType), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -170,7 +174,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -237,7 +241,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FileDrivenConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FileDrivenConfiguration.md index a727d001eb..e4272bba34 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FileDrivenConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FileDrivenConfiguration.md @@ -1,4 +1,5 @@ -# Class FileDrivenConfiguration +# Class FileDrivenConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public class FileDrivenConfiguration : FullCarAnalysisConfigurationBase, IObserv #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [FullCarAnalysisConfigurationBase](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md) ← [FileDrivenConfiguration](VM.Managed.DAFUL.Car.FileDrivenConfiguration.md) @@ -50,95 +51,98 @@ ILinkUpdateOwner [FullCarAnalysisConfigurationBase.RoadReferencePosition](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadReferencePosition), [FullCarAnalysisConfigurationBase.RoadRotationAngle](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadRotationAngle), [FullCarAnalysisConfigurationBase.RoadOffset](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadOffset), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -182,7 +186,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -249,7 +253,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FishHookConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FishHookConfiguration.md index 6794552f23..868f8f6de7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FishHookConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FishHookConfiguration.md @@ -1,4 +1,5 @@ -# Class FishHookConfiguration +# Class FishHookConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public class FishHookConfiguration : FullCarAnalysisConfigurationBase, IObservab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [FullCarAnalysisConfigurationBase](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md) ← [FishHookConfiguration](VM.Managed.DAFUL.Car.FishHookConfiguration.md) @@ -50,95 +51,98 @@ ILinkUpdateOwner [FullCarAnalysisConfigurationBase.RoadReferencePosition](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadReferencePosition), [FullCarAnalysisConfigurationBase.RoadRotationAngle](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadRotationAngle), [FullCarAnalysisConfigurationBase.RoadOffset](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadOffset), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -182,7 +186,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -249,7 +253,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.Bumpstop.MethodType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.Bumpstop.MethodType.md index 3b9dc128b5..555c4c579d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.Bumpstop.MethodType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.Bumpstop.MethodType.md @@ -1,4 +1,5 @@ -# Enum Bumpstop.MethodType +# Enum Bumpstop.MethodType + Namespace: [VM.Managed.DAFUL.Car.Force](VM.Managed.DAFUL.Car.Force.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.Bumpstop.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.Bumpstop.md index ad6a893214..862d588bd0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.Bumpstop.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.Bumpstop.md @@ -1,4 +1,5 @@ -# Class Bumpstop +# Class Bumpstop + Namespace: [VM.Managed.DAFUL.Car.Force](VM.Managed.DAFUL.Car.Force.md) Assembly: VMDCar.dll @@ -11,16 +12,16 @@ public class Bumpstop : ForceCar, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← -Force ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← +[Force](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [ForceCar](VM.Managed.DAFUL.Car.Force.ForceCar\-1.md) ← [Bumpstop](VM.Managed.DAFUL.Car.Force.Bumpstop.md) @@ -31,7 +32,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -75,69 +76,69 @@ ITemplateObject [ForceCar.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.Car.Force.ForceCar\-1.md\#VM\_Managed\_DAFUL\_Car\_Force\_ForceCar\_1\_Initialize\_VM\_Unit\_ConvertFactor\_), [ForceCar.WriteTemplateImpl\(XmlWriter\)](VM.Managed.DAFUL.Car.Force.ForceCar\-1.md\#VM\_Managed\_DAFUL\_Car\_Force\_ForceCar\_1\_WriteTemplateImpl\_System\_Xml\_XmlWriter\_), [ForceCar.ReadTemplateImpl\(XmlReader\)](VM.Managed.DAFUL.Car.Force.ForceCar\-1.md\#VM\_Managed\_DAFUL\_Car\_Force\_ForceCar\_1\_ReadTemplateImpl\_System\_Xml\_XmlReader\_), -Force.Initialize\(Unit.ConvertFactor\), -Force.WriteMarker\(XmlWriter, Marker, string\), -Force.ReadMarker\(XmlReader, Marker, string\), -Force.UseForSimulationScenario, -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Force.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.WriteMarker\(XmlWriter, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.ReadMarker\(XmlReader, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.UseForSimulationScenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -236,7 +237,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -275,7 +276,7 @@ public Bumpstop(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -289,7 +290,7 @@ protected override bool CanWriteToOutFileImpl { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Diameter @@ -301,7 +302,7 @@ public double Diameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GeomColor @@ -313,7 +314,7 @@ public string GeomColor { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### MethodCoef @@ -325,7 +326,7 @@ public ExpressionValueVariable MethodCoef { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MethodTypes @@ -363,7 +364,7 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -391,7 +392,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -405,7 +406,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.Damper.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.Damper.md index 37c20334a6..47c9e50e19 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.Damper.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.Damper.md @@ -1,4 +1,5 @@ -# Class Damper +# Class Damper + Namespace: [VM.Managed.DAFUL.Car.Force](VM.Managed.DAFUL.Car.Force.md) Assembly: VMDCar.dll @@ -11,16 +12,16 @@ public class Damper : ForceCar, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← -Force ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← +[Force](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [ForceCar](VM.Managed.DAFUL.Car.Force.ForceCar\-1.md) ← [Damper](VM.Managed.DAFUL.Car.Force.Damper.md) @@ -31,7 +32,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -75,69 +76,69 @@ ITemplateObject [ForceCar.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.Car.Force.ForceCar\-1.md\#VM\_Managed\_DAFUL\_Car\_Force\_ForceCar\_1\_Initialize\_VM\_Unit\_ConvertFactor\_), [ForceCar.WriteTemplateImpl\(XmlWriter\)](VM.Managed.DAFUL.Car.Force.ForceCar\-1.md\#VM\_Managed\_DAFUL\_Car\_Force\_ForceCar\_1\_WriteTemplateImpl\_System\_Xml\_XmlWriter\_), [ForceCar.ReadTemplateImpl\(XmlReader\)](VM.Managed.DAFUL.Car.Force.ForceCar\-1.md\#VM\_Managed\_DAFUL\_Car\_Force\_ForceCar\_1\_ReadTemplateImpl\_System\_Xml\_XmlReader\_), -Force.Initialize\(Unit.ConvertFactor\), -Force.WriteMarker\(XmlWriter, Marker, string\), -Force.ReadMarker\(XmlReader, Marker, string\), -Force.UseForSimulationScenario, -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Force.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.WriteMarker\(XmlWriter, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.ReadMarker\(XmlReader, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.UseForSimulationScenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -236,7 +237,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -275,7 +276,7 @@ public Damper(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -291,7 +292,7 @@ public double Diameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### FreeLength @@ -303,7 +304,7 @@ public ExpressionValueVariable FreeLength { get; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### GeomColor @@ -315,7 +316,7 @@ public string GeomColor { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ReportTypeImpl @@ -341,7 +342,7 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -369,7 +370,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -387,7 +388,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -401,7 +402,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.ForceCar-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.ForceCar-1.md index a72085a02c..9e18e59eda 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.ForceCar-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.ForceCar-1.md @@ -1,4 +1,5 @@ -# Class ForceCar +# Class ForceCar + Namespace: [VM.Managed.DAFUL.Car.Force](VM.Managed.DAFUL.Car.Force.md) Assembly: VMDCar.dll @@ -17,16 +18,16 @@ The type of the property. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← -Force ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← +[Force](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [ForceCar](VM.Managed.DAFUL.Car.Force.ForceCar\-1.md) #### Implements @@ -36,7 +37,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -76,69 +77,69 @@ ITemplateObject #### Inherited Members -Force.Initialize\(Unit.ConvertFactor\), -Force.WriteMarker\(XmlWriter, Marker, string\), -Force.ReadMarker\(XmlReader, Marker, string\), -Force.UseForSimulationScenario, -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Force.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.WriteMarker\(XmlWriter, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.ReadMarker\(XmlReader, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.UseForSimulationScenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -237,7 +238,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -276,7 +277,7 @@ public ForceCar(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -290,7 +291,7 @@ protected bool m_bSkipToUpdateSymmetric #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -318,7 +319,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -332,7 +333,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.ForceCarPropertyDocument-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.ForceCarPropertyDocument-1.md index 929d2ed976..d20091946e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.ForceCarPropertyDocument-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.ForceCarPropertyDocument-1.md @@ -1,4 +1,5 @@ -# Class ForceCarPropertyDocument +# Class ForceCarPropertyDocument + Namespace: [VM.Managed.DAFUL.Car.Force](VM.Managed.DAFUL.Car.Force.md) Assembly: VMDCar.dll @@ -17,14 +18,14 @@ The type of the prop. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← -PropertyDocumentBase ← -PropertyDocument ← +[PropertyDocumentBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs) ← +[PropertyDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs) ← [ForceCarPropertyDocument](VM.Managed.DAFUL.Car.Force.ForceCarPropertyDocument\-1.md) #### Implements @@ -43,7 +44,7 @@ IOwned, IHasID, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IPropertyDocument, IUnitChange, IXMLFormatable, @@ -51,47 +52,47 @@ IForcePropertyDocument #### Inherited Members -PropertyDocument.Save\(TextWriter\), -PropertyDocument.Load\(TextReader\), -PropertyDocument.OnPostMakeDocument\(DocCreateInfo\), -PropertyDocument.Property, -PropertyDocument.UntypedProperty, -PropertyDocument.UntypedPropertyOwner, -PropertyDocument.FilePropertyOwner, -PropertyDocument.PropertyType, -PropertyDocumentBase.Save\(string\), -PropertyDocumentBase.SerializeObj\(XmlWriter, T, string\), -PropertyDocumentBase.DeserializeObj\(XmlReader, string, Type\), -PropertyDocumentBase.Save\(TextWriter\), -PropertyDocumentBase.Save\(Stream\), -PropertyDocumentBase.Load\(string\), -PropertyDocumentBase.Load\(TextReader\), -PropertyDocumentBase.Load\(Stream\), -PropertyDocumentBase.SetUnit\(Unit\), -PropertyDocumentBase.AddReferenceDocument\(Document\), -PropertyDocumentBase.RemoveReferenceDocument\(Document\), -PropertyDocumentBase.FindLocal\(string\), -PropertyDocumentBase.Add\(ObjectBase\), -PropertyDocumentBase.OnPostAdd\(ObjectBase\), -PropertyDocumentBase.AddImpl\(ObjectBase\), -PropertyDocumentBase.IsTypeSupported\(Type\), -PropertyDocumentBase.OnDeserialization\(object\), -PropertyDocumentBase.CreateView\(UIntPtr\), -PropertyDocumentBase.TriggerPostMakeDocument\(PropertyDocCreateInfo\), -PropertyDocumentBase.OnPostMakeDocument\(DocCreateInfo\), -PropertyDocumentBase.GetData\(XmlNode\), -PropertyDocumentBase.SetData\(XmlNode\), -PropertyDocumentBase.Reload, -PropertyDocumentBase.UntypedProperty, -PropertyDocumentBase.PropertyType, -PropertyDocumentBase.Modified, -PropertyDocumentBase.UntypedPropertyOwner, -PropertyDocumentBase.DocumentSessionOverride, -PropertyDocumentBase.SetDocumentSessionOverride, -PropertyDocumentBase.OwnedList, -PropertyDocumentBase.OwnedCollection, -PropertyDocumentBase.CanClose, -PropertyDocumentBase.IsPropertySupport, +[PropertyDocument.Save\(TextWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.Load\(TextReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.UntypedPropertyOwner](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.FilePropertyOwner](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.PropertyType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Save\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.SerializeObj\(XmlWriter, T, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.DeserializeObj\(XmlReader, string, Type\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Save\(TextWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Save\(Stream\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Load\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Load\(TextReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Load\(Stream\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.SetUnit\(Unit\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.AddReferenceDocument\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.RemoveReferenceDocument\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Add\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OnPostAdd\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.AddImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.IsTypeSupported\(Type\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.CreateView\(UIntPtr\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.TriggerPostMakeDocument\(PropertyDocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Reload](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.PropertyType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Modified](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.UntypedPropertyOwner](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OwnedList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OwnedCollection](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.CanClose](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.IsPropertySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), Document.g\_OpenDocuments, Document.m\_unit, Document.m\_unitKernal, @@ -286,7 +287,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -341,7 +342,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -367,7 +368,7 @@ The object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if is enabled [the specified object]; otherwise, false. @@ -381,7 +382,7 @@ public override void IsTypeSupported(Type type) #### Parameters -`type` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`type` Type The type. @@ -413,7 +414,7 @@ protected override void SetEnableImpl(ObjectBase ob, bool bEnable) The object. -`bEnable` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bEnable` bool if set to true enable. @@ -431,7 +432,7 @@ public override void UpdateEnable(ObjectBase obj, bool bEnabled) The object. -`bEnabled` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bEnabled` bool Whether object is enable. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.FullCarLoadCase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.FullCarLoadCase.md index 9f80be0530..a806ab977a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.FullCarLoadCase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.FullCarLoadCase.md @@ -1,4 +1,5 @@ -# Class FullCarLoadCase +# Class FullCarLoadCase + Namespace: [VM.Managed.DAFUL.Car.Force](VM.Managed.DAFUL.Car.Force.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class FullCarLoadCase : LoadCaseBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [LoadCaseBase](VM.Managed.DAFUL.Car.LoadCaseBase.md) ← [FullCarLoadCase](VM.Managed.DAFUL.Car.Force.FullCarLoadCase.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyBumpstop.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyBumpstop.md index b28f827e17..9fc20bc5cb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyBumpstop.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyBumpstop.md @@ -1,4 +1,5 @@ -# Class PropertyBumpstop +# Class PropertyBumpstop + Namespace: [VM.Managed.DAFUL.Car.Force](VM.Managed.DAFUL.Car.Force.md) Assembly: VMDCar.dll @@ -11,14 +12,14 @@ public class PropertyBumpstop : PropertyCarForce, IObservableObject, IDisposable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyForce ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyForce](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [PropertyCarForce](VM.Managed.DAFUL.Car.Force.PropertyCarForce.md) ← [PropertyBumpstop](VM.Managed.DAFUL.Car.Force.PropertyBumpstop.md) @@ -37,7 +38,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -47,14 +48,14 @@ IArgument #### Inherited Members -PropertyForce.ArgumentType, -PropertyForce.ReferenceType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyForce.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[PropertyForce.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -153,7 +154,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -192,11 +193,11 @@ protected PropertyBumpstop(string strProxyName, string strBuildInfo) #### Parameters -`strProxyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strProxyName` string The name of proxy. -`strBuildInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBuildInfo` string The build information. @@ -224,7 +225,7 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Spline @@ -236,7 +237,7 @@ public Spline Spline { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyBumpstopDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyBumpstopDocument.md index fc20fbe012..ed71dc94d6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyBumpstopDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyBumpstopDocument.md @@ -1,4 +1,5 @@ -# Class PropertyBumpstopDocument +# Class PropertyBumpstopDocument + Namespace: [VM.Managed.DAFUL.Car.Force](VM.Managed.DAFUL.Car.Force.md) Assembly: VMDCar.dll @@ -11,14 +12,14 @@ public class PropertyBumpstopDocument : ForceCarPropertyDocument ← +[PropertyDocumentBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs) ← +[PropertyDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs) ← [ForceCarPropertyDocument](VM.Managed.DAFUL.Car.Force.ForceCarPropertyDocument\-1.md) ← [PropertyBumpstopDocument](VM.Managed.DAFUL.Car.Force.PropertyBumpstopDocument.md) @@ -38,7 +39,7 @@ IOwned, IHasID, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IPropertyDocument, IUnitChange, IXMLFormatable, @@ -53,47 +54,47 @@ IForcePropertyDocument [ForceCarPropertyDocument.SetEnableImpl\(ObjectBase, bool\)](VM.Managed.DAFUL.Car.Force.ForceCarPropertyDocument\-1.md\#VM\_Managed\_DAFUL\_Car\_Force\_ForceCarPropertyDocument\_1\_SetEnableImpl\_VM\_Managed\_ObjectBase\_System\_Boolean\_), [ForceCarPropertyDocument.UpdateEnable\(ObjectBase, bool\)](VM.Managed.DAFUL.Car.Force.ForceCarPropertyDocument\-1.md\#VM\_Managed\_DAFUL\_Car\_Force\_ForceCarPropertyDocument\_1\_UpdateEnable\_VM\_Managed\_ObjectBase\_System\_Boolean\_), [ForceCarPropertyDocument.OnPostMakeDocument\(DocCreateInfo\)](VM.Managed.DAFUL.Car.Force.ForceCarPropertyDocument\-1.md\#VM\_Managed\_DAFUL\_Car\_Force\_ForceCarPropertyDocument\_1\_OnPostMakeDocument\_VM\_Managed\_DocCreateInfo\_), -PropertyDocument.Save\(TextWriter\), -PropertyDocument.Load\(TextReader\), -PropertyDocument.OnPostMakeDocument\(DocCreateInfo\), -PropertyDocument.Property, -PropertyDocument.UntypedProperty, -PropertyDocument.UntypedPropertyOwner, -PropertyDocument.FilePropertyOwner, -PropertyDocument.PropertyType, -PropertyDocumentBase.Save\(string\), -PropertyDocumentBase.SerializeObj\(XmlWriter, T, string\), -PropertyDocumentBase.DeserializeObj\(XmlReader, string, Type\), -PropertyDocumentBase.Save\(TextWriter\), -PropertyDocumentBase.Save\(Stream\), -PropertyDocumentBase.Load\(string\), -PropertyDocumentBase.Load\(TextReader\), -PropertyDocumentBase.Load\(Stream\), -PropertyDocumentBase.SetUnit\(Unit\), -PropertyDocumentBase.AddReferenceDocument\(Document\), -PropertyDocumentBase.RemoveReferenceDocument\(Document\), -PropertyDocumentBase.FindLocal\(string\), -PropertyDocumentBase.Add\(ObjectBase\), -PropertyDocumentBase.OnPostAdd\(ObjectBase\), -PropertyDocumentBase.AddImpl\(ObjectBase\), -PropertyDocumentBase.IsTypeSupported\(Type\), -PropertyDocumentBase.OnDeserialization\(object\), -PropertyDocumentBase.CreateView\(UIntPtr\), -PropertyDocumentBase.TriggerPostMakeDocument\(PropertyDocCreateInfo\), -PropertyDocumentBase.OnPostMakeDocument\(DocCreateInfo\), -PropertyDocumentBase.GetData\(XmlNode\), -PropertyDocumentBase.SetData\(XmlNode\), -PropertyDocumentBase.Reload, -PropertyDocumentBase.UntypedProperty, -PropertyDocumentBase.PropertyType, -PropertyDocumentBase.Modified, -PropertyDocumentBase.UntypedPropertyOwner, -PropertyDocumentBase.DocumentSessionOverride, -PropertyDocumentBase.SetDocumentSessionOverride, -PropertyDocumentBase.OwnedList, -PropertyDocumentBase.OwnedCollection, -PropertyDocumentBase.CanClose, -PropertyDocumentBase.IsPropertySupport, +[PropertyDocument.Save\(TextWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.Load\(TextReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.UntypedPropertyOwner](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.FilePropertyOwner](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.PropertyType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Save\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.SerializeObj\(XmlWriter, T, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.DeserializeObj\(XmlReader, string, Type\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Save\(TextWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Save\(Stream\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Load\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Load\(TextReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Load\(Stream\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.SetUnit\(Unit\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.AddReferenceDocument\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.RemoveReferenceDocument\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Add\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OnPostAdd\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.AddImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.IsTypeSupported\(Type\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.CreateView\(UIntPtr\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.TriggerPostMakeDocument\(PropertyDocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Reload](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.PropertyType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Modified](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.UntypedPropertyOwner](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OwnedList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OwnedCollection](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.CanClose](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.IsPropertySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), Document.g\_OpenDocuments, Document.m\_unit, Document.m\_unitKernal, @@ -288,7 +289,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyBumpstopFile.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyBumpstopFile.md index 8d0a2ee073..62ed0143ba 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyBumpstopFile.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyBumpstopFile.md @@ -1,4 +1,5 @@ -# Class PropertyBumpstopFile +# Class PropertyBumpstopFile + Namespace: [VM.Managed.DAFUL.Car.Force](VM.Managed.DAFUL.Car.Force.md) Assembly: VMDCar.dll @@ -11,14 +12,14 @@ public class PropertyBumpstopFile : PropertyBumpstop, IObservableObject, IDispos #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyForce ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyForce](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [PropertyCarForce](VM.Managed.DAFUL.Car.Force.PropertyCarForce.md) ← [PropertyBumpstop](VM.Managed.DAFUL.Car.Force.PropertyBumpstop.md) ← [PropertyBumpstopFile](VM.Managed.DAFUL.Car.Force.PropertyBumpstopFile.md) @@ -34,7 +35,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -49,14 +50,14 @@ IFileProperty [PropertyBumpstop.Spline](VM.Managed.DAFUL.Car.Force.PropertyBumpstop.md\#VM\_Managed\_DAFUL\_Car\_Force\_PropertyBumpstop\_Spline), [PropertyBumpstop.ReferenceType](VM.Managed.DAFUL.Car.Force.PropertyBumpstop.md\#VM\_Managed\_DAFUL\_Car\_Force\_PropertyBumpstop\_ReferenceType), [PropertyBumpstop.ArgumentType](VM.Managed.DAFUL.Car.Force.PropertyBumpstop.md\#VM\_Managed\_DAFUL\_Car\_Force\_PropertyBumpstop\_ArgumentType), -PropertyForce.ArgumentType, -PropertyForce.ReferenceType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyForce.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[PropertyForce.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -155,7 +156,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyCarForce.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyCarForce.md index 653bfab0b4..0ea0e97d2f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyCarForce.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyCarForce.md @@ -1,4 +1,5 @@ -# Class PropertyCarForce +# Class PropertyCarForce + Namespace: [VM.Managed.DAFUL.Car.Force](VM.Managed.DAFUL.Car.Force.md) Assembly: VMDCar.dll @@ -11,14 +12,14 @@ public abstract class PropertyCarForce : PropertyForce, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyForce ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyForce](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [PropertyCarForce](VM.Managed.DAFUL.Car.Force.PropertyCarForce.md) #### Derived @@ -39,7 +40,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -49,14 +50,14 @@ IArgument #### Inherited Members -PropertyForce.ArgumentType, -PropertyForce.ReferenceType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyForce.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[PropertyForce.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -155,7 +156,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -194,11 +195,11 @@ protected PropertyCarForce(string strProxyName, string strBuildInfo) #### Parameters -`strProxyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strProxyName` string The name of proxy. -`strBuildInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBuildInfo` string The build information. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyDamper.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyDamper.md index 649a8dc875..4ac88dc214 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyDamper.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyDamper.md @@ -1,4 +1,5 @@ -# Class PropertyDamper +# Class PropertyDamper + Namespace: [VM.Managed.DAFUL.Car.Force](VM.Managed.DAFUL.Car.Force.md) Assembly: VMDCar.dll @@ -11,14 +12,14 @@ public class PropertyDamper : PropertyCarForce, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyForce ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyForce](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [PropertyCarForce](VM.Managed.DAFUL.Car.Force.PropertyCarForce.md) ← [PropertyDamper](VM.Managed.DAFUL.Car.Force.PropertyDamper.md) @@ -37,7 +38,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -47,14 +48,14 @@ IArgument #### Inherited Members -PropertyForce.ArgumentType, -PropertyForce.ReferenceType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyForce.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[PropertyForce.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -153,7 +154,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -192,11 +193,11 @@ protected PropertyDamper(string strProxyName, string strBuildInfo) #### Parameters -`strProxyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strProxyName` string The name of proxy. -`strBuildInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBuildInfo` string The build information. @@ -224,7 +225,7 @@ public Spline DampingSpline { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### ReferenceType @@ -236,7 +237,7 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyDamperDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyDamperDocument.md index d17b16b467..c493ec414b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyDamperDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyDamperDocument.md @@ -1,4 +1,5 @@ -# Class PropertyDamperDocument +# Class PropertyDamperDocument + Namespace: [VM.Managed.DAFUL.Car.Force](VM.Managed.DAFUL.Car.Force.md) Assembly: VMDCar.dll @@ -11,14 +12,14 @@ public class PropertyDamperDocument : ForceCarPropertyDocument ← +[PropertyDocumentBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs) ← +[PropertyDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs) ← [ForceCarPropertyDocument](VM.Managed.DAFUL.Car.Force.ForceCarPropertyDocument\-1.md) ← [PropertyDamperDocument](VM.Managed.DAFUL.Car.Force.PropertyDamperDocument.md) @@ -38,7 +39,7 @@ IOwned, IHasID, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IPropertyDocument, IUnitChange, IXMLFormatable, @@ -53,47 +54,47 @@ IForcePropertyDocument [ForceCarPropertyDocument.SetEnableImpl\(ObjectBase, bool\)](VM.Managed.DAFUL.Car.Force.ForceCarPropertyDocument\-1.md\#VM\_Managed\_DAFUL\_Car\_Force\_ForceCarPropertyDocument\_1\_SetEnableImpl\_VM\_Managed\_ObjectBase\_System\_Boolean\_), [ForceCarPropertyDocument.UpdateEnable\(ObjectBase, bool\)](VM.Managed.DAFUL.Car.Force.ForceCarPropertyDocument\-1.md\#VM\_Managed\_DAFUL\_Car\_Force\_ForceCarPropertyDocument\_1\_UpdateEnable\_VM\_Managed\_ObjectBase\_System\_Boolean\_), [ForceCarPropertyDocument.OnPostMakeDocument\(DocCreateInfo\)](VM.Managed.DAFUL.Car.Force.ForceCarPropertyDocument\-1.md\#VM\_Managed\_DAFUL\_Car\_Force\_ForceCarPropertyDocument\_1\_OnPostMakeDocument\_VM\_Managed\_DocCreateInfo\_), -PropertyDocument.Save\(TextWriter\), -PropertyDocument.Load\(TextReader\), -PropertyDocument.OnPostMakeDocument\(DocCreateInfo\), -PropertyDocument.Property, -PropertyDocument.UntypedProperty, -PropertyDocument.UntypedPropertyOwner, -PropertyDocument.FilePropertyOwner, -PropertyDocument.PropertyType, -PropertyDocumentBase.Save\(string\), -PropertyDocumentBase.SerializeObj\(XmlWriter, T, string\), -PropertyDocumentBase.DeserializeObj\(XmlReader, string, Type\), -PropertyDocumentBase.Save\(TextWriter\), -PropertyDocumentBase.Save\(Stream\), -PropertyDocumentBase.Load\(string\), -PropertyDocumentBase.Load\(TextReader\), -PropertyDocumentBase.Load\(Stream\), -PropertyDocumentBase.SetUnit\(Unit\), -PropertyDocumentBase.AddReferenceDocument\(Document\), -PropertyDocumentBase.RemoveReferenceDocument\(Document\), -PropertyDocumentBase.FindLocal\(string\), -PropertyDocumentBase.Add\(ObjectBase\), -PropertyDocumentBase.OnPostAdd\(ObjectBase\), -PropertyDocumentBase.AddImpl\(ObjectBase\), -PropertyDocumentBase.IsTypeSupported\(Type\), -PropertyDocumentBase.OnDeserialization\(object\), -PropertyDocumentBase.CreateView\(UIntPtr\), -PropertyDocumentBase.TriggerPostMakeDocument\(PropertyDocCreateInfo\), -PropertyDocumentBase.OnPostMakeDocument\(DocCreateInfo\), -PropertyDocumentBase.GetData\(XmlNode\), -PropertyDocumentBase.SetData\(XmlNode\), -PropertyDocumentBase.Reload, -PropertyDocumentBase.UntypedProperty, -PropertyDocumentBase.PropertyType, -PropertyDocumentBase.Modified, -PropertyDocumentBase.UntypedPropertyOwner, -PropertyDocumentBase.DocumentSessionOverride, -PropertyDocumentBase.SetDocumentSessionOverride, -PropertyDocumentBase.OwnedList, -PropertyDocumentBase.OwnedCollection, -PropertyDocumentBase.CanClose, -PropertyDocumentBase.IsPropertySupport, +[PropertyDocument.Save\(TextWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.Load\(TextReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.UntypedPropertyOwner](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.FilePropertyOwner](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.PropertyType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Save\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.SerializeObj\(XmlWriter, T, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.DeserializeObj\(XmlReader, string, Type\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Save\(TextWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Save\(Stream\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Load\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Load\(TextReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Load\(Stream\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.SetUnit\(Unit\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.AddReferenceDocument\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.RemoveReferenceDocument\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Add\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OnPostAdd\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.AddImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.IsTypeSupported\(Type\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.CreateView\(UIntPtr\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.TriggerPostMakeDocument\(PropertyDocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Reload](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.PropertyType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Modified](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.UntypedPropertyOwner](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OwnedList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OwnedCollection](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.CanClose](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.IsPropertySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), Document.g\_OpenDocuments, Document.m\_unit, Document.m\_unitKernal, @@ -288,7 +289,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyDamperFile.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyDamperFile.md index b1a81fef80..d77066cd16 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyDamperFile.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyDamperFile.md @@ -1,4 +1,5 @@ -# Class PropertyDamperFile +# Class PropertyDamperFile + Namespace: [VM.Managed.DAFUL.Car.Force](VM.Managed.DAFUL.Car.Force.md) Assembly: VMDCar.dll @@ -11,14 +12,14 @@ public class PropertyDamperFile : PropertyDamper, IObservableObject, IDisposable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyForce ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyForce](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [PropertyCarForce](VM.Managed.DAFUL.Car.Force.PropertyCarForce.md) ← [PropertyDamper](VM.Managed.DAFUL.Car.Force.PropertyDamper.md) ← [PropertyDamperFile](VM.Managed.DAFUL.Car.Force.PropertyDamperFile.md) @@ -34,7 +35,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -49,14 +50,14 @@ IFileProperty [PropertyDamper.DampingSpline](VM.Managed.DAFUL.Car.Force.PropertyDamper.md\#VM\_Managed\_DAFUL\_Car\_Force\_PropertyDamper\_DampingSpline), [PropertyDamper.ReferenceType](VM.Managed.DAFUL.Car.Force.PropertyDamper.md\#VM\_Managed\_DAFUL\_Car\_Force\_PropertyDamper\_ReferenceType), [PropertyDamper.ArgumentType](VM.Managed.DAFUL.Car.Force.PropertyDamper.md\#VM\_Managed\_DAFUL\_Car\_Force\_PropertyDamper\_ArgumentType), -PropertyForce.ArgumentType, -PropertyForce.ReferenceType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyForce.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[PropertyForce.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -155,7 +156,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyReboundstop.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyReboundstop.md index c59bbab322..e1114dc2d0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyReboundstop.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyReboundstop.md @@ -1,4 +1,5 @@ -# Class PropertyReboundstop +# Class PropertyReboundstop + Namespace: [VM.Managed.DAFUL.Car.Force](VM.Managed.DAFUL.Car.Force.md) Assembly: VMDCar.dll @@ -11,14 +12,14 @@ public class PropertyReboundstop : PropertyCarForce, IObservableObject, IDisposa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyForce ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyForce](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [PropertyCarForce](VM.Managed.DAFUL.Car.Force.PropertyCarForce.md) ← [PropertyReboundstop](VM.Managed.DAFUL.Car.Force.PropertyReboundstop.md) @@ -37,7 +38,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -47,14 +48,14 @@ IArgument #### Inherited Members -PropertyForce.ArgumentType, -PropertyForce.ReferenceType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyForce.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[PropertyForce.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -153,7 +154,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -192,11 +193,11 @@ protected PropertyReboundstop(string strProxyName, string strBuildInfo) #### Parameters -`strProxyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strProxyName` string The name of proxy. -`strBuildInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBuildInfo` string The build information. @@ -224,7 +225,7 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Spline @@ -236,7 +237,7 @@ public Spline Spline { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyReboundstopDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyReboundstopDocument.md index 8ac5893b5e..ff06fa48f1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyReboundstopDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyReboundstopDocument.md @@ -1,4 +1,5 @@ -# Class PropertyReboundstopDocument +# Class PropertyReboundstopDocument + Namespace: [VM.Managed.DAFUL.Car.Force](VM.Managed.DAFUL.Car.Force.md) Assembly: VMDCar.dll @@ -11,14 +12,14 @@ public class PropertyReboundstopDocument : ForceCarPropertyDocument ← +[PropertyDocumentBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs) ← +[PropertyDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs) ← [ForceCarPropertyDocument](VM.Managed.DAFUL.Car.Force.ForceCarPropertyDocument\-1.md) ← [PropertyReboundstopDocument](VM.Managed.DAFUL.Car.Force.PropertyReboundstopDocument.md) @@ -38,7 +39,7 @@ IOwned, IHasID, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IPropertyDocument, IUnitChange, IXMLFormatable, @@ -53,47 +54,47 @@ IForcePropertyDocument [ForceCarPropertyDocument.SetEnableImpl\(ObjectBase, bool\)](VM.Managed.DAFUL.Car.Force.ForceCarPropertyDocument\-1.md\#VM\_Managed\_DAFUL\_Car\_Force\_ForceCarPropertyDocument\_1\_SetEnableImpl\_VM\_Managed\_ObjectBase\_System\_Boolean\_), [ForceCarPropertyDocument.UpdateEnable\(ObjectBase, bool\)](VM.Managed.DAFUL.Car.Force.ForceCarPropertyDocument\-1.md\#VM\_Managed\_DAFUL\_Car\_Force\_ForceCarPropertyDocument\_1\_UpdateEnable\_VM\_Managed\_ObjectBase\_System\_Boolean\_), [ForceCarPropertyDocument.OnPostMakeDocument\(DocCreateInfo\)](VM.Managed.DAFUL.Car.Force.ForceCarPropertyDocument\-1.md\#VM\_Managed\_DAFUL\_Car\_Force\_ForceCarPropertyDocument\_1\_OnPostMakeDocument\_VM\_Managed\_DocCreateInfo\_), -PropertyDocument.Save\(TextWriter\), -PropertyDocument.Load\(TextReader\), -PropertyDocument.OnPostMakeDocument\(DocCreateInfo\), -PropertyDocument.Property, -PropertyDocument.UntypedProperty, -PropertyDocument.UntypedPropertyOwner, -PropertyDocument.FilePropertyOwner, -PropertyDocument.PropertyType, -PropertyDocumentBase.Save\(string\), -PropertyDocumentBase.SerializeObj\(XmlWriter, T, string\), -PropertyDocumentBase.DeserializeObj\(XmlReader, string, Type\), -PropertyDocumentBase.Save\(TextWriter\), -PropertyDocumentBase.Save\(Stream\), -PropertyDocumentBase.Load\(string\), -PropertyDocumentBase.Load\(TextReader\), -PropertyDocumentBase.Load\(Stream\), -PropertyDocumentBase.SetUnit\(Unit\), -PropertyDocumentBase.AddReferenceDocument\(Document\), -PropertyDocumentBase.RemoveReferenceDocument\(Document\), -PropertyDocumentBase.FindLocal\(string\), -PropertyDocumentBase.Add\(ObjectBase\), -PropertyDocumentBase.OnPostAdd\(ObjectBase\), -PropertyDocumentBase.AddImpl\(ObjectBase\), -PropertyDocumentBase.IsTypeSupported\(Type\), -PropertyDocumentBase.OnDeserialization\(object\), -PropertyDocumentBase.CreateView\(UIntPtr\), -PropertyDocumentBase.TriggerPostMakeDocument\(PropertyDocCreateInfo\), -PropertyDocumentBase.OnPostMakeDocument\(DocCreateInfo\), -PropertyDocumentBase.GetData\(XmlNode\), -PropertyDocumentBase.SetData\(XmlNode\), -PropertyDocumentBase.Reload, -PropertyDocumentBase.UntypedProperty, -PropertyDocumentBase.PropertyType, -PropertyDocumentBase.Modified, -PropertyDocumentBase.UntypedPropertyOwner, -PropertyDocumentBase.DocumentSessionOverride, -PropertyDocumentBase.SetDocumentSessionOverride, -PropertyDocumentBase.OwnedList, -PropertyDocumentBase.OwnedCollection, -PropertyDocumentBase.CanClose, -PropertyDocumentBase.IsPropertySupport, +[PropertyDocument.Save\(TextWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.Load\(TextReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.UntypedPropertyOwner](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.FilePropertyOwner](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.PropertyType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Save\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.SerializeObj\(XmlWriter, T, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.DeserializeObj\(XmlReader, string, Type\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Save\(TextWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Save\(Stream\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Load\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Load\(TextReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Load\(Stream\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.SetUnit\(Unit\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.AddReferenceDocument\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.RemoveReferenceDocument\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Add\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OnPostAdd\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.AddImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.IsTypeSupported\(Type\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.CreateView\(UIntPtr\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.TriggerPostMakeDocument\(PropertyDocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Reload](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.PropertyType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Modified](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.UntypedPropertyOwner](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OwnedList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OwnedCollection](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.CanClose](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.IsPropertySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), Document.g\_OpenDocuments, Document.m\_unit, Document.m\_unitKernal, @@ -288,7 +289,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyReboundstopFile.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyReboundstopFile.md index 5fbf63bcbb..9322fdcda8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyReboundstopFile.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertyReboundstopFile.md @@ -1,4 +1,5 @@ -# Class PropertyReboundstopFile +# Class PropertyReboundstopFile + Namespace: [VM.Managed.DAFUL.Car.Force](VM.Managed.DAFUL.Car.Force.md) Assembly: VMDCar.dll @@ -11,14 +12,14 @@ public class PropertyReboundstopFile : PropertyReboundstop, IObservableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyForce ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyForce](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [PropertyCarForce](VM.Managed.DAFUL.Car.Force.PropertyCarForce.md) ← [PropertyReboundstop](VM.Managed.DAFUL.Car.Force.PropertyReboundstop.md) ← [PropertyReboundstopFile](VM.Managed.DAFUL.Car.Force.PropertyReboundstopFile.md) @@ -34,7 +35,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -49,14 +50,14 @@ IFileProperty [PropertyReboundstop.Spline](VM.Managed.DAFUL.Car.Force.PropertyReboundstop.md\#VM\_Managed\_DAFUL\_Car\_Force\_PropertyReboundstop\_Spline), [PropertyReboundstop.ReferenceType](VM.Managed.DAFUL.Car.Force.PropertyReboundstop.md\#VM\_Managed\_DAFUL\_Car\_Force\_PropertyReboundstop\_ReferenceType), [PropertyReboundstop.ArgumentType](VM.Managed.DAFUL.Car.Force.PropertyReboundstop.md\#VM\_Managed\_DAFUL\_Car\_Force\_PropertyReboundstop\_ArgumentType), -PropertyForce.ArgumentType, -PropertyForce.ReferenceType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyForce.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[PropertyForce.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -155,7 +156,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertySpring.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertySpring.md index cc536ced75..6899ee2628 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertySpring.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertySpring.md @@ -1,4 +1,5 @@ -# Class PropertySpring +# Class PropertySpring + Namespace: [VM.Managed.DAFUL.Car.Force](VM.Managed.DAFUL.Car.Force.md) Assembly: VMDCar.dll @@ -11,14 +12,14 @@ public class PropertySpring : PropertyCarForce, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyForce ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyForce](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [PropertyCarForce](VM.Managed.DAFUL.Car.Force.PropertyCarForce.md) ← [PropertySpring](VM.Managed.DAFUL.Car.Force.PropertySpring.md) @@ -37,7 +38,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -47,14 +48,14 @@ IArgument #### Inherited Members -PropertyForce.ArgumentType, -PropertyForce.ReferenceType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyForce.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[PropertyForce.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -153,7 +154,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -192,11 +193,11 @@ protected PropertySpring(string strProxyName, string strBuildInfo) #### Parameters -`strProxyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strProxyName` string The name of proxy. -`strBuildInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBuildInfo` string The build information. @@ -224,7 +225,7 @@ public ExpressionValueVariable FreeLength { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ReferenceType @@ -236,7 +237,7 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SpringSpline @@ -248,7 +249,7 @@ public Spline SpringSpline { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertySpringDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertySpringDocument.md index dbf64fea7d..4f4055f5d3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertySpringDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertySpringDocument.md @@ -1,4 +1,5 @@ -# Class PropertySpringDocument +# Class PropertySpringDocument + Namespace: [VM.Managed.DAFUL.Car.Force](VM.Managed.DAFUL.Car.Force.md) Assembly: VMDCar.dll @@ -11,14 +12,14 @@ public class PropertySpringDocument : ForceCarPropertyDocument ← +[PropertyDocumentBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs) ← +[PropertyDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs) ← [ForceCarPropertyDocument](VM.Managed.DAFUL.Car.Force.ForceCarPropertyDocument\-1.md) ← [PropertySpringDocument](VM.Managed.DAFUL.Car.Force.PropertySpringDocument.md) @@ -38,7 +39,7 @@ IOwned, IHasID, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IPropertyDocument, IUnitChange, IXMLFormatable, @@ -53,47 +54,47 @@ IForcePropertyDocument [ForceCarPropertyDocument.SetEnableImpl\(ObjectBase, bool\)](VM.Managed.DAFUL.Car.Force.ForceCarPropertyDocument\-1.md\#VM\_Managed\_DAFUL\_Car\_Force\_ForceCarPropertyDocument\_1\_SetEnableImpl\_VM\_Managed\_ObjectBase\_System\_Boolean\_), [ForceCarPropertyDocument.UpdateEnable\(ObjectBase, bool\)](VM.Managed.DAFUL.Car.Force.ForceCarPropertyDocument\-1.md\#VM\_Managed\_DAFUL\_Car\_Force\_ForceCarPropertyDocument\_1\_UpdateEnable\_VM\_Managed\_ObjectBase\_System\_Boolean\_), [ForceCarPropertyDocument.OnPostMakeDocument\(DocCreateInfo\)](VM.Managed.DAFUL.Car.Force.ForceCarPropertyDocument\-1.md\#VM\_Managed\_DAFUL\_Car\_Force\_ForceCarPropertyDocument\_1\_OnPostMakeDocument\_VM\_Managed\_DocCreateInfo\_), -PropertyDocument.Save\(TextWriter\), -PropertyDocument.Load\(TextReader\), -PropertyDocument.OnPostMakeDocument\(DocCreateInfo\), -PropertyDocument.Property, -PropertyDocument.UntypedProperty, -PropertyDocument.UntypedPropertyOwner, -PropertyDocument.FilePropertyOwner, -PropertyDocument.PropertyType, -PropertyDocumentBase.Save\(string\), -PropertyDocumentBase.SerializeObj\(XmlWriter, T, string\), -PropertyDocumentBase.DeserializeObj\(XmlReader, string, Type\), -PropertyDocumentBase.Save\(TextWriter\), -PropertyDocumentBase.Save\(Stream\), -PropertyDocumentBase.Load\(string\), -PropertyDocumentBase.Load\(TextReader\), -PropertyDocumentBase.Load\(Stream\), -PropertyDocumentBase.SetUnit\(Unit\), -PropertyDocumentBase.AddReferenceDocument\(Document\), -PropertyDocumentBase.RemoveReferenceDocument\(Document\), -PropertyDocumentBase.FindLocal\(string\), -PropertyDocumentBase.Add\(ObjectBase\), -PropertyDocumentBase.OnPostAdd\(ObjectBase\), -PropertyDocumentBase.AddImpl\(ObjectBase\), -PropertyDocumentBase.IsTypeSupported\(Type\), -PropertyDocumentBase.OnDeserialization\(object\), -PropertyDocumentBase.CreateView\(UIntPtr\), -PropertyDocumentBase.TriggerPostMakeDocument\(PropertyDocCreateInfo\), -PropertyDocumentBase.OnPostMakeDocument\(DocCreateInfo\), -PropertyDocumentBase.GetData\(XmlNode\), -PropertyDocumentBase.SetData\(XmlNode\), -PropertyDocumentBase.Reload, -PropertyDocumentBase.UntypedProperty, -PropertyDocumentBase.PropertyType, -PropertyDocumentBase.Modified, -PropertyDocumentBase.UntypedPropertyOwner, -PropertyDocumentBase.DocumentSessionOverride, -PropertyDocumentBase.SetDocumentSessionOverride, -PropertyDocumentBase.OwnedList, -PropertyDocumentBase.OwnedCollection, -PropertyDocumentBase.CanClose, -PropertyDocumentBase.IsPropertySupport, +[PropertyDocument.Save\(TextWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.Load\(TextReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.UntypedPropertyOwner](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.FilePropertyOwner](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.PropertyType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Save\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.SerializeObj\(XmlWriter, T, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.DeserializeObj\(XmlReader, string, Type\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Save\(TextWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Save\(Stream\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Load\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Load\(TextReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Load\(Stream\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.SetUnit\(Unit\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.AddReferenceDocument\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.RemoveReferenceDocument\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Add\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OnPostAdd\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.AddImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.IsTypeSupported\(Type\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.CreateView\(UIntPtr\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.TriggerPostMakeDocument\(PropertyDocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Reload](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.PropertyType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Modified](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.UntypedPropertyOwner](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OwnedList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OwnedCollection](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.CanClose](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.IsPropertySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), Document.g\_OpenDocuments, Document.m\_unit, Document.m\_unitKernal, @@ -288,7 +289,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertySpringFile.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertySpringFile.md index 5afee72046..7cfb4e5453 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertySpringFile.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.PropertySpringFile.md @@ -1,4 +1,5 @@ -# Class PropertySpringFile +# Class PropertySpringFile + Namespace: [VM.Managed.DAFUL.Car.Force](VM.Managed.DAFUL.Car.Force.md) Assembly: VMDCar.dll @@ -11,14 +12,14 @@ public class PropertySpringFile : PropertySpring, IObservableObject, IDisposable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyForce ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyForce](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [PropertyCarForce](VM.Managed.DAFUL.Car.Force.PropertyCarForce.md) ← [PropertySpring](VM.Managed.DAFUL.Car.Force.PropertySpring.md) ← [PropertySpringFile](VM.Managed.DAFUL.Car.Force.PropertySpringFile.md) @@ -34,7 +35,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -50,14 +51,14 @@ IFileProperty [PropertySpring.FreeLength](VM.Managed.DAFUL.Car.Force.PropertySpring.md\#VM\_Managed\_DAFUL\_Car\_Force\_PropertySpring\_FreeLength), [PropertySpring.ReferenceType](VM.Managed.DAFUL.Car.Force.PropertySpring.md\#VM\_Managed\_DAFUL\_Car\_Force\_PropertySpring\_ReferenceType), [PropertySpring.ArgumentType](VM.Managed.DAFUL.Car.Force.PropertySpring.md\#VM\_Managed\_DAFUL\_Car\_Force\_PropertySpring\_ArgumentType), -PropertyForce.ArgumentType, -PropertyForce.ReferenceType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyForce.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[PropertyForce.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -156,7 +157,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.Reboundstop.MethodType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.Reboundstop.MethodType.md index 88ed69025c..cc733d7703 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.Reboundstop.MethodType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.Reboundstop.MethodType.md @@ -1,4 +1,5 @@ -# Enum Reboundstop.MethodType +# Enum Reboundstop.MethodType + Namespace: [VM.Managed.DAFUL.Car.Force](VM.Managed.DAFUL.Car.Force.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.Reboundstop.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.Reboundstop.md index 1df5b81024..6097f9df9f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.Reboundstop.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.Reboundstop.md @@ -1,4 +1,5 @@ -# Class Reboundstop +# Class Reboundstop + Namespace: [VM.Managed.DAFUL.Car.Force](VM.Managed.DAFUL.Car.Force.md) Assembly: VMDCar.dll @@ -11,16 +12,16 @@ public class Reboundstop : ForceCar, IObservableObject, IDi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← -Force ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← +[Force](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [ForceCar](VM.Managed.DAFUL.Car.Force.ForceCar\-1.md) ← [Reboundstop](VM.Managed.DAFUL.Car.Force.Reboundstop.md) @@ -31,7 +32,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -75,69 +76,69 @@ ITemplateObject [ForceCar.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.Car.Force.ForceCar\-1.md\#VM\_Managed\_DAFUL\_Car\_Force\_ForceCar\_1\_Initialize\_VM\_Unit\_ConvertFactor\_), [ForceCar.WriteTemplateImpl\(XmlWriter\)](VM.Managed.DAFUL.Car.Force.ForceCar\-1.md\#VM\_Managed\_DAFUL\_Car\_Force\_ForceCar\_1\_WriteTemplateImpl\_System\_Xml\_XmlWriter\_), [ForceCar.ReadTemplateImpl\(XmlReader\)](VM.Managed.DAFUL.Car.Force.ForceCar\-1.md\#VM\_Managed\_DAFUL\_Car\_Force\_ForceCar\_1\_ReadTemplateImpl\_System\_Xml\_XmlReader\_), -Force.Initialize\(Unit.ConvertFactor\), -Force.WriteMarker\(XmlWriter, Marker, string\), -Force.ReadMarker\(XmlReader, Marker, string\), -Force.UseForSimulationScenario, -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Force.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.WriteMarker\(XmlWriter, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.ReadMarker\(XmlReader, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.UseForSimulationScenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -236,7 +237,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -275,7 +276,7 @@ public Reboundstop(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -289,7 +290,7 @@ protected override bool CanWriteToOutFileImpl { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Diameter @@ -301,7 +302,7 @@ public double Diameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GeomColor @@ -313,7 +314,7 @@ public string GeomColor { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### MethodCoef @@ -325,7 +326,7 @@ public ExpressionValueVariable MethodCoef { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MethodTypes @@ -363,7 +364,7 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -391,7 +392,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -405,7 +406,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.Spring.MethodType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.Spring.MethodType.md index e97020bb42..572a3cdda0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.Spring.MethodType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.Spring.MethodType.md @@ -1,4 +1,5 @@ -# Enum Spring.MethodType +# Enum Spring.MethodType + Namespace: [VM.Managed.DAFUL.Car.Force](VM.Managed.DAFUL.Car.Force.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.Spring.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.Spring.md index fd0bfc1dda..740bc2b4d5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.Spring.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.Spring.md @@ -1,4 +1,5 @@ -# Class Spring +# Class Spring + Namespace: [VM.Managed.DAFUL.Car.Force](VM.Managed.DAFUL.Car.Force.md) Assembly: VMDCar.dll @@ -11,16 +12,16 @@ public class Spring : ForceCar, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← -Force ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← +[Force](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [ForceCar](VM.Managed.DAFUL.Car.Force.ForceCar\-1.md) ← [Spring](VM.Managed.DAFUL.Car.Force.Spring.md) @@ -31,7 +32,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -75,69 +76,69 @@ ITemplateObject [ForceCar.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.Car.Force.ForceCar\-1.md\#VM\_Managed\_DAFUL\_Car\_Force\_ForceCar\_1\_Initialize\_VM\_Unit\_ConvertFactor\_), [ForceCar.WriteTemplateImpl\(XmlWriter\)](VM.Managed.DAFUL.Car.Force.ForceCar\-1.md\#VM\_Managed\_DAFUL\_Car\_Force\_ForceCar\_1\_WriteTemplateImpl\_System\_Xml\_XmlWriter\_), [ForceCar.ReadTemplateImpl\(XmlReader\)](VM.Managed.DAFUL.Car.Force.ForceCar\-1.md\#VM\_Managed\_DAFUL\_Car\_Force\_ForceCar\_1\_ReadTemplateImpl\_System\_Xml\_XmlReader\_), -Force.Initialize\(Unit.ConvertFactor\), -Force.WriteMarker\(XmlWriter, Marker, string\), -Force.ReadMarker\(XmlReader, Marker, string\), -Force.UseForSimulationScenario, -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Force.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.WriteMarker\(XmlWriter, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.ReadMarker\(XmlReader, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.UseForSimulationScenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -236,7 +237,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -275,7 +276,7 @@ public Spring(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -291,7 +292,7 @@ public string GeomColor { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### InstallMethod @@ -303,7 +304,7 @@ public ExpressionValueVariable InstallMethod { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### InstallMethodType @@ -339,7 +340,7 @@ public int SpringCoilCount { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### SpringDiameter @@ -351,7 +352,7 @@ public double SpringDiameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -365,7 +366,7 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -393,7 +394,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -407,7 +408,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.md index c98cdd2bc0..5e42090ebe 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Force.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Car.Force +# Namespace VM.Managed.DAFUL.Car.Force + ### Classes @@ -88,11 +89,11 @@ The spring force class. The spring force installation type - [Bumpstop.MethodType](VM.Managed.DAFUL.Car.Force.Bumpstop.MethodType.md) - -Method type - [Reboundstop.MethodType](VM.Managed.DAFUL.Car.Force.Reboundstop.MethodType.md) The method type + [Bumpstop.MethodType](VM.Managed.DAFUL.Car.Force.Bumpstop.MethodType.md) + +Method type + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FourPostAnalysisBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FourPostAnalysisBase.md index 3f982a9a6b..aab593b876 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FourPostAnalysisBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FourPostAnalysisBase.md @@ -1,4 +1,5 @@ -# Class FourPostAnalysisBase +# Class FourPostAnalysisBase + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDFullCar.dll @@ -11,8 +12,8 @@ public abstract class FourPostAnalysisBase : AnalysisBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -AnalysisBase ← +object ← +[AnalysisBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs) ← [FourPostAnalysisBase](VM.Managed.DAFUL.Car.FourPostAnalysisBase.md) #### Derived @@ -21,14 +22,14 @@ AnalysisBase ← #### Inherited Members -AnalysisBase.m\_pLnkContainer, -AnalysisBase.SetModified\(\), -AnalysisBase.GetTestRigMotionUSUBArgument\(string\[\]\), -AnalysisBase.GetConvertUnit\(LengthUnitType\), -AnalysisBase.GetGravity\(\), -AnalysisBase.GetConvertUnit\(VelocityUnitType\), -AnalysisBase.GetConvertUnit\(AccelerationUnitType\), -AnalysisBase.IsSim +[AnalysisBase.m\_pLnkContainer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.SetModified\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetTestRigMotionUSUBArgument\(string\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetConvertUnit\(LengthUnitType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetGravity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetConvertUnit\(VelocityUnitType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetConvertUnit\(AccelerationUnitType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.IsSim](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs) #### Extension Methods @@ -72,7 +73,7 @@ protected void GetTestRigMotionUSUBArgumentCore(string strAnaType, AnalysisFourP #### Parameters -`strAnaType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strAnaType` string Type of the STR ana. @@ -80,7 +81,7 @@ Type of the STR ana. The info. -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The ar parameter. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FourPostAnalysisConfigurationBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FourPostAnalysisConfigurationBase.md index 20d4a48569..81fdfbc461 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FourPostAnalysisConfigurationBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FourPostAnalysisConfigurationBase.md @@ -1,4 +1,5 @@ -# Class FourPostAnalysisConfigurationBase +# Class FourPostAnalysisConfigurationBase + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDFullCar.dll @@ -11,11 +12,11 @@ public abstract class FourPostAnalysisConfigurationBase : Configuration, IObserv #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [FourPostAnalysisConfigurationBase](VM.Managed.DAFUL.Car.FourPostAnalysisConfigurationBase.md) #### Derived @@ -41,95 +42,98 @@ IHasRoadFile, #### Inherited Members -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -173,7 +177,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -214,7 +218,7 @@ public abstract AnalysisBase Analysis { get; set; } #### Property Value - AnalysisBase + [AnalysisBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs) ### AnalysisName @@ -226,7 +230,7 @@ protected abstract string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType @@ -250,7 +254,7 @@ public string RoadDataPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RoadRefFrameName @@ -262,7 +266,7 @@ public string RoadRefFrameName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RoadReferencePosition diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FourPostAnalysisType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FourPostAnalysisType.md index 6c54601b72..e76ca643fc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FourPostAnalysisType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FourPostAnalysisType.md @@ -1,4 +1,5 @@ -# Enum FourPostAnalysisType +# Enum FourPostAnalysisType + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDFullCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FourPostRideSimulationConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FourPostRideSimulationConfiguration.md index 13cad9b358..a35b2aa616 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FourPostRideSimulationConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FourPostRideSimulationConfiguration.md @@ -1,4 +1,5 @@ -# Class FourPostRideSimulationConfiguration +# Class FourPostRideSimulationConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDFullCar.dll @@ -11,11 +12,11 @@ public class FourPostRideSimulationConfiguration : FourPostAnalysisConfiguration #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [FourPostAnalysisConfigurationBase](VM.Managed.DAFUL.Car.FourPostAnalysisConfigurationBase.md) ← [FourPostRideSimulationConfiguration](VM.Managed.DAFUL.Car.FourPostRideSimulationConfiguration.md) @@ -43,95 +44,98 @@ IHasRoadFile, [FourPostAnalysisConfigurationBase.RoadDataPath](VM.Managed.DAFUL.Car.FourPostAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FourPostAnalysisConfigurationBase\_RoadDataPath), [FourPostAnalysisConfigurationBase.RoadRefFrameName](VM.Managed.DAFUL.Car.FourPostAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FourPostAnalysisConfigurationBase\_RoadRefFrameName), [FourPostAnalysisConfigurationBase.RoadReferencePosition](VM.Managed.DAFUL.Car.FourPostAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FourPostAnalysisConfigurationBase\_RoadReferencePosition), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -175,7 +179,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -230,7 +234,7 @@ public override AnalysisBase Analysis { get; set; } #### Property Value - AnalysisBase + [AnalysisBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs) ### AnalysisName @@ -242,7 +246,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FourPostTestRigDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FourPostTestRigDocument.md index ecd96861b3..ec6f3252bd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FourPostTestRigDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FourPostTestRigDocument.md @@ -1,4 +1,5 @@ -# Class FourPostTestRigDocument +# Class FourPostTestRigDocument + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDFullCar.dll @@ -11,18 +12,18 @@ public class FourPostTestRigDocument : FullCarTestRigDocument, IObservableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← -TestRigDocumentBase ← -FullCarTestRigDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← +[TestRigDocumentBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs) ← +[FullCarTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs) ← [FourPostTestRigDocument](VM.Managed.DAFUL.Car.FourPostTestRigDocument.md) #### Implements @@ -34,7 +35,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -57,151 +58,151 @@ IHasMinorRole #### Inherited Members -FullCarTestRigDocument.InitializeCategoryInfo\(string\), -FullCarTestRigDocument.GetSimulationConfigurationType\(\), -FullCarTestRigDocument.GetAnalysisFromSimulationConfigurations\(FullCarAnalysisType\), -FullCarTestRigDocument.GetFullCarConfigurationFromSimulationConfigurations\(FullCarAnalysisType\), -FullCarTestRigDocument.ReplaceAssembly\(string\), -FullCarTestRigDocument.ReplaceOneSubsystem\(string, string\), -FullCarTestRigDocument.ReplaceAssemblyCore\(DocCreateFullCarAnalysisInfoExceptWheel, XmlDocument\), -FullCarTestRigDocument.LinkRequestDestroying\(object, LinkEventArgs\), -FullCarTestRigDocument.SetTemplateInfoImpl\(DocFromTemplateInfo\), -FullCarTestRigDocument.FindCategory\(string\), -FullCarTestRigDocument.SetPowerSteering\(bool\), -FullCarTestRigDocument.InitializeSimParam\(\), -FullCarTestRigDocument.InitializeInterface\(\), -FullCarTestRigDocument.ClearDocument\(\), -FullCarTestRigDocument.SaveTemplateBasedXml\(XmlWriter\), -FullCarTestRigDocument.SaveTemplateBasedXmlCore\(DocCreateFullCarAnalysisInfoExceptWheel, XmlWriter\), -FullCarTestRigDocument.LoadTemplateBasedXml\(XmlReader\), -FullCarTestRigDocument.LoadTemplateBasedXmlCore\(XmlReader, string, Type\), -FullCarTestRigDocument.InitializeAssemblyMember\(\), -FullCarTestRigDocument.InitialCategories, -FullCarTestRigDocument.Interfaces, -FullCarTestRigDocument.MinorRoleType, -FullCarTestRigDocument.SteeringRatio, -FullCarTestRigDocument.RackRatio, -FullCarTestRigDocument.MaxFrontBrakeTorque, -FullCarTestRigDocument.MaxRearBrakeTorque, -FullCarTestRigDocument.BrakeBias, -FullCarTestRigDocument.IsPowerSteer, -FullCarTestRigDocument.SimulationScenarioTypeName, -FullCarTestRigDocument.ApplyInitialVelocityImpl, -FullCarTestRigDocument.InitialVelocityImpl, -TestRigDocumentBase.PostOpenDocument\(\), -TestRigDocumentBase.ReplaceAssembly\(string\), -TestRigDocumentBase.SetTemplateInfoImpl\(DocFromTemplateInfo\), -TestRigDocumentBase.OnDeserialization\(object\), -TestRigDocumentBase.AddSubSystem\(string\), -TestRigDocumentBase.AddSubSystemForOther\(string\), -TestRigDocumentBase.AddErrorMessageToOutputWindow\(string\), -TestRigDocumentBase.InitializeInterfaceTable\(\), -TestRigDocumentBase.ReSetInterfacetable\(ObjectBase, ObjectBase\), -TestRigDocumentBase.BindInterfaces\(ObjectBase, ObjectBase\), -TestRigDocumentBase.UseAssembly, -TestRigDocumentBase.UpdateReInterface, -TestRigDocumentBase.KinematicGroupName, -TestRigDocumentBase.ComplianceGroupName, -TestRigDocumentBase.DrivelineActiveGroupName, -TestRigDocumentBase.DrivelineInactiveGroupName, -TestRigDocumentBase.UseCompliance, -TestRigDocumentBase.UseDriveLineActiveFront, -TestRigDocumentBase.UseDriveLineActiveRear, -TestRigDocumentBase.SkipBindInterfaceWhenOpen, -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[FullCarTestRigDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.GetAnalysisFromSimulationConfigurations\(FullCarAnalysisType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.GetFullCarConfigurationFromSimulationConfigurations\(FullCarAnalysisType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.ReplaceAssembly\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.ReplaceOneSubsystem\(string, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.ReplaceAssemblyCore\(DocCreateFullCarAnalysisInfoExceptWheel, XmlDocument\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.SetTemplateInfoImpl\(DocFromTemplateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.SetPowerSteering\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.SaveTemplateBasedXmlCore\(DocCreateFullCarAnalysisInfoExceptWheel, XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.LoadTemplateBasedXmlCore\(XmlReader, string, Type\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.InitializeAssemblyMember\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.MinorRoleType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.SteeringRatio](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.RackRatio](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.MaxFrontBrakeTorque](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.MaxRearBrakeTorque](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.BrakeBias](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.IsPowerSteer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[TestRigDocumentBase.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.ReplaceAssembly\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.SetTemplateInfoImpl\(DocFromTemplateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.AddSubSystem\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.AddSubSystemForOther\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.AddErrorMessageToOutputWindow\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.InitializeInterfaceTable\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.ReSetInterfacetable\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.BindInterfaces\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.UseAssembly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.UpdateReInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.KinematicGroupName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.ComplianceGroupName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.DrivelineActiveGroupName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.DrivelineInactiveGroupName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.UseCompliance](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.UseDriveLineActiveFront](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.UseDriveLineActiveRear](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -296,8 +297,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -308,9 +307,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -324,12 +323,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -607,7 +603,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -638,7 +634,7 @@ public FourPostTestRigDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -654,7 +650,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### SimulationScenarioTypeName @@ -666,7 +662,7 @@ public override string SimulationScenarioTypeName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -680,13 +676,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The fullname of type. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The category. @@ -706,7 +702,7 @@ The type. #### Returns - AnalysisBase + [AnalysisBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs) ### GetFourPostConfigurationFromSimulationConfigurations\(FourPostAnalysisType\) @@ -736,7 +732,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the STR category. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FourPostVibrationSimulationConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FourPostVibrationSimulationConfiguration.md index 6804af4bca..a259c8b730 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FourPostVibrationSimulationConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FourPostVibrationSimulationConfiguration.md @@ -1,4 +1,5 @@ -# Class FourPostVibrationSimulationConfiguration +# Class FourPostVibrationSimulationConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDFullCar.dll @@ -11,11 +12,11 @@ public class FourPostVibrationSimulationConfiguration : FourPostAnalysisConfigur #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [FourPostAnalysisConfigurationBase](VM.Managed.DAFUL.Car.FourPostAnalysisConfigurationBase.md) ← [FourPostVibrationSimulationConfiguration](VM.Managed.DAFUL.Car.FourPostVibrationSimulationConfiguration.md) @@ -43,95 +44,98 @@ IHasRoadFile, [FourPostAnalysisConfigurationBase.RoadDataPath](VM.Managed.DAFUL.Car.FourPostAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FourPostAnalysisConfigurationBase\_RoadDataPath), [FourPostAnalysisConfigurationBase.RoadRefFrameName](VM.Managed.DAFUL.Car.FourPostAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FourPostAnalysisConfigurationBase\_RoadRefFrameName), [FourPostAnalysisConfigurationBase.RoadReferencePosition](VM.Managed.DAFUL.Car.FourPostAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FourPostAnalysisConfigurationBase\_RoadReferencePosition), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -175,7 +179,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -230,7 +234,7 @@ public override AnalysisBase Analysis { get; set; } #### Property Value - AnalysisBase + [AnalysisBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs) ### AnalysisName @@ -242,7 +246,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FullCarAnalysisBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FullCarAnalysisBase.md index 8a0c2f5cf6..5b68b1b2e1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FullCarAnalysisBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FullCarAnalysisBase.md @@ -1,4 +1,5 @@ -# Class FullCarAnalysisBase +# Class FullCarAnalysisBase + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public abstract class FullCarAnalysisBase : AnalysisBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [FullCarAnalysisBase](VM.Managed.DAFUL.Car.FullCarAnalysisBase.md) @@ -88,7 +89,7 @@ public bool IsQuasiStaticStraightLineSetup { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RoadFile @@ -100,7 +101,7 @@ public string RoadFile { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TireRadiusPosition @@ -112,5 +113,5 @@ public abstract int TireRadiusPosition { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md index 08db1983d3..ce27e7ce9a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md @@ -1,4 +1,5 @@ -# Class FullCarAnalysisConfigurationBase +# Class FullCarAnalysisConfigurationBase + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public abstract class FullCarAnalysisConfigurationBase : Configuration, IObserva #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [FullCarAnalysisConfigurationBase](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md) #### Derived @@ -58,95 +59,98 @@ ILinkUpdateOwner #### Inherited Members -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -190,7 +194,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -229,7 +233,7 @@ protected LinkAttribute __a$_a_VM.Models.Pre.LinkAttribute #### Field Value - LinkAttribute + [LinkAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre.Aspects/Attributes/LinkAttribute.cs) ### \_\_a$\_a\_VM.Models.Pre.LinkUpdateAttribute @@ -239,7 +243,7 @@ protected LinkUpdateAttribute __a$_a_VM.Models.Pre.LinkUpdateAttribute #### Field Value - LinkUpdateAttribute + [LinkUpdateAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre.Aspects/Attributes/LinkUpdateAttribute.cs) ## Properties @@ -265,7 +269,7 @@ protected abstract string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType @@ -301,7 +305,7 @@ public string RoadDataPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RoadOffset @@ -325,7 +329,7 @@ public string RoadRefFrameName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RoadReferencePosition @@ -349,7 +353,7 @@ public ExpressionValueVariable RoadRotationAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -363,7 +367,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FullCarAnalysisType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FullCarAnalysisType.md index 5c283dd29e..36aa5702d7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FullCarAnalysisType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FullCarAnalysisType.md @@ -1,4 +1,5 @@ -# Enum FullCarAnalysisType +# Enum FullCarAnalysisType + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FullCarTestRigDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FullCarTestRigDocument.md index 36869cfc93..de74610e39 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FullCarTestRigDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.FullCarTestRigDocument.md @@ -1,4 +1,5 @@ -# Class FullCarTestRigDocument +# Class FullCarTestRigDocument + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,16 +12,16 @@ public class FullCarTestRigDocument : TestRigDocumentBase, IObservableObject, ID #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← [TestRigDocumentBase](VM.Managed.DAFUL.Car.TestRigDocumentBase.md) ← [FullCarTestRigDocument](VM.Managed.DAFUL.Car.FullCarTestRigDocument.md) @@ -33,7 +34,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -76,100 +77,100 @@ IInterfaceTable, [TestRigDocumentBase.UseDriveLineActiveFront](VM.Managed.DAFUL.Car.TestRigDocumentBase.md\#VM\_Managed\_DAFUL\_Car\_TestRigDocumentBase\_UseDriveLineActiveFront), [TestRigDocumentBase.UseDriveLineActiveRear](VM.Managed.DAFUL.Car.TestRigDocumentBase.md\#VM\_Managed\_DAFUL\_Car\_TestRigDocumentBase\_UseDriveLineActiveRear), [TestRigDocumentBase.SkipBindInterfaceWhenOpen](VM.Managed.DAFUL.Car.TestRigDocumentBase.md\#VM\_Managed\_DAFUL\_Car\_TestRigDocumentBase\_SkipBindInterfaceWhenOpen), -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -264,8 +265,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -276,9 +275,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -292,12 +291,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -575,7 +571,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -606,7 +602,7 @@ protected FullCarTestRigDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -622,7 +618,7 @@ protected override bool ApplyInitialVelocityImpl { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### BrakeBias @@ -634,7 +630,7 @@ public ExpressionValueVariable BrakeBias { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### InitialCategories @@ -646,7 +642,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### InitialVelocityImpl @@ -658,7 +654,7 @@ protected override double InitialVelocityImpl { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Interfaces @@ -670,7 +666,7 @@ protected override InterfaceManager Interfaces { get; } #### Property Value - InterfaceManager + [InterfaceManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InterfaceManager.cs) ### IsPowerSteer @@ -682,7 +678,7 @@ public bool IsPowerSteer { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MaxFrontBrakeTorque @@ -694,7 +690,7 @@ public ExpressionValueVariable MaxFrontBrakeTorque { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MaxRearBrakeTorque @@ -706,7 +702,7 @@ public ExpressionValueVariable MaxRearBrakeTorque { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MinorRoleType @@ -730,7 +726,7 @@ public ExpressionValueVariable RackRatio { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### SimulationScenarioTypeName @@ -742,7 +738,7 @@ public override string SimulationScenarioTypeName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SteeringRatio @@ -754,7 +750,7 @@ public ExpressionValueVariable SteeringRatio { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -776,13 +772,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The fullname of type. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The category. @@ -832,7 +828,7 @@ public override string GetSimulationConfigurationType() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The type of the simulation configuration. @@ -854,7 +850,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the STR category. @@ -884,7 +880,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -902,7 +898,7 @@ protected override void LoadTemplateBasedXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -916,21 +912,21 @@ protected void LoadTemplateBasedXmlCore(XmlReader reader, string strInfo, Type t #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. -`strInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInfo` string The string information. -`typeInfo` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`typeInfo` Type The type information. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException ### ReplaceAssembly\(string\) @@ -942,7 +938,7 @@ public override void ReplaceAssembly(string strAssemblyInfo) #### Parameters -`strAssemblyInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strAssemblyInfo` string The assembly info. @@ -960,7 +956,7 @@ protected void ReplaceAssemblyCore(DocCreateFullCarAnalysisInfoExceptWheel docCr The document create car analysis information. -`xmlDoc` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDoc` XmlDocument The XML document. @@ -974,11 +970,11 @@ public void ReplaceOneSubsystem(string strOldSubsystem, string strNewSubsystem) #### Parameters -`strOldSubsystem` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOldSubsystem` string The old subsystem. -`strNewSubsystem` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strNewSubsystem` string The new subsystem. @@ -992,7 +988,7 @@ protected override void SaveTemplateBasedXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. @@ -1010,13 +1006,13 @@ protected void SaveTemplateBasedXmlCore(DocCreateFullCarAnalysisInfoExceptWheel The information. -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception ### SetPowerSteering\(bool\) @@ -1028,7 +1024,7 @@ public void SetPowerSteering(bool bIsPowerSteering) #### Parameters -`bIsPowerSteering` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bIsPowerSteering` bool The flag. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.IHasMinorRole.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.IHasMinorRole.md index f7e94e3f66..2779d893a0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.IHasMinorRole.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.IHasMinorRole.md @@ -1,4 +1,5 @@ -# Interface IHasMinorRole +# Interface IHasMinorRole + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.IHasOutputChannel.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.IHasOutputChannel.md index 3e82c37b58..5ee4827636 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.IHasOutputChannel.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.IHasOutputChannel.md @@ -1,4 +1,5 @@ -# Interface IHasOutputChannel +# Interface IHasOutputChannel + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDFullCar.dll @@ -41,11 +42,11 @@ List GetTotalIndex(int[] input) #### Parameters -`input` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`input` int\[\] The input. #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> + List diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.IHasRoadFile.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.IHasRoadFile.md index cfc76b8195..5be2fd4433 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.IHasRoadFile.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.IHasRoadFile.md @@ -1,4 +1,5 @@ -# Interface IHasRoadFile +# Interface IHasRoadFile + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -27,7 +28,7 @@ string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Offset @@ -51,7 +52,7 @@ string ReferenceBodyFullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RoadDataPath @@ -63,7 +64,7 @@ string RoadDataPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RoadRefFrameName @@ -75,7 +76,7 @@ string RoadRefFrameName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RoadReferencePosition @@ -99,5 +100,5 @@ double RotationAngle { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ISOLaneChangeConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ISOLaneChangeConfiguration.md index 5783789e7e..126cbf5db4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ISOLaneChangeConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ISOLaneChangeConfiguration.md @@ -1,4 +1,5 @@ -# Class ISOLaneChangeConfiguration +# Class ISOLaneChangeConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public class ISOLaneChangeConfiguration : FullCarAnalysisConfigurationBase, IObs #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [FullCarAnalysisConfigurationBase](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md) ← [ISOLaneChangeConfiguration](VM.Managed.DAFUL.Car.ISOLaneChangeConfiguration.md) @@ -50,95 +51,98 @@ ILinkUpdateOwner [FullCarAnalysisConfigurationBase.RoadReferencePosition](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadReferencePosition), [FullCarAnalysisConfigurationBase.RoadRotationAngle](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadRotationAngle), [FullCarAnalysisConfigurationBase.RoadOffset](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadOffset), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -182,7 +186,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -249,7 +253,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ImpulseSteerConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ImpulseSteerConfiguration.md index f2c5f1be56..560c626c27 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ImpulseSteerConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ImpulseSteerConfiguration.md @@ -1,4 +1,5 @@ -# Class ImpulseSteerConfiguration +# Class ImpulseSteerConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public class ImpulseSteerConfiguration : FullCarAnalysisConfigurationBase, IObse #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [FullCarAnalysisConfigurationBase](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md) ← [ImpulseSteerConfiguration](VM.Managed.DAFUL.Car.ImpulseSteerConfiguration.md) @@ -50,95 +51,98 @@ ILinkUpdateOwner [FullCarAnalysisConfigurationBase.RoadReferencePosition](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadReferencePosition), [FullCarAnalysisConfigurationBase.RoadRotationAngle](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadRotationAngle), [FullCarAnalysisConfigurationBase.RoadOffset](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadOffset), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -182,7 +186,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -249,7 +253,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.InterfaceManagerForCar.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.InterfaceManagerForCar.md index b98c76af51..4b50fcfa2c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.InterfaceManagerForCar.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.InterfaceManagerForCar.md @@ -1,4 +1,5 @@ -# Class InterfaceManagerForCar +# Class InterfaceManagerForCar + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,12 +12,12 @@ public class InterfaceManagerForCar : InterfaceManager, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -InterfaceManager ← +[InterfaceManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InterfaceManager.cs) ← [InterfaceManagerForCar](VM.Managed.DAFUL.Car.InterfaceManagerForCar.md) #### Implements @@ -33,25 +34,25 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer #### Inherited Members -InterfaceManager.AddInterface\(IInterface\), -InterfaceManager.RemoveInterface\(IInterface\), -InterfaceManager.Add\(IInterface\), -InterfaceManager.IsInterface\(IInterface\), -InterfaceManager.MakeXml\(object\), -InterfaceManager.GetInterfaceNames\(IInterface\), -InterfaceManager.GetInterfaceNames\(string\), -InterfaceManager.SetInterfaceNames\(IInterface, ICollection\), -InterfaceManager.SetInterfaceNames\(IInterface, ArraySegment\), -InterfaceManager.LinkRequestUpdate\(object, LinkEventArgs\), -InterfaceManager.GetNumInterfaceObject\(\), -InterfaceManager.IsExternable, -InterfaceManager.InterfaceInfos, -InterfaceManager.Interfaces, +[InterfaceManager.AddInterface\(IInterface\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InterfaceManager.cs), +[InterfaceManager.RemoveInterface\(IInterface\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InterfaceManager.cs), +[InterfaceManager.Add\(IInterface\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InterfaceManager.cs), +[InterfaceManager.IsInterface\(IInterface\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InterfaceManager.cs), +[InterfaceManager.MakeXml\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InterfaceManager.cs), +[InterfaceManager.GetInterfaceNames\(IInterface\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InterfaceManager.cs), +[InterfaceManager.GetInterfaceNames\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InterfaceManager.cs), +[InterfaceManager.SetInterfaceNames\(IInterface, ICollection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InterfaceManager.cs), +[InterfaceManager.SetInterfaceNames\(IInterface, ArraySegment\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InterfaceManager.cs), +[InterfaceManager.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InterfaceManager.cs), +[InterfaceManager.GetNumInterfaceObject\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InterfaceManager.cs), +[InterfaceManager.IsExternable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InterfaceManager.cs), +[InterfaceManager.InterfaceInfos](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InterfaceManager.cs), +[InterfaceManager.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InterfaceManager.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -144,7 +145,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -183,7 +184,7 @@ public InterfaceManagerForCar(InterfaceManager itfMgr) #### Parameters -`itfMgr` InterfaceManager +`itfMgr` [InterfaceManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InterfaceManager.cs) The itf MGR. @@ -223,7 +224,7 @@ The role. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RemoveInterface\(IInterface\) @@ -259,5 +260,5 @@ The role. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.JudderSimulationConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.JudderSimulationConfiguration.md index a6c47acf92..2006bac80a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.JudderSimulationConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.JudderSimulationConfiguration.md @@ -1,4 +1,5 @@ -# Class JudderSimulationConfiguration +# Class JudderSimulationConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDFullCar.dll @@ -11,11 +12,11 @@ public class JudderSimulationConfiguration : ShimmyJudderAnalysisConfigurationBa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [ShimmyJudderAnalysisConfigurationBase](VM.Managed.DAFUL.Car.ShimmyJudderAnalysisConfigurationBase.md) ← [JudderSimulationConfiguration](VM.Managed.DAFUL.Car.JudderSimulationConfiguration.md) @@ -44,95 +45,98 @@ IHasRoadFile, [ShimmyJudderAnalysisConfigurationBase.RoadDataPath](VM.Managed.DAFUL.Car.ShimmyJudderAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_ShimmyJudderAnalysisConfigurationBase\_RoadDataPath), [ShimmyJudderAnalysisConfigurationBase.RoadRefFrameName](VM.Managed.DAFUL.Car.ShimmyJudderAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_ShimmyJudderAnalysisConfigurationBase\_RoadRefFrameName), [ShimmyJudderAnalysisConfigurationBase.RoadReferencePosition](VM.Managed.DAFUL.Car.ShimmyJudderAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_ShimmyJudderAnalysisConfigurationBase\_RoadReferencePosition), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -176,7 +180,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -231,7 +235,7 @@ public override AnalysisBase Analysis { get; set; } #### Property Value - AnalysisBase + [AnalysisBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs) ### AnalysisName @@ -243,7 +247,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.LiftOffTurnInConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.LiftOffTurnInConfiguration.md index adeb3981b4..dfaa36cf1b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.LiftOffTurnInConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.LiftOffTurnInConfiguration.md @@ -1,4 +1,5 @@ -# Class LiftOffTurnInConfiguration +# Class LiftOffTurnInConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public class LiftOffTurnInConfiguration : FullCarAnalysisConfigurationBase, IObs #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [FullCarAnalysisConfigurationBase](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md) ← [LiftOffTurnInConfiguration](VM.Managed.DAFUL.Car.LiftOffTurnInConfiguration.md) @@ -50,95 +51,98 @@ ILinkUpdateOwner [FullCarAnalysisConfigurationBase.RoadReferencePosition](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadReferencePosition), [FullCarAnalysisConfigurationBase.RoadRotationAngle](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadRotationAngle), [FullCarAnalysisConfigurationBase.RoadOffset](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadOffset), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -182,7 +186,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -249,7 +253,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.LoadCaseBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.LoadCaseBase.md index 7fd1c1fd72..17719fb2c7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.LoadCaseBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.LoadCaseBase.md @@ -1,4 +1,5 @@ -# Class LoadCaseBase +# Class LoadCaseBase + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public abstract class LoadCaseBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [LoadCaseBase](VM.Managed.DAFUL.Car.LoadCaseBase.md) #### Derived diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.MinorRole.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.MinorRole.md index a75cb618b7..9f51a03ccf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.MinorRole.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.MinorRole.md @@ -1,4 +1,5 @@ -# Enum MinorRole +# Enum MinorRole + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.MinorRoleImpl.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.MinorRoleImpl.md index 65460f886e..6d9a35f108 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.MinorRoleImpl.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.MinorRoleImpl.md @@ -1,4 +1,5 @@ -# Class MinorRoleImpl +# Class MinorRoleImpl + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class MinorRoleImpl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [MinorRoleImpl](VM.Managed.DAFUL.Car.MinorRoleImpl.md) #### Extension Methods @@ -40,7 +41,7 @@ public static void LoadTemplateForMinorRole(XmlReader reader, ref MinorRole type #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -62,7 +63,7 @@ public static void SaveTemplateForMinorRole(XmlWriter writer, MinorRole typeMR, #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.OpenLoopSteeringBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.OpenLoopSteeringBase.md index d3ff93cc9c..4fe8bbdc38 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.OpenLoopSteeringBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.OpenLoopSteeringBase.md @@ -1,4 +1,5 @@ -# Class OpenLoopSteeringBase +# Class OpenLoopSteeringBase + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public abstract class OpenLoopSteeringBase : FullCarAnalysisBase, IHasInitialVel #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [FullCarAnalysisBase](VM.Managed.DAFUL.Car.FullCarAnalysisBase.md) ← [OpenLoopSteeringBase](VM.Managed.DAFUL.Car.OpenLoopSteeringBase.md) @@ -83,7 +84,7 @@ public double InitialVelocity { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### VelocityUnitType @@ -109,7 +110,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.AdjustMass.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.AdjustMass.md index dcbce5840a..225dd4c054 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.AdjustMass.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.AdjustMass.md @@ -1,4 +1,5 @@ -# Class AdjustMass +# Class AdjustMass + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,9 +12,9 @@ public class AdjustMass : DialogOperation, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -DialogOperation ← +[DialogOperation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs) ← [AdjustMass](VM.Managed.DAFUL.Car.Operation.AdjustMass.md) #### Implements @@ -22,11 +23,11 @@ IOperation #### Inherited Members -DialogOperation.Execute\(\), -DialogOperation.OnApply\(object, CancelEventArgs\), -DialogOperation.IsConainOpenedDic\(Document\), -DialogOperation.Name, -DialogOperation.OpDialog, +[DialogOperation.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.IsConainOpenedDic\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OpDialog](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -105,7 +106,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -127,11 +128,11 @@ protected override void OnApply(object sender, CancelEventArgs arg) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. -`arg` [CancelEventArgs](https://learn.microsoft.com/dotnet/api/system.componentmodel.canceleventargs) +`arg` CancelEventArgs The instance containing the event data. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ChangeGroupDrivelineOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ChangeGroupDrivelineOperation.md index b82dfa4594..1297833367 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ChangeGroupDrivelineOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ChangeGroupDrivelineOperation.md @@ -1,4 +1,5 @@ -# Class ChangeGroupDrivelineOperation +# Class ChangeGroupDrivelineOperation + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,7 +12,7 @@ public class ChangeGroupDrivelineOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ChangeGroupDrivelineOperation](VM.Managed.DAFUL.Car.Operation.ChangeGroupDrivelineOperation.md) @@ -87,9 +88,9 @@ public ChangeGroupDrivelineOperation(Document3D doc, bool bActiveFront, bool bAc `doc` Document3D -`bActiveFront` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bActiveFront` bool -`bActiveRear` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bActiveRear` bool ### ChangeGroupDrivelineOperation\(JournalParameter\) @@ -113,7 +114,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -133,5 +134,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ChangeGroupKinematicAndComplianceOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ChangeGroupKinematicAndComplianceOperation.md index 03b7df78ca..b3a1b7e341 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ChangeGroupKinematicAndComplianceOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ChangeGroupKinematicAndComplianceOperation.md @@ -1,4 +1,5 @@ -# Class ChangeGroupKinematicAndComplianceOperation +# Class ChangeGroupKinematicAndComplianceOperation + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,7 +12,7 @@ public class ChangeGroupKinematicAndComplianceOperation : OperationBase, IOperat #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ChangeGroupKinematicAndComplianceOperation](VM.Managed.DAFUL.Car.Operation.ChangeGroupKinematicAndComplianceOperation.md) @@ -87,7 +88,7 @@ public ChangeGroupKinematicAndComplianceOperation(Document3D doc, bool bKinemati `doc` Document3D -`bKinematic` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bKinematic` bool ### ChangeGroupKinematicAndComplianceOperation\(JournalParameter\) @@ -111,7 +112,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -131,5 +132,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.CoSimSettingsForCarAssembly.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.CoSimSettingsForCarAssembly.md index e5535d17ed..bf5c36cf11 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.CoSimSettingsForCarAssembly.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.CoSimSettingsForCarAssembly.md @@ -1,4 +1,5 @@ -# Class CoSimSettingsForCarAssembly +# Class CoSimSettingsForCarAssembly + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,9 +12,9 @@ public class CoSimSettingsForCarAssembly : ShowSimulationDlg, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [SimulationRun](VM.Managed.DAFUL.Car.Operation.SimulationRun.md) ← [ShowSimulationDlg](VM.Managed.DAFUL.Car.Operation.ShowSimulationDlg.md) ← [CoSimSettingsForCarAssembly](VM.Managed.DAFUL.Car.Operation.CoSimSettingsForCarAssembly.md) @@ -33,28 +34,29 @@ IOperation [SimulationRun.UpdateUI\(IUIUpdate, Document\)](VM.Managed.DAFUL.Car.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_SimulationRun\_UpdateUI\_VM\_Managed\_UI\_IUIUpdate\_VM\_Managed\_Document\_), [SimulationRun.ApplySimulation\(\)](VM.Managed.DAFUL.Car.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_SimulationRun\_ApplySimulation), [SimulationRun.Name](VM.Managed.DAFUL.Car.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_SimulationRun\_Name), -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -137,7 +139,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UseCoSim @@ -149,7 +151,7 @@ protected override bool UseCoSim { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.CoSimSettingsForFullCarAssembly.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.CoSimSettingsForFullCarAssembly.md index 46e53ae46a..b977b399a4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.CoSimSettingsForFullCarAssembly.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.CoSimSettingsForFullCarAssembly.md @@ -1,4 +1,5 @@ -# Class CoSimSettingsForFullCarAssembly +# Class CoSimSettingsForFullCarAssembly + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpFullCar.dll @@ -11,9 +12,9 @@ public class CoSimSettingsForFullCarAssembly : ShowFullCarSimulationDlg, IOperat #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [FullCarSimulationRun](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md) ← [ShowFullCarSimulationDlg](VM.Managed.DAFUL.Car.Operation.ShowFullCarSimulationDlg.md) ← [CoSimSettingsForFullCarAssembly](VM.Managed.DAFUL.Car.Operation.CoSimSettingsForFullCarAssembly.md) @@ -34,28 +35,29 @@ IOperation [FullCarSimulationRun.UpdateUI\(IUIUpdate, Document\)](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FullCarSimulationRun\_UpdateUI\_VM\_Managed\_UI\_IUIUpdate\_VM\_Managed\_Document\_), [FullCarSimulationRun.ApplySimulation\(\)](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FullCarSimulationRun\_ApplySimulation), [FullCarSimulationRun.Name](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FullCarSimulationRun\_Name), -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -150,7 +152,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UseCoSim @@ -162,7 +164,7 @@ protected override bool UseCoSim { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.DrivelineActiveAndInactive.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.DrivelineActiveAndInactive.md index 11e73a6d2f..9a36a342cd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.DrivelineActiveAndInactive.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.DrivelineActiveAndInactive.md @@ -1,4 +1,5 @@ -# Class DrivelineActiveAndInactive +# Class DrivelineActiveAndInactive + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,9 +12,9 @@ public class DrivelineActiveAndInactive : DialogOperation, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -DialogOperation ← +[DialogOperation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs) ← [DrivelineActiveAndInactive](VM.Managed.DAFUL.Car.Operation.DrivelineActiveAndInactive.md) #### Implements @@ -22,11 +23,11 @@ IOperation #### Inherited Members -DialogOperation.Execute\(\), -DialogOperation.OnApply\(object, CancelEventArgs\), -DialogOperation.IsConainOpenedDic\(Document\), -DialogOperation.Name, -DialogOperation.OpDialog, +[DialogOperation.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.IsConainOpenedDic\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OpDialog](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -105,7 +106,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -127,11 +128,11 @@ protected override void OnApply(object sender, CancelEventArgs arg) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. -`arg` [CancelEventArgs](https://learn.microsoft.com/dotnet/api/system.componentmodel.canceleventargs) +`arg` CancelEventArgs The instance containing the event data. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFG.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFG.md index a94fbcf49e..247f539323 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFG.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFG.md @@ -1,4 +1,5 @@ -# Class ExportDFG +# Class ExportDFG + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,10 +12,10 @@ public class ExportDFG : ExportDFG, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ExportDFG ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ExportDFG](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFG.cs) ← [ExportDFG](VM.Managed.DAFUL.Car.Operation.ExportDFG.md) #### Implements @@ -23,31 +24,32 @@ IOperation #### Inherited Members -ExportDFG.Execute\(\), -ExportDFG.ExportDFGImpl\(\), -ExportDFG.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ExportDFG.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFG.cs), +[ExportDFG.ExportDFGImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFG.cs), +[ExportDFG.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFG.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -136,7 +138,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFGForFourPost.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFGForFourPost.md index cc8ef2bec3..8b67b578dd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFGForFourPost.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFGForFourPost.md @@ -1,4 +1,5 @@ -# Class ExportDFGForFourPost +# Class ExportDFGForFourPost + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpFullCar.dll @@ -11,10 +12,10 @@ public class ExportDFGForFourPost : ExportDFG, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ExportDFG ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ExportDFG](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFG.cs) ← [ExportDFGForFourPost](VM.Managed.DAFUL.Car.Operation.ExportDFGForFourPost.md) #### Implements @@ -23,31 +24,32 @@ IOperation #### Inherited Members -ExportDFG.Execute\(\), -ExportDFG.ExportDFGImpl\(\), -ExportDFG.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ExportDFG.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFG.cs), +[ExportDFG.ExportDFGImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFG.cs), +[ExportDFG.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFG.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -136,7 +138,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFGForFullCar.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFGForFullCar.md index 46d3a0e91d..46501b6f36 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFGForFullCar.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFGForFullCar.md @@ -1,4 +1,5 @@ -# Class ExportDFGForFullCar +# Class ExportDFGForFullCar + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,10 +12,10 @@ public class ExportDFGForFullCar : ExportDFG, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ExportDFG ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ExportDFG](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFG.cs) ← [ExportDFGForFullCar](VM.Managed.DAFUL.Car.Operation.ExportDFGForFullCar.md) #### Implements @@ -23,31 +24,32 @@ IOperation #### Inherited Members -ExportDFG.Execute\(\), -ExportDFG.ExportDFGImpl\(\), -ExportDFG.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ExportDFG.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFG.cs), +[ExportDFG.ExportDFGImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFG.cs), +[ExportDFG.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFG.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -136,7 +138,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFGForShimmyJudder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFGForShimmyJudder.md index 73f7e5118a..1f54c106e2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFGForShimmyJudder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFGForShimmyJudder.md @@ -1,4 +1,5 @@ -# Class ExportDFGForShimmyJudder +# Class ExportDFGForShimmyJudder + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpFullCar.dll @@ -11,10 +12,10 @@ public class ExportDFGForShimmyJudder : ExportDFG, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ExportDFG ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ExportDFG](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFG.cs) ← [ExportDFGForShimmyJudder](VM.Managed.DAFUL.Car.Operation.ExportDFGForShimmyJudder.md) #### Implements @@ -23,31 +24,32 @@ IOperation #### Inherited Members -ExportDFG.Execute\(\), -ExportDFG.ExportDFGImpl\(\), -ExportDFG.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ExportDFG.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFG.cs), +[ExportDFG.ExportDFGImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFG.cs), +[ExportDFG.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFG.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -136,7 +138,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFS.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFS.md index 5547af596b..5bdfe62c3f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFS.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFS.md @@ -1,4 +1,5 @@ -# Class ExportDFS +# Class ExportDFS + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,10 +12,10 @@ public class ExportDFS : ExportDFS, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ExportDFS ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ExportDFS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs) ← [ExportDFS](VM.Managed.DAFUL.Car.Operation.ExportDFS.md) #### Derived @@ -28,31 +29,32 @@ IOperation #### Inherited Members -ExportDFS.Execute\(\), -ExportDFS.ExportDFSImpl\(\), -ExportDFS.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ExportDFS.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs), +[ExportDFS.ExportDFSImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs), +[ExportDFS.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -139,7 +141,7 @@ protected bool m_bEndSolvingThread #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_scenario @@ -163,7 +165,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -195,7 +197,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter ### WriteJournalCore\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFSForFourPost.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFSForFourPost.md index 839296479b..21d79912df 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFSForFourPost.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFSForFourPost.md @@ -1,4 +1,5 @@ -# Class ExportDFSForFourPost +# Class ExportDFSForFourPost + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpFullCar.dll @@ -11,11 +12,11 @@ public class ExportDFSForFourPost : ExportDFS, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ExportDFS ← -ExportDFS ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ExportDFS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs) ← +[ExportDFS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportDFS.cs) ← [ExportDFSForFourPost](VM.Managed.DAFUL.Car.Operation.ExportDFSForFourPost.md) #### Implements @@ -24,39 +25,40 @@ IOperation #### Inherited Members -ExportDFS.m\_scenario, -ExportDFS.m\_bEndSolvingThread, -ExportDFS.Execute\(\), -ExportDFS.GetInformation\(XmlWriter\), -ExportDFS.ExportDFSImpl\(\), -ExportDFS.WriteJournalCore\(\), -ExportDFS.EndExecuteThread\(\), -ExportDFS.Name, -ExportDFS.Execute\(\), -ExportDFS.ExportDFSImpl\(\), -ExportDFS.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ExportDFS.m\_scenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportDFS.cs), +[ExportDFS.m\_bEndSolvingThread](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportDFS.cs), +[ExportDFS.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportDFS.cs), +[ExportDFS.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportDFS.cs), +[ExportDFS.ExportDFSImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportDFS.cs), +[ExportDFS.WriteJournalCore\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportDFS.cs), +[ExportDFS.EndExecuteThread\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportDFS.cs), +[ExportDFS.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportDFS.cs), +[ExportDFS.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs), +[ExportDFS.ExportDFSImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs), +[ExportDFS.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -145,7 +147,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFSForFullCar.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFSForFullCar.md index 312a245be3..40c93b7500 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFSForFullCar.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFSForFullCar.md @@ -1,4 +1,5 @@ -# Class ExportDFSForFullCar +# Class ExportDFSForFullCar + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,10 +12,10 @@ public class ExportDFSForFullCar : ExportDFS, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ExportDFS ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ExportDFS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs) ← [ExportDFS](VM.Managed.DAFUL.Car.Operation.ExportDFS.md) ← [ExportDFSForFullCar](VM.Managed.DAFUL.Car.Operation.ExportDFSForFullCar.md) @@ -32,31 +33,32 @@ IOperation [ExportDFS.WriteJournalCore\(\)](VM.Managed.DAFUL.Car.Operation.ExportDFS.md\#VM\_Managed\_DAFUL\_Car\_Operation\_ExportDFS\_WriteJournalCore), [ExportDFS.EndExecuteThread\(\)](VM.Managed.DAFUL.Car.Operation.ExportDFS.md\#VM\_Managed\_DAFUL\_Car\_Operation\_ExportDFS\_EndExecuteThread), [ExportDFS.Name](VM.Managed.DAFUL.Car.Operation.ExportDFS.md\#VM\_Managed\_DAFUL\_Car\_Operation\_ExportDFS\_Name), -ExportDFS.Execute\(\), -ExportDFS.ExportDFSImpl\(\), -ExportDFS.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ExportDFS.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs), +[ExportDFS.ExportDFSImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs), +[ExportDFS.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -145,7 +147,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFSForShimmyJudder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFSForShimmyJudder.md index 57fc8b9459..18addeaaf3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFSForShimmyJudder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFSForShimmyJudder.md @@ -1,4 +1,5 @@ -# Class ExportDFSForShimmyJudder +# Class ExportDFSForShimmyJudder + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpFullCar.dll @@ -11,11 +12,11 @@ public class ExportDFSForShimmyJudder : ExportDFS, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ExportDFS ← -ExportDFS ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ExportDFS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs) ← +[ExportDFS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportDFS.cs) ← [ExportDFSForShimmyJudder](VM.Managed.DAFUL.Car.Operation.ExportDFSForShimmyJudder.md) #### Implements @@ -24,39 +25,40 @@ IOperation #### Inherited Members -ExportDFS.m\_scenario, -ExportDFS.m\_bEndSolvingThread, -ExportDFS.Execute\(\), -ExportDFS.GetInformation\(XmlWriter\), -ExportDFS.ExportDFSImpl\(\), -ExportDFS.WriteJournalCore\(\), -ExportDFS.EndExecuteThread\(\), -ExportDFS.Name, -ExportDFS.Execute\(\), -ExportDFS.ExportDFSImpl\(\), -ExportDFS.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ExportDFS.m\_scenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportDFS.cs), +[ExportDFS.m\_bEndSolvingThread](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportDFS.cs), +[ExportDFS.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportDFS.cs), +[ExportDFS.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportDFS.cs), +[ExportDFS.ExportDFSImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportDFS.cs), +[ExportDFS.WriteJournalCore\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportDFS.cs), +[ExportDFS.EndExecuteThread\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportDFS.cs), +[ExportDFS.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportDFS.cs), +[ExportDFS.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs), +[ExportDFS.ExportDFSImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs), +[ExportDFS.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -145,7 +147,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFSForTire.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFSForTire.md index 7458befafa..60c5143823 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFSForTire.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportDFSForTire.md @@ -1,4 +1,5 @@ -# Class ExportDFSForTire +# Class ExportDFSForTire + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,10 +12,10 @@ public class ExportDFSForTire : ExportDFS, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ExportDFS ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ExportDFS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs) ← [ExportDFS](VM.Managed.DAFUL.Car.Operation.ExportDFS.md) ← [ExportDFSForTire](VM.Managed.DAFUL.Car.Operation.ExportDFSForTire.md) @@ -32,31 +33,32 @@ IOperation [ExportDFS.WriteJournalCore\(\)](VM.Managed.DAFUL.Car.Operation.ExportDFS.md\#VM\_Managed\_DAFUL\_Car\_Operation\_ExportDFS\_WriteJournalCore), [ExportDFS.EndExecuteThread\(\)](VM.Managed.DAFUL.Car.Operation.ExportDFS.md\#VM\_Managed\_DAFUL\_Car\_Operation\_ExportDFS\_EndExecuteThread), [ExportDFS.Name](VM.Managed.DAFUL.Car.Operation.ExportDFS.md\#VM\_Managed\_DAFUL\_Car\_Operation\_ExportDFS\_Name), -ExportDFS.Execute\(\), -ExportDFS.ExportDFSImpl\(\), -ExportDFS.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ExportDFS.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs), +[ExportDFS.ExportDFSImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs), +[ExportDFS.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -145,7 +147,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportFiles.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportFiles.md new file mode 100644 index 0000000000..8c36cb0f14 --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportFiles.md @@ -0,0 +1,196 @@ +# Class ExportFiles + + +Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) +Assembly: VMOpCar.dll + +```csharp +public class ExportFiles : ExportFiles, IOperation +``` + +#### Inheritance + +object ← +OperationBase ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ExportFiles](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs) ← +[ExportFiles](VM.Managed.DAFUL.Car.Operation.ExportFiles.md) + +#### Derived + +[ExportFilesForFullCar](VM.Managed.DAFUL.Car.Operation.ExportFilesForFullCar.md), +[ExportFilesForTire](VM.Managed.DAFUL.Car.Operation.ExportFilesForTire.md) + +#### Implements + +IOperation + +#### Inherited Members + +[ExportFiles.m\_bWriteDFS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.m\_bWriteXML](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.m\_bWriteDFG](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.m\_bIncludeReferenceFiles](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +OperationBase.g\_bRedrawKernel, +OperationBase.g\_bVerify, +OperationBase.g\_bSkipAddEvent, +OperationBase.g\_bDupicateMsg, +OperationBase.m\_bIsHistoryMerge, +OperationBase.Execute\(\), +OperationBase.PostExecute\(\), +OperationBase.GetInformation\(XmlWriter\), +OperationBase.Create\(string, View, object\), +OperationBase.Create\(string, IDocument, object\), +OperationBase.Create\(string, object\), +OperationBase.Create\(string\), +OperationBase.StartSession\(\), +OperationBase.StartSession\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSession\(OperationBase\), +OperationBase.StartSessionAndWait\(\), +OperationBase.StartSessionAndWait\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSessionAndWait\(OperationBase\), +OperationBase.Initialize\(OperationBase.ShowVerifyResult\), +OperationBase.RecordJournal\(OperationBase\), +OperationBase.UseSession\(string\), +OperationBase.raise\_OnOperationStatusChanged\(object, OperationStatusEventArgs\), +OperationBase.raise\_OnEndOperation\(object, EventArgs\), +OperationBase.ClearCurrentMark\(string\), +OperationBase.ClearCurrentMark\(IDocument\), +OperationBase.ClearCurrentMark\(\), +OperationBase.GlobalOverride, +OperationBase.IsDoingThread, +OperationBase.ExecuteMacro, +OperationBase.SimStatus, +OperationBase.Status, +OperationBase.autoEvents, +OperationBase.IsHistoryMerge, +OperationBase.SkipClearTemporaryLinkContainer, +OperationBase.PostExecuteClearTemporaryLinkContainer, +OperationBase.SkipEndOperation, +OperationBase.UseMacro, +OperationBase.MarkStatus, +OperationBase.UseThread, +OperationBase.Name, +OperationBase.ExecutableOnHold, +OperationBase.Override, +OperationBase.Parameter, +OperationBase.View, +OperationBase.Document, +OperationBase.OnEndOperation, +OperationBase.OnOperationStatusChanged + +#### Extension Methods + +[LinkPropertyItemCache.GetLinkProperties\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkProperties\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkPropertiesAndValues\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkPropertiesAndValues\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkedObjects\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkedObjects\_\_1\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_) + +## Constructors + +### ExportFiles\(Document3D, string, bool, bool, bool, bool\) + +```csharp +public ExportFiles(Document3D doc, string strFilePath, bool bWriteDFS, bool bWriteXML, bool bWriteDFG, bool bIncludeReferenceFiles) +``` + +#### Parameters + +`doc` Document3D + +`strFilePath` string + +`bWriteDFS` bool + +`bWriteXML` bool + +`bWriteDFG` bool + +`bIncludeReferenceFiles` bool + +### ExportFiles\(JournalParameter\) + +```csharp +public ExportFiles(JournalParameter jp) +``` + +#### Parameters + +`jp` JournalParameter + +## Fields + +### m\_bEndSolvingThread + +```csharp +protected bool m_bEndSolvingThread +``` + +#### Field Value + + bool + +### m\_scenario + +```csharp +protected SimulationScenarioCarBase m_scenario +``` + +#### Field Value + + SimulationScenarioCarBase + +## Methods + +### EndExecuteThread\(\) + +```csharp +protected void EndExecuteThread() +``` + +### Execute\(\) + +Execute the operation. + +```csharp +public override void Execute() +``` + +### SetScenario\(\) + +```csharp +protected virtual void SetScenario() +``` + +### WriteJournalCore\(\) + +```csharp +protected void WriteJournalCore() +``` + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportFilesForFourPost.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportFilesForFourPost.md new file mode 100644 index 0000000000..84214e3d61 --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportFilesForFourPost.md @@ -0,0 +1,156 @@ +# Class ExportFilesForFourPost + + +Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) +Assembly: VMOpFullCar.dll + +```csharp +public class ExportFilesForFourPost : ExportFiles, IOperation +``` + +#### Inheritance + +object ← +OperationBase ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ExportFiles](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs) ← +[ExportFiles](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportFiles.cs) ← +[ExportFilesForFourPost](VM.Managed.DAFUL.Car.Operation.ExportFilesForFourPost.md) + +#### Implements + +IOperation + +#### Inherited Members + +[ExportFiles.m\_scenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportFiles.cs), +[ExportFiles.m\_bEndSolvingThread](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportFiles.cs), +[ExportFiles.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportFiles.cs), +[ExportFiles.SetScenario\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportFiles.cs), +[ExportFiles.WriteJournalCore\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportFiles.cs), +[ExportFiles.EndExecuteThread\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportFiles.cs), +[ExportFiles.m\_bWriteDFS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.m\_bWriteXML](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.m\_bWriteDFG](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.m\_bIncludeReferenceFiles](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +OperationBase.g\_bRedrawKernel, +OperationBase.g\_bVerify, +OperationBase.g\_bSkipAddEvent, +OperationBase.g\_bDupicateMsg, +OperationBase.m\_bIsHistoryMerge, +OperationBase.Execute\(\), +OperationBase.PostExecute\(\), +OperationBase.GetInformation\(XmlWriter\), +OperationBase.Create\(string, View, object\), +OperationBase.Create\(string, IDocument, object\), +OperationBase.Create\(string, object\), +OperationBase.Create\(string\), +OperationBase.StartSession\(\), +OperationBase.StartSession\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSession\(OperationBase\), +OperationBase.StartSessionAndWait\(\), +OperationBase.StartSessionAndWait\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSessionAndWait\(OperationBase\), +OperationBase.Initialize\(OperationBase.ShowVerifyResult\), +OperationBase.RecordJournal\(OperationBase\), +OperationBase.UseSession\(string\), +OperationBase.raise\_OnOperationStatusChanged\(object, OperationStatusEventArgs\), +OperationBase.raise\_OnEndOperation\(object, EventArgs\), +OperationBase.ClearCurrentMark\(string\), +OperationBase.ClearCurrentMark\(IDocument\), +OperationBase.ClearCurrentMark\(\), +OperationBase.GlobalOverride, +OperationBase.IsDoingThread, +OperationBase.ExecuteMacro, +OperationBase.SimStatus, +OperationBase.Status, +OperationBase.autoEvents, +OperationBase.IsHistoryMerge, +OperationBase.SkipClearTemporaryLinkContainer, +OperationBase.PostExecuteClearTemporaryLinkContainer, +OperationBase.SkipEndOperation, +OperationBase.UseMacro, +OperationBase.MarkStatus, +OperationBase.UseThread, +OperationBase.Name, +OperationBase.ExecutableOnHold, +OperationBase.Override, +OperationBase.Parameter, +OperationBase.View, +OperationBase.Document, +OperationBase.OnEndOperation, +OperationBase.OnOperationStatusChanged + +#### Extension Methods + +[LinkPropertyItemCache.GetLinkProperties\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkProperties\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkPropertiesAndValues\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkPropertiesAndValues\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkedObjects\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkedObjects\_\_1\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_) + +## Constructors + +### ExportFilesForFourPost\(Document3D, string, bool, bool, bool, bool\) + +```csharp +public ExportFilesForFourPost(Document3D doc, string strFilePath, bool bWriteDFS, bool bWriteXML, bool bWriteDFG, bool bIncludeReferenceFiles) +``` + +#### Parameters + +`doc` Document3D + +`strFilePath` string + +`bWriteDFS` bool + +`bWriteXML` bool + +`bWriteDFG` bool + +`bIncludeReferenceFiles` bool + +### ExportFilesForFourPost\(JournalParameter\) + +```csharp +public ExportFilesForFourPost(JournalParameter jp) +``` + +#### Parameters + +`jp` JournalParameter + +## Methods + +### SetScenario\(\) + +```csharp +protected override void SetScenario() +``` + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportFilesForFullCar.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportFilesForFullCar.md new file mode 100644 index 0000000000..248ea60ca0 --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportFilesForFullCar.md @@ -0,0 +1,156 @@ +# Class ExportFilesForFullCar + + +Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) +Assembly: VMOpCar.dll + +```csharp +public class ExportFilesForFullCar : ExportFiles, IOperation +``` + +#### Inheritance + +object ← +OperationBase ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ExportFiles](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs) ← +[ExportFiles](VM.Managed.DAFUL.Car.Operation.ExportFiles.md) ← +[ExportFilesForFullCar](VM.Managed.DAFUL.Car.Operation.ExportFilesForFullCar.md) + +#### Implements + +IOperation + +#### Inherited Members + +[ExportFiles.m\_scenario](VM.Managed.DAFUL.Car.Operation.ExportFiles.md\#VM\_Managed\_DAFUL\_Car\_Operation\_ExportFiles\_m\_scenario), +[ExportFiles.m\_bEndSolvingThread](VM.Managed.DAFUL.Car.Operation.ExportFiles.md\#VM\_Managed\_DAFUL\_Car\_Operation\_ExportFiles\_m\_bEndSolvingThread), +[ExportFiles.Execute\(\)](VM.Managed.DAFUL.Car.Operation.ExportFiles.md\#VM\_Managed\_DAFUL\_Car\_Operation\_ExportFiles\_Execute), +[ExportFiles.SetScenario\(\)](VM.Managed.DAFUL.Car.Operation.ExportFiles.md\#VM\_Managed\_DAFUL\_Car\_Operation\_ExportFiles\_SetScenario), +[ExportFiles.WriteJournalCore\(\)](VM.Managed.DAFUL.Car.Operation.ExportFiles.md\#VM\_Managed\_DAFUL\_Car\_Operation\_ExportFiles\_WriteJournalCore), +[ExportFiles.EndExecuteThread\(\)](VM.Managed.DAFUL.Car.Operation.ExportFiles.md\#VM\_Managed\_DAFUL\_Car\_Operation\_ExportFiles\_EndExecuteThread), +[ExportFiles.m\_bWriteDFS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.m\_bWriteXML](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.m\_bWriteDFG](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.m\_bIncludeReferenceFiles](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +OperationBase.g\_bRedrawKernel, +OperationBase.g\_bVerify, +OperationBase.g\_bSkipAddEvent, +OperationBase.g\_bDupicateMsg, +OperationBase.m\_bIsHistoryMerge, +OperationBase.Execute\(\), +OperationBase.PostExecute\(\), +OperationBase.GetInformation\(XmlWriter\), +OperationBase.Create\(string, View, object\), +OperationBase.Create\(string, IDocument, object\), +OperationBase.Create\(string, object\), +OperationBase.Create\(string\), +OperationBase.StartSession\(\), +OperationBase.StartSession\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSession\(OperationBase\), +OperationBase.StartSessionAndWait\(\), +OperationBase.StartSessionAndWait\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSessionAndWait\(OperationBase\), +OperationBase.Initialize\(OperationBase.ShowVerifyResult\), +OperationBase.RecordJournal\(OperationBase\), +OperationBase.UseSession\(string\), +OperationBase.raise\_OnOperationStatusChanged\(object, OperationStatusEventArgs\), +OperationBase.raise\_OnEndOperation\(object, EventArgs\), +OperationBase.ClearCurrentMark\(string\), +OperationBase.ClearCurrentMark\(IDocument\), +OperationBase.ClearCurrentMark\(\), +OperationBase.GlobalOverride, +OperationBase.IsDoingThread, +OperationBase.ExecuteMacro, +OperationBase.SimStatus, +OperationBase.Status, +OperationBase.autoEvents, +OperationBase.IsHistoryMerge, +OperationBase.SkipClearTemporaryLinkContainer, +OperationBase.PostExecuteClearTemporaryLinkContainer, +OperationBase.SkipEndOperation, +OperationBase.UseMacro, +OperationBase.MarkStatus, +OperationBase.UseThread, +OperationBase.Name, +OperationBase.ExecutableOnHold, +OperationBase.Override, +OperationBase.Parameter, +OperationBase.View, +OperationBase.Document, +OperationBase.OnEndOperation, +OperationBase.OnOperationStatusChanged + +#### Extension Methods + +[LinkPropertyItemCache.GetLinkProperties\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkProperties\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkPropertiesAndValues\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkPropertiesAndValues\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkedObjects\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkedObjects\_\_1\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_) + +## Constructors + +### ExportFilesForFullCar\(Document3D, string, bool, bool, bool, bool\) + +```csharp +public ExportFilesForFullCar(Document3D doc, string strFilePath, bool bWriteDFS, bool bWriteXML, bool bWriteDFG, bool bIncludeReferenceFiles) +``` + +#### Parameters + +`doc` Document3D + +`strFilePath` string + +`bWriteDFS` bool + +`bWriteXML` bool + +`bWriteDFG` bool + +`bIncludeReferenceFiles` bool + +### ExportFilesForFullCar\(JournalParameter\) + +```csharp +public ExportFilesForFullCar(JournalParameter jp) +``` + +#### Parameters + +`jp` JournalParameter + +## Methods + +### SetScenario\(\) + +```csharp +protected override void SetScenario() +``` + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportFilesForShimmyJudder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportFilesForShimmyJudder.md new file mode 100644 index 0000000000..32272c35a4 --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportFilesForShimmyJudder.md @@ -0,0 +1,156 @@ +# Class ExportFilesForShimmyJudder + + +Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) +Assembly: VMOpFullCar.dll + +```csharp +public class ExportFilesForShimmyJudder : ExportFiles, IOperation +``` + +#### Inheritance + +object ← +OperationBase ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ExportFiles](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs) ← +[ExportFiles](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportFiles.cs) ← +[ExportFilesForShimmyJudder](VM.Managed.DAFUL.Car.Operation.ExportFilesForShimmyJudder.md) + +#### Implements + +IOperation + +#### Inherited Members + +[ExportFiles.m\_scenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportFiles.cs), +[ExportFiles.m\_bEndSolvingThread](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportFiles.cs), +[ExportFiles.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportFiles.cs), +[ExportFiles.SetScenario\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportFiles.cs), +[ExportFiles.WriteJournalCore\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportFiles.cs), +[ExportFiles.EndExecuteThread\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportFiles.cs), +[ExportFiles.m\_bWriteDFS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.m\_bWriteXML](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.m\_bWriteDFG](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.m\_bIncludeReferenceFiles](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +OperationBase.g\_bRedrawKernel, +OperationBase.g\_bVerify, +OperationBase.g\_bSkipAddEvent, +OperationBase.g\_bDupicateMsg, +OperationBase.m\_bIsHistoryMerge, +OperationBase.Execute\(\), +OperationBase.PostExecute\(\), +OperationBase.GetInformation\(XmlWriter\), +OperationBase.Create\(string, View, object\), +OperationBase.Create\(string, IDocument, object\), +OperationBase.Create\(string, object\), +OperationBase.Create\(string\), +OperationBase.StartSession\(\), +OperationBase.StartSession\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSession\(OperationBase\), +OperationBase.StartSessionAndWait\(\), +OperationBase.StartSessionAndWait\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSessionAndWait\(OperationBase\), +OperationBase.Initialize\(OperationBase.ShowVerifyResult\), +OperationBase.RecordJournal\(OperationBase\), +OperationBase.UseSession\(string\), +OperationBase.raise\_OnOperationStatusChanged\(object, OperationStatusEventArgs\), +OperationBase.raise\_OnEndOperation\(object, EventArgs\), +OperationBase.ClearCurrentMark\(string\), +OperationBase.ClearCurrentMark\(IDocument\), +OperationBase.ClearCurrentMark\(\), +OperationBase.GlobalOverride, +OperationBase.IsDoingThread, +OperationBase.ExecuteMacro, +OperationBase.SimStatus, +OperationBase.Status, +OperationBase.autoEvents, +OperationBase.IsHistoryMerge, +OperationBase.SkipClearTemporaryLinkContainer, +OperationBase.PostExecuteClearTemporaryLinkContainer, +OperationBase.SkipEndOperation, +OperationBase.UseMacro, +OperationBase.MarkStatus, +OperationBase.UseThread, +OperationBase.Name, +OperationBase.ExecutableOnHold, +OperationBase.Override, +OperationBase.Parameter, +OperationBase.View, +OperationBase.Document, +OperationBase.OnEndOperation, +OperationBase.OnOperationStatusChanged + +#### Extension Methods + +[LinkPropertyItemCache.GetLinkProperties\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkProperties\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkPropertiesAndValues\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkPropertiesAndValues\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkedObjects\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkedObjects\_\_1\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_) + +## Constructors + +### ExportFilesForShimmyJudder\(Document3D, string, bool, bool, bool, bool\) + +```csharp +public ExportFilesForShimmyJudder(Document3D doc, string strFilePath, bool bWriteDFS, bool bWriteXML, bool bWriteDFG, bool bIncludeReferenceFiles) +``` + +#### Parameters + +`doc` Document3D + +`strFilePath` string + +`bWriteDFS` bool + +`bWriteXML` bool + +`bWriteDFG` bool + +`bIncludeReferenceFiles` bool + +### ExportFilesForShimmyJudder\(JournalParameter\) + +```csharp +public ExportFilesForShimmyJudder(JournalParameter jp) +``` + +#### Parameters + +`jp` JournalParameter + +## Methods + +### SetScenario\(\) + +```csharp +protected override void SetScenario() +``` + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportFilesForTire.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportFilesForTire.md new file mode 100644 index 0000000000..e6a8857fd5 --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportFilesForTire.md @@ -0,0 +1,156 @@ +# Class ExportFilesForTire + + +Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) +Assembly: VMOpCar.dll + +```csharp +public class ExportFilesForTire : ExportFiles, IOperation +``` + +#### Inheritance + +object ← +OperationBase ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ExportFiles](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs) ← +[ExportFiles](VM.Managed.DAFUL.Car.Operation.ExportFiles.md) ← +[ExportFilesForTire](VM.Managed.DAFUL.Car.Operation.ExportFilesForTire.md) + +#### Implements + +IOperation + +#### Inherited Members + +[ExportFiles.m\_scenario](VM.Managed.DAFUL.Car.Operation.ExportFiles.md\#VM\_Managed\_DAFUL\_Car\_Operation\_ExportFiles\_m\_scenario), +[ExportFiles.m\_bEndSolvingThread](VM.Managed.DAFUL.Car.Operation.ExportFiles.md\#VM\_Managed\_DAFUL\_Car\_Operation\_ExportFiles\_m\_bEndSolvingThread), +[ExportFiles.Execute\(\)](VM.Managed.DAFUL.Car.Operation.ExportFiles.md\#VM\_Managed\_DAFUL\_Car\_Operation\_ExportFiles\_Execute), +[ExportFiles.SetScenario\(\)](VM.Managed.DAFUL.Car.Operation.ExportFiles.md\#VM\_Managed\_DAFUL\_Car\_Operation\_ExportFiles\_SetScenario), +[ExportFiles.WriteJournalCore\(\)](VM.Managed.DAFUL.Car.Operation.ExportFiles.md\#VM\_Managed\_DAFUL\_Car\_Operation\_ExportFiles\_WriteJournalCore), +[ExportFiles.EndExecuteThread\(\)](VM.Managed.DAFUL.Car.Operation.ExportFiles.md\#VM\_Managed\_DAFUL\_Car\_Operation\_ExportFiles\_EndExecuteThread), +[ExportFiles.m\_bWriteDFS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.m\_bWriteXML](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.m\_bWriteDFG](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.m\_bIncludeReferenceFiles](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +OperationBase.g\_bRedrawKernel, +OperationBase.g\_bVerify, +OperationBase.g\_bSkipAddEvent, +OperationBase.g\_bDupicateMsg, +OperationBase.m\_bIsHistoryMerge, +OperationBase.Execute\(\), +OperationBase.PostExecute\(\), +OperationBase.GetInformation\(XmlWriter\), +OperationBase.Create\(string, View, object\), +OperationBase.Create\(string, IDocument, object\), +OperationBase.Create\(string, object\), +OperationBase.Create\(string\), +OperationBase.StartSession\(\), +OperationBase.StartSession\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSession\(OperationBase\), +OperationBase.StartSessionAndWait\(\), +OperationBase.StartSessionAndWait\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSessionAndWait\(OperationBase\), +OperationBase.Initialize\(OperationBase.ShowVerifyResult\), +OperationBase.RecordJournal\(OperationBase\), +OperationBase.UseSession\(string\), +OperationBase.raise\_OnOperationStatusChanged\(object, OperationStatusEventArgs\), +OperationBase.raise\_OnEndOperation\(object, EventArgs\), +OperationBase.ClearCurrentMark\(string\), +OperationBase.ClearCurrentMark\(IDocument\), +OperationBase.ClearCurrentMark\(\), +OperationBase.GlobalOverride, +OperationBase.IsDoingThread, +OperationBase.ExecuteMacro, +OperationBase.SimStatus, +OperationBase.Status, +OperationBase.autoEvents, +OperationBase.IsHistoryMerge, +OperationBase.SkipClearTemporaryLinkContainer, +OperationBase.PostExecuteClearTemporaryLinkContainer, +OperationBase.SkipEndOperation, +OperationBase.UseMacro, +OperationBase.MarkStatus, +OperationBase.UseThread, +OperationBase.Name, +OperationBase.ExecutableOnHold, +OperationBase.Override, +OperationBase.Parameter, +OperationBase.View, +OperationBase.Document, +OperationBase.OnEndOperation, +OperationBase.OnOperationStatusChanged + +#### Extension Methods + +[LinkPropertyItemCache.GetLinkProperties\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkProperties\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkPropertiesAndValues\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkPropertiesAndValues\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkedObjects\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkedObjects\_\_1\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_) + +## Constructors + +### ExportFilesForTire\(Document3D, string, bool, bool, bool, bool\) + +```csharp +public ExportFilesForTire(Document3D doc, string strFilePath, bool bWriteDFS, bool bWriteXML, bool bWriteDFG, bool bIncludeReferenceFiles) +``` + +#### Parameters + +`doc` Document3D + +`strFilePath` string + +`bWriteDFS` bool + +`bWriteXML` bool + +`bWriteDFG` bool + +`bIncludeReferenceFiles` bool + +### ExportFilesForTire\(JournalParameter\) + +```csharp +public ExportFilesForTire(JournalParameter jp) +``` + +#### Parameters + +`jp` JournalParameter + +## Methods + +### SetScenario\(\) + +```csharp +protected override void SetScenario() +``` + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportMotionFiles.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportMotionFiles.md new file mode 100644 index 0000000000..3ee1ee23b4 --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportMotionFiles.md @@ -0,0 +1,117 @@ +# Class ExportMotionFiles + + +Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) +Assembly: VMOpCar.dll + +```csharp +public class ExportMotionFiles : ExportMotionFiles, IOperation +``` + +#### Inheritance + +object ← +OperationBase ← +[DialogOperation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs) ← +[ExportMotionFiles](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs) ← +[ExportMotionFiles](VM.Managed.DAFUL.Car.Operation.ExportMotionFiles.md) + +#### Derived + +[ExportMotionFilesForFullCar](VM.Managed.DAFUL.Car.Operation.ExportMotionFilesForFullCar.md), +[ExportMotionFilesForTire](VM.Managed.DAFUL.Car.Operation.ExportMotionFilesForTire.md) + +#### Implements + +IOperation + +#### Inherited Members + +[ExportMotionFiles.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[ExportMotionFiles.GetDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[ExportMotionFiles.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[ExportMotionFiles.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[ExportMotionFiles.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[DialogOperation.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.IsConainOpenedDic\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OpDialog](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +OperationBase.g\_bRedrawKernel, +OperationBase.g\_bVerify, +OperationBase.g\_bSkipAddEvent, +OperationBase.g\_bDupicateMsg, +OperationBase.m\_bIsHistoryMerge, +OperationBase.Execute\(\), +OperationBase.PostExecute\(\), +OperationBase.GetInformation\(XmlWriter\), +OperationBase.Create\(string, View, object\), +OperationBase.Create\(string, IDocument, object\), +OperationBase.Create\(string, object\), +OperationBase.Create\(string\), +OperationBase.StartSession\(\), +OperationBase.StartSession\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSession\(OperationBase\), +OperationBase.StartSessionAndWait\(\), +OperationBase.StartSessionAndWait\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSessionAndWait\(OperationBase\), +OperationBase.Initialize\(OperationBase.ShowVerifyResult\), +OperationBase.RecordJournal\(OperationBase\), +OperationBase.UseSession\(string\), +OperationBase.raise\_OnOperationStatusChanged\(object, OperationStatusEventArgs\), +OperationBase.raise\_OnEndOperation\(object, EventArgs\), +OperationBase.ClearCurrentMark\(string\), +OperationBase.ClearCurrentMark\(IDocument\), +OperationBase.ClearCurrentMark\(\), +OperationBase.GlobalOverride, +OperationBase.IsDoingThread, +OperationBase.ExecuteMacro, +OperationBase.SimStatus, +OperationBase.Status, +OperationBase.autoEvents, +OperationBase.IsHistoryMerge, +OperationBase.SkipClearTemporaryLinkContainer, +OperationBase.PostExecuteClearTemporaryLinkContainer, +OperationBase.SkipEndOperation, +OperationBase.UseMacro, +OperationBase.MarkStatus, +OperationBase.UseThread, +OperationBase.Name, +OperationBase.ExecutableOnHold, +OperationBase.Override, +OperationBase.Parameter, +OperationBase.View, +OperationBase.Document, +OperationBase.OnEndOperation, +OperationBase.OnOperationStatusChanged + +#### Extension Methods + +[LinkPropertyItemCache.GetLinkProperties\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkProperties\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkPropertiesAndValues\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkPropertiesAndValues\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkedObjects\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkedObjects\_\_1\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_) + +## Constructors + +### ExportMotionFiles\(Document\) + +```csharp +public ExportMotionFiles(Document doc) +``` + +#### Parameters + +`doc` Document + +## Methods + +### GetDialog\(\) + +```csharp +protected override OperationDialogBase GetDialog() +``` + +#### Returns + + OperationDialogBase + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportMotionFilesForFourPost.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportMotionFilesForFourPost.md new file mode 100644 index 0000000000..cea7121d9f --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportMotionFilesForFourPost.md @@ -0,0 +1,114 @@ +# Class ExportMotionFilesForFourPost + + +Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) +Assembly: VMOpFullCar.dll + +```csharp +public class ExportMotionFilesForFourPost : ExportMotionFiles, IOperation +``` + +#### Inheritance + +object ← +OperationBase ← +[DialogOperation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs) ← +[ExportMotionFiles](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs) ← +[ExportMotionFiles](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportMotionFiles.cs) ← +[ExportMotionFilesForFourPost](VM.Managed.DAFUL.Car.Operation.ExportMotionFilesForFourPost.md) + +#### Implements + +IOperation + +#### Inherited Members + +[ExportMotionFiles.GetDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportMotionFiles.cs), +[ExportMotionFiles.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[ExportMotionFiles.GetDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[ExportMotionFiles.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[ExportMotionFiles.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[ExportMotionFiles.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[DialogOperation.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.IsConainOpenedDic\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OpDialog](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +OperationBase.g\_bRedrawKernel, +OperationBase.g\_bVerify, +OperationBase.g\_bSkipAddEvent, +OperationBase.g\_bDupicateMsg, +OperationBase.m\_bIsHistoryMerge, +OperationBase.Execute\(\), +OperationBase.PostExecute\(\), +OperationBase.GetInformation\(XmlWriter\), +OperationBase.Create\(string, View, object\), +OperationBase.Create\(string, IDocument, object\), +OperationBase.Create\(string, object\), +OperationBase.Create\(string\), +OperationBase.StartSession\(\), +OperationBase.StartSession\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSession\(OperationBase\), +OperationBase.StartSessionAndWait\(\), +OperationBase.StartSessionAndWait\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSessionAndWait\(OperationBase\), +OperationBase.Initialize\(OperationBase.ShowVerifyResult\), +OperationBase.RecordJournal\(OperationBase\), +OperationBase.UseSession\(string\), +OperationBase.raise\_OnOperationStatusChanged\(object, OperationStatusEventArgs\), +OperationBase.raise\_OnEndOperation\(object, EventArgs\), +OperationBase.ClearCurrentMark\(string\), +OperationBase.ClearCurrentMark\(IDocument\), +OperationBase.ClearCurrentMark\(\), +OperationBase.GlobalOverride, +OperationBase.IsDoingThread, +OperationBase.ExecuteMacro, +OperationBase.SimStatus, +OperationBase.Status, +OperationBase.autoEvents, +OperationBase.IsHistoryMerge, +OperationBase.SkipClearTemporaryLinkContainer, +OperationBase.PostExecuteClearTemporaryLinkContainer, +OperationBase.SkipEndOperation, +OperationBase.UseMacro, +OperationBase.MarkStatus, +OperationBase.UseThread, +OperationBase.Name, +OperationBase.ExecutableOnHold, +OperationBase.Override, +OperationBase.Parameter, +OperationBase.View, +OperationBase.Document, +OperationBase.OnEndOperation, +OperationBase.OnOperationStatusChanged + +#### Extension Methods + +[LinkPropertyItemCache.GetLinkProperties\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkProperties\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkPropertiesAndValues\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkPropertiesAndValues\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkedObjects\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkedObjects\_\_1\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_) + +## Constructors + +### ExportMotionFilesForFourPost\(Document\) + +```csharp +public ExportMotionFilesForFourPost(Document doc) +``` + +#### Parameters + +`doc` Document + +## Methods + +### GetDialog\(\) + +```csharp +protected override OperationDialogBase GetDialog() +``` + +#### Returns + + OperationDialogBase + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportMotionFilesForFullCar.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportMotionFilesForFullCar.md new file mode 100644 index 0000000000..e5fe6e9407 --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportMotionFilesForFullCar.md @@ -0,0 +1,114 @@ +# Class ExportMotionFilesForFullCar + + +Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) +Assembly: VMOpCar.dll + +```csharp +public class ExportMotionFilesForFullCar : ExportMotionFiles, IOperation +``` + +#### Inheritance + +object ← +OperationBase ← +[DialogOperation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs) ← +[ExportMotionFiles](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs) ← +[ExportMotionFiles](VM.Managed.DAFUL.Car.Operation.ExportMotionFiles.md) ← +[ExportMotionFilesForFullCar](VM.Managed.DAFUL.Car.Operation.ExportMotionFilesForFullCar.md) + +#### Implements + +IOperation + +#### Inherited Members + +[ExportMotionFiles.GetDialog\(\)](VM.Managed.DAFUL.Car.Operation.ExportMotionFiles.md\#VM\_Managed\_DAFUL\_Car\_Operation\_ExportMotionFiles\_GetDialog), +[ExportMotionFiles.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[ExportMotionFiles.GetDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[ExportMotionFiles.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[ExportMotionFiles.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[ExportMotionFiles.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[DialogOperation.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.IsConainOpenedDic\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OpDialog](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +OperationBase.g\_bRedrawKernel, +OperationBase.g\_bVerify, +OperationBase.g\_bSkipAddEvent, +OperationBase.g\_bDupicateMsg, +OperationBase.m\_bIsHistoryMerge, +OperationBase.Execute\(\), +OperationBase.PostExecute\(\), +OperationBase.GetInformation\(XmlWriter\), +OperationBase.Create\(string, View, object\), +OperationBase.Create\(string, IDocument, object\), +OperationBase.Create\(string, object\), +OperationBase.Create\(string\), +OperationBase.StartSession\(\), +OperationBase.StartSession\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSession\(OperationBase\), +OperationBase.StartSessionAndWait\(\), +OperationBase.StartSessionAndWait\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSessionAndWait\(OperationBase\), +OperationBase.Initialize\(OperationBase.ShowVerifyResult\), +OperationBase.RecordJournal\(OperationBase\), +OperationBase.UseSession\(string\), +OperationBase.raise\_OnOperationStatusChanged\(object, OperationStatusEventArgs\), +OperationBase.raise\_OnEndOperation\(object, EventArgs\), +OperationBase.ClearCurrentMark\(string\), +OperationBase.ClearCurrentMark\(IDocument\), +OperationBase.ClearCurrentMark\(\), +OperationBase.GlobalOverride, +OperationBase.IsDoingThread, +OperationBase.ExecuteMacro, +OperationBase.SimStatus, +OperationBase.Status, +OperationBase.autoEvents, +OperationBase.IsHistoryMerge, +OperationBase.SkipClearTemporaryLinkContainer, +OperationBase.PostExecuteClearTemporaryLinkContainer, +OperationBase.SkipEndOperation, +OperationBase.UseMacro, +OperationBase.MarkStatus, +OperationBase.UseThread, +OperationBase.Name, +OperationBase.ExecutableOnHold, +OperationBase.Override, +OperationBase.Parameter, +OperationBase.View, +OperationBase.Document, +OperationBase.OnEndOperation, +OperationBase.OnOperationStatusChanged + +#### Extension Methods + +[LinkPropertyItemCache.GetLinkProperties\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkProperties\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkPropertiesAndValues\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkPropertiesAndValues\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkedObjects\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkedObjects\_\_1\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_) + +## Constructors + +### ExportMotionFilesForFullCar\(Document\) + +```csharp +public ExportMotionFilesForFullCar(Document doc) +``` + +#### Parameters + +`doc` Document + +## Methods + +### GetDialog\(\) + +```csharp +protected override OperationDialogBase GetDialog() +``` + +#### Returns + + OperationDialogBase + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportMotionFilesForShimmyJudder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportMotionFilesForShimmyJudder.md new file mode 100644 index 0000000000..348948854d --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportMotionFilesForShimmyJudder.md @@ -0,0 +1,114 @@ +# Class ExportMotionFilesForShimmyJudder + + +Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) +Assembly: VMOpFullCar.dll + +```csharp +public class ExportMotionFilesForShimmyJudder : ExportMotionFiles, IOperation +``` + +#### Inheritance + +object ← +OperationBase ← +[DialogOperation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs) ← +[ExportMotionFiles](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs) ← +[ExportMotionFiles](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportMotionFiles.cs) ← +[ExportMotionFilesForShimmyJudder](VM.Managed.DAFUL.Car.Operation.ExportMotionFilesForShimmyJudder.md) + +#### Implements + +IOperation + +#### Inherited Members + +[ExportMotionFiles.GetDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportMotionFiles.cs), +[ExportMotionFiles.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[ExportMotionFiles.GetDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[ExportMotionFiles.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[ExportMotionFiles.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[ExportMotionFiles.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[DialogOperation.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.IsConainOpenedDic\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OpDialog](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +OperationBase.g\_bRedrawKernel, +OperationBase.g\_bVerify, +OperationBase.g\_bSkipAddEvent, +OperationBase.g\_bDupicateMsg, +OperationBase.m\_bIsHistoryMerge, +OperationBase.Execute\(\), +OperationBase.PostExecute\(\), +OperationBase.GetInformation\(XmlWriter\), +OperationBase.Create\(string, View, object\), +OperationBase.Create\(string, IDocument, object\), +OperationBase.Create\(string, object\), +OperationBase.Create\(string\), +OperationBase.StartSession\(\), +OperationBase.StartSession\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSession\(OperationBase\), +OperationBase.StartSessionAndWait\(\), +OperationBase.StartSessionAndWait\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSessionAndWait\(OperationBase\), +OperationBase.Initialize\(OperationBase.ShowVerifyResult\), +OperationBase.RecordJournal\(OperationBase\), +OperationBase.UseSession\(string\), +OperationBase.raise\_OnOperationStatusChanged\(object, OperationStatusEventArgs\), +OperationBase.raise\_OnEndOperation\(object, EventArgs\), +OperationBase.ClearCurrentMark\(string\), +OperationBase.ClearCurrentMark\(IDocument\), +OperationBase.ClearCurrentMark\(\), +OperationBase.GlobalOverride, +OperationBase.IsDoingThread, +OperationBase.ExecuteMacro, +OperationBase.SimStatus, +OperationBase.Status, +OperationBase.autoEvents, +OperationBase.IsHistoryMerge, +OperationBase.SkipClearTemporaryLinkContainer, +OperationBase.PostExecuteClearTemporaryLinkContainer, +OperationBase.SkipEndOperation, +OperationBase.UseMacro, +OperationBase.MarkStatus, +OperationBase.UseThread, +OperationBase.Name, +OperationBase.ExecutableOnHold, +OperationBase.Override, +OperationBase.Parameter, +OperationBase.View, +OperationBase.Document, +OperationBase.OnEndOperation, +OperationBase.OnOperationStatusChanged + +#### Extension Methods + +[LinkPropertyItemCache.GetLinkProperties\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkProperties\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkPropertiesAndValues\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkPropertiesAndValues\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkedObjects\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkedObjects\_\_1\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_) + +## Constructors + +### ExportMotionFilesForShimmyJudder\(Document\) + +```csharp +public ExportMotionFilesForShimmyJudder(Document doc) +``` + +#### Parameters + +`doc` Document + +## Methods + +### GetDialog\(\) + +```csharp +protected override OperationDialogBase GetDialog() +``` + +#### Returns + + OperationDialogBase + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportMotionFilesForTire.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportMotionFilesForTire.md new file mode 100644 index 0000000000..d99315646c --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportMotionFilesForTire.md @@ -0,0 +1,114 @@ +# Class ExportMotionFilesForTire + + +Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) +Assembly: VMOpCar.dll + +```csharp +public class ExportMotionFilesForTire : ExportMotionFiles, IOperation +``` + +#### Inheritance + +object ← +OperationBase ← +[DialogOperation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs) ← +[ExportMotionFiles](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs) ← +[ExportMotionFiles](VM.Managed.DAFUL.Car.Operation.ExportMotionFiles.md) ← +[ExportMotionFilesForTire](VM.Managed.DAFUL.Car.Operation.ExportMotionFilesForTire.md) + +#### Implements + +IOperation + +#### Inherited Members + +[ExportMotionFiles.GetDialog\(\)](VM.Managed.DAFUL.Car.Operation.ExportMotionFiles.md\#VM\_Managed\_DAFUL\_Car\_Operation\_ExportMotionFiles\_GetDialog), +[ExportMotionFiles.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[ExportMotionFiles.GetDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[ExportMotionFiles.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[ExportMotionFiles.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[ExportMotionFiles.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[DialogOperation.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.IsConainOpenedDic\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OpDialog](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +OperationBase.g\_bRedrawKernel, +OperationBase.g\_bVerify, +OperationBase.g\_bSkipAddEvent, +OperationBase.g\_bDupicateMsg, +OperationBase.m\_bIsHistoryMerge, +OperationBase.Execute\(\), +OperationBase.PostExecute\(\), +OperationBase.GetInformation\(XmlWriter\), +OperationBase.Create\(string, View, object\), +OperationBase.Create\(string, IDocument, object\), +OperationBase.Create\(string, object\), +OperationBase.Create\(string\), +OperationBase.StartSession\(\), +OperationBase.StartSession\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSession\(OperationBase\), +OperationBase.StartSessionAndWait\(\), +OperationBase.StartSessionAndWait\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSessionAndWait\(OperationBase\), +OperationBase.Initialize\(OperationBase.ShowVerifyResult\), +OperationBase.RecordJournal\(OperationBase\), +OperationBase.UseSession\(string\), +OperationBase.raise\_OnOperationStatusChanged\(object, OperationStatusEventArgs\), +OperationBase.raise\_OnEndOperation\(object, EventArgs\), +OperationBase.ClearCurrentMark\(string\), +OperationBase.ClearCurrentMark\(IDocument\), +OperationBase.ClearCurrentMark\(\), +OperationBase.GlobalOverride, +OperationBase.IsDoingThread, +OperationBase.ExecuteMacro, +OperationBase.SimStatus, +OperationBase.Status, +OperationBase.autoEvents, +OperationBase.IsHistoryMerge, +OperationBase.SkipClearTemporaryLinkContainer, +OperationBase.PostExecuteClearTemporaryLinkContainer, +OperationBase.SkipEndOperation, +OperationBase.UseMacro, +OperationBase.MarkStatus, +OperationBase.UseThread, +OperationBase.Name, +OperationBase.ExecutableOnHold, +OperationBase.Override, +OperationBase.Parameter, +OperationBase.View, +OperationBase.Document, +OperationBase.OnEndOperation, +OperationBase.OnOperationStatusChanged + +#### Extension Methods + +[LinkPropertyItemCache.GetLinkProperties\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkProperties\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkPropertiesAndValues\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkPropertiesAndValues\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkedObjects\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkedObjects\_\_1\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_) + +## Constructors + +### ExportMotionFilesForTire\(Document\) + +```csharp +public ExportMotionFilesForTire(Document doc) +``` + +#### Parameters + +`doc` Document + +## Methods + +### GetDialog\(\) + +```csharp +protected override OperationDialogBase GetDialog() +``` + +#### Returns + + OperationDialogBase + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportXML.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportXML.md index ab51c2797e..35b723c82e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportXML.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportXML.md @@ -1,4 +1,5 @@ -# Class ExportXML +# Class ExportXML + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,10 +12,10 @@ public class ExportXML : ExportXML, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ExportXML ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ExportXML](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportXML.cs) ← [ExportXML](VM.Managed.DAFUL.Car.Operation.ExportXML.md) #### Derived @@ -27,31 +28,32 @@ IOperation #### Inherited Members -ExportXML.Execute\(\), -ExportXML.ExportXMLImpl\(\), -ExportXML.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ExportXML.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportXML.cs), +[ExportXML.ExportXMLImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportXML.cs), +[ExportXML.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportXML.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -138,7 +140,7 @@ protected bool m_bEndSolvingThread #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_scenario @@ -162,7 +164,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -194,7 +196,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter ### WriteJournalCore\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportXMLForFourPost.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportXMLForFourPost.md index 552b5cf181..799d80bf76 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportXMLForFourPost.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportXMLForFourPost.md @@ -1,4 +1,5 @@ -# Class ExportXMLForFourPost +# Class ExportXMLForFourPost + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpFullCar.dll @@ -11,11 +12,11 @@ public class ExportXMLForFourPost : ExportXML, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ExportXML ← -ExportXML ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ExportXML](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportXML.cs) ← +[ExportXML](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportXML.cs) ← [ExportXMLForFourPost](VM.Managed.DAFUL.Car.Operation.ExportXMLForFourPost.md) #### Implements @@ -24,39 +25,40 @@ IOperation #### Inherited Members -ExportXML.m\_scenario, -ExportXML.m\_bEndSolvingThread, -ExportXML.Execute\(\), -ExportXML.GetInformation\(XmlWriter\), -ExportXML.ExportXMLImpl\(\), -ExportXML.WriteJournalCore\(\), -ExportXML.EndExecuteThread\(\), -ExportXML.Name, -ExportXML.Execute\(\), -ExportXML.ExportXMLImpl\(\), -ExportXML.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ExportXML.m\_scenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportXML.cs), +[ExportXML.m\_bEndSolvingThread](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportXML.cs), +[ExportXML.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportXML.cs), +[ExportXML.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportXML.cs), +[ExportXML.ExportXMLImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportXML.cs), +[ExportXML.WriteJournalCore\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportXML.cs), +[ExportXML.EndExecuteThread\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportXML.cs), +[ExportXML.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportXML.cs), +[ExportXML.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportXML.cs), +[ExportXML.ExportXMLImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportXML.cs), +[ExportXML.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportXML.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -145,7 +147,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportXMLForFullCar.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportXMLForFullCar.md index 814b9920ad..9479d522ff 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportXMLForFullCar.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportXMLForFullCar.md @@ -1,4 +1,5 @@ -# Class ExportXMLForFullCar +# Class ExportXMLForFullCar + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpFullCar.dll @@ -11,11 +12,11 @@ public class ExportXMLForFullCar : ExportXML, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ExportXML ← -ExportXML ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ExportXML](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportXML.cs) ← +[ExportXML](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportXML.cs) ← [ExportXMLForFullCar](VM.Managed.DAFUL.Car.Operation.ExportXMLForFullCar.md) #### Implements @@ -24,39 +25,40 @@ IOperation #### Inherited Members -ExportXML.m\_scenario, -ExportXML.m\_bEndSolvingThread, -ExportXML.Execute\(\), -ExportXML.GetInformation\(XmlWriter\), -ExportXML.ExportXMLImpl\(\), -ExportXML.WriteJournalCore\(\), -ExportXML.EndExecuteThread\(\), -ExportXML.Name, -ExportXML.Execute\(\), -ExportXML.ExportXMLImpl\(\), -ExportXML.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ExportXML.m\_scenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportXML.cs), +[ExportXML.m\_bEndSolvingThread](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportXML.cs), +[ExportXML.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportXML.cs), +[ExportXML.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportXML.cs), +[ExportXML.ExportXMLImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportXML.cs), +[ExportXML.WriteJournalCore\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportXML.cs), +[ExportXML.EndExecuteThread\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportXML.cs), +[ExportXML.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportXML.cs), +[ExportXML.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportXML.cs), +[ExportXML.ExportXMLImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportXML.cs), +[ExportXML.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportXML.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -145,7 +147,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportXMLForShimmyJudder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportXMLForShimmyJudder.md index 9cbd3f0641..794fa3fa9c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportXMLForShimmyJudder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportXMLForShimmyJudder.md @@ -1,4 +1,5 @@ -# Class ExportXMLForShimmyJudder +# Class ExportXMLForShimmyJudder + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpFullCar.dll @@ -11,11 +12,11 @@ public class ExportXMLForShimmyJudder : ExportXML, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ExportXML ← -ExportXML ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ExportXML](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportXML.cs) ← +[ExportXML](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportXML.cs) ← [ExportXMLForShimmyJudder](VM.Managed.DAFUL.Car.Operation.ExportXMLForShimmyJudder.md) #### Implements @@ -24,39 +25,40 @@ IOperation #### Inherited Members -ExportXML.m\_scenario, -ExportXML.m\_bEndSolvingThread, -ExportXML.Execute\(\), -ExportXML.GetInformation\(XmlWriter\), -ExportXML.ExportXMLImpl\(\), -ExportXML.WriteJournalCore\(\), -ExportXML.EndExecuteThread\(\), -ExportXML.Name, -ExportXML.Execute\(\), -ExportXML.ExportXMLImpl\(\), -ExportXML.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ExportXML.m\_scenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportXML.cs), +[ExportXML.m\_bEndSolvingThread](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportXML.cs), +[ExportXML.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportXML.cs), +[ExportXML.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportXML.cs), +[ExportXML.ExportXMLImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportXML.cs), +[ExportXML.WriteJournalCore\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportXML.cs), +[ExportXML.EndExecuteThread\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportXML.cs), +[ExportXML.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCar/ExportXML.cs), +[ExportXML.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportXML.cs), +[ExportXML.ExportXMLImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportXML.cs), +[ExportXML.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportXML.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -145,7 +147,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportXMLForTire.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportXMLForTire.md index 57a2aafb72..711863834c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportXMLForTire.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ExportXMLForTire.md @@ -1,4 +1,5 @@ -# Class ExportXMLForTire +# Class ExportXMLForTire + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,10 +12,10 @@ public class ExportXMLForTire : ExportXML, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ExportXML ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ExportXML](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportXML.cs) ← [ExportXML](VM.Managed.DAFUL.Car.Operation.ExportXML.md) ← [ExportXMLForTire](VM.Managed.DAFUL.Car.Operation.ExportXMLForTire.md) @@ -32,31 +33,32 @@ IOperation [ExportXML.WriteJournalCore\(\)](VM.Managed.DAFUL.Car.Operation.ExportXML.md\#VM\_Managed\_DAFUL\_Car\_Operation\_ExportXML\_WriteJournalCore), [ExportXML.EndExecuteThread\(\)](VM.Managed.DAFUL.Car.Operation.ExportXML.md\#VM\_Managed\_DAFUL\_Car\_Operation\_ExportXML\_EndExecuteThread), [ExportXML.Name](VM.Managed.DAFUL.Car.Operation.ExportXML.md\#VM\_Managed\_DAFUL\_Car\_Operation\_ExportXML\_Name), -ExportXML.Execute\(\), -ExportXML.ExportXMLImpl\(\), -ExportXML.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ExportXML.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportXML.cs), +[ExportXML.ExportXMLImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportXML.cs), +[ExportXML.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportXML.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -135,7 +137,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FourPostAnalysis.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FourPostAnalysis.md index abc1386f39..dcb6e0849d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FourPostAnalysis.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FourPostAnalysis.md @@ -1,4 +1,5 @@ -# Class FourPostAnalysis +# Class FourPostAnalysis + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpFullCar.dll @@ -11,9 +12,9 @@ public class FourPostAnalysis : FourPostSimulationRun, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [FourPostSimulationRun](VM.Managed.DAFUL.Car.Operation.FourPostSimulationRun.md) ← [FourPostAnalysis](VM.Managed.DAFUL.Car.Operation.FourPostAnalysis.md) @@ -29,28 +30,29 @@ IOperation [FourPostSimulationRun.UpdateUI\(IUIUpdate, Document\)](VM.Managed.DAFUL.Car.Operation.FourPostSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FourPostSimulationRun\_UpdateUI\_VM\_Managed\_UI\_IUIUpdate\_VM\_Managed\_Document\_), [FourPostSimulationRun.ApplySimulation\(\)](VM.Managed.DAFUL.Car.Operation.FourPostSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FourPostSimulationRun\_ApplySimulation), [FourPostSimulationRun.Name](VM.Managed.DAFUL.Car.Operation.FourPostSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FourPostSimulationRun\_Name), -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -163,7 +165,7 @@ protected override void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool if set to true [b write DFG]. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FourPostSimulationRun.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FourPostSimulationRun.md index 20a0bee182..ef60026006 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FourPostSimulationRun.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FourPostSimulationRun.md @@ -1,4 +1,5 @@ -# Class FourPostSimulationRun +# Class FourPostSimulationRun + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpFullCar.dll @@ -11,9 +12,9 @@ public class FourPostSimulationRun : SimulationRun, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [FourPostSimulationRun](VM.Managed.DAFUL.Car.Operation.FourPostSimulationRun.md) #### Derived @@ -27,28 +28,29 @@ IOperation #### Inherited Members -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -125,7 +127,7 @@ public FourPostSimulationRun(Document doc, string strSimPar) `doc` Document -`strSimPar` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSimPar` string ### FourPostSimulationRun\(Document, SimulationParameter\) @@ -137,7 +139,7 @@ public FourPostSimulationRun(Document doc, SimulationRun.SimulationParameter par `doc` Document -`param` SimulationRun.SimulationParameter +`param` [SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs).[SimulationParameter](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ### FourPostSimulationRun\(JournalParameter\) @@ -173,7 +175,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -185,7 +187,7 @@ protected bool ApplySimulation() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Execute\(\) @@ -203,7 +205,7 @@ protected override void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool ### UpdateUI\(IUIUpdate, Document\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarAnalysisBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarAnalysisBase.md index 84cc761507..42918fca03 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarAnalysisBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarAnalysisBase.md @@ -1,4 +1,5 @@ -# Class FullCarAnalysisBase +# Class FullCarAnalysisBase + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpFullCar.dll @@ -11,9 +12,9 @@ public abstract class FullCarAnalysisBase : FullCarSimulationRun, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [FullCarSimulationRun](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md) ← [FullCarAnalysisBase](VM.Managed.DAFUL.Car.Operation.FullCarAnalysisBase.md) @@ -36,28 +37,29 @@ IOperation [FullCarSimulationRun.UpdateUI\(IUIUpdate, Document\)](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FullCarSimulationRun\_UpdateUI\_VM\_Managed\_UI\_IUIUpdate\_VM\_Managed\_Document\_), [FullCarSimulationRun.ApplySimulation\(\)](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FullCarSimulationRun\_ApplySimulation), [FullCarSimulationRun.Name](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FullCarSimulationRun\_Name), -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -154,7 +156,7 @@ protected abstract string ExecuteName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -176,15 +178,15 @@ protected virtual void ExecuteCore(int nIdex, FullCarTestRigDocument doc, ref Fu #### Parameters -`nIdex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIdex` int The index. -`doc` FullCarTestRigDocument +`doc` [FullCarTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs) The document. -`saConfig` FullCarAnalysisConfigurationBase +`saConfig` [FullCarAnalysisConfigurationBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarSimulationConfiguration.cs) The configuration. @@ -206,7 +208,7 @@ protected override void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool if set to true [b write DFG]. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarAnalysisCornering.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarAnalysisCornering.md index 3d0a5289c5..f4b07f47d3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarAnalysisCornering.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarAnalysisCornering.md @@ -1,4 +1,5 @@ -# Class FullCarAnalysisCornering +# Class FullCarAnalysisCornering + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpFullCar.dll @@ -11,9 +12,9 @@ public class FullCarAnalysisCornering : FullCarAnalysisBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [FullCarSimulationRun](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md) ← [FullCarAnalysisBase](VM.Managed.DAFUL.Car.Operation.FullCarAnalysisBase.md) ← [FullCarAnalysisCornering](VM.Managed.DAFUL.Car.Operation.FullCarAnalysisCornering.md) @@ -34,28 +35,29 @@ IOperation [FullCarSimulationRun.UpdateUI\(IUIUpdate, Document\)](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FullCarSimulationRun\_UpdateUI\_VM\_Managed\_UI\_IUIUpdate\_VM\_Managed\_Document\_), [FullCarSimulationRun.ApplySimulation\(\)](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FullCarSimulationRun\_ApplySimulation), [FullCarSimulationRun.Name](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FullCarSimulationRun\_Name), -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -152,7 +154,7 @@ protected override string ExecuteName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Name @@ -164,7 +166,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -178,15 +180,15 @@ protected override void ExecuteCore(int nIdex, FullCarTestRigDocument doc, ref F #### Parameters -`nIdex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIdex` int The index. -`doc` FullCarTestRigDocument +`doc` [FullCarTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs) The document. -`saConfig` FullCarAnalysisConfigurationBase +`saConfig` [FullCarAnalysisConfigurationBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarSimulationConfiguration.cs) The configuration. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarAnalysisCourse.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarAnalysisCourse.md index 04ef184a21..d358a9617a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarAnalysisCourse.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarAnalysisCourse.md @@ -1,4 +1,5 @@ -# Class FullCarAnalysisCourse +# Class FullCarAnalysisCourse + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpFullCar.dll @@ -11,9 +12,9 @@ public class FullCarAnalysisCourse : FullCarAnalysisBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [FullCarSimulationRun](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md) ← [FullCarAnalysisBase](VM.Managed.DAFUL.Car.Operation.FullCarAnalysisBase.md) ← [FullCarAnalysisCourse](VM.Managed.DAFUL.Car.Operation.FullCarAnalysisCourse.md) @@ -34,28 +35,29 @@ IOperation [FullCarSimulationRun.UpdateUI\(IUIUpdate, Document\)](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FullCarSimulationRun\_UpdateUI\_VM\_Managed\_UI\_IUIUpdate\_VM\_Managed\_Document\_), [FullCarSimulationRun.ApplySimulation\(\)](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FullCarSimulationRun\_ApplySimulation), [FullCarSimulationRun.Name](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FullCarSimulationRun\_Name), -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -152,7 +154,7 @@ protected override string ExecuteName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Name @@ -164,7 +166,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -178,15 +180,15 @@ protected override void ExecuteCore(int nIdex, FullCarTestRigDocument doc, ref F #### Parameters -`nIdex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIdex` int The index. -`doc` FullCarTestRigDocument +`doc` [FullCarTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs) The document. -`saConfig` FullCarAnalysisConfigurationBase +`saConfig` [FullCarAnalysisConfigurationBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarSimulationConfiguration.cs) The configuration. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarAnalysisFileDriven.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarAnalysisFileDriven.md index e8efb766a9..2731e86c76 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarAnalysisFileDriven.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarAnalysisFileDriven.md @@ -1,4 +1,5 @@ -# Class FullCarAnalysisFileDriven +# Class FullCarAnalysisFileDriven + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpFullCar.dll @@ -11,9 +12,9 @@ public class FullCarAnalysisFileDriven : FullCarAnalysisBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [FullCarSimulationRun](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md) ← [FullCarAnalysisBase](VM.Managed.DAFUL.Car.Operation.FullCarAnalysisBase.md) ← [FullCarAnalysisFileDriven](VM.Managed.DAFUL.Car.Operation.FullCarAnalysisFileDriven.md) @@ -34,28 +35,29 @@ IOperation [FullCarSimulationRun.UpdateUI\(IUIUpdate, Document\)](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FullCarSimulationRun\_UpdateUI\_VM\_Managed\_UI\_IUIUpdate\_VM\_Managed\_Document\_), [FullCarSimulationRun.ApplySimulation\(\)](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FullCarSimulationRun\_ApplySimulation), [FullCarSimulationRun.Name](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FullCarSimulationRun\_Name), -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -152,7 +154,7 @@ protected override string ExecuteName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Name @@ -164,7 +166,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -178,15 +180,15 @@ protected override void ExecuteCore(int nIdex, FullCarTestRigDocument doc, ref F #### Parameters -`nIdex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIdex` int The index. -`doc` FullCarTestRigDocument +`doc` [FullCarTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs) The document. -`saConfig` FullCarAnalysisConfigurationBase +`saConfig` [FullCarAnalysisConfigurationBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarSimulationConfiguration.cs) The configuration. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarAnalysisOpen.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarAnalysisOpen.md index 919737ad79..8a34bfe21b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarAnalysisOpen.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarAnalysisOpen.md @@ -1,4 +1,5 @@ -# Class FullCarAnalysisOpen +# Class FullCarAnalysisOpen + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpFullCar.dll @@ -11,9 +12,9 @@ public class FullCarAnalysisOpen : FullCarAnalysisBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [FullCarSimulationRun](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md) ← [FullCarAnalysisBase](VM.Managed.DAFUL.Car.Operation.FullCarAnalysisBase.md) ← [FullCarAnalysisOpen](VM.Managed.DAFUL.Car.Operation.FullCarAnalysisOpen.md) @@ -34,28 +35,29 @@ IOperation [FullCarSimulationRun.UpdateUI\(IUIUpdate, Document\)](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FullCarSimulationRun\_UpdateUI\_VM\_Managed\_UI\_IUIUpdate\_VM\_Managed\_Document\_), [FullCarSimulationRun.ApplySimulation\(\)](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FullCarSimulationRun\_ApplySimulation), [FullCarSimulationRun.Name](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FullCarSimulationRun\_Name), -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -152,7 +154,7 @@ protected override string ExecuteName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Name @@ -164,7 +166,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -178,15 +180,15 @@ protected override void ExecuteCore(int nIdex, FullCarTestRigDocument doc, ref F #### Parameters -`nIdex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIdex` int The index. -`doc` FullCarTestRigDocument +`doc` [FullCarTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs) The document. -`saConfig` FullCarAnalysisConfigurationBase +`saConfig` [FullCarAnalysisConfigurationBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarSimulationConfiguration.cs) The configuration. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarAnalysisStraight.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarAnalysisStraight.md index 00d00300a0..c513876e27 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarAnalysisStraight.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarAnalysisStraight.md @@ -1,4 +1,5 @@ -# Class FullCarAnalysisStraight +# Class FullCarAnalysisStraight + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpFullCar.dll @@ -11,9 +12,9 @@ public class FullCarAnalysisStraight : FullCarAnalysisBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [FullCarSimulationRun](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md) ← [FullCarAnalysisBase](VM.Managed.DAFUL.Car.Operation.FullCarAnalysisBase.md) ← [FullCarAnalysisStraight](VM.Managed.DAFUL.Car.Operation.FullCarAnalysisStraight.md) @@ -34,28 +35,29 @@ IOperation [FullCarSimulationRun.UpdateUI\(IUIUpdate, Document\)](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FullCarSimulationRun\_UpdateUI\_VM\_Managed\_UI\_IUIUpdate\_VM\_Managed\_Document\_), [FullCarSimulationRun.ApplySimulation\(\)](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FullCarSimulationRun\_ApplySimulation), [FullCarSimulationRun.Name](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FullCarSimulationRun\_Name), -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -152,7 +154,7 @@ protected override string ExecuteName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Name @@ -164,7 +166,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -178,15 +180,15 @@ protected override void ExecuteCore(int nIdex, FullCarTestRigDocument doc, ref F #### Parameters -`nIdex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIdex` int The index. -`doc` FullCarTestRigDocument +`doc` [FullCarTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs) The document. -`saConfig` FullCarAnalysisConfigurationBase +`saConfig` [FullCarAnalysisConfigurationBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarSimulationConfiguration.cs) The configuration. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarAssemblyConfigModify.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarAssemblyConfigModify.md index 01b4cb83a5..b1d0fcc0a9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarAssemblyConfigModify.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarAssemblyConfigModify.md @@ -1,4 +1,5 @@ -# Class FullCarAssemblyConfigModify +# Class FullCarAssemblyConfigModify + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpFullCar.dll @@ -11,9 +12,9 @@ public class FullCarAssemblyConfigModify : SimulationRun, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [FullCarAssemblyConfigModify](VM.Managed.DAFUL.Car.Operation.FullCarAssemblyConfigModify.md) #### Implements @@ -22,28 +23,29 @@ IOperation #### Inherited Members -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -140,7 +142,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarReAssembly.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarReAssembly.md index 6b1973d2c7..cb987bd777 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarReAssembly.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarReAssembly.md @@ -1,4 +1,5 @@ -# Class FullCarReAssembly +# Class FullCarReAssembly + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpFullCar.dll @@ -11,9 +12,9 @@ public class FullCarReAssembly : DialogOperation, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -DialogOperation ← +[DialogOperation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs) ← [FullCarReAssembly](VM.Managed.DAFUL.Car.Operation.FullCarReAssembly.md) #### Derived @@ -26,11 +27,11 @@ IOperation #### Inherited Members -DialogOperation.Execute\(\), -DialogOperation.OnApply\(object, CancelEventArgs\), -DialogOperation.IsConainOpenedDic\(Document\), -DialogOperation.Name, -DialogOperation.OpDialog, +[DialogOperation.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.IsConainOpenedDic\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OpDialog](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -107,7 +108,7 @@ protected bool m_bIsFullCarExceptWheel #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_strAssemblyInfo @@ -117,7 +118,7 @@ protected string m_strAssemblyInfo #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Properties @@ -131,7 +132,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -153,11 +154,11 @@ protected override void OnApply(object sender, CancelEventArgs arg) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. -`arg` [CancelEventArgs](https://learn.microsoft.com/dotnet/api/system.componentmodel.canceleventargs) +`arg` CancelEventArgs The instance containing the event data. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md index e5165941f2..6c8ef16269 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md @@ -1,4 +1,5 @@ -# Class FullCarSimulationRun +# Class FullCarSimulationRun + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpFullCar.dll @@ -11,9 +12,9 @@ public class FullCarSimulationRun : SimulationRun, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [FullCarSimulationRun](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md) #### Derived @@ -27,28 +28,29 @@ IOperation #### Inherited Members -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -125,7 +127,7 @@ public FullCarSimulationRun(Document doc, string strSimPar) `doc` Document -`strSimPar` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSimPar` string ### FullCarSimulationRun\(Document, SimulationParameter\) @@ -137,7 +139,7 @@ public FullCarSimulationRun(Document doc, SimulationRun.SimulationParameter para `doc` Document -`param` SimulationRun.SimulationParameter +`param` [SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs).[SimulationParameter](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ### FullCarSimulationRun\(JournalParameter\) @@ -161,7 +163,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -173,7 +175,7 @@ protected bool ApplySimulation() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Execute\(\) @@ -191,7 +193,7 @@ protected override void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool ### UpdateUI\(IUIUpdate, Document\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.KinematicAndCompliance.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.KinematicAndCompliance.md index a5af4b9f40..b9bffcfdec 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.KinematicAndCompliance.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.KinematicAndCompliance.md @@ -1,4 +1,5 @@ -# Class KinematicAndCompliance +# Class KinematicAndCompliance + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,9 +12,9 @@ public class KinematicAndCompliance : DialogOperation, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -DialogOperation ← +[DialogOperation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs) ← [KinematicAndCompliance](VM.Managed.DAFUL.Car.Operation.KinematicAndCompliance.md) #### Implements @@ -22,11 +23,11 @@ IOperation #### Inherited Members -DialogOperation.Execute\(\), -DialogOperation.OnApply\(object, CancelEventArgs\), -DialogOperation.IsConainOpenedDic\(Document\), -DialogOperation.Name, -DialogOperation.OpDialog, +[DialogOperation.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.IsConainOpenedDic\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OpDialog](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -105,7 +106,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -127,11 +128,11 @@ protected override void OnApply(object sender, CancelEventArgs arg) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. -`arg` [CancelEventArgs](https://learn.microsoft.com/dotnet/api/system.componentmodel.canceleventargs) +`arg` CancelEventArgs The instance containing the event data. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ModifyDesignParameter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ModifyDesignParameter.md index 4ba0e396da..63f15e2ba7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ModifyDesignParameter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ModifyDesignParameter.md @@ -1,4 +1,5 @@ -# Class ModifyDesignParameter +# Class ModifyDesignParameter + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,9 +12,9 @@ public class ModifyDesignParameter : DialogOperation, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -DialogOperation ← +[DialogOperation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs) ← [ModifyDesignParameter](VM.Managed.DAFUL.Car.Operation.ModifyDesignParameter.md) #### Implements @@ -22,11 +23,11 @@ IOperation #### Inherited Members -DialogOperation.Execute\(\), -DialogOperation.OnApply\(object, CancelEventArgs\), -DialogOperation.IsConainOpenedDic\(Document\), -DialogOperation.Name, -DialogOperation.OpDialog, +[DialogOperation.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.IsConainOpenedDic\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OpDialog](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -105,7 +106,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -127,11 +128,11 @@ protected override void OnApply(object sender, CancelEventArgs arg) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. -`arg` [CancelEventArgs](https://learn.microsoft.com/dotnet/api/system.componentmodel.canceleventargs) +`arg` CancelEventArgs The instance containing the event data. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ModifyModelingParameter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ModifyModelingParameter.md index bff1a4831e..9597de37d6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ModifyModelingParameter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ModifyModelingParameter.md @@ -1,4 +1,5 @@ -# Class ModifyModelingParameter +# Class ModifyModelingParameter + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,9 +12,9 @@ public class ModifyModelingParameter : DialogOperation, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -DialogOperation ← +[DialogOperation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs) ← [ModifyModelingParameter](VM.Managed.DAFUL.Car.Operation.ModifyModelingParameter.md) #### Implements @@ -22,11 +23,11 @@ IOperation #### Inherited Members -DialogOperation.Execute\(\), -DialogOperation.OnApply\(object, CancelEventArgs\), -DialogOperation.IsConainOpenedDic\(Document\), -DialogOperation.Name, -DialogOperation.OpDialog, +[DialogOperation.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.IsConainOpenedDic\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OpDialog](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -105,7 +106,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -127,11 +128,11 @@ protected override void OnApply(object sender, CancelEventArgs arg) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. -`arg` [CancelEventArgs](https://learn.microsoft.com/dotnet/api/system.componentmodel.canceleventargs) +`arg` CancelEventArgs The instance containing the event data. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.OpenToeCamberDialog.ApplyOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.OpenToeCamberDialog.ApplyOperation.md index 47eaa1dbe3..e8cde38842 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.OpenToeCamberDialog.ApplyOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.OpenToeCamberDialog.ApplyOperation.md @@ -1,4 +1,5 @@ -# Class OpenToeCamberDialog.ApplyOperation +# Class OpenToeCamberDialog.ApplyOperation + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,7 +12,7 @@ public class OpenToeCamberDialog.ApplyOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [OpenToeCamberDialog.ApplyOperation](VM.Managed.DAFUL.Car.Operation.OpenToeCamberDialog.ApplyOperation.md) @@ -111,7 +112,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Result @@ -121,7 +122,7 @@ public bool Result { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -141,5 +142,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.OpenToeCamberDialog.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.OpenToeCamberDialog.md index 26544a3e18..3493bfa387 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.OpenToeCamberDialog.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.OpenToeCamberDialog.md @@ -1,4 +1,5 @@ -# Class OpenToeCamberDialog +# Class OpenToeCamberDialog + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,9 +12,9 @@ public class OpenToeCamberDialog : DialogOperation, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -DialogOperation ← +[DialogOperation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs) ← [OpenToeCamberDialog](VM.Managed.DAFUL.Car.Operation.OpenToeCamberDialog.md) #### Implements @@ -22,11 +23,11 @@ IOperation #### Inherited Members -DialogOperation.Execute\(\), -DialogOperation.OnApply\(object, CancelEventArgs\), -DialogOperation.IsConainOpenedDic\(Document\), -DialogOperation.Name, -DialogOperation.OpDialog, +[DialogOperation.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.IsConainOpenedDic\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OpDialog](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -105,7 +106,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UseThread @@ -117,7 +118,7 @@ public override bool UseThread { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -139,11 +140,11 @@ protected override void OnApply(object sender, CancelEventArgs arg) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. -`arg` [CancelEventArgs](https://learn.microsoft.com/dotnet/api/system.componentmodel.canceleventargs) +`arg` CancelEventArgs The instance containing the event data. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ReAssembleForChangeAssemblyOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ReAssembleForChangeAssemblyOperation.md index 15755cf3bf..345b46aa4b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ReAssembleForChangeAssemblyOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ReAssembleForChangeAssemblyOperation.md @@ -1,4 +1,5 @@ -# Class ReAssembleForChangeAssemblyOperation +# Class ReAssembleForChangeAssemblyOperation + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,7 +12,7 @@ public class ReAssembleForChangeAssemblyOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ReAssembleForChangeAssemblyOperation](VM.Managed.DAFUL.Car.Operation.ReAssembleForChangeAssemblyOperation.md) @@ -85,11 +86,11 @@ public ReAssembleForChangeAssemblyOperation(SubSystemDocument doc, string strOld #### Parameters -`doc` SubSystemDocument +`doc` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) -`strOldMeshFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOldMeshFile` string -`strNewMeshFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strNewMeshFile` string ### ReAssembleForChangeAssemblyOperation\(JournalParameter\) @@ -113,7 +114,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -133,5 +134,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ReAssemblyOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ReAssemblyOperation.md index b8398efa92..f53d7f5f2c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ReAssemblyOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ReAssemblyOperation.md @@ -1,4 +1,5 @@ -# Class ReAssemblyOperation +# Class ReAssemblyOperation + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,7 +12,7 @@ public class ReAssemblyOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ReAssemblyOperation](VM.Managed.DAFUL.Car.Operation.ReAssemblyOperation.md) @@ -85,9 +86,9 @@ public ReAssemblyOperation(TestRigDocumentBase trDoc, XmlDocument xmlDoc) #### Parameters -`trDoc` TestRigDocumentBase +`trDoc` [TestRigDocumentBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs) -`xmlDoc` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDoc` XmlDocument ### ReAssemblyOperation\(JournalParameter\) @@ -111,7 +112,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -131,5 +132,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.SetMassPropertyOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.SetMassPropertyOperation.md index d6da2be802..ebd96e88ac 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.SetMassPropertyOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.SetMassPropertyOperation.md @@ -1,4 +1,5 @@ -# Class SetMassPropertyOperation +# Class SetMassPropertyOperation + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,7 +12,7 @@ public class SetMassPropertyOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [SetMassPropertyOperation](VM.Managed.DAFUL.Car.Operation.SetMassPropertyOperation.md) @@ -103,7 +104,7 @@ public double[] m_arAdjustTensor #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### m\_dAdjustMass @@ -113,7 +114,7 @@ public double m_dAdjustMass #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_iMassProp @@ -157,7 +158,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -177,5 +178,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShimmyJudderAnalysis.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShimmyJudderAnalysis.md index bd42959e13..368ddfd876 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShimmyJudderAnalysis.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShimmyJudderAnalysis.md @@ -1,4 +1,5 @@ -# Class ShimmyJudderAnalysis +# Class ShimmyJudderAnalysis + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpFullCar.dll @@ -11,9 +12,9 @@ public class ShimmyJudderAnalysis : ShimmyJudderSimulationRun, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [ShimmyJudderSimulationRun](VM.Managed.DAFUL.Car.Operation.ShimmyJudderSimulationRun.md) ← [ShimmyJudderAnalysis](VM.Managed.DAFUL.Car.Operation.ShimmyJudderAnalysis.md) @@ -28,28 +29,29 @@ IOperation [ShimmyJudderSimulationRun.SimulationRunImpl\(bool\)](VM.Managed.DAFUL.Car.Operation.ShimmyJudderSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_ShimmyJudderSimulationRun\_SimulationRunImpl\_System\_Boolean\_), [ShimmyJudderSimulationRun.ApplySimulation\(\)](VM.Managed.DAFUL.Car.Operation.ShimmyJudderSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_ShimmyJudderSimulationRun\_ApplySimulation), [ShimmyJudderSimulationRun.Name](VM.Managed.DAFUL.Car.Operation.ShimmyJudderSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_ShimmyJudderSimulationRun\_Name), -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -152,5 +154,5 @@ protected override void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShimmyJudderReAssembly.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShimmyJudderReAssembly.md index 00c30ce72d..8c158bf24c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShimmyJudderReAssembly.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShimmyJudderReAssembly.md @@ -1,4 +1,5 @@ -# Class ShimmyJudderReAssembly +# Class ShimmyJudderReAssembly + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpFullCar.dll @@ -11,9 +12,9 @@ public class ShimmyJudderReAssembly : FullCarReAssembly, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -DialogOperation ← +[DialogOperation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs) ← [FullCarReAssembly](VM.Managed.DAFUL.Car.Operation.FullCarReAssembly.md) ← [ShimmyJudderReAssembly](VM.Managed.DAFUL.Car.Operation.ShimmyJudderReAssembly.md) @@ -30,11 +31,11 @@ IOperation [FullCarReAssembly.UpdateUI\(IUIUpdate, Document\)](VM.Managed.DAFUL.Car.Operation.FullCarReAssembly.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FullCarReAssembly\_UpdateUI\_VM\_Managed\_UI\_IUIUpdate\_VM\_Managed\_Document\_), [FullCarReAssembly.OnApply\(object, CancelEventArgs\)](VM.Managed.DAFUL.Car.Operation.FullCarReAssembly.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FullCarReAssembly\_OnApply\_System\_Object\_System\_ComponentModel\_CancelEventArgs\_), [FullCarReAssembly.Name](VM.Managed.DAFUL.Car.Operation.FullCarReAssembly.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FullCarReAssembly\_Name), -DialogOperation.Execute\(\), -DialogOperation.OnApply\(object, CancelEventArgs\), -DialogOperation.IsConainOpenedDic\(Document\), -DialogOperation.Name, -DialogOperation.OpDialog, +[DialogOperation.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.IsConainOpenedDic\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OpDialog](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -113,7 +114,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShimmyJudderSimulationRun.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShimmyJudderSimulationRun.md index 8f9e8c47ec..096ead6e8a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShimmyJudderSimulationRun.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShimmyJudderSimulationRun.md @@ -1,4 +1,5 @@ -# Class ShimmyJudderSimulationRun +# Class ShimmyJudderSimulationRun + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpFullCar.dll @@ -11,9 +12,9 @@ public class ShimmyJudderSimulationRun : SimulationRun, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [ShimmyJudderSimulationRun](VM.Managed.DAFUL.Car.Operation.ShimmyJudderSimulationRun.md) #### Derived @@ -27,28 +28,29 @@ IOperation #### Inherited Members -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -125,7 +127,7 @@ public ShimmyJudderSimulationRun(Document doc, string strSimPar) `doc` Document -`strSimPar` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSimPar` string ### ShimmyJudderSimulationRun\(Document, SimulationParameter\) @@ -137,7 +139,7 @@ public ShimmyJudderSimulationRun(Document doc, SimulationRun.SimulationParameter `doc` Document -`param` SimulationRun.SimulationParameter +`param` [SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs).[SimulationParameter](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ### ShimmyJudderSimulationRun\(JournalParameter\) @@ -173,7 +175,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -185,7 +187,7 @@ protected bool ApplySimulation() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Execute\(\) @@ -203,5 +205,5 @@ protected override void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShowFourPostSimulationDlg.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShowFourPostSimulationDlg.md index a8450c8d0e..75509ac54e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShowFourPostSimulationDlg.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShowFourPostSimulationDlg.md @@ -1,4 +1,5 @@ -# Class ShowFourPostSimulationDlg +# Class ShowFourPostSimulationDlg + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpFullCar.dll @@ -11,9 +12,9 @@ public class ShowFourPostSimulationDlg : FourPostSimulationRun, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [FourPostSimulationRun](VM.Managed.DAFUL.Car.Operation.FourPostSimulationRun.md) ← [ShowFourPostSimulationDlg](VM.Managed.DAFUL.Car.Operation.ShowFourPostSimulationDlg.md) @@ -29,28 +30,29 @@ IOperation [FourPostSimulationRun.UpdateUI\(IUIUpdate, Document\)](VM.Managed.DAFUL.Car.Operation.FourPostSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FourPostSimulationRun\_UpdateUI\_VM\_Managed\_UI\_IUIUpdate\_VM\_Managed\_Document\_), [FourPostSimulationRun.ApplySimulation\(\)](VM.Managed.DAFUL.Car.Operation.FourPostSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FourPostSimulationRun\_ApplySimulation), [FourPostSimulationRun.Name](VM.Managed.DAFUL.Car.Operation.FourPostSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FourPostSimulationRun\_Name), -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -147,7 +149,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -177,7 +179,7 @@ protected override void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool if set to true [b write DFG]. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShowFullCarSimulationDlg.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShowFullCarSimulationDlg.md index fc0694008a..3b526ff855 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShowFullCarSimulationDlg.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShowFullCarSimulationDlg.md @@ -1,4 +1,5 @@ -# Class ShowFullCarSimulationDlg +# Class ShowFullCarSimulationDlg + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpFullCar.dll @@ -11,9 +12,9 @@ public class ShowFullCarSimulationDlg : FullCarSimulationRun, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [FullCarSimulationRun](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md) ← [ShowFullCarSimulationDlg](VM.Managed.DAFUL.Car.Operation.ShowFullCarSimulationDlg.md) @@ -32,28 +33,29 @@ IOperation [FullCarSimulationRun.UpdateUI\(IUIUpdate, Document\)](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FullCarSimulationRun\_UpdateUI\_VM\_Managed\_UI\_IUIUpdate\_VM\_Managed\_Document\_), [FullCarSimulationRun.ApplySimulation\(\)](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FullCarSimulationRun\_ApplySimulation), [FullCarSimulationRun.Name](VM.Managed.DAFUL.Car.Operation.FullCarSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_FullCarSimulationRun\_Name), -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -150,7 +152,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UseCoSim @@ -162,7 +164,7 @@ protected virtual bool UseCoSim { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -192,7 +194,7 @@ protected override void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool if set to true [b write DFG]. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShowInterfaceDlgForCar.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShowInterfaceDlgForCar.md index 20a8bc1afb..aea57a224e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShowInterfaceDlgForCar.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShowInterfaceDlgForCar.md @@ -1,4 +1,5 @@ -# Class ShowInterfaceDlgForCar +# Class ShowInterfaceDlgForCar + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,7 +12,7 @@ public class ShowInterfaceDlgForCar : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ShowInterfaceDlgForCar](VM.Managed.DAFUL.Car.Operation.ShowInterfaceDlgForCar.md) @@ -99,7 +100,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShowShimmyJudderSimulationDlg.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShowShimmyJudderSimulationDlg.md index 46289681c1..f063ef8823 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShowShimmyJudderSimulationDlg.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShowShimmyJudderSimulationDlg.md @@ -1,4 +1,5 @@ -# Class ShowShimmyJudderSimulationDlg +# Class ShowShimmyJudderSimulationDlg + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpFullCar.dll @@ -11,9 +12,9 @@ public class ShowShimmyJudderSimulationDlg : ShimmyJudderSimulationRun, IOperati #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [ShimmyJudderSimulationRun](VM.Managed.DAFUL.Car.Operation.ShimmyJudderSimulationRun.md) ← [ShowShimmyJudderSimulationDlg](VM.Managed.DAFUL.Car.Operation.ShowShimmyJudderSimulationDlg.md) @@ -28,28 +29,29 @@ IOperation [ShimmyJudderSimulationRun.SimulationRunImpl\(bool\)](VM.Managed.DAFUL.Car.Operation.ShimmyJudderSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_ShimmyJudderSimulationRun\_SimulationRunImpl\_System\_Boolean\_), [ShimmyJudderSimulationRun.ApplySimulation\(\)](VM.Managed.DAFUL.Car.Operation.ShimmyJudderSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_ShimmyJudderSimulationRun\_ApplySimulation), [ShimmyJudderSimulationRun.Name](VM.Managed.DAFUL.Car.Operation.ShimmyJudderSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_ShimmyJudderSimulationRun\_Name), -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -138,7 +140,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -166,5 +168,5 @@ protected override void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShowSimulationDlg.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShowSimulationDlg.md index c4de2f99f7..3e59a59da8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShowSimulationDlg.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShowSimulationDlg.md @@ -1,4 +1,5 @@ -# Class ShowSimulationDlg +# Class ShowSimulationDlg + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,9 +12,9 @@ public class ShowSimulationDlg : SimulationRun, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [SimulationRun](VM.Managed.DAFUL.Car.Operation.SimulationRun.md) ← [ShowSimulationDlg](VM.Managed.DAFUL.Car.Operation.ShowSimulationDlg.md) @@ -32,28 +33,29 @@ IOperation [SimulationRun.UpdateUI\(IUIUpdate, Document\)](VM.Managed.DAFUL.Car.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_SimulationRun\_UpdateUI\_VM\_Managed\_UI\_IUIUpdate\_VM\_Managed\_Document\_), [SimulationRun.ApplySimulation\(\)](VM.Managed.DAFUL.Car.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_SimulationRun\_ApplySimulation), [SimulationRun.Name](VM.Managed.DAFUL.Car.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_SimulationRun\_Name), -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -150,7 +152,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UseCoSim @@ -162,7 +164,7 @@ protected virtual bool UseCoSim { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -192,7 +194,7 @@ protected override void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool if set to true [b write DFG]. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShowTireSimulationDlg.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShowTireSimulationDlg.md index 7c12cdd0bd..05fa9560fd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShowTireSimulationDlg.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.ShowTireSimulationDlg.md @@ -1,4 +1,5 @@ -# Class ShowTireSimulationDlg +# Class ShowTireSimulationDlg + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,9 +12,9 @@ public class ShowTireSimulationDlg : TireSimulationRun, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [TireSimulationRun](VM.Managed.DAFUL.Car.Operation.TireSimulationRun.md) ← [ShowTireSimulationDlg](VM.Managed.DAFUL.Car.Operation.ShowTireSimulationDlg.md) @@ -29,28 +30,29 @@ IOperation [TireSimulationRun.UpdateUI\(IUIUpdate, Document\)](VM.Managed.DAFUL.Car.Operation.TireSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_TireSimulationRun\_UpdateUI\_VM\_Managed\_UI\_IUIUpdate\_VM\_Managed\_Document\_), [TireSimulationRun.ApplySimulation\(\)](VM.Managed.DAFUL.Car.Operation.TireSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_TireSimulationRun\_ApplySimulation), [TireSimulationRun.Name](VM.Managed.DAFUL.Car.Operation.TireSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_TireSimulationRun\_Name), -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -147,7 +149,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -177,7 +179,7 @@ protected override void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool if set to true [b write DFG]. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.SimulationRun.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.SimulationRun.md index 3c9e1e92d9..1ee7b7cb0a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.SimulationRun.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.SimulationRun.md @@ -1,4 +1,5 @@ -# Class SimulationRun +# Class SimulationRun + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,9 +12,9 @@ public class SimulationRun : SimulationRun, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [SimulationRun](VM.Managed.DAFUL.Car.Operation.SimulationRun.md) #### Derived @@ -26,28 +27,29 @@ IOperation #### Inherited Members -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -124,7 +126,7 @@ public SimulationRun(Document doc, string strSimPar) `doc` Document -`strSimPar` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSimPar` string ### SimulationRun\(Document, SimulationParameter\) @@ -136,7 +138,7 @@ public SimulationRun(Document doc, SimulationRun.SimulationParameter param) `doc` Document -`param` SimulationRun.SimulationParameter +`param` [SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs).[SimulationParameter](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ### SimulationRun\(JournalParameter\) @@ -160,7 +162,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -172,7 +174,7 @@ protected bool ApplySimulation() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Execute\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.SuspensionAssemblyAnalysis.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.SuspensionAssemblyAnalysis.md index 532436e5b7..1e43122713 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.SuspensionAssemblyAnalysis.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.SuspensionAssemblyAnalysis.md @@ -1,4 +1,5 @@ -# Class SuspensionAssemblyAnalysis +# Class SuspensionAssemblyAnalysis + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,9 +12,9 @@ public class SuspensionAssemblyAnalysis : ShowSimulationDlg, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [SimulationRun](VM.Managed.DAFUL.Car.Operation.SimulationRun.md) ← [ShowSimulationDlg](VM.Managed.DAFUL.Car.Operation.ShowSimulationDlg.md) ← [SuspensionAssemblyAnalysis](VM.Managed.DAFUL.Car.Operation.SuspensionAssemblyAnalysis.md) @@ -33,28 +34,29 @@ IOperation [SimulationRun.UpdateUI\(IUIUpdate, Document\)](VM.Managed.DAFUL.Car.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_SimulationRun\_UpdateUI\_VM\_Managed\_UI\_IUIUpdate\_VM\_Managed\_Document\_), [SimulationRun.ApplySimulation\(\)](VM.Managed.DAFUL.Car.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_SimulationRun\_ApplySimulation), [SimulationRun.Name](VM.Managed.DAFUL.Car.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_SimulationRun\_Name), -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -151,7 +153,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.SuspensionAssemblyConfigModify.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.SuspensionAssemblyConfigModify.md index b4c57a5847..7ee0d27576 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.SuspensionAssemblyConfigModify.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.SuspensionAssemblyConfigModify.md @@ -1,4 +1,5 @@ -# Class SuspensionAssemblyConfigModify +# Class SuspensionAssemblyConfigModify + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,9 +12,9 @@ public class SuspensionAssemblyConfigModify : SimulationRun, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [SuspensionAssemblyConfigModify](VM.Managed.DAFUL.Car.Operation.SuspensionAssemblyConfigModify.md) #### Implements @@ -22,28 +23,29 @@ IOperation #### Inherited Members -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -132,7 +134,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.SuspensionReAssembly.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.SuspensionReAssembly.md index fb5a40d01d..3fb34c7eff 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.SuspensionReAssembly.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.SuspensionReAssembly.md @@ -1,4 +1,5 @@ -# Class SuspensionReAssembly +# Class SuspensionReAssembly + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,9 +12,9 @@ public class SuspensionReAssembly : DialogOperation, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -DialogOperation ← +[DialogOperation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs) ← [SuspensionReAssembly](VM.Managed.DAFUL.Car.Operation.SuspensionReAssembly.md) #### Implements @@ -22,11 +23,11 @@ IOperation #### Inherited Members -DialogOperation.Execute\(\), -DialogOperation.OnApply\(object, CancelEventArgs\), -DialogOperation.IsConainOpenedDic\(Document\), -DialogOperation.Name, -DialogOperation.OpDialog, +[DialogOperation.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.IsConainOpenedDic\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OpDialog](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -105,7 +106,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -127,11 +128,11 @@ protected override void OnApply(object sender, CancelEventArgs arg) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. -`arg` [CancelEventArgs](https://learn.microsoft.com/dotnet/api/system.componentmodel.canceleventargs) +`arg` CancelEventArgs The instance containing the event data. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.SuspensionTemplateConfigModify.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.SuspensionTemplateConfigModify.md index e57f73c613..7d401dfad8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.SuspensionTemplateConfigModify.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.SuspensionTemplateConfigModify.md @@ -1,4 +1,5 @@ -# Class SuspensionTemplateConfigModify +# Class SuspensionTemplateConfigModify + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,9 +12,9 @@ public class SuspensionTemplateConfigModify : DialogOperation, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -DialogOperation ← +[DialogOperation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs) ← [SuspensionTemplateConfigModify](VM.Managed.DAFUL.Car.Operation.SuspensionTemplateConfigModify.md) #### Implements @@ -22,11 +23,11 @@ IOperation #### Inherited Members -DialogOperation.Execute\(\), -DialogOperation.OnApply\(object, CancelEventArgs\), -DialogOperation.IsConainOpenedDic\(Document\), -DialogOperation.Name, -DialogOperation.OpDialog, +[DialogOperation.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.IsConainOpenedDic\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OpDialog](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -105,7 +106,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -127,11 +128,11 @@ protected override void OnApply(object sender, CancelEventArgs arg) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. -`arg` [CancelEventArgs](https://learn.microsoft.com/dotnet/api/system.componentmodel.canceleventargs) +`arg` CancelEventArgs The instance containing the event data. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.TireAnalysisBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.TireAnalysisBase.md index 22f6de7a46..9bb755d34c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.TireAnalysisBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.TireAnalysisBase.md @@ -1,4 +1,5 @@ -# Class TireAnalysisBase +# Class TireAnalysisBase + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,9 +12,9 @@ public abstract class TireAnalysisBase : TireSimulationRun, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [TireSimulationRun](VM.Managed.DAFUL.Car.Operation.TireSimulationRun.md) ← [TireAnalysisBase](VM.Managed.DAFUL.Car.Operation.TireAnalysisBase.md) @@ -35,28 +36,29 @@ IOperation [TireSimulationRun.UpdateUI\(IUIUpdate, Document\)](VM.Managed.DAFUL.Car.Operation.TireSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_TireSimulationRun\_UpdateUI\_VM\_Managed\_UI\_IUIUpdate\_VM\_Managed\_Document\_), [TireSimulationRun.ApplySimulation\(\)](VM.Managed.DAFUL.Car.Operation.TireSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_TireSimulationRun\_ApplySimulation), [TireSimulationRun.Name](VM.Managed.DAFUL.Car.Operation.TireSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_TireSimulationRun\_Name), -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -153,7 +155,7 @@ protected abstract string ExecuteName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -175,15 +177,15 @@ protected virtual void ExecuteCore(int nIdex, TireTestRigDocument doc, ref TireA #### Parameters -`nIdex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIdex` int The n idex. -`doc` TireTestRigDocument +`doc` [TireTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TireTestRigDocument.cs) The doc. -`taConfig` TireAnalysisConfigurationBase +`taConfig` [TireAnalysisConfigurationBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TireSimulationConfiguration.cs) The ta config. @@ -205,7 +207,7 @@ protected override void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool if set to true [b write DFG]. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.TireAnalysisHandlingSteady.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.TireAnalysisHandlingSteady.md index 4b204936e0..3b55642976 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.TireAnalysisHandlingSteady.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.TireAnalysisHandlingSteady.md @@ -1,4 +1,5 @@ -# Class TireAnalysisHandlingSteady +# Class TireAnalysisHandlingSteady + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,9 +12,9 @@ public class TireAnalysisHandlingSteady : TireAnalysisBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [TireSimulationRun](VM.Managed.DAFUL.Car.Operation.TireSimulationRun.md) ← [TireAnalysisBase](VM.Managed.DAFUL.Car.Operation.TireAnalysisBase.md) ← [TireAnalysisHandlingSteady](VM.Managed.DAFUL.Car.Operation.TireAnalysisHandlingSteady.md) @@ -35,28 +36,29 @@ IOperation [TireSimulationRun.UpdateUI\(IUIUpdate, Document\)](VM.Managed.DAFUL.Car.Operation.TireSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_TireSimulationRun\_UpdateUI\_VM\_Managed\_UI\_IUIUpdate\_VM\_Managed\_Document\_), [TireSimulationRun.ApplySimulation\(\)](VM.Managed.DAFUL.Car.Operation.TireSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_TireSimulationRun\_ApplySimulation), [TireSimulationRun.Name](VM.Managed.DAFUL.Car.Operation.TireSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_TireSimulationRun\_Name), -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -153,7 +155,7 @@ protected override string ExecuteName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Name @@ -165,7 +167,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -179,15 +181,15 @@ protected override void ExecuteCore(int nIdex, TireTestRigDocument doc, ref Tire #### Parameters -`nIdex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIdex` int The index. -`doc` TireTestRigDocument +`doc` [TireTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TireTestRigDocument.cs) The document. -`taConfig` TireAnalysisConfigurationBase +`taConfig` [TireAnalysisConfigurationBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TireSimulationConfiguration.cs) The configuration. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.TireAnalysisHandlingTransient.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.TireAnalysisHandlingTransient.md index 778a1b7d43..421ca336c5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.TireAnalysisHandlingTransient.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.TireAnalysisHandlingTransient.md @@ -1,4 +1,5 @@ -# Class TireAnalysisHandlingTransient +# Class TireAnalysisHandlingTransient + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,9 +12,9 @@ public class TireAnalysisHandlingTransient : TireAnalysisBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [TireSimulationRun](VM.Managed.DAFUL.Car.Operation.TireSimulationRun.md) ← [TireAnalysisBase](VM.Managed.DAFUL.Car.Operation.TireAnalysisBase.md) ← [TireAnalysisHandlingTransient](VM.Managed.DAFUL.Car.Operation.TireAnalysisHandlingTransient.md) @@ -35,28 +36,29 @@ IOperation [TireSimulationRun.UpdateUI\(IUIUpdate, Document\)](VM.Managed.DAFUL.Car.Operation.TireSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_TireSimulationRun\_UpdateUI\_VM\_Managed\_UI\_IUIUpdate\_VM\_Managed\_Document\_), [TireSimulationRun.ApplySimulation\(\)](VM.Managed.DAFUL.Car.Operation.TireSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_TireSimulationRun\_ApplySimulation), [TireSimulationRun.Name](VM.Managed.DAFUL.Car.Operation.TireSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_TireSimulationRun\_Name), -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -153,7 +155,7 @@ protected override string ExecuteName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Name @@ -165,7 +167,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -179,15 +181,15 @@ protected override void ExecuteCore(int nIdex, TireTestRigDocument doc, ref Tire #### Parameters -`nIdex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIdex` int The index. -`doc` TireTestRigDocument +`doc` [TireTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TireTestRigDocument.cs) The document. -`taConfig` TireAnalysisConfigurationBase +`taConfig` [TireAnalysisConfigurationBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TireSimulationConfiguration.cs) The configuration. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.TireAnalysisRide.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.TireAnalysisRide.md index a44d84c16f..86cfba5702 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.TireAnalysisRide.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.TireAnalysisRide.md @@ -1,4 +1,5 @@ -# Class TireAnalysisRide +# Class TireAnalysisRide + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,9 +12,9 @@ public class TireAnalysisRide : TireAnalysisBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [TireSimulationRun](VM.Managed.DAFUL.Car.Operation.TireSimulationRun.md) ← [TireAnalysisBase](VM.Managed.DAFUL.Car.Operation.TireAnalysisBase.md) ← [TireAnalysisRide](VM.Managed.DAFUL.Car.Operation.TireAnalysisRide.md) @@ -35,28 +36,29 @@ IOperation [TireSimulationRun.UpdateUI\(IUIUpdate, Document\)](VM.Managed.DAFUL.Car.Operation.TireSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_TireSimulationRun\_UpdateUI\_VM\_Managed\_UI\_IUIUpdate\_VM\_Managed\_Document\_), [TireSimulationRun.ApplySimulation\(\)](VM.Managed.DAFUL.Car.Operation.TireSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_TireSimulationRun\_ApplySimulation), [TireSimulationRun.Name](VM.Managed.DAFUL.Car.Operation.TireSimulationRun.md\#VM\_Managed\_DAFUL\_Car\_Operation\_TireSimulationRun\_Name), -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -153,7 +155,7 @@ protected override string ExecuteName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Name @@ -165,7 +167,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -179,15 +181,15 @@ protected override void ExecuteCore(int nIdex, TireTestRigDocument doc, ref Tire #### Parameters -`nIdex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIdex` int The index. -`doc` TireTestRigDocument +`doc` [TireTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TireTestRigDocument.cs) The document. -`taConfig` TireAnalysisConfigurationBase +`taConfig` [TireAnalysisConfigurationBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TireSimulationConfiguration.cs) The configuration. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.TireReAssembly.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.TireReAssembly.md index 1fb39279dd..cc2b14f224 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.TireReAssembly.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.TireReAssembly.md @@ -1,4 +1,5 @@ -# Class TireReAssembly +# Class TireReAssembly + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,9 +12,9 @@ public class TireReAssembly : DialogOperation, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -DialogOperation ← +[DialogOperation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs) ← [TireReAssembly](VM.Managed.DAFUL.Car.Operation.TireReAssembly.md) #### Implements @@ -22,11 +23,11 @@ IOperation #### Inherited Members -DialogOperation.Execute\(\), -DialogOperation.OnApply\(object, CancelEventArgs\), -DialogOperation.IsConainOpenedDic\(Document\), -DialogOperation.Name, -DialogOperation.OpDialog, +[DialogOperation.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.IsConainOpenedDic\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OpDialog](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -105,7 +106,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -127,11 +128,11 @@ protected override void OnApply(object sender, CancelEventArgs arg) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. -`arg` [CancelEventArgs](https://learn.microsoft.com/dotnet/api/system.componentmodel.canceleventargs) +`arg` CancelEventArgs The instance containing the event data. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.TireSimulationRun.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.TireSimulationRun.md index d19fecc6fb..ab2bc23940 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.TireSimulationRun.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.TireSimulationRun.md @@ -1,4 +1,5 @@ -# Class TireSimulationRun +# Class TireSimulationRun + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,9 +12,9 @@ public class TireSimulationRun : SimulationRun, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [TireSimulationRun](VM.Managed.DAFUL.Car.Operation.TireSimulationRun.md) #### Derived @@ -27,28 +28,29 @@ IOperation #### Inherited Members -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -125,7 +127,7 @@ public TireSimulationRun(Document doc, string strSimPar) `doc` Document -`strSimPar` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSimPar` string ### TireSimulationRun\(Document, SimulationParameter\) @@ -137,7 +139,7 @@ public TireSimulationRun(Document doc, SimulationRun.SimulationParameter param) `doc` Document -`param` SimulationRun.SimulationParameter +`param` [SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs).[SimulationParameter](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ### TireSimulationRun\(JournalParameter\) @@ -173,7 +175,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -185,7 +187,7 @@ protected bool ApplySimulation() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Execute\(\) @@ -203,7 +205,7 @@ protected override void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool ### UpdateUI\(IUIUpdate, Document\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.UpdateContentsOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.UpdateContentsOperation.md index 571ff56638..b8769fa8d5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.UpdateContentsOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.UpdateContentsOperation.md @@ -1,4 +1,5 @@ -# Class UpdateContentsOperation +# Class UpdateContentsOperation + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,7 +12,7 @@ public class UpdateContentsOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [UpdateContentsOperation](VM.Managed.DAFUL.Car.Operation.UpdateContentsOperation.md) @@ -85,9 +86,9 @@ public UpdateContentsOperation(string strContents, SymmetricManager symMgr, Obje #### Parameters -`strContents` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strContents` string -`symMgr` SymmetricManager +`symMgr` [SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SymmetricManager.cs) `obj` ObjectBase @@ -113,7 +114,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -133,5 +134,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.UpdateParameterOperation.ParamInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.UpdateParameterOperation.ParamInfo.md index c7d933f4ba..39a9e8760b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.UpdateParameterOperation.ParamInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.UpdateParameterOperation.ParamInfo.md @@ -1,4 +1,5 @@ -# Struct UpdateParameterOperation.ParamInfo +# Struct UpdateParameterOperation.ParamInfo + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -17,7 +18,7 @@ public string Name #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SymState @@ -27,7 +28,7 @@ public bool SymState #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Type @@ -37,7 +38,7 @@ public string Type #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UseSym @@ -47,7 +48,7 @@ public bool UseSym #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Value @@ -57,7 +58,7 @@ public string Value #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### X @@ -67,7 +68,7 @@ public string X #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Y @@ -77,7 +78,7 @@ public string Y #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Z @@ -87,5 +88,5 @@ public string Z #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.UpdateParameterOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.UpdateParameterOperation.md index 6b5c99bc7d..f919b5bcd0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.UpdateParameterOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.UpdateParameterOperation.md @@ -1,4 +1,5 @@ -# Class UpdateParameterOperation +# Class UpdateParameterOperation + Namespace: [VM.Managed.DAFUL.Car.Operation](VM.Managed.DAFUL.Car.Operation.md) Assembly: VMOpCar.dll @@ -11,7 +12,7 @@ public class UpdateParameterOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [UpdateParameterOperation](VM.Managed.DAFUL.Car.Operation.UpdateParameterOperation.md) @@ -85,9 +86,9 @@ public UpdateParameterOperation(Dictionary dicAll, Dictio #### Parameters -`dicAll` [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [BindingSource](https://learn.microsoft.com/dotnet/api/system.windows.forms.bindingsource)\> +`dicAll` Dictionary -`dicDoc` [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), Document3D\> +`dicDoc` Dictionary ### UpdateParameterOperation\(Dictionary\>\) @@ -97,7 +98,7 @@ public UpdateParameterOperation(Dictionary\> +`dicParam` Dictionary\> ### UpdateParameterOperation\(JournalParameter\) @@ -121,7 +122,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -141,5 +142,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.md index 4e36ec3deb..445107b5a9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Operation.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Car.Operation +# Namespace VM.Managed.DAFUL.Car.Operation + ### Classes @@ -66,6 +67,26 @@ The export dfs file for solver operation The export xml file for solver operation + [ExportFiles](VM.Managed.DAFUL.Car.Operation.ExportFiles.md) + + [ExportFilesForFourPost](VM.Managed.DAFUL.Car.Operation.ExportFilesForFourPost.md) + + [ExportFilesForFullCar](VM.Managed.DAFUL.Car.Operation.ExportFilesForFullCar.md) + + [ExportFilesForShimmyJudder](VM.Managed.DAFUL.Car.Operation.ExportFilesForShimmyJudder.md) + + [ExportFilesForTire](VM.Managed.DAFUL.Car.Operation.ExportFilesForTire.md) + + [ExportMotionFiles](VM.Managed.DAFUL.Car.Operation.ExportMotionFiles.md) + + [ExportMotionFilesForFourPost](VM.Managed.DAFUL.Car.Operation.ExportMotionFilesForFourPost.md) + + [ExportMotionFilesForFullCar](VM.Managed.DAFUL.Car.Operation.ExportMotionFilesForFullCar.md) + + [ExportMotionFilesForShimmyJudder](VM.Managed.DAFUL.Car.Operation.ExportMotionFilesForShimmyJudder.md) + + [ExportMotionFilesForTire](VM.Managed.DAFUL.Car.Operation.ExportMotionFilesForTire.md) + [ExportXML](VM.Managed.DAFUL.Car.Operation.ExportXML.md) The export xml file for solver operation diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.OppositeWheelTravelConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.OppositeWheelTravelConfiguration.md index e2bc21b979..d6599695f0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.OppositeWheelTravelConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.OppositeWheelTravelConfiguration.md @@ -1,4 +1,5 @@ -# Class OppositeWheelTravelConfiguration +# Class OppositeWheelTravelConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public class OppositeWheelTravelConfiguration : SuspensionAnalysisConfigurationB #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [SuspensionAnalysisConfigurationBase](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md) ← [OppositeWheelTravelConfiguration](VM.Managed.DAFUL.Car.OppositeWheelTravelConfiguration.md) @@ -38,95 +39,98 @@ IEnableManager [SuspensionAnalysisConfigurationBase.AnalysisName](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_SuspensionAnalysisConfigurationBase\_AnalysisName), [SuspensionAnalysisConfigurationBase.Analysis](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_SuspensionAnalysisConfigurationBase\_Analysis), [SuspensionAnalysisConfigurationBase.AnalysisType](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_SuspensionAnalysisConfigurationBase\_AnalysisType), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -170,7 +174,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -237,7 +241,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.OrientationToeCamber.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.OrientationToeCamber.md index c1e2e3e3d6..a7f7c032ea 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.OrientationToeCamber.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.OrientationToeCamber.md @@ -1,4 +1,5 @@ -# Class OrientationToeCamber +# Class OrientationToeCamber + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -6,14 +7,14 @@ Assembly: VMDCar.dll The toe-camber orientation class ```csharp -public class OrientationToeCamber : OrientationBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IExpression, IOrientationBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider +public class OrientationToeCamber : OrientationBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IExpression, IOrientationBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Expression ← OrientationBase ← @@ -32,7 +33,8 @@ IObject, ILinkContainer, IOwned, IHasID, -IEventProvider +IEventProvider, +IHasReplaceableEntity #### Inherited Members @@ -41,6 +43,8 @@ OrientationBase.IsParametric\(string\), OrientationBase.ReadXml\(XmlReader\), OrientationBase.WriteXml\(XmlWriter\), OrientationBase.GetSchema\(\), +OrientationBase.HasReplaceableEntity\(IObjectBase\), +OrientationBase.ReplaceEntity\(IObjectBase, IObjectBase\), OrientationBase.WriteRotationAnglesToXml\(XmlWriter\), OrientationBase.UseExpression, OrientationBase.RotationAngles, @@ -110,7 +114,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -149,11 +153,11 @@ public OrientationToeCamber(double dToe, double dCamber, AngleTypes angleType, S #### Parameters -`dToe` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dToe` double The toe angle. -`dCamber` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dCamber` double The camber angle. @@ -175,11 +179,11 @@ public OrientationToeCamber(string strToe, string strCamber, AngleTypes angleTyp #### Parameters -`strToe` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strToe` string The toe angle. -`strCamber` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCamber` string The camber angle. @@ -227,11 +231,11 @@ public OrientationToeCamber(DesignVariable dvToe, DesignVariable dvCamber, Angle #### Parameters -`dvToe` DesignVariable +`dvToe` [DesignVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignVariable.cs) The toe angle. -`dvCamber` DesignVariable +`dvCamber` [DesignVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignVariable.cs) The camber angle. @@ -255,7 +259,7 @@ public ExpressionValueVariable Camber { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### IsParameterized @@ -267,7 +271,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SymmetricType @@ -291,7 +295,7 @@ public ExpressionValueVariable Toe { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ToeCamberAngle @@ -332,7 +336,7 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema ### LinkRequestUpdate\(object, LinkEventArgs\) @@ -344,7 +348,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -362,7 +366,7 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -376,7 +380,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.OutputChannelInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.OutputChannelInfo.md index 6c86b4a3e9..7bdb6b5a48 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.OutputChannelInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.OutputChannelInfo.md @@ -1,4 +1,5 @@ -# Struct OutputChannelInfo +# Struct OutputChannelInfo + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDFullCar.dll @@ -21,23 +22,23 @@ public OutputChannelInfo(bool bUse, string strName, string strActMarName, string #### Parameters -`bUse` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUse` bool if set to true [b use]. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. -`strActMarName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strActMarName` string Name of the STR act mar. -`strBaseMarName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBaseMarName` string Name of the STR base mar. -`strRefMarName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRefMarName` string Name of the STR ref mar. @@ -49,7 +50,7 @@ The en input. The en axis. -`bIsEnable` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bIsEnable` bool if set to true [b is enable]. @@ -65,7 +66,7 @@ public string ActionMarkerName #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Axis @@ -89,7 +90,7 @@ public string BaseMarkerName #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Input @@ -113,7 +114,7 @@ public bool IsEnable #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -125,7 +126,7 @@ public string Name #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ReferenceMarkerName @@ -137,7 +138,7 @@ public string ReferenceMarkerName #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Use @@ -149,5 +150,5 @@ public bool Use #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ParallelWheelTravelConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ParallelWheelTravelConfiguration.md index 0730b535f3..beda228629 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ParallelWheelTravelConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ParallelWheelTravelConfiguration.md @@ -1,4 +1,5 @@ -# Class ParallelWheelTravelConfiguration +# Class ParallelWheelTravelConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public class ParallelWheelTravelConfiguration : SuspensionAnalysisConfigurationB #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [SuspensionAnalysisConfigurationBase](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md) ← [ParallelWheelTravelConfiguration](VM.Managed.DAFUL.Car.ParallelWheelTravelConfiguration.md) @@ -38,95 +39,98 @@ IEnableManager [SuspensionAnalysisConfigurationBase.AnalysisName](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_SuspensionAnalysisConfigurationBase\_AnalysisName), [SuspensionAnalysisConfigurationBase.Analysis](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_SuspensionAnalysisConfigurationBase\_Analysis), [SuspensionAnalysisConfigurationBase.AnalysisType](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_SuspensionAnalysisConfigurationBase\_AnalysisType), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -170,7 +174,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -237,7 +241,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.PowerOffCorneringConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.PowerOffCorneringConfiguration.md index 5e245557aa..86f5646ec2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.PowerOffCorneringConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.PowerOffCorneringConfiguration.md @@ -1,4 +1,5 @@ -# Class PowerOffCorneringConfiguration +# Class PowerOffCorneringConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public class PowerOffCorneringConfiguration : FullCarAnalysisConfigurationBase, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [FullCarAnalysisConfigurationBase](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md) ← [PowerOffCorneringConfiguration](VM.Managed.DAFUL.Car.PowerOffCorneringConfiguration.md) @@ -50,95 +51,98 @@ ILinkUpdateOwner [FullCarAnalysisConfigurationBase.RoadReferencePosition](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadReferencePosition), [FullCarAnalysisConfigurationBase.RoadRotationAngle](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadRotationAngle), [FullCarAnalysisConfigurationBase.RoadOffset](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadOffset), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -182,7 +186,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -249,7 +253,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.PowerOffStraightLineConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.PowerOffStraightLineConfiguration.md index 9761384624..3c407701b5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.PowerOffStraightLineConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.PowerOffStraightLineConfiguration.md @@ -1,4 +1,5 @@ -# Class PowerOffStraightLineConfiguration +# Class PowerOffStraightLineConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public class PowerOffStraightLineConfiguration : FullCarAnalysisConfigurationBas #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [FullCarAnalysisConfigurationBase](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md) ← [PowerOffStraightLineConfiguration](VM.Managed.DAFUL.Car.PowerOffStraightLineConfiguration.md) @@ -50,95 +51,98 @@ ILinkUpdateOwner [FullCarAnalysisConfigurationBase.RoadReferencePosition](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadReferencePosition), [FullCarAnalysisConfigurationBase.RoadRotationAngle](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadRotationAngle), [FullCarAnalysisConfigurationBase.RoadOffset](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadOffset), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -182,7 +186,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -249,7 +253,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.PowerTrainDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.PowerTrainDocument.md index ed056f39d6..e79cbac0e9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.PowerTrainDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.PowerTrainDocument.md @@ -1,4 +1,5 @@ -# Class PowerTrainDocument +# Class PowerTrainDocument + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,16 +12,16 @@ public class PowerTrainDocument : SubSystemDocument, IObservableObject, IDisposa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← [PowerTrainDocument](VM.Managed.DAFUL.Car.PowerTrainDocument.md) #### Implements @@ -32,7 +33,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -54,100 +55,100 @@ IPostTemplateBasedDocument, #### Inherited Members -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -242,8 +243,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -254,9 +253,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -270,12 +269,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -553,7 +549,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -584,7 +580,7 @@ public PowerTrainDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -600,7 +596,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### Interfaces @@ -612,7 +608,7 @@ protected override InterfaceManager Interfaces { get; } #### Property Value - InterfaceManager + [InterfaceManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InterfaceManager.cs) ### MinorRoleType @@ -646,13 +642,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The fullname of type. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The category. @@ -666,7 +662,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the STR category. @@ -696,7 +692,7 @@ protected override void LoadTemplateBasedXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -710,7 +706,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -724,7 +720,7 @@ protected override void SaveTemplateBasedXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.RampSteerConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.RampSteerConfiguration.md index 53d301fba9..4d44cafbd2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.RampSteerConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.RampSteerConfiguration.md @@ -1,4 +1,5 @@ -# Class RampSteerConfiguration +# Class RampSteerConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public class RampSteerConfiguration : FullCarAnalysisConfigurationBase, IObserva #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [FullCarAnalysisConfigurationBase](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md) ← [RampSteerConfiguration](VM.Managed.DAFUL.Car.RampSteerConfiguration.md) @@ -50,95 +51,98 @@ ILinkUpdateOwner [FullCarAnalysisConfigurationBase.RoadReferencePosition](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadReferencePosition), [FullCarAnalysisConfigurationBase.RoadRotationAngle](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadRotationAngle), [FullCarAnalysisConfigurationBase.RoadOffset](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadOffset), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -182,7 +186,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -249,7 +253,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.RandomMotionConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.RandomMotionConfiguration.md index 5c6d437d8d..9e1e00a698 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.RandomMotionConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.RandomMotionConfiguration.md @@ -1,4 +1,5 @@ -# Class RandomMotionConfiguration +# Class RandomMotionConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public class RandomMotionConfiguration : SuspensionAnalysisConfigurationBase, IO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [SuspensionAnalysisConfigurationBase](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md) ← [RandomMotionConfiguration](VM.Managed.DAFUL.Car.RandomMotionConfiguration.md) @@ -38,95 +39,98 @@ IEnableManager [SuspensionAnalysisConfigurationBase.AnalysisName](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_SuspensionAnalysisConfigurationBase\_AnalysisName), [SuspensionAnalysisConfigurationBase.Analysis](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_SuspensionAnalysisConfigurationBase\_Analysis), [SuspensionAnalysisConfigurationBase.AnalysisType](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_SuspensionAnalysisConfigurationBase\_AnalysisType), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -170,7 +174,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -237,7 +241,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.RectangleCleat.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.RectangleCleat.md index 1a6ba1cecc..c8a63c0fa8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.RectangleCleat.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.RectangleCleat.md @@ -1,4 +1,5 @@ -# Class RectangleCleat +# Class RectangleCleat + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class RectangleCleat : CleatShape #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CleatShape](VM.Managed.DAFUL.Car.CleatShape.md) ← [RectangleCleat](VM.Managed.DAFUL.Car.RectangleCleat.md) @@ -63,7 +64,7 @@ public double Height { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Length @@ -75,7 +76,7 @@ public double Length { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TypeOfCleatShape @@ -101,11 +102,11 @@ public override string GetXZData(double dEndTime) #### Parameters -`dEndTime` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dEndTime` double The d end time. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.RectangleWithBevelEdgeCleat.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.RectangleWithBevelEdgeCleat.md index 7d4b47f6d9..7724e3165a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.RectangleWithBevelEdgeCleat.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.RectangleWithBevelEdgeCleat.md @@ -1,4 +1,5 @@ -# Class RectangleWithBevelEdgeCleat +# Class RectangleWithBevelEdgeCleat + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class RectangleWithBevelEdgeCleat : CleatShape #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CleatShape](VM.Managed.DAFUL.Car.CleatShape.md) ← [RectangleWithBevelEdgeCleat](VM.Managed.DAFUL.Car.RectangleWithBevelEdgeCleat.md) @@ -63,7 +64,7 @@ public double EdgeLength { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Height @@ -75,7 +76,7 @@ public double Height { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Length @@ -87,7 +88,7 @@ public double Length { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TypeOfCleatShape @@ -113,11 +114,11 @@ public override string GetXZData(double dEndTime) #### Parameters -`dEndTime` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dEndTime` double The d end time. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.RideDrumConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.RideDrumConfiguration.md index 99d31212e6..f0f9505dbf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.RideDrumConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.RideDrumConfiguration.md @@ -1,4 +1,5 @@ -# Class RideDrumConfiguration +# Class RideDrumConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public class RideDrumConfiguration : TireAnalysisConfigurationBase, IObservableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [TireAnalysisConfigurationBase](VM.Managed.DAFUL.Car.TireAnalysisConfigurationBase.md) ← [RideDrumConfiguration](VM.Managed.DAFUL.Car.RideDrumConfiguration.md) @@ -44,95 +45,98 @@ IEnableManager, [TireAnalysisConfigurationBase.RoadDataPath](VM.Managed.DAFUL.Car.TireAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_TireAnalysisConfigurationBase\_RoadDataPath), [TireAnalysisConfigurationBase.RoadRefFrameName](VM.Managed.DAFUL.Car.TireAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_TireAnalysisConfigurationBase\_RoadRefFrameName), [TireAnalysisConfigurationBase.RoadReferencePosition](VM.Managed.DAFUL.Car.TireAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_TireAnalysisConfigurationBase\_RoadReferencePosition), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -176,7 +180,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -243,7 +247,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.RideGeneralConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.RideGeneralConfiguration.md index 4f4a874dff..0c540d91f5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.RideGeneralConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.RideGeneralConfiguration.md @@ -1,4 +1,5 @@ -# Class RideGeneralConfiguration +# Class RideGeneralConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public class RideGeneralConfiguration : TireAnalysisConfigurationBase, IObservab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [TireAnalysisConfigurationBase](VM.Managed.DAFUL.Car.TireAnalysisConfigurationBase.md) ← [RideGeneralConfiguration](VM.Managed.DAFUL.Car.RideGeneralConfiguration.md) @@ -44,95 +45,98 @@ IEnableManager, [TireAnalysisConfigurationBase.RoadDataPath](VM.Managed.DAFUL.Car.TireAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_TireAnalysisConfigurationBase\_RoadDataPath), [TireAnalysisConfigurationBase.RoadRefFrameName](VM.Managed.DAFUL.Car.TireAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_TireAnalysisConfigurationBase\_RoadRefFrameName), [TireAnalysisConfigurationBase.RoadReferencePosition](VM.Managed.DAFUL.Car.TireAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_TireAnalysisConfigurationBase\_RoadReferencePosition), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -176,7 +180,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -243,7 +247,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.RollVerticalForceConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.RollVerticalForceConfiguration.md index b1d406fe72..dc83b845d3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.RollVerticalForceConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.RollVerticalForceConfiguration.md @@ -1,4 +1,5 @@ -# Class RollVerticalForceConfiguration +# Class RollVerticalForceConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public class RollVerticalForceConfiguration : SuspensionAnalysisConfigurationBas #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [SuspensionAnalysisConfigurationBase](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md) ← [RollVerticalForceConfiguration](VM.Managed.DAFUL.Car.RollVerticalForceConfiguration.md) @@ -38,95 +39,98 @@ IEnableManager [SuspensionAnalysisConfigurationBase.AnalysisName](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_SuspensionAnalysisConfigurationBase\_AnalysisName), [SuspensionAnalysisConfigurationBase.Analysis](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_SuspensionAnalysisConfigurationBase\_Analysis), [SuspensionAnalysisConfigurationBase.AnalysisType](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_SuspensionAnalysisConfigurationBase\_AnalysisType), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -170,7 +174,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -237,7 +241,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SemicircleCleat.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SemicircleCleat.md index 0dee4672b7..8a888fc39b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SemicircleCleat.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SemicircleCleat.md @@ -1,4 +1,5 @@ -# Class SemicircleCleat +# Class SemicircleCleat + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class SemicircleCleat : CleatShape #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CleatShape](VM.Managed.DAFUL.Car.CleatShape.md) ← [SemicircleCleat](VM.Managed.DAFUL.Car.SemicircleCleat.md) @@ -63,7 +64,7 @@ public double Radius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TypeOfCleatShape @@ -89,11 +90,11 @@ public override string GetXZData(double dEndTime) #### Parameters -`dEndTime` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dEndTime` double The d end time. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Settings.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Settings.md index 5f7362000d..7fe5abbfba 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Settings.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.Settings.md @@ -1,4 +1,5 @@ -# Class Settings +# Class Settings + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -13,17 +14,17 @@ public class Settings : SettingsBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[SettingsBase](https://learn.microsoft.com/dotnet/api/system.configuration.settingsbase) ← -[ApplicationSettingsBase](https://learn.microsoft.com/dotnet/api/system.configuration.applicationsettingsbase) ← -SettingsBase ← +object ← +SettingsBase ← +ApplicationSettingsBase ← +[SettingsBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VMManagedUtil/SettingsBase.cs) ← [Settings](VM.Managed.DAFUL.Car.Settings.md) #### Inherited Members -SettingsBase.GetProperty\(string\), -SettingsBase.Default, -SettingsBase.RootPath +[SettingsBase.GetProperty\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VMManagedUtil/SettingsBase.cs), +[SettingsBase.Default](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VMManagedUtil/SettingsBase.cs), +[SettingsBase.RootPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VMManagedUtil/SettingsBase.cs) #### Extension Methods @@ -54,7 +55,7 @@ public string FourPostTestrigPath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### FullTestrigPath @@ -67,7 +68,7 @@ public string FullTestrigPath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### HalfTestrigPath @@ -80,7 +81,7 @@ public string HalfTestrigPath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IsoLaneChangePath @@ -93,7 +94,7 @@ public string IsoLaneChangePath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RoadPath @@ -108,7 +109,7 @@ public string RoadPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ShimmyJudderTestrigPath @@ -121,7 +122,7 @@ public string ShimmyJudderTestrigPath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### StandardWorkPath @@ -134,7 +135,7 @@ public string StandardWorkPath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TireTestrigPath @@ -147,7 +148,7 @@ public string TireTestrigPath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UsedFourPostTestRigName @@ -161,7 +162,7 @@ public string UsedFourPostTestRigName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UsedFullTestRigName @@ -175,7 +176,7 @@ public string UsedFullTestRigName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UsedHalfTestRigName @@ -189,7 +190,7 @@ public string UsedHalfTestRigName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UsedShimmyJudderTestRigName @@ -203,7 +204,7 @@ public string UsedShimmyJudderTestRigName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UsedTireTestRigName @@ -217,5 +218,5 @@ public string UsedTireTestRigName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ShimmyJudderAnalysisBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ShimmyJudderAnalysisBase.md index 24a8b7cdba..ebe87e3e47 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ShimmyJudderAnalysisBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ShimmyJudderAnalysisBase.md @@ -1,4 +1,5 @@ -# Class ShimmyJudderAnalysisBase +# Class ShimmyJudderAnalysisBase + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDFullCar.dll @@ -11,8 +12,8 @@ public abstract class ShimmyJudderAnalysisBase : AnalysisFrequencyBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -AnalysisBase ← +object ← +[AnalysisBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs) ← [AnalysisFrequencyBase](VM.Managed.DAFUL.Car.AnalysisFrequencyBase.md) ← [ShimmyJudderAnalysisBase](VM.Managed.DAFUL.Car.ShimmyJudderAnalysisBase.md) @@ -27,14 +28,14 @@ AnalysisBase ← [AnalysisFrequencyBase.EndValue](VM.Managed.DAFUL.Car.AnalysisFrequencyBase.md\#VM\_Managed\_DAFUL\_Car\_AnalysisFrequencyBase\_EndValue), [AnalysisFrequencyBase.StepsValue](VM.Managed.DAFUL.Car.AnalysisFrequencyBase.md\#VM\_Managed\_DAFUL\_Car\_AnalysisFrequencyBase\_StepsValue), [AnalysisFrequencyBase.Increment\_Type](VM.Managed.DAFUL.Car.AnalysisFrequencyBase.md\#VM\_Managed\_DAFUL\_Car\_AnalysisFrequencyBase\_Increment\_Type), -AnalysisBase.m\_pLnkContainer, -AnalysisBase.SetModified\(\), -AnalysisBase.GetTestRigMotionUSUBArgument\(string\[\]\), -AnalysisBase.GetConvertUnit\(LengthUnitType\), -AnalysisBase.GetGravity\(\), -AnalysisBase.GetConvertUnit\(VelocityUnitType\), -AnalysisBase.GetConvertUnit\(AccelerationUnitType\), -AnalysisBase.IsSim +[AnalysisBase.m\_pLnkContainer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.SetModified\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetTestRigMotionUSUBArgument\(string\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetConvertUnit\(LengthUnitType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetGravity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetConvertUnit\(VelocityUnitType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.GetConvertUnit\(AccelerationUnitType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs), +[AnalysisBase.IsSim](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ShimmyJudderAnalysisConfigurationBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ShimmyJudderAnalysisConfigurationBase.md index 7f0a7957d8..981dc818ce 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ShimmyJudderAnalysisConfigurationBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ShimmyJudderAnalysisConfigurationBase.md @@ -1,4 +1,5 @@ -# Class ShimmyJudderAnalysisConfigurationBase +# Class ShimmyJudderAnalysisConfigurationBase + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDFullCar.dll @@ -11,11 +12,11 @@ public abstract class ShimmyJudderAnalysisConfigurationBase : Configuration, IOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [ShimmyJudderAnalysisConfigurationBase](VM.Managed.DAFUL.Car.ShimmyJudderAnalysisConfigurationBase.md) #### Derived @@ -41,95 +42,98 @@ IHasRoadFile, #### Inherited Members -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -173,7 +177,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -214,7 +218,7 @@ public abstract AnalysisBase Analysis { get; set; } #### Property Value - AnalysisBase + [AnalysisBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs) ### AnalysisName @@ -226,7 +230,7 @@ protected abstract string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType @@ -250,7 +254,7 @@ public string RoadDataPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RoadRefFrameName @@ -262,7 +266,7 @@ public string RoadRefFrameName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RoadReferencePosition diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ShimmyJudderAnalysisType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ShimmyJudderAnalysisType.md index c69c807456..08bfb8c9a2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ShimmyJudderAnalysisType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ShimmyJudderAnalysisType.md @@ -1,4 +1,5 @@ -# Enum ShimmyJudderAnalysisType +# Enum ShimmyJudderAnalysisType + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDFullCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ShimmyJudderTestRigDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ShimmyJudderTestRigDocument.md index 97514ba612..5b372d62fe 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ShimmyJudderTestRigDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ShimmyJudderTestRigDocument.md @@ -1,4 +1,5 @@ -# Class ShimmyJudderTestRigDocument +# Class ShimmyJudderTestRigDocument + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDFullCar.dll @@ -11,18 +12,18 @@ public class ShimmyJudderTestRigDocument : FullCarTestRigDocument, IObservableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← -TestRigDocumentBase ← -FullCarTestRigDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← +[TestRigDocumentBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs) ← +[FullCarTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs) ← [ShimmyJudderTestRigDocument](VM.Managed.DAFUL.Car.ShimmyJudderTestRigDocument.md) #### Implements @@ -34,7 +35,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -57,151 +58,151 @@ IHasMinorRole #### Inherited Members -FullCarTestRigDocument.InitializeCategoryInfo\(string\), -FullCarTestRigDocument.GetSimulationConfigurationType\(\), -FullCarTestRigDocument.GetAnalysisFromSimulationConfigurations\(FullCarAnalysisType\), -FullCarTestRigDocument.GetFullCarConfigurationFromSimulationConfigurations\(FullCarAnalysisType\), -FullCarTestRigDocument.ReplaceAssembly\(string\), -FullCarTestRigDocument.ReplaceOneSubsystem\(string, string\), -FullCarTestRigDocument.ReplaceAssemblyCore\(DocCreateFullCarAnalysisInfoExceptWheel, XmlDocument\), -FullCarTestRigDocument.LinkRequestDestroying\(object, LinkEventArgs\), -FullCarTestRigDocument.SetTemplateInfoImpl\(DocFromTemplateInfo\), -FullCarTestRigDocument.FindCategory\(string\), -FullCarTestRigDocument.SetPowerSteering\(bool\), -FullCarTestRigDocument.InitializeSimParam\(\), -FullCarTestRigDocument.InitializeInterface\(\), -FullCarTestRigDocument.ClearDocument\(\), -FullCarTestRigDocument.SaveTemplateBasedXml\(XmlWriter\), -FullCarTestRigDocument.SaveTemplateBasedXmlCore\(DocCreateFullCarAnalysisInfoExceptWheel, XmlWriter\), -FullCarTestRigDocument.LoadTemplateBasedXml\(XmlReader\), -FullCarTestRigDocument.LoadTemplateBasedXmlCore\(XmlReader, string, Type\), -FullCarTestRigDocument.InitializeAssemblyMember\(\), -FullCarTestRigDocument.InitialCategories, -FullCarTestRigDocument.Interfaces, -FullCarTestRigDocument.MinorRoleType, -FullCarTestRigDocument.SteeringRatio, -FullCarTestRigDocument.RackRatio, -FullCarTestRigDocument.MaxFrontBrakeTorque, -FullCarTestRigDocument.MaxRearBrakeTorque, -FullCarTestRigDocument.BrakeBias, -FullCarTestRigDocument.IsPowerSteer, -FullCarTestRigDocument.SimulationScenarioTypeName, -FullCarTestRigDocument.ApplyInitialVelocityImpl, -FullCarTestRigDocument.InitialVelocityImpl, -TestRigDocumentBase.PostOpenDocument\(\), -TestRigDocumentBase.ReplaceAssembly\(string\), -TestRigDocumentBase.SetTemplateInfoImpl\(DocFromTemplateInfo\), -TestRigDocumentBase.OnDeserialization\(object\), -TestRigDocumentBase.AddSubSystem\(string\), -TestRigDocumentBase.AddSubSystemForOther\(string\), -TestRigDocumentBase.AddErrorMessageToOutputWindow\(string\), -TestRigDocumentBase.InitializeInterfaceTable\(\), -TestRigDocumentBase.ReSetInterfacetable\(ObjectBase, ObjectBase\), -TestRigDocumentBase.BindInterfaces\(ObjectBase, ObjectBase\), -TestRigDocumentBase.UseAssembly, -TestRigDocumentBase.UpdateReInterface, -TestRigDocumentBase.KinematicGroupName, -TestRigDocumentBase.ComplianceGroupName, -TestRigDocumentBase.DrivelineActiveGroupName, -TestRigDocumentBase.DrivelineInactiveGroupName, -TestRigDocumentBase.UseCompliance, -TestRigDocumentBase.UseDriveLineActiveFront, -TestRigDocumentBase.UseDriveLineActiveRear, -TestRigDocumentBase.SkipBindInterfaceWhenOpen, -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[FullCarTestRigDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.GetAnalysisFromSimulationConfigurations\(FullCarAnalysisType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.GetFullCarConfigurationFromSimulationConfigurations\(FullCarAnalysisType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.ReplaceAssembly\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.ReplaceOneSubsystem\(string, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.ReplaceAssemblyCore\(DocCreateFullCarAnalysisInfoExceptWheel, XmlDocument\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.SetTemplateInfoImpl\(DocFromTemplateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.SetPowerSteering\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.SaveTemplateBasedXmlCore\(DocCreateFullCarAnalysisInfoExceptWheel, XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.LoadTemplateBasedXmlCore\(XmlReader, string, Type\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.InitializeAssemblyMember\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.MinorRoleType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.SteeringRatio](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.RackRatio](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.MaxFrontBrakeTorque](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.MaxRearBrakeTorque](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.BrakeBias](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.IsPowerSteer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[TestRigDocumentBase.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.ReplaceAssembly\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.SetTemplateInfoImpl\(DocFromTemplateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.AddSubSystem\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.AddSubSystemForOther\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.AddErrorMessageToOutputWindow\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.InitializeInterfaceTable\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.ReSetInterfacetable\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.BindInterfaces\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.UseAssembly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.UpdateReInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.KinematicGroupName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.ComplianceGroupName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.DrivelineActiveGroupName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.DrivelineInactiveGroupName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.UseCompliance](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.UseDriveLineActiveFront](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.UseDriveLineActiveRear](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -296,8 +297,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -308,9 +307,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -324,12 +323,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -607,7 +603,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -638,7 +634,7 @@ public ShimmyJudderTestRigDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -654,7 +650,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### SimulationScenarioTypeName @@ -666,7 +662,7 @@ public override string SimulationScenarioTypeName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -680,13 +676,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The fullname of type. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The category. @@ -706,7 +702,7 @@ The type. #### Returns - AnalysisBase + [AnalysisBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs) ### GetShimmyJudderConfigurationFromSimulationConfigurations\(ShimmyJudderAnalysisType\) @@ -736,7 +732,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the STR category. @@ -758,7 +754,7 @@ protected override void LoadTemplateBasedXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -772,7 +768,7 @@ public override void ReplaceAssembly(string strAssemblyInfo) #### Parameters -`strAssemblyInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strAssemblyInfo` string The assembly info. @@ -786,7 +782,7 @@ protected override void SaveTemplateBasedXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ShimmySimulationConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ShimmySimulationConfiguration.md index 2f1828619e..5651339b77 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ShimmySimulationConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ShimmySimulationConfiguration.md @@ -1,4 +1,5 @@ -# Class ShimmySimulationConfiguration +# Class ShimmySimulationConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDFullCar.dll @@ -11,11 +12,11 @@ public class ShimmySimulationConfiguration : ShimmyJudderAnalysisConfigurationBa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [ShimmyJudderAnalysisConfigurationBase](VM.Managed.DAFUL.Car.ShimmyJudderAnalysisConfigurationBase.md) ← [ShimmySimulationConfiguration](VM.Managed.DAFUL.Car.ShimmySimulationConfiguration.md) @@ -44,95 +45,98 @@ IHasRoadFile, [ShimmyJudderAnalysisConfigurationBase.RoadDataPath](VM.Managed.DAFUL.Car.ShimmyJudderAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_ShimmyJudderAnalysisConfigurationBase\_RoadDataPath), [ShimmyJudderAnalysisConfigurationBase.RoadRefFrameName](VM.Managed.DAFUL.Car.ShimmyJudderAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_ShimmyJudderAnalysisConfigurationBase\_RoadRefFrameName), [ShimmyJudderAnalysisConfigurationBase.RoadReferencePosition](VM.Managed.DAFUL.Car.ShimmyJudderAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_ShimmyJudderAnalysisConfigurationBase\_RoadReferencePosition), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -176,7 +180,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -231,7 +235,7 @@ public override AnalysisBase Analysis { get; set; } #### Property Value - AnalysisBase + [AnalysisBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/SuspensionAnalysis.cs) ### AnalysisName @@ -243,7 +247,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SingleLaneChangeConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SingleLaneChangeConfiguration.md index c19f929cb5..0507690017 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SingleLaneChangeConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SingleLaneChangeConfiguration.md @@ -1,4 +1,5 @@ -# Class SingleLaneChangeConfiguration +# Class SingleLaneChangeConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public class SingleLaneChangeConfiguration : FullCarAnalysisConfigurationBase, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [FullCarAnalysisConfigurationBase](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md) ← [SingleLaneChangeConfiguration](VM.Managed.DAFUL.Car.SingleLaneChangeConfiguration.md) @@ -50,95 +51,98 @@ ILinkUpdateOwner [FullCarAnalysisConfigurationBase.RoadReferencePosition](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadReferencePosition), [FullCarAnalysisConfigurationBase.RoadRotationAngle](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadRotationAngle), [FullCarAnalysisConfigurationBase.RoadOffset](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadOffset), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -182,7 +186,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -249,7 +253,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SingleWheelTravelConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SingleWheelTravelConfiguration.md index a98f0109be..3c32b870f8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SingleWheelTravelConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SingleWheelTravelConfiguration.md @@ -1,4 +1,5 @@ -# Class SingleWheelTravelConfiguration +# Class SingleWheelTravelConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public class SingleWheelTravelConfiguration : SuspensionAnalysisConfigurationBas #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [SuspensionAnalysisConfigurationBase](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md) ← [SingleWheelTravelConfiguration](VM.Managed.DAFUL.Car.SingleWheelTravelConfiguration.md) @@ -38,95 +39,98 @@ IEnableManager [SuspensionAnalysisConfigurationBase.AnalysisName](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_SuspensionAnalysisConfigurationBase\_AnalysisName), [SuspensionAnalysisConfigurationBase.Analysis](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_SuspensionAnalysisConfigurationBase\_Analysis), [SuspensionAnalysisConfigurationBase.AnalysisType](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_SuspensionAnalysisConfigurationBase\_AnalysisType), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -170,7 +174,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -237,7 +241,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.StaticLoadConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.StaticLoadConfiguration.md index 01596a4a73..f42c57a74d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.StaticLoadConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.StaticLoadConfiguration.md @@ -1,4 +1,5 @@ -# Class StaticLoadConfiguration +# Class StaticLoadConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public class StaticLoadConfiguration : SuspensionAnalysisConfigurationBase, IObs #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [SuspensionAnalysisConfigurationBase](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md) ← [StaticLoadConfiguration](VM.Managed.DAFUL.Car.StaticLoadConfiguration.md) @@ -38,95 +39,98 @@ IEnableManager [SuspensionAnalysisConfigurationBase.AnalysisName](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_SuspensionAnalysisConfigurationBase\_AnalysisName), [SuspensionAnalysisConfigurationBase.Analysis](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_SuspensionAnalysisConfigurationBase\_Analysis), [SuspensionAnalysisConfigurationBase.AnalysisType](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_SuspensionAnalysisConfigurationBase\_AnalysisType), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -170,7 +174,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -237,7 +241,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SteadyBatchConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SteadyBatchConfiguration.md index f511db689d..a5d0d1475c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SteadyBatchConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SteadyBatchConfiguration.md @@ -1,4 +1,5 @@ -# Class SteadyBatchConfiguration +# Class SteadyBatchConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public class SteadyBatchConfiguration : TireAnalysisConfigurationBase, IObservab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [TireAnalysisConfigurationBase](VM.Managed.DAFUL.Car.TireAnalysisConfigurationBase.md) ← [SteadyBatchConfiguration](VM.Managed.DAFUL.Car.SteadyBatchConfiguration.md) @@ -44,95 +45,98 @@ IEnableManager, [TireAnalysisConfigurationBase.RoadDataPath](VM.Managed.DAFUL.Car.TireAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_TireAnalysisConfigurationBase\_RoadDataPath), [TireAnalysisConfigurationBase.RoadRefFrameName](VM.Managed.DAFUL.Car.TireAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_TireAnalysisConfigurationBase\_RoadRefFrameName), [TireAnalysisConfigurationBase.RoadReferencePosition](VM.Managed.DAFUL.Car.TireAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_TireAnalysisConfigurationBase\_RoadReferencePosition), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -176,7 +180,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -243,7 +247,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SteadySingleConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SteadySingleConfiguration.md index c76eda5b5f..25d5db8585 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SteadySingleConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SteadySingleConfiguration.md @@ -1,4 +1,5 @@ -# Class SteadySingleConfiguration +# Class SteadySingleConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public class SteadySingleConfiguration : TireAnalysisConfigurationBase, IObserva #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [TireAnalysisConfigurationBase](VM.Managed.DAFUL.Car.TireAnalysisConfigurationBase.md) ← [SteadySingleConfiguration](VM.Managed.DAFUL.Car.SteadySingleConfiguration.md) @@ -44,95 +45,98 @@ IEnableManager, [TireAnalysisConfigurationBase.RoadDataPath](VM.Managed.DAFUL.Car.TireAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_TireAnalysisConfigurationBase\_RoadDataPath), [TireAnalysisConfigurationBase.RoadRefFrameName](VM.Managed.DAFUL.Car.TireAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_TireAnalysisConfigurationBase\_RoadRefFrameName), [TireAnalysisConfigurationBase.RoadReferencePosition](VM.Managed.DAFUL.Car.TireAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_TireAnalysisConfigurationBase\_RoadReferencePosition), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -176,7 +180,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -243,7 +247,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SteeringConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SteeringConfiguration.md index 725006b383..b1045c9655 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SteeringConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SteeringConfiguration.md @@ -1,4 +1,5 @@ -# Class SteeringConfiguration +# Class SteeringConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public class SteeringConfiguration : SuspensionAnalysisConfigurationBase, IObser #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [SuspensionAnalysisConfigurationBase](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md) ← [SteeringConfiguration](VM.Managed.DAFUL.Car.SteeringConfiguration.md) @@ -38,95 +39,98 @@ IEnableManager [SuspensionAnalysisConfigurationBase.AnalysisName](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_SuspensionAnalysisConfigurationBase\_AnalysisName), [SuspensionAnalysisConfigurationBase.Analysis](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_SuspensionAnalysisConfigurationBase\_Analysis), [SuspensionAnalysisConfigurationBase.AnalysisType](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_SuspensionAnalysisConfigurationBase\_AnalysisType), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -170,7 +174,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -237,7 +241,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SteeringDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SteeringDocument.md index b5af21eb0b..10f40bf83f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SteeringDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SteeringDocument.md @@ -1,4 +1,5 @@ -# Class SteeringDocument +# Class SteeringDocument + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,16 +12,16 @@ public class SteeringDocument : SubSystemDocument, IObservableObject, IDisposabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← [SteeringDocument](VM.Managed.DAFUL.Car.SteeringDocument.md) #### Implements @@ -32,7 +33,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -54,100 +55,100 @@ IPostTemplateBasedDocument, #### Inherited Members -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -242,8 +243,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -254,9 +253,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -270,12 +269,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -553,7 +549,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -584,7 +580,7 @@ public SteeringDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -600,7 +596,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### Interfaces @@ -612,7 +608,7 @@ protected override InterfaceManager Interfaces { get; } #### Property Value - InterfaceManager + [InterfaceManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InterfaceManager.cs) ### MinorRoleType @@ -646,13 +642,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The fullname of type. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The category. @@ -666,7 +662,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the STR category. @@ -696,7 +692,7 @@ protected override void LoadTemplateBasedXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -710,7 +706,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -724,7 +720,7 @@ protected override void SaveTemplateBasedXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.StepSteerConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.StepSteerConfiguration.md index c0df2cc144..2d00952eca 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.StepSteerConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.StepSteerConfiguration.md @@ -1,4 +1,5 @@ -# Class StepSteerConfiguration +# Class StepSteerConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public class StepSteerConfiguration : FullCarAnalysisConfigurationBase, IObserva #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [FullCarAnalysisConfigurationBase](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md) ← [StepSteerConfiguration](VM.Managed.DAFUL.Car.StepSteerConfiguration.md) @@ -50,95 +51,98 @@ ILinkUpdateOwner [FullCarAnalysisConfigurationBase.RoadReferencePosition](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadReferencePosition), [FullCarAnalysisConfigurationBase.RoadRotationAngle](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadRotationAngle), [FullCarAnalysisConfigurationBase.RoadOffset](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadOffset), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -182,7 +186,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -249,7 +253,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.StraightLineBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.StraightLineBase.md index 5c8730283e..5dac051788 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.StraightLineBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.StraightLineBase.md @@ -1,4 +1,5 @@ -# Class StraightLineBase +# Class StraightLineBase + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public abstract class StraightLineBase : FullCarAnalysisBase, IHasInitialVel #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [FullCarAnalysisBase](VM.Managed.DAFUL.Car.FullCarAnalysisBase.md) ← [StraightLineBase](VM.Managed.DAFUL.Car.StraightLineBase.md) @@ -83,7 +84,7 @@ public double InitialVelocity { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TimeOfStart @@ -95,7 +96,7 @@ public double TimeOfStart { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### VelocityUnitType @@ -121,7 +122,7 @@ public override void GetTestRigMotionUSUBArgument(string[] arParameter) #### Parameters -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The parameter array. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionAnalysisBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionAnalysisBase.md index b5c8eace3c..995eaf224d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionAnalysisBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionAnalysisBase.md @@ -1,4 +1,5 @@ -# Class SuspensionAnalysisBase +# Class SuspensionAnalysisBase + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public abstract class SuspensionAnalysisBase : AnalysisBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [SuspensionAnalysisBase](VM.Managed.DAFUL.Car.SuspensionAnalysisBase.md) @@ -75,7 +76,7 @@ public virtual string SteeringFunctionArgument { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SteeringInputType @@ -125,11 +126,11 @@ public virtual void GetDataForLoadCase(int nStep, Dictionary +`dicCol` Dictionary<[SuspensionLoadCase](VM.Managed.DAFUL.Car.SuspensionLoadCase.md).[Column](VM.Managed.DAFUL.Car.SuspensionLoadCase.Column.md), double\[\]\> The column information. @@ -147,7 +148,7 @@ public virtual void GetXmlData(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. @@ -175,7 +176,7 @@ public virtual void SetXmlData(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md index 7055d4b37a..10fe6fdb39 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md @@ -1,4 +1,5 @@ -# Class SuspensionAnalysisConfigurationBase +# Class SuspensionAnalysisConfigurationBase + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public abstract class SuspensionAnalysisConfigurationBase : Configuration, IObse #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [SuspensionAnalysisConfigurationBase](VM.Managed.DAFUL.Car.SuspensionAnalysisConfigurationBase.md) #### Derived @@ -45,95 +46,98 @@ IEnableManager #### Inherited Members -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -177,7 +181,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -230,7 +234,7 @@ protected abstract string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionAnalysisType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionAnalysisType.md index 0110ab4bab..7c7650a6c5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionAnalysisType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionAnalysisType.md @@ -1,4 +1,5 @@ -# Enum SuspensionAnalysisType +# Enum SuspensionAnalysisType + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionDocument.SteeringAxis.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionDocument.SteeringAxis.md index 6c2fe7f45e..c78bbeb258 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionDocument.SteeringAxis.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionDocument.SteeringAxis.md @@ -1,4 +1,5 @@ -# Enum SuspensionDocument.SteeringAxis +# Enum SuspensionDocument.SteeringAxis + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionDocument.md index 479f67e80a..cea0a72af3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionDocument.md @@ -1,4 +1,5 @@ -# Class SuspensionDocument +# Class SuspensionDocument + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,16 +12,16 @@ public class SuspensionDocument : SubSystemDocument, IObservableObject, IDisposa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← [SuspensionDocument](VM.Managed.DAFUL.Car.SuspensionDocument.md) #### Implements @@ -32,7 +33,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -54,100 +55,100 @@ IPostTemplateBasedDocument, #### Inherited Members -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -242,8 +243,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -254,9 +253,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -270,12 +269,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -553,7 +549,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -584,7 +580,7 @@ public SuspensionDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -650,7 +646,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### Interfaces @@ -662,7 +658,7 @@ protected override InterfaceManager Interfaces { get; } #### Property Value - InterfaceManager + [InterfaceManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InterfaceManager.cs) ### JCoordRef @@ -814,13 +810,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The fullname of type. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The category. @@ -834,7 +830,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the STR category. @@ -864,7 +860,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -882,7 +878,7 @@ protected override void LoadTemplateBasedXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -896,7 +892,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -910,7 +906,7 @@ protected override void SaveTemplateBasedXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionLoadCase.Column.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionLoadCase.Column.md index 9194f58e83..65cced32f5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionLoadCase.Column.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionLoadCase.Column.md @@ -1,4 +1,5 @@ -# Enum SuspensionLoadCase.Column +# Enum SuspensionLoadCase.Column + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionLoadCase.SuspensionMode.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionLoadCase.SuspensionMode.md index 7978d0efc4..62b8d8a13e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionLoadCase.SuspensionMode.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionLoadCase.SuspensionMode.md @@ -1,4 +1,5 @@ -# Class SuspensionLoadCase.SuspensionMode +# Class SuspensionLoadCase.SuspensionMode + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class SuspensionLoadCase.SuspensionMode #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SuspensionLoadCase.SuspensionMode](VM.Managed.DAFUL.Car.SuspensionLoadCase.SuspensionMode.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionLoadCase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionLoadCase.md index bd07f11875..c7bfb811cd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionLoadCase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionLoadCase.md @@ -1,4 +1,5 @@ -# Class SuspensionLoadCase +# Class SuspensionLoadCase + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class SuspensionLoadCase : LoadCaseBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [LoadCaseBase](VM.Managed.DAFUL.Car.LoadCaseBase.md) ← [SuspensionLoadCase](VM.Managed.DAFUL.Car.SuspensionLoadCase.md) @@ -85,7 +86,7 @@ public void CreateSimulation(Configuration configActive, ref SuspensionAnalysisC #### Parameters -`configActive` Configuration +`configActive` [Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) The config @@ -103,7 +104,7 @@ public void GetXmlData(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. @@ -117,11 +118,11 @@ public void Initialize(int nStep, double dTime, SuspensionAnalysisBase analysis) #### Parameters -`nStep` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nStep` int The n step. -`dTime` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTime` double The d time. @@ -139,7 +140,7 @@ public void MakeSpline(List[] arSpl) #### Parameters -`arSpl` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\[\]\>\[\] +`arSpl` List\[\] The ar SPL. @@ -153,7 +154,7 @@ public void SetXmlData(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionSimulationConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionSimulationConfiguration.md index e490099367..e7fa350a21 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionSimulationConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SuspensionSimulationConfiguration.md @@ -1,4 +1,5 @@ -# Class SuspensionSimulationConfiguration +# Class SuspensionSimulationConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class SuspensionSimulationConfiguration #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SuspensionSimulationConfiguration](VM.Managed.DAFUL.Car.SuspensionSimulationConfiguration.md) #### Extension Methods @@ -42,7 +43,7 @@ public double EndTime { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ExternFiles @@ -66,7 +67,7 @@ public int NumofSteps { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### OppositeTravelParameter @@ -114,7 +115,7 @@ public string ResultFile { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RollVerticalParameter @@ -138,7 +139,7 @@ public int SimulationType { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### SingleTravelParameter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SweptSineSteerConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SweptSineSteerConfiguration.md index 276c9a6429..a708f8fc5f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SweptSineSteerConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.SweptSineSteerConfiguration.md @@ -1,4 +1,5 @@ -# Class SweptSineSteerConfiguration +# Class SweptSineSteerConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public class SweptSineSteerConfiguration : FullCarAnalysisConfigurationBase, IOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [FullCarAnalysisConfigurationBase](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md) ← [SweptSineSteerConfiguration](VM.Managed.DAFUL.Car.SweptSineSteerConfiguration.md) @@ -50,95 +51,98 @@ ILinkUpdateOwner [FullCarAnalysisConfigurationBase.RoadReferencePosition](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadReferencePosition), [FullCarAnalysisConfigurationBase.RoadRotationAngle](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadRotationAngle), [FullCarAnalysisConfigurationBase.RoadOffset](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadOffset), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -182,7 +186,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -249,7 +253,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TestRigDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TestRigDocument.md index 70bb9c78f6..bbd18b75d2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TestRigDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TestRigDocument.md @@ -1,4 +1,5 @@ -# Class TestRigDocument +# Class TestRigDocument + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,16 +12,16 @@ public class TestRigDocument : TestRigDocumentBase, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← [TestRigDocumentBase](VM.Managed.DAFUL.Car.TestRigDocumentBase.md) ← [TestRigDocument](VM.Managed.DAFUL.Car.TestRigDocument.md) @@ -33,7 +34,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -75,100 +76,100 @@ IInterfaceTable [TestRigDocumentBase.UseDriveLineActiveFront](VM.Managed.DAFUL.Car.TestRigDocumentBase.md\#VM\_Managed\_DAFUL\_Car\_TestRigDocumentBase\_UseDriveLineActiveFront), [TestRigDocumentBase.UseDriveLineActiveRear](VM.Managed.DAFUL.Car.TestRigDocumentBase.md\#VM\_Managed\_DAFUL\_Car\_TestRigDocumentBase\_UseDriveLineActiveRear), [TestRigDocumentBase.SkipBindInterfaceWhenOpen](VM.Managed.DAFUL.Car.TestRigDocumentBase.md\#VM\_Managed\_DAFUL\_Car\_TestRigDocumentBase\_SkipBindInterfaceWhenOpen), -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -263,8 +264,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -275,9 +274,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -291,12 +290,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -574,7 +570,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -605,7 +601,7 @@ public TestRigDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -621,7 +617,7 @@ public ExpressionValueVariable BrakeRatio { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### CGHeight @@ -633,7 +629,7 @@ public ExpressionValueVariable CGHeight { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DriveRatio @@ -645,7 +641,7 @@ public ExpressionValueVariable DriveRatio { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### HasSteering @@ -657,7 +653,7 @@ public bool HasSteering { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### InitialCategories @@ -669,7 +665,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### IsPowerSteer @@ -681,7 +677,7 @@ public bool IsPowerSteer { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SimulationScenarioTypeName @@ -693,7 +689,7 @@ public override string SimulationScenarioTypeName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SprungMass @@ -705,7 +701,7 @@ public ExpressionValueVariable SprungMass { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TireStiffness @@ -717,7 +713,7 @@ public ExpressionValueVariable TireStiffness { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Tread @@ -729,7 +725,7 @@ public ExpressionValueVariable Tread { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### UnloadedRadius @@ -741,7 +737,7 @@ public ExpressionValueVariable UnloadedRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### WheelBase @@ -753,7 +749,7 @@ public ExpressionValueVariable WheelBase { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### WheelMass @@ -765,7 +761,7 @@ public ExpressionValueVariable WheelMass { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -779,13 +775,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The fullname of type. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The category. @@ -817,7 +813,7 @@ public override string GetSimulationConfigurationType() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The type of the simulation configuration. @@ -849,7 +845,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the STR category. @@ -871,7 +867,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -889,7 +885,7 @@ protected override void LoadTemplateBasedXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -903,7 +899,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -917,7 +913,7 @@ public override void ReplaceAssembly(string strAssemblyInfo) #### Parameters -`strAssemblyInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strAssemblyInfo` string The assembly info. @@ -931,7 +927,7 @@ protected override void SaveTemplateBasedXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. @@ -945,7 +941,7 @@ public void SetPowerSteering(bool bIsPowerSteering) #### Parameters -`bIsPowerSteering` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bIsPowerSteering` bool The flag. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TestRigDocumentBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TestRigDocumentBase.md index ae1af7eed5..8b5557107a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TestRigDocumentBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TestRigDocumentBase.md @@ -1,4 +1,5 @@ -# Class TestRigDocumentBase +# Class TestRigDocumentBase + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,16 +12,16 @@ public abstract class TestRigDocumentBase : SubSystemDocument, IObservableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← [TestRigDocumentBase](VM.Managed.DAFUL.Car.TestRigDocumentBase.md) #### Derived @@ -38,7 +39,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -60,100 +61,100 @@ IInterfaceTable #### Inherited Members -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -248,8 +249,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -260,9 +259,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -276,12 +275,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -559,7 +555,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -590,7 +586,7 @@ public TestRigDocumentBase(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -606,7 +602,7 @@ public static string ComplianceGroupName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### DrivelineActiveGroupName @@ -618,7 +614,7 @@ public static string DrivelineActiveGroupName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### DrivelineInactiveGroupName @@ -630,7 +626,7 @@ public static string DrivelineInactiveGroupName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### KinematicGroupName @@ -642,7 +638,7 @@ public static string KinematicGroupName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SkipBindInterfaceWhenOpen @@ -654,7 +650,7 @@ protected override bool SkipBindInterfaceWhenOpen { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UpdateReInterface @@ -666,7 +662,7 @@ public static bool UpdateReInterface { set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseAssembly @@ -678,7 +674,7 @@ protected bool UseAssembly { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseCompliance @@ -690,7 +686,7 @@ public bool UseCompliance { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseDriveLineActiveFront @@ -702,7 +698,7 @@ public bool UseDriveLineActiveFront { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseDriveLineActiveRear @@ -714,7 +710,7 @@ public bool UseDriveLineActiveRear { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -728,7 +724,7 @@ protected void AddErrorMessageToOutputWindow(string strError) #### Parameters -`strError` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strError` string The STR error. @@ -742,7 +738,7 @@ protected Document3D AddSubSystem(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the STR file. @@ -760,7 +756,7 @@ protected void AddSubSystemForOther(string strFileNames) #### Parameters -`strFileNames` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileNames` string The STR file names. @@ -784,7 +780,7 @@ The ob to. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### InitializeInterfaceTable\(\) @@ -804,7 +800,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -844,7 +840,7 @@ public virtual void ReplaceAssembly(string strAssemblyInfo) #### Parameters -`strAssemblyInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strAssemblyInfo` string The assembly info. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ThreeDimensionRoadConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ThreeDimensionRoadConfiguration.md index a3d0e9d53c..8b4a26001f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ThreeDimensionRoadConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.ThreeDimensionRoadConfiguration.md @@ -1,4 +1,5 @@ -# Class ThreeDimensionRoadConfiguration +# Class ThreeDimensionRoadConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public class ThreeDimensionRoadConfiguration : FullCarAnalysisConfigurationBase, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [FullCarAnalysisConfigurationBase](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md) ← [ThreeDimensionRoadConfiguration](VM.Managed.DAFUL.Car.ThreeDimensionRoadConfiguration.md) @@ -50,95 +51,98 @@ ILinkUpdateOwner [FullCarAnalysisConfigurationBase.RoadReferencePosition](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadReferencePosition), [FullCarAnalysisConfigurationBase.RoadRotationAngle](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadRotationAngle), [FullCarAnalysisConfigurationBase.RoadOffset](VM.Managed.DAFUL.Car.FullCarAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_FullCarAnalysisConfigurationBase\_RoadOffset), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -182,7 +186,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -249,7 +253,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TireAnalysisBase.SimulationType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TireAnalysisBase.SimulationType.md index bb3e41c426..0b4d768ca6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TireAnalysisBase.SimulationType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TireAnalysisBase.SimulationType.md @@ -1,4 +1,5 @@ -# Enum TireAnalysisBase.SimulationType +# Enum TireAnalysisBase.SimulationType + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TireAnalysisBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TireAnalysisBase.md index c7b9593371..0591fb6401 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TireAnalysisBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TireAnalysisBase.md @@ -1,4 +1,5 @@ -# Class TireAnalysisBase +# Class TireAnalysisBase + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public abstract class TireAnalysisBase : AnalysisBase, IHasInitialVel #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AnalysisBase](VM.Managed.DAFUL.Car.AnalysisBase.md) ← [TireAnalysisBase](VM.Managed.DAFUL.Car.TireAnalysisBase.md) @@ -81,7 +82,7 @@ protected virtual double InitialVelocity { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TypeOfSimulation @@ -113,7 +114,7 @@ The type. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetTestRigMotionUSUBArgumentCore\(string, string, AnalysisInfo, string\[\]\) @@ -125,11 +126,11 @@ protected void GetTestRigMotionUSUBArgumentCore(string strAnaCat, string strAnaT #### Parameters -`strAnaCat` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strAnaCat` string The STR ana cat. -`strAnaType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strAnaType` string Type of the STR ana. @@ -137,7 +138,7 @@ Type of the STR ana. The info. -`arParameter` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arParameter` string\[\] The ar parameter. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TireAnalysisConfigurationBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TireAnalysisConfigurationBase.md index 849ec5225e..c8450a8444 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TireAnalysisConfigurationBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TireAnalysisConfigurationBase.md @@ -1,4 +1,5 @@ -# Class TireAnalysisConfigurationBase +# Class TireAnalysisConfigurationBase + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public abstract class TireAnalysisConfigurationBase : Configuration, IObservable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [TireAnalysisConfigurationBase](VM.Managed.DAFUL.Car.TireAnalysisConfigurationBase.md) #### Derived @@ -44,95 +45,98 @@ IEnableManager, #### Inherited Members -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -176,7 +180,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -229,7 +233,7 @@ protected abstract string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType @@ -253,7 +257,7 @@ public string RoadDataPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RoadRefFrameName @@ -265,7 +269,7 @@ public string RoadRefFrameName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RoadReferencePosition @@ -299,7 +303,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TireAnalysisType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TireAnalysisType.md index e01151e32f..c4b4dc25fa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TireAnalysisType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TireAnalysisType.md @@ -1,4 +1,5 @@ -# Enum TireAnalysisType +# Enum TireAnalysisType + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TireTestRigDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TireTestRigDocument.md index 7a1dac3aa6..6f2a35b640 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TireTestRigDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TireTestRigDocument.md @@ -1,4 +1,5 @@ -# Class TireTestRigDocument +# Class TireTestRigDocument + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,16 +12,16 @@ public class TireTestRigDocument : TestRigDocumentBase, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← [TestRigDocumentBase](VM.Managed.DAFUL.Car.TestRigDocumentBase.md) ← [TireTestRigDocument](VM.Managed.DAFUL.Car.TireTestRigDocument.md) @@ -33,7 +34,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -75,100 +76,100 @@ IInterfaceTable [TestRigDocumentBase.UseDriveLineActiveFront](VM.Managed.DAFUL.Car.TestRigDocumentBase.md\#VM\_Managed\_DAFUL\_Car\_TestRigDocumentBase\_UseDriveLineActiveFront), [TestRigDocumentBase.UseDriveLineActiveRear](VM.Managed.DAFUL.Car.TestRigDocumentBase.md\#VM\_Managed\_DAFUL\_Car\_TestRigDocumentBase\_UseDriveLineActiveRear), [TestRigDocumentBase.SkipBindInterfaceWhenOpen](VM.Managed.DAFUL.Car.TestRigDocumentBase.md\#VM\_Managed\_DAFUL\_Car\_TestRigDocumentBase\_SkipBindInterfaceWhenOpen), -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -263,8 +264,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -275,9 +274,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -291,12 +290,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -574,7 +570,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -605,7 +601,7 @@ public TireTestRigDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -621,7 +617,7 @@ protected override bool ApplyInitialVelocityImpl { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### InitialCategories @@ -633,7 +629,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### InitialVelocityImpl @@ -645,7 +641,7 @@ protected override double InitialVelocityImpl { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SimulationScenarioTypeName @@ -657,7 +653,7 @@ public override string SimulationScenarioTypeName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -671,13 +667,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The fullname of type. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The category. @@ -709,7 +705,7 @@ public override string GetSimulationConfigurationType() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The type of the simulation configuration. @@ -741,7 +737,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the STR category. @@ -763,7 +759,7 @@ protected override void LoadTemplateBasedXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -777,7 +773,7 @@ public override void ReplaceAssembly(string strAssemblyInfo) #### Parameters -`strAssemblyInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strAssemblyInfo` string The assembly info. @@ -791,7 +787,7 @@ protected override void SaveTemplateBasedXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TransientBatchConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TransientBatchConfiguration.md index 45a2b438dd..9b73af41f3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TransientBatchConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TransientBatchConfiguration.md @@ -1,4 +1,5 @@ -# Class TransientBatchConfiguration +# Class TransientBatchConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public class TransientBatchConfiguration : TireAnalysisConfigurationBase, IObser #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [TireAnalysisConfigurationBase](VM.Managed.DAFUL.Car.TireAnalysisConfigurationBase.md) ← [TransientBatchConfiguration](VM.Managed.DAFUL.Car.TransientBatchConfiguration.md) @@ -44,95 +45,98 @@ IEnableManager, [TireAnalysisConfigurationBase.RoadDataPath](VM.Managed.DAFUL.Car.TireAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_TireAnalysisConfigurationBase\_RoadDataPath), [TireAnalysisConfigurationBase.RoadRefFrameName](VM.Managed.DAFUL.Car.TireAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_TireAnalysisConfigurationBase\_RoadRefFrameName), [TireAnalysisConfigurationBase.RoadReferencePosition](VM.Managed.DAFUL.Car.TireAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_TireAnalysisConfigurationBase\_RoadReferencePosition), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -176,7 +180,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -243,7 +247,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TransientSingleConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TransientSingleConfiguration.md index 45180394e6..c76d4c4cb3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TransientSingleConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TransientSingleConfiguration.md @@ -1,4 +1,5 @@ -# Class TransientSingleConfiguration +# Class TransientSingleConfiguration + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,11 +12,11 @@ public class TransientSingleConfiguration : TireAnalysisConfigurationBase, IObse #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [TireAnalysisConfigurationBase](VM.Managed.DAFUL.Car.TireAnalysisConfigurationBase.md) ← [TransientSingleConfiguration](VM.Managed.DAFUL.Car.TransientSingleConfiguration.md) @@ -44,95 +45,98 @@ IEnableManager, [TireAnalysisConfigurationBase.RoadDataPath](VM.Managed.DAFUL.Car.TireAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_TireAnalysisConfigurationBase\_RoadDataPath), [TireAnalysisConfigurationBase.RoadRefFrameName](VM.Managed.DAFUL.Car.TireAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_TireAnalysisConfigurationBase\_RoadRefFrameName), [TireAnalysisConfigurationBase.RoadReferencePosition](VM.Managed.DAFUL.Car.TireAnalysisConfigurationBase.md\#VM\_Managed\_DAFUL\_Car\_TireAnalysisConfigurationBase\_RoadReferencePosition), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -176,7 +180,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -243,7 +247,7 @@ protected override string AnalysisName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AnalysisType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TrapezoidCleat.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TrapezoidCleat.md index 81fda7dcd5..ddd3545e4e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TrapezoidCleat.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.TrapezoidCleat.md @@ -1,4 +1,5 @@ -# Class TrapezoidCleat +# Class TrapezoidCleat + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,7 +12,7 @@ public class TrapezoidCleat : CleatShape #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CleatShape](VM.Managed.DAFUL.Car.CleatShape.md) ← [TrapezoidCleat](VM.Managed.DAFUL.Car.TrapezoidCleat.md) @@ -63,7 +64,7 @@ public double BottomLength { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Height @@ -75,7 +76,7 @@ public double Height { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TopLength @@ -87,7 +88,7 @@ public double TopLength { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TypeOfCleatShape @@ -113,11 +114,11 @@ public override string GetXZData(double dEndTime) #### Parameters -`dEndTime` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dEndTime` double The d end time. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.VehicleTestRigDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.VehicleTestRigDocument.md index d3701f5cd4..468ad6d8b9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.VehicleTestRigDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.VehicleTestRigDocument.md @@ -1,4 +1,5 @@ -# Class VehicleTestRigDocument +# Class VehicleTestRigDocument + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDFullCar.dll @@ -11,18 +12,18 @@ public class VehicleTestRigDocument : FullCarTestRigDocument, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← -TestRigDocumentBase ← -FullCarTestRigDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← +[TestRigDocumentBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs) ← +[FullCarTestRigDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs) ← [VehicleTestRigDocument](VM.Managed.DAFUL.Car.VehicleTestRigDocument.md) #### Implements @@ -34,7 +35,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -57,151 +58,151 @@ IHasMinorRole #### Inherited Members -FullCarTestRigDocument.InitializeCategoryInfo\(string\), -FullCarTestRigDocument.GetSimulationConfigurationType\(\), -FullCarTestRigDocument.GetAnalysisFromSimulationConfigurations\(FullCarAnalysisType\), -FullCarTestRigDocument.GetFullCarConfigurationFromSimulationConfigurations\(FullCarAnalysisType\), -FullCarTestRigDocument.ReplaceAssembly\(string\), -FullCarTestRigDocument.ReplaceOneSubsystem\(string, string\), -FullCarTestRigDocument.ReplaceAssemblyCore\(DocCreateFullCarAnalysisInfoExceptWheel, XmlDocument\), -FullCarTestRigDocument.LinkRequestDestroying\(object, LinkEventArgs\), -FullCarTestRigDocument.SetTemplateInfoImpl\(DocFromTemplateInfo\), -FullCarTestRigDocument.FindCategory\(string\), -FullCarTestRigDocument.SetPowerSteering\(bool\), -FullCarTestRigDocument.InitializeSimParam\(\), -FullCarTestRigDocument.InitializeInterface\(\), -FullCarTestRigDocument.ClearDocument\(\), -FullCarTestRigDocument.SaveTemplateBasedXml\(XmlWriter\), -FullCarTestRigDocument.SaveTemplateBasedXmlCore\(DocCreateFullCarAnalysisInfoExceptWheel, XmlWriter\), -FullCarTestRigDocument.LoadTemplateBasedXml\(XmlReader\), -FullCarTestRigDocument.LoadTemplateBasedXmlCore\(XmlReader, string, Type\), -FullCarTestRigDocument.InitializeAssemblyMember\(\), -FullCarTestRigDocument.InitialCategories, -FullCarTestRigDocument.Interfaces, -FullCarTestRigDocument.MinorRoleType, -FullCarTestRigDocument.SteeringRatio, -FullCarTestRigDocument.RackRatio, -FullCarTestRigDocument.MaxFrontBrakeTorque, -FullCarTestRigDocument.MaxRearBrakeTorque, -FullCarTestRigDocument.BrakeBias, -FullCarTestRigDocument.IsPowerSteer, -FullCarTestRigDocument.SimulationScenarioTypeName, -FullCarTestRigDocument.ApplyInitialVelocityImpl, -FullCarTestRigDocument.InitialVelocityImpl, -TestRigDocumentBase.PostOpenDocument\(\), -TestRigDocumentBase.ReplaceAssembly\(string\), -TestRigDocumentBase.SetTemplateInfoImpl\(DocFromTemplateInfo\), -TestRigDocumentBase.OnDeserialization\(object\), -TestRigDocumentBase.AddSubSystem\(string\), -TestRigDocumentBase.AddSubSystemForOther\(string\), -TestRigDocumentBase.AddErrorMessageToOutputWindow\(string\), -TestRigDocumentBase.InitializeInterfaceTable\(\), -TestRigDocumentBase.ReSetInterfacetable\(ObjectBase, ObjectBase\), -TestRigDocumentBase.BindInterfaces\(ObjectBase, ObjectBase\), -TestRigDocumentBase.UseAssembly, -TestRigDocumentBase.UpdateReInterface, -TestRigDocumentBase.KinematicGroupName, -TestRigDocumentBase.ComplianceGroupName, -TestRigDocumentBase.DrivelineActiveGroupName, -TestRigDocumentBase.DrivelineInactiveGroupName, -TestRigDocumentBase.UseCompliance, -TestRigDocumentBase.UseDriveLineActiveFront, -TestRigDocumentBase.UseDriveLineActiveRear, -TestRigDocumentBase.SkipBindInterfaceWhenOpen, -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[FullCarTestRigDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.GetAnalysisFromSimulationConfigurations\(FullCarAnalysisType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.GetFullCarConfigurationFromSimulationConfigurations\(FullCarAnalysisType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.ReplaceAssembly\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.ReplaceOneSubsystem\(string, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.ReplaceAssemblyCore\(DocCreateFullCarAnalysisInfoExceptWheel, XmlDocument\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.SetTemplateInfoImpl\(DocFromTemplateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.SetPowerSteering\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.SaveTemplateBasedXmlCore\(DocCreateFullCarAnalysisInfoExceptWheel, XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.LoadTemplateBasedXmlCore\(XmlReader, string, Type\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.InitializeAssemblyMember\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.MinorRoleType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.SteeringRatio](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.RackRatio](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.MaxFrontBrakeTorque](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.MaxRearBrakeTorque](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.BrakeBias](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.IsPowerSteer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[FullCarTestRigDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/FullCarTestRigDocument.cs), +[TestRigDocumentBase.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.ReplaceAssembly\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.SetTemplateInfoImpl\(DocFromTemplateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.AddSubSystem\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.AddSubSystemForOther\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.AddErrorMessageToOutputWindow\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.InitializeInterfaceTable\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.ReSetInterfacetable\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.BindInterfaces\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.UseAssembly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.UpdateReInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.KinematicGroupName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.ComplianceGroupName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.DrivelineActiveGroupName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.DrivelineInactiveGroupName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.UseCompliance](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.UseDriveLineActiveFront](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.UseDriveLineActiveRear](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[TestRigDocumentBase.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCar/TestRigDocument.cs), +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -296,8 +297,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -308,9 +307,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -324,12 +323,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -607,7 +603,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -638,7 +634,7 @@ public VehicleTestRigDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -654,7 +650,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ## Methods @@ -668,13 +664,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The fullname of type. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The category. @@ -688,7 +684,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the STR category. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.WheelDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.WheelDocument.md index 43e322b83c..30043bc6d1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.WheelDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.WheelDocument.md @@ -1,4 +1,5 @@ -# Class WheelDocument +# Class WheelDocument + Namespace: [VM.Managed.DAFUL.Car](VM.Managed.DAFUL.Car.md) Assembly: VMDCar.dll @@ -11,16 +12,16 @@ public class WheelDocument : SubSystemDocument, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← [WheelDocument](VM.Managed.DAFUL.Car.WheelDocument.md) #### Implements @@ -32,7 +33,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -54,100 +55,100 @@ IPostTemplateBasedDocument, #### Inherited Members -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -242,8 +243,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -254,9 +253,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -270,12 +269,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -553,7 +549,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -584,7 +580,7 @@ public WheelDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -600,7 +596,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### Interfaces @@ -612,7 +608,7 @@ protected override InterfaceManager Interfaces { get; } #### Property Value - InterfaceManager + [InterfaceManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InterfaceManager.cs) ### MinorRoleType @@ -646,13 +642,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The fullname of type. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The category. @@ -666,7 +662,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the STR category. @@ -696,7 +692,7 @@ protected override void LoadTemplateBasedXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -710,7 +706,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -724,7 +720,7 @@ protected override void SaveTemplateBasedXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.md index 484937afd4..19b0d0c140 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Car.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Car +# Namespace VM.Managed.DAFUL.Car + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CenterMarker.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CenterMarker.md index 4f160cb472..83bccbdfe6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CenterMarker.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CenterMarker.md @@ -1,4 +1,5 @@ -# Class CenterMarker +# Class CenterMarker + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,14 +12,14 @@ public class CenterMarker : Marker, IObservableObject, IDisposableObject, ILinka #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← -DesignSubEntity ← -DesignFrame ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← +[DesignSubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs) ← +[DesignFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs) ← [Marker](VM.Managed.DAFUL.Marker.md) ← [CenterMarker](VM.Managed.DAFUL.CenterMarker.md) @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, INamed, INavigatorItem, @@ -77,45 +78,45 @@ IMarker [Marker.ReferenceType](VM.Managed.DAFUL.Marker.md\#VM\_Managed\_DAFUL\_Marker\_ReferenceType), [Marker.ArgumentType](VM.Managed.DAFUL.Marker.md\#VM\_Managed\_DAFUL\_Marker\_ArgumentType), [Marker.FrameIconName](VM.Managed.DAFUL.Marker.md\#VM\_Managed\_DAFUL\_Marker\_FrameIconName), -DesignFrame.Initialize\(Unit.ConvertFactor\), -DesignFrame.LinkRequestUpdate\(object, LinkEventArgs\), -DesignFrame.GetDirection\(Coordinate\), -DesignFrame.GetFullName\(\), -DesignFrame.Draw\(Canvas\), -DesignFrame.ReDraw\(\), -DesignFrame.InstantiateImpl\(Reference, Canvas\), -DesignFrame.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\), -DesignFrame.WriteTemplateImpl\(XmlWriter\), -DesignFrame.ReadTemplateImpl\(XmlReader\), -DesignFrame.Transformation, -DesignFrame.Value, -DesignFrame.X, -DesignFrame.Y, -DesignFrame.Z, -DesignFrame.Orientation, -DesignFrame.Position, -DesignFrame.TransformationMatrix, -DesignFrame.Hide, -DesignFrame.FrameIconName, -DesignFrame.Layer, -DesignFrame.IsVisible, -DesignSubEntity.m\_bSkipToUpdateSymmetric, -DesignSubEntity.g\_dicUpdatedDesignSubEntity, -DesignSubEntity.FixUp\(ObjectBase\), -DesignSubEntity.CheckCircularReference\(\), -DesignSubEntity.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\), -DesignSubEntity.IsInterface, -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[DesignFrame.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.GetDirection\(Coordinate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.GetFullName\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.InstantiateImpl\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Transformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Value](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.X](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Y](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Z](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Orientation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Position](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.TransformationMatrix](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.FrameIconName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignSubEntity.m\_bSkipToUpdateSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.g\_dicUpdatedDesignSubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.CheckCircularReference\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.IsInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -208,7 +209,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -249,21 +250,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -277,21 +278,21 @@ public bool GetModelNavigatorInformationPub(XmlDocument xmlDom, XmlElement xmlEl #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -305,7 +306,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ApplyPlacingOperation.ApplyCallback.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ApplyPlacingOperation.ApplyCallback.md index be63c265a6..8350412a35 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ApplyPlacingOperation.ApplyCallback.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ApplyPlacingOperation.ApplyCallback.md @@ -1,4 +1,5 @@ -# Delegate ApplyPlacingOperation.ApplyCallback +# Delegate ApplyPlacingOperation.ApplyCallback + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,7 +12,7 @@ public delegate bool ApplyPlacingOperation.ApplyCallback() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ApplyPlacingOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ApplyPlacingOperation.md index adeb4eecb8..5b42795cda 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ApplyPlacingOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ApplyPlacingOperation.md @@ -1,4 +1,5 @@ -# Class ApplyPlacingOperation +# Class ApplyPlacingOperation + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,7 +12,7 @@ public class ApplyPlacingOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ApplyPlacingOperation](VM.Managed.DAFUL.Chained.ApplyPlacingOperation.md) @@ -88,7 +89,7 @@ public ApplyPlacingOperation(bool bHistoryMerge) #### Parameters -`bHistoryMerge` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHistoryMerge` bool ## Fields @@ -116,7 +117,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Success @@ -128,7 +129,7 @@ public bool Success { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.AssembleType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.AssembleType.md index a992aad42c..4784b3defb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.AssembleType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.AssembleType.md @@ -1,4 +1,5 @@ -# Enum AssembleType +# Enum AssembleType + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.BearingFrictionLoss.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.BearingFrictionLoss.md index ccf1587c9c..dd2ab032f8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.BearingFrictionLoss.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.BearingFrictionLoss.md @@ -1,4 +1,5 @@ -# Class BearingFrictionLoss +# Class BearingFrictionLoss + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,9 +12,9 @@ public class BearingFrictionLoss : LinkContainer, IObservableObject, IDisposable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [BearingFrictionLoss](VM.Managed.DAFUL.Chained.BearingFrictionLoss.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -142,7 +143,7 @@ public ExpressionValueVariable Diameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Friction @@ -154,7 +155,7 @@ public ExpressionValueVariable Friction { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### \_Bearing @@ -180,7 +181,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedMultiBaseInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedMultiBaseInfo.md index 51e66c4670..f1afd6215e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedMultiBaseInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedMultiBaseInfo.md @@ -1,4 +1,5 @@ -# Class ChainedMultiBaseInfo +# Class ChainedMultiBaseInfo + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,9 +12,9 @@ public abstract class ChainedMultiBaseInfo : LinkContainer, IObservableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ChainedMultiBaseInfo](VM.Managed.DAFUL.Chained.ChainedMultiBaseInfo.md) @@ -80,7 +81,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedMultiConnectorsInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedMultiConnectorsInfo.md index 786ce21a3a..affc9735eb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedMultiConnectorsInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedMultiConnectorsInfo.md @@ -1,4 +1,5 @@ -# Class ChainedMultiConnectorsInfo +# Class ChainedMultiConnectorsInfo + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,9 +12,9 @@ public class ChainedMultiConnectorsInfo : ChainedMultiBaseInfo, IObservableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ChainedMultiBaseInfo](VM.Managed.DAFUL.Chained.ChainedMultiBaseInfo.md) ← [ChainedMultiConnectorsInfo](VM.Managed.DAFUL.Chained.ChainedMultiConnectorsInfo.md) @@ -76,7 +77,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedMultiContactsInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedMultiContactsInfo.md index dcb232a3ba..dbf7c16869 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedMultiContactsInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedMultiContactsInfo.md @@ -1,4 +1,5 @@ -# Class ChainedMultiContactsInfo +# Class ChainedMultiContactsInfo + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,9 +12,9 @@ public class ChainedMultiContactsInfo : ChainedMultiBaseInfo, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ChainedMultiBaseInfo](VM.Managed.DAFUL.Chained.ChainedMultiBaseInfo.md) ← [ChainedMultiContactsInfo](VM.Managed.DAFUL.Chained.ChainedMultiContactsInfo.md) @@ -76,7 +77,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedObject.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedObject.md index 3a95dba94a..39cc745dbb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedObject.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedObject.md @@ -1,4 +1,5 @@ -# Class ChainedObject +# Class ChainedObject + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,13 +12,13 @@ public class ChainedObject : MultiObject, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← -MultiObject ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← +[MultiObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs) ← [ChainedObject](VM.Managed.DAFUL.Chained.ChainedObject.md) #### Implements @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -46,23 +47,23 @@ INavigatorItem #### Inherited Members -MultiObject.OnDeserialization\(object\), -MultiObject.AddConnection\(MultiObjectConnection\), -MultiObject.RemoveConnection\(MultiObjectConnection\), -MultiObject.MultiObjectContainer, -MultiObject.Connections, -MultiObject.Enumerable, -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[MultiObject.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs), +[MultiObject.AddConnection\(MultiObjectConnection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs), +[MultiObject.RemoveConnection\(MultiObjectConnection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs), +[MultiObject.MultiObjectContainer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs), +[MultiObject.Connections](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs), +[MultiObject.Enumerable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs), +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -155,7 +156,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -194,7 +195,7 @@ public ChainedObject(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The object name. @@ -211,7 +212,7 @@ public bool IsLoss { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MultiConnectionsInfo @@ -237,7 +238,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -251,7 +252,7 @@ public void SetLossFlag(bool bIsLoss) #### Parameters -`bIsLoss` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bIsLoss` bool The losss flag. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedPath.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedPath.md index cce134ca6b..294cd05e98 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedPath.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedPath.md @@ -1,4 +1,5 @@ -# Class ChainedPath +# Class ChainedPath + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,9 +12,9 @@ public class ChainedPath : LinkContainer, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ChainedPath](VM.Managed.DAFUL.Chained.ChainedPath.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,7 +117,7 @@ public ExpressionValueVariable AssembledRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### CenterPosition @@ -154,7 +155,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The obj notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedPlacing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedPlacing.md index b73fcf28cf..319aa631db 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedPlacing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedPlacing.md @@ -1,4 +1,5 @@ -# Class ChainedPlacing +# Class ChainedPlacing + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,9 +12,9 @@ public class ChainedPlacing : ChainedPlacingBase, IObservableObject, IDisposable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [ChainedPlacingBase](VM.Managed.DAFUL.Chained.ChainedPlacingBase.md) ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, INamed, IEnabled, @@ -145,7 +146,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -184,7 +185,7 @@ public ChainedPlacing(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the class. @@ -212,7 +213,7 @@ protected Child, ObjectBase.Update> m_dicCo #### Field Value - Child, ObjectBase.Update\> + Child<[NamedObjectDictionary](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/NamedObjectDictionary.cs)<[ChainedObject](VM.Managed.DAFUL.Chained.ChainedObject.md)\>, ObjectBase.Update\> ### m\_dicContacts @@ -224,7 +225,7 @@ protected Child, ObjectBase.Update> m_dicCo #### Field Value - Child, ObjectBase.Update\> + Child<[NamedObjectDictionary](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/NamedObjectDictionary.cs)<[ChainedObject](VM.Managed.DAFUL.Chained.ChainedObject.md)\>, ObjectBase.Update\> ### m\_dicMtoNContacts @@ -236,7 +237,7 @@ protected Child, ObjectBase.Update> m_dicMt #### Field Value - Child, ObjectBase.Update\> + Child<[NamedObjectDictionary](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/NamedObjectDictionary.cs)<[ChainedObject](VM.Managed.DAFUL.Chained.ChainedObject.md)\>, ObjectBase.Update\> ## Properties @@ -262,7 +263,7 @@ public NamedObjectDictionary Connectors { get; set; } #### Property Value - NamedObjectDictionary<[ChainedObject](VM.Managed.DAFUL.Chained.ChainedObject.md)\> + [NamedObjectDictionary](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/NamedObjectDictionary.cs)<[ChainedObject](VM.Managed.DAFUL.Chained.ChainedObject.md)\> ### Contacts @@ -274,7 +275,7 @@ public NamedObjectDictionary Contacts { get; set; } #### Property Value - NamedObjectDictionary<[ChainedObject](VM.Managed.DAFUL.Chained.ChainedObject.md)\> + [NamedObjectDictionary](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/NamedObjectDictionary.cs)<[ChainedObject](VM.Managed.DAFUL.Chained.ChainedObject.md)\> ### MtoNContacts @@ -286,7 +287,7 @@ public NamedObjectDictionary MtoNContacts { get; set; } #### Property Value - NamedObjectDictionary<[ChainedObject](VM.Managed.DAFUL.Chained.ChainedObject.md)\> + [NamedObjectDictionary](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/NamedObjectDictionary.cs)<[ChainedObject](VM.Managed.DAFUL.Chained.ChainedObject.md)\> ### Paths @@ -298,7 +299,7 @@ protected override InstanceContainer[] Paths { get; } #### Property Value - InstanceContainer\[\] + [InstanceContainer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs)\[\] ### Placing @@ -352,7 +353,7 @@ protected override void LinkRequestDestroy(object objNotifier, LinkEventArgs arg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -370,7 +371,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -388,7 +389,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedPlacingBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedPlacingBase.md index 34bff88798..b644862fc0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedPlacingBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedPlacingBase.md @@ -1,4 +1,5 @@ -# Class ChainedPlacingBase +# Class ChainedPlacingBase + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,9 +12,9 @@ public abstract class ChainedPlacingBase : Object, IObservableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [ChainedPlacingBase](VM.Managed.DAFUL.Chained.ChainedPlacingBase.md) @@ -36,7 +37,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, INamed, IEnabled, @@ -138,7 +139,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -177,11 +178,11 @@ protected ChainedPlacingBase(string strProxyName, string strBuildInfo) #### Parameters -`strProxyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strProxyName` string Name of the STR proxy. -`strBuildInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBuildInfo` string The STR build info. @@ -195,7 +196,7 @@ protected ChainedPlacingBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -211,7 +212,7 @@ public string Comment { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### FullName @@ -223,7 +224,7 @@ public string FullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IsEnabled @@ -235,7 +236,7 @@ public bool IsEnabled { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -247,7 +248,7 @@ public string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NonSymmetricName @@ -259,7 +260,7 @@ public string NonSymmetricName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Paths @@ -271,7 +272,7 @@ protected virtual InstanceContainer[] Paths { get; } #### Property Value - InstanceContainer\[\] + [InstanceContainer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs)\[\] ## Methods @@ -291,7 +292,7 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -305,21 +306,21 @@ protected virtual bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, XmlE #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XML DOM. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XML ele. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [b has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SetOldNameWithNewEntity\(ObjectBase, ObjectBase\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedPlacing_PathInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedPlacing_PathInfo.md index 52535cbfda..022ee141b5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedPlacing_PathInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedPlacing_PathInfo.md @@ -1,4 +1,5 @@ -# Class ChainedPlacing\_PathInfo +# Class ChainedPlacing\_PathInfo + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,9 +12,9 @@ public class ChainedPlacing_PathInfo : PlacingPathInfoBase, IObservableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [PlacingPathInfoBase](VM.Managed.DAFUL.Chained.PlacingPathInfoBase.md) ← [ChainedPlacing\_PathInfo](VM.Managed.DAFUL.Chained.ChainedPlacing\_PathInfo.md) @@ -77,7 +78,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedSegment.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedSegment.md index e3b7b3e182..cf6afce529 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedSegment.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ChainedSegment.md @@ -1,4 +1,5 @@ -# Class ChainedSegment +# Class ChainedSegment + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,9 +12,9 @@ public class ChainedSegment : LinkContainer, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ChainedSegment](VM.Managed.DAFUL.Chained.ChainedSegment.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,7 +117,7 @@ public IList Connectors { get; } #### Property Value - [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1) + IList ### Contacts @@ -128,7 +129,7 @@ public IList Contacts { get; } #### Property Value - [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1) + IList ### GeometryReference @@ -152,7 +153,7 @@ public ExpressionValueVariable SegmentHeight1 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### SegmentHeight2 @@ -164,7 +165,7 @@ public ExpressionValueVariable SegmentHeight2 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### SegmentLength @@ -176,7 +177,7 @@ public ExpressionValueVariable SegmentLength { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Transforms @@ -188,7 +189,7 @@ public IList Transforms { get; } #### Property Value - [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1) + IList ## Methods @@ -310,7 +311,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -328,7 +329,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.DocCreateChainedInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.DocCreateChainedInfo.md index 453db52668..ddaf199faa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.DocCreateChainedInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.DocCreateChainedInfo.md @@ -1,4 +1,5 @@ -# Class DocCreateChainedInfo +# Class DocCreateChainedInfo + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,19 +12,19 @@ public class DocCreateChainedInfo : DocCreateAnalysisInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← DocCreateInfo ← DocCreate3DInfo ← -DocCreateAnalysisInfo ← +[DocCreateAnalysisInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DocCreate3DInfo.cs) ← [DocCreateChainedInfo](VM.Managed.DAFUL.Chained.DocCreateChainedInfo.md) #### Inherited Members -DocCreateAnalysisInfo.GravityX, -DocCreateAnalysisInfo.GravityY, -DocCreateAnalysisInfo.GravityZ, -DocCreateAnalysisInfo.IncrementTime, -DocCreateAnalysisInfo.UseIncrementTime, +[DocCreateAnalysisInfo.GravityX](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DocCreate3DInfo.cs), +[DocCreateAnalysisInfo.GravityY](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DocCreate3DInfo.cs), +[DocCreateAnalysisInfo.GravityZ](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DocCreate3DInfo.cs), +[DocCreateAnalysisInfo.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DocCreate3DInfo.cs), +[DocCreateAnalysisInfo.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DocCreate3DInfo.cs), DocCreate3DInfo.IconSize, DocCreate3DInfo.IsAdvancedMode, DocCreate3DInfo.UseSymmetric, diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.DocumentChainedPath.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.DocumentChainedPath.md index d347a8a48c..f440cbebe4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.DocumentChainedPath.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.DocumentChainedPath.md @@ -1,4 +1,5 @@ -# Class DocumentChainedPath +# Class DocumentChainedPath + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,16 +12,16 @@ public class DocumentChainedPath : SubSystemDocument, IObservableObject, IDispos #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← [DocumentChainedPath](VM.Managed.DAFUL.Chained.DocumentChainedPath.md) #### Implements @@ -32,7 +33,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -53,100 +54,100 @@ IApplyInitialVelocity, #### Inherited Members -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -241,8 +242,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -253,9 +252,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -269,12 +268,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -552,7 +548,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -583,7 +579,7 @@ public DocumentChainedPath(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr ## Properties @@ -597,7 +593,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### WorkingPlane @@ -637,13 +633,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The fullname of type. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The category. @@ -657,7 +653,7 @@ public override void GetData(XmlNode writer) #### Parameters -`writer` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`writer` XmlNode The writer. @@ -671,7 +667,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the STR category. @@ -685,7 +681,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -703,7 +699,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -717,7 +713,7 @@ protected override void OnPostMakeDocumentImpl(DocCreateAnalysisInfo info) #### Parameters -`info` DocCreateAnalysisInfo +`info` [DocCreateAnalysisInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DocCreate3DInfo.cs) The [analysis document create information]. @@ -731,7 +727,7 @@ public override void SetData(XmlNode reader) #### Parameters -`reader` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`reader` XmlNode The reader. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.DocumentChainedSegment.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.DocumentChainedSegment.md index 186495f9f8..2fff816278 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.DocumentChainedSegment.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.DocumentChainedSegment.md @@ -1,4 +1,5 @@ -# Class DocumentChainedSegment +# Class DocumentChainedSegment + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,16 +12,16 @@ public class DocumentChainedSegment : SubSystemDocument, IObservableObject, IDis #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← [DocumentChainedSegment](VM.Managed.DAFUL.Chained.DocumentChainedSegment.md) #### Implements @@ -32,7 +33,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -53,100 +54,100 @@ IApplyInitialVelocity, #### Inherited Members -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -241,8 +242,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -253,9 +252,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -269,12 +268,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -552,7 +548,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -583,7 +579,7 @@ public DocumentChainedSegment(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr ## Properties @@ -597,7 +593,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### WorkingPlane @@ -637,13 +633,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The fullname of type. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The category. @@ -657,7 +653,7 @@ public override void GetData(XmlNode writer) #### Parameters -`writer` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`writer` XmlNode The writer. @@ -671,7 +667,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the STR category. @@ -685,7 +681,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -703,7 +699,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -717,7 +713,7 @@ protected override void OnPostMakeDocumentImpl(DocCreateAnalysisInfo info) #### Parameters -`info` DocCreateAnalysisInfo +`info` [DocCreateAnalysisInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DocCreate3DInfo.cs) The [analysis document create information]. @@ -731,7 +727,7 @@ public override void SetData(XmlNode reader) #### Parameters -`reader` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`reader` XmlNode The reader. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.EngageType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.EngageType.md index 7d5fe67626..34ddd54440 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.EngageType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.EngageType.md @@ -1,4 +1,5 @@ -# Enum EngageType +# Enum EngageType + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.GapExpressionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.GapExpressionType.md index 6c8f0bc26d..fdf5ffad37 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.GapExpressionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.GapExpressionType.md @@ -1,4 +1,5 @@ -# Enum GapExpressionType +# Enum GapExpressionType + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.GenerateDataForChainedPlacing.PlacingDataResultType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.GenerateDataForChainedPlacing.PlacingDataResultType.md index 2b2f5c5b06..328bdc3be9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.GenerateDataForChainedPlacing.PlacingDataResultType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.GenerateDataForChainedPlacing.PlacingDataResultType.md @@ -1,4 +1,5 @@ -# Enum GenerateDataForChainedPlacing.PlacingDataResultType +# Enum GenerateDataForChainedPlacing.PlacingDataResultType + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.GenerateDataForChainedPlacing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.GenerateDataForChainedPlacing.md index 6cf00e76bb..76ba65326a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.GenerateDataForChainedPlacing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.GenerateDataForChainedPlacing.md @@ -1,4 +1,5 @@ -# Class GenerateDataForChainedPlacing +# Class GenerateDataForChainedPlacing + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,7 +12,7 @@ public class GenerateDataForChainedPlacing #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [GenerateDataForChainedPlacing](VM.Managed.DAFUL.Chained.GenerateDataForChainedPlacing.md) #### Extension Methods @@ -40,7 +41,7 @@ public bool m_FirstCheckCrossTangent #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -82,7 +83,7 @@ public bool CalculatePositionAndOrietationOfSegment(int _pznSegment, ref Segment #### Parameters -`_pznSegment` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`_pznSegment` int The number of segment. @@ -92,7 +93,7 @@ The array including data for placing. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool if the position and orientation of segments are calculated successfully, it is true. @@ -106,17 +107,17 @@ public bool Calculate_Gap(int nTotalNoOfSegment, ref double dGap) #### Parameters -`nTotalNoOfSegment` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nTotalNoOfSegment` int The Number of segment. -`dGap` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGap` double The gap. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool if the gap is calculated successfully, it is true. @@ -130,17 +131,17 @@ public bool Calculate_NoOfSegmentAndGap(ref int nSegment, ref double dGap) #### Parameters -`nSegment` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nSegment` int Number of segment.Initial value must be -1. -`dGap` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGap` double The gap. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool if the number of segment and gap are calculated successfully, it is true. @@ -154,7 +155,7 @@ public PathInfo GetNthPathInfo(int Nth) #### Parameters -`Nth` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`Nth` int The Index. @@ -174,7 +175,7 @@ public SegmentInfo GetNthSegmentInfo(int Nth) #### Parameters -`Nth` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`Nth` int The index. @@ -224,23 +225,23 @@ public SegmentPlacingInfo[] Positioning_Algorithm(ref int _NoOfSegment, ref doub #### Parameters -`_NoOfSegment` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`_NoOfSegment` int The number of segment. -`_Gap` [double](https://learn.microsoft.com/dotnet/api/system.double) +`_Gap` double The total distance between segment and segment. -`_ErrorGapPerSegment` [double](https://learn.microsoft.com/dotnet/api/system.double) +`_ErrorGapPerSegment` double The average distance per segment between segment and segment. -`_bFixedNo` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`_bFixedNo` bool true if [Fixed the number of segment]; otherwise, false -`_nIteration` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`_nIteration` int The number of iteration. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.IChainedPathInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.IChainedPathInfo.md index e0460586e9..956af863f9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.IChainedPathInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.IChainedPathInfo.md @@ -1,4 +1,5 @@ -# Interface IChainedPathInfo +# Interface IChainedPathInfo + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.IChainedSegmentInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.IChainedSegmentInfo.md index 5fed3bb5b6..39d36cefe4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.IChainedSegmentInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.IChainedSegmentInfo.md @@ -1,4 +1,5 @@ -# Interface IChainedSegmentInfo +# Interface IChainedSegmentInfo + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -169,7 +170,7 @@ The object(Body,NodeSet,FaceSet,PatchSet). #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the specified is equal to ; otherwise, false @@ -189,7 +190,7 @@ The array of connectors(Body,NodeSet,FaceSet,PatchSet). #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the specified is equal to ; otherwise, false @@ -209,7 +210,7 @@ The contact geometry(FaceSet,PatchSet). #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the specified include the following property ; otherwise, false @@ -229,7 +230,7 @@ The geometry reference #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the specified include the following property or ; otherwise, false @@ -249,7 +250,7 @@ The array of contact geometry(FaceSet,PatchSet). #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SetSegmentHeight1\(Variable\) @@ -309,7 +310,7 @@ the transform(DesignFrame, Marker) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the specified include the following property or ; otherwise, false @@ -329,7 +330,7 @@ The array of transforms(DesignFrame,Marker). #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the specified include the following property or ; otherwise, false diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.IPlacing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.IPlacing.md index de60da4844..21e3dc4bc2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.IPlacing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.IPlacing.md @@ -1,4 +1,5 @@ -# Interface IPlacing +# Interface IPlacing + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.IPlacingPath.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.IPlacingPath.md index 8a1f9716f0..433934ec28 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.IPlacingPath.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.IPlacingPath.md @@ -1,4 +1,5 @@ -# Interface IPlacingPath +# Interface IPlacingPath + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.MeshDocumentChainedPath.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.MeshDocumentChainedPath.md index 5f5d7f6bab..5734b840d7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.MeshDocumentChainedPath.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.MeshDocumentChainedPath.md @@ -1,4 +1,5 @@ -# Class MeshDocumentChainedPath +# Class MeshDocumentChainedPath + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,15 +12,15 @@ public class MeshDocumentChainedPath : MeshDocument, IObservableObject, IDisposa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← MeshDocument ← [MeshDocumentChainedPath](VM.Managed.DAFUL.Chained.MeshDocumentChainedPath.md) @@ -32,7 +33,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, IDocumentAnalysis, @@ -101,53 +102,55 @@ MeshDocument.CreateInterfaceManager\(\), MeshDocument.OnDeserialization\(object\), MeshDocument.InitializeCategoryInfo\(string\), MeshDocument.GetMeshFileType\(string\), +MeshDocument.GetHashFromDFMF\(string\), +MeshDocument.AppendHashInformation\(BinaryWriter, string, string\), MeshDocument.KeepOldKernelUnit, MeshDocument.InitialCategories, MeshDocument.UseDFMFForNodal, MeshDocument.NodalFilePath, MeshDocument.Interfaces, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -242,8 +245,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -254,9 +255,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -270,12 +271,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -553,7 +551,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -584,7 +582,7 @@ public MeshDocumentChainedPath(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -600,7 +598,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### WorkingPlane @@ -640,13 +638,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The fullname of type. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The category. @@ -660,7 +658,7 @@ public override void GetData(XmlNode writer) #### Parameters -`writer` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`writer` XmlNode The writer. @@ -674,7 +672,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the STR category. @@ -688,7 +686,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -706,7 +704,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -720,7 +718,7 @@ public override void OnPostMakeDocumentImpl(DocCreateAnalysisInfo info) #### Parameters -`info` DocCreateAnalysisInfo +`info` [DocCreateAnalysisInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DocCreate3DInfo.cs) The [analysis document create information]. @@ -734,7 +732,7 @@ public override void SetData(XmlNode reader) #### Parameters -`reader` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`reader` XmlNode The reader. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.MeshDocumentChainedSegment.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.MeshDocumentChainedSegment.md index ec45c3c611..12af626368 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.MeshDocumentChainedSegment.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.MeshDocumentChainedSegment.md @@ -1,4 +1,5 @@ -# Class MeshDocumentChainedSegment +# Class MeshDocumentChainedSegment + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,15 +12,15 @@ public class MeshDocumentChainedSegment : MeshDocument, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← MeshDocument ← [MeshDocumentChainedSegment](VM.Managed.DAFUL.Chained.MeshDocumentChainedSegment.md) @@ -32,7 +33,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, IDocumentAnalysis, @@ -101,53 +102,55 @@ MeshDocument.CreateInterfaceManager\(\), MeshDocument.OnDeserialization\(object\), MeshDocument.InitializeCategoryInfo\(string\), MeshDocument.GetMeshFileType\(string\), +MeshDocument.GetHashFromDFMF\(string\), +MeshDocument.AppendHashInformation\(BinaryWriter, string, string\), MeshDocument.KeepOldKernelUnit, MeshDocument.InitialCategories, MeshDocument.UseDFMFForNodal, MeshDocument.NodalFilePath, MeshDocument.Interfaces, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -242,8 +245,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -254,9 +255,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -270,12 +271,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -553,7 +551,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -584,7 +582,7 @@ public MeshDocumentChainedSegment(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -600,7 +598,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### WorkingPlane @@ -640,13 +638,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The fullname of type. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The category. @@ -660,7 +658,7 @@ public override void GetData(XmlNode writer) #### Parameters -`writer` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`writer` XmlNode The writer. @@ -674,7 +672,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the STR category. @@ -688,7 +686,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -706,7 +704,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -720,7 +718,7 @@ public override void OnPostMakeDocumentImpl(DocCreateAnalysisInfo info) #### Parameters -`info` DocCreateAnalysisInfo +`info` [DocCreateAnalysisInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DocCreate3DInfo.cs) The [analysis document create information]. @@ -734,7 +732,7 @@ public override void SetData(XmlNode reader) #### Parameters -`reader` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`reader` XmlNode The reader. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.MultiObjectContainer1ToNConnector.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.MultiObjectContainer1ToNConnector.md index 9e4c6a744c..1f3f128585 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.MultiObjectContainer1ToNConnector.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.MultiObjectContainer1ToNConnector.md @@ -1,4 +1,5 @@ -# Class MultiObjectContainer1ToNConnector +# Class MultiObjectContainer1ToNConnector + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,11 +12,11 @@ public class MultiObjectContainer1ToNConnector : MultiObjectContainer, IObservab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -MultiObjectContainer ← +[MultiObjectContainer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs) ← [MultiObjectContainer1ToNConnector](VM.Managed.DAFUL.Chained.MultiObjectContainer1ToNConnector.md) #### Implements @@ -33,15 +34,15 @@ IVerifiable #### Inherited Members -MultiObjectContainer.GetEnumerator\(\), -MultiObjectContainer.LinkRequestUpdate\(object, LinkEventArgs\), -MultiObjectContainer.OnDeserialization\(object\), -MultiObjectContainer.SwapActionBase, -MultiObjectContainer.Collection, -MultiObjectContainer.Count, -MultiObjectContainer.Objects, -MultiObjectContainer.ObjectList, -MultiObjectContainer.ObjectBaseList, +[MultiObjectContainer.GetEnumerator\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs), +[MultiObjectContainer.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs), +[MultiObjectContainer.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs), +[MultiObjectContainer.SwapActionBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs), +[MultiObjectContainer.Collection](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs), +[MultiObjectContainer.Count](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs), +[MultiObjectContainer.Objects](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs), +[MultiObjectContainer.ObjectList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs), +[MultiObjectContainer.ObjectBaseList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -85,7 +86,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,7 +117,7 @@ public MultiObjectContainer1ToNConnector(ICollection collection) #### Parameters -`collection` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.icollection) +`collection` ICollection The collection of objects. @@ -130,11 +131,11 @@ public MultiObjectContainer1ToNConnector(ICollection collection, bool isClosed) #### Parameters -`collection` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.icollection) +`collection` ICollection The collection of objects. -`isClosed` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isClosed` bool true if chained object makes closed loop; otherwise, false; @@ -150,7 +151,7 @@ public bool ClosedState { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Count @@ -162,7 +163,7 @@ protected override int Count { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -176,7 +177,7 @@ protected override IEnumerator GetEnumerator() #### Returns - [IEnumerator](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator\-1) + IEnumerator<[MultiObjectTarget](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs)\> An object that can be used to iterate through the collection. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.MultiObjectContainerMToN.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.MultiObjectContainerMToN.md index 481d3c09fc..db5a9fdd94 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.MultiObjectContainerMToN.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.MultiObjectContainerMToN.md @@ -1,4 +1,5 @@ -# Class MultiObjectContainerMToN +# Class MultiObjectContainerMToN + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,11 +12,11 @@ public class MultiObjectContainerMToN : MultiObjectContainer, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -MultiObjectContainer ← +[MultiObjectContainer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs) ← [MultiObjectContainerMToN](VM.Managed.DAFUL.Chained.MultiObjectContainerMToN.md) #### Implements @@ -33,15 +34,15 @@ IVerifiable #### Inherited Members -MultiObjectContainer.GetEnumerator\(\), -MultiObjectContainer.LinkRequestUpdate\(object, LinkEventArgs\), -MultiObjectContainer.OnDeserialization\(object\), -MultiObjectContainer.SwapActionBase, -MultiObjectContainer.Collection, -MultiObjectContainer.Count, -MultiObjectContainer.Objects, -MultiObjectContainer.ObjectList, -MultiObjectContainer.ObjectBaseList, +[MultiObjectContainer.GetEnumerator\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs), +[MultiObjectContainer.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs), +[MultiObjectContainer.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs), +[MultiObjectContainer.SwapActionBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs), +[MultiObjectContainer.Collection](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs), +[MultiObjectContainer.Count](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs), +[MultiObjectContainer.Objects](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs), +[MultiObjectContainer.ObjectList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs), +[MultiObjectContainer.ObjectBaseList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -85,7 +86,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,7 +117,7 @@ public MultiObjectContainerMToN(ICollection collection) #### Parameters -`collection` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.icollection) +`collection` ICollection The collection of objects. @@ -132,7 +133,7 @@ protected IList BaseObjectCollection { get; } #### Property Value - [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1) + IList ### BaseObjectList @@ -145,7 +146,7 @@ protected List\> + List\> ### BaseObjects @@ -169,7 +170,7 @@ protected override int Count { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfBackward @@ -181,7 +182,7 @@ public int NumberOfBackward { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfForward @@ -193,7 +194,7 @@ public int NumberOfForward { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -207,7 +208,7 @@ protected override IEnumerator GetEnumerator() #### Returns - [IEnumerator](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator\-1) + IEnumerator<[MultiObjectTarget](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs)\> An object that can be used to iterate through the collection. @@ -221,7 +222,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.NextStepOperation.NextStepCallback.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.NextStepOperation.NextStepCallback.md index fe95a63d12..c29ebd34b4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.NextStepOperation.NextStepCallback.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.NextStepOperation.NextStepCallback.md @@ -1,4 +1,5 @@ -# Delegate NextStepOperation.NextStepCallback +# Delegate NextStepOperation.NextStepCallback + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.NextStepOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.NextStepOperation.md index a14def522c..4a7b7a0c60 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.NextStepOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.NextStepOperation.md @@ -1,4 +1,5 @@ -# Class NextStepOperation +# Class NextStepOperation + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,7 +12,7 @@ public class NextStepOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [NextStepOperation](VM.Managed.DAFUL.Chained.NextStepOperation.md) @@ -115,7 +116,7 @@ public bool ExistEvent { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -127,7 +128,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.AddObjectListToActiveDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.AddObjectListToActiveDocument.md index 6c9d8f071d..355cd8b8a7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.AddObjectListToActiveDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.AddObjectListToActiveDocument.md @@ -1,4 +1,5 @@ -# Class AddObjectListToActiveDocument +# Class AddObjectListToActiveDocument + Namespace: [VM.Managed.DAFUL.Chained.Operation](VM.Managed.DAFUL.Chained.Operation.md) Assembly: VMOpChained.dll @@ -11,7 +12,7 @@ public class AddObjectListToActiveDocument : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [AddObjectListToActiveDocument](VM.Managed.DAFUL.Chained.Operation.AddObjectListToActiveDocument.md) @@ -105,7 +106,7 @@ public AddObjectListToActiveDocument(List lstObj, Document doc) #### Parameters -`lstObj` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstObj` List The LST object. @@ -139,7 +140,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -161,7 +162,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.AddObjectToActiveDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.AddObjectToActiveDocument.md index 06c2543084..539d82e60a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.AddObjectToActiveDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.AddObjectToActiveDocument.md @@ -1,4 +1,5 @@ -# Class AddObjectToActiveDocument +# Class AddObjectToActiveDocument + Namespace: [VM.Managed.DAFUL.Chained.Operation](VM.Managed.DAFUL.Chained.Operation.md) Assembly: VMOpChained.dll @@ -11,7 +12,7 @@ public class AddObjectToActiveDocument : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [AddObjectToActiveDocument](VM.Managed.DAFUL.Chained.Operation.AddObjectToActiveDocument.md) @@ -87,23 +88,23 @@ public AddObjectToActiveDocument(int nShare, int nRepeatSegment, string[] arPreF #### Parameters -`nShare` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nShare` int The n share. -`nRepeatSegment` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nRepeatSegment` int The n repeat segment. -`arPreFixed` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arPreFixed` string\[\] The ar pre fixed. -`lstTansform` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstTansform` List The LST tansform. -`lstSegmentDoc` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstSegmentDoc` List The LST segment document. @@ -111,7 +112,7 @@ The LST segment document. The activedoc. -`bCreate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bCreate` bool The create flag. @@ -141,7 +142,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Segment @@ -153,7 +154,7 @@ public List Segment { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ## Methods @@ -175,7 +176,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.AddPathObjectToDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.AddPathObjectToDocument.md index 204a714cf7..a7c5a446d3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.AddPathObjectToDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.AddPathObjectToDocument.md @@ -1,4 +1,5 @@ -# Class AddPathObjectToDocument +# Class AddPathObjectToDocument + Namespace: [VM.Managed.DAFUL.Chained.Operation](VM.Managed.DAFUL.Chained.Operation.md) Assembly: VMOpChained.dll @@ -11,7 +12,7 @@ public class AddPathObjectToDocument : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [AddPathObjectToDocument](VM.Managed.DAFUL.Chained.Operation.AddPathObjectToDocument.md) @@ -87,11 +88,11 @@ public AddPathObjectToDocument(List lstRowObject, List lstDo #### Parameters -`lstRowObject` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstRowObject` List The LST row object. -`lstDocument` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstDocument` List The LST document. @@ -125,7 +126,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### PathObjects @@ -137,7 +138,7 @@ public List PathObjects { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### RowObject @@ -149,7 +150,7 @@ public List RowObject { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ## Methods @@ -179,7 +180,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.CreateChainedPlacing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.CreateChainedPlacing.md index 9b70d1e7cd..a75ef13274 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.CreateChainedPlacing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.CreateChainedPlacing.md @@ -1,4 +1,5 @@ -# Class CreateChainedPlacing +# Class CreateChainedPlacing + Namespace: [VM.Managed.DAFUL.Chained.Operation](VM.Managed.DAFUL.Chained.Operation.md) Assembly: VMOpChained.dll @@ -11,7 +12,7 @@ public class CreateChainedPlacing : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [CreateChainedPlacing](VM.Managed.DAFUL.Chained.Operation.CreateChainedPlacing.md) @@ -95,7 +96,7 @@ public CreateChainedPlacing(string strInitializerXml) #### Parameters -`strInitializerXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInitializerXml` string The STR initializer XML. @@ -111,7 +112,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -126,7 +127,10 @@ public override void Execute() ### ExecutePickOperation\(string\[\], string\[\], int, int\) Execute the operation. -pick result array.pick operation array.The start.The end. +pick result array. +pick operation array. +The start. +The end. ```csharp protected virtual bool ExecutePickOperation(string[] arPickResult, string[] arPickOp, int start, int end) @@ -134,15 +138,15 @@ protected virtual bool ExecutePickOperation(string[] arPickResult, string[] arPi #### Parameters -`arPickResult` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arPickResult` string\[\] -`arPickOp` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arPickOp` string\[\] -`start` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`start` int -`end` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`end` int #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.DeleteObjectList.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.DeleteObjectList.md index 5303687891..0c28a44df3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.DeleteObjectList.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.DeleteObjectList.md @@ -1,4 +1,5 @@ -# Class DeleteObjectList +# Class DeleteObjectList + Namespace: [VM.Managed.DAFUL.Chained.Operation](VM.Managed.DAFUL.Chained.Operation.md) Assembly: VMOpChained.dll @@ -11,7 +12,7 @@ public class DeleteObjectList : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [DeleteObjectList](VM.Managed.DAFUL.Chained.Operation.DeleteObjectList.md) @@ -105,7 +106,7 @@ public DeleteObjectList(List lstObj, DestroyEventArgs arg) #### Parameters -`lstObj` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstObj` List The LST object. @@ -139,7 +140,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -169,7 +170,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.EventInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.EventInfo.md index 03ef2f1c6a..1604115bc8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.EventInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.EventInfo.md @@ -1,4 +1,5 @@ -# Class EventInfo +# Class EventInfo + Namespace: [VM.Managed.DAFUL.Chained.Operation](VM.Managed.DAFUL.Chained.Operation.md) Assembly: VMOpChained.dll @@ -11,7 +12,7 @@ public class EventInfo : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [EventInfo](VM.Managed.DAFUL.Chained.Operation.EventInfo.md) @@ -87,11 +88,11 @@ public EventInfo(object sender, DataGridViewCellEventArgs e) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. -`e` [DataGridViewCellEventArgs](https://learn.microsoft.com/dotnet/api/system.windows.forms.datagridviewcelleventargs) +`e` DataGridViewCellEventArgs The instance containing the event data. @@ -107,7 +108,7 @@ public DataGridViewCellEventArgs E { get; } #### Property Value - [DataGridViewCellEventArgs](https://learn.microsoft.com/dotnet/api/system.windows.forms.datagridviewcelleventargs) + DataGridViewCellEventArgs ### Name @@ -119,7 +120,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Sender @@ -131,7 +132,7 @@ public object Sender { get; } #### Property Value - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ## Methods @@ -145,7 +146,7 @@ public override void Execute() #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ### GetInformation\(XmlWriter\) @@ -157,7 +158,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.NameUpdate.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.NameUpdate.md index 17f13c3552..6eaa5d3237 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.NameUpdate.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.NameUpdate.md @@ -1,4 +1,5 @@ -# Class NameUpdate +# Class NameUpdate + Namespace: [VM.Managed.DAFUL.Chained.Operation](VM.Managed.DAFUL.Chained.Operation.md) Assembly: VMOpChained.dll @@ -11,7 +12,7 @@ public class NameUpdate : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [NameUpdate](VM.Managed.DAFUL.Chained.Operation.NameUpdate.md) @@ -87,7 +88,7 @@ public NameUpdate(string xmlString) #### Parameters -`xmlString` [string](https://learn.microsoft.com/dotnet/api/system.string) +`xmlString` string The XML string. @@ -117,7 +118,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NewObject @@ -151,7 +152,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.ObjectLayerChanger.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.ObjectLayerChanger.md index cfa03ee2a9..f905e5f088 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.ObjectLayerChanger.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.ObjectLayerChanger.md @@ -1,4 +1,5 @@ -# Class ObjectLayerChanger +# Class ObjectLayerChanger + Namespace: [VM.Managed.DAFUL.Chained.Operation](VM.Managed.DAFUL.Chained.Operation.md) Assembly: VMOpChained.dll @@ -11,7 +12,7 @@ public class ObjectLayerChanger : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ObjectLayerChanger](VM.Managed.DAFUL.Chained.Operation.ObjectLayerChanger.md) @@ -95,7 +96,7 @@ The doc3 d. The LST object. -`lstHide` [bool](https://learn.microsoft.com/dotnet/api/system.boolean)\[\] +`lstHide` bool\[\] The LST hide. @@ -125,7 +126,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -147,7 +148,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.OpenDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.OpenDocument.md index 8e218c8f36..3b29d1bb19 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.OpenDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.OpenDocument.md @@ -1,4 +1,5 @@ -# Class OpenDocument +# Class OpenDocument + Namespace: [VM.Managed.DAFUL.Chained.Operation](VM.Managed.DAFUL.Chained.Operation.md) Assembly: VMOpChained.dll @@ -11,7 +12,7 @@ public class OpenDocument : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [OpenDocument](VM.Managed.DAFUL.Chained.Operation.OpenDocument.md) @@ -87,11 +88,11 @@ public OpenDocument(string strFullPath, bool bDuplication, UCTrackPlacing placin #### Parameters -`strFullPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFullPath` string The string full path. -`bDuplication` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDuplication` bool if set to true [b duplication]. @@ -111,7 +112,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -133,7 +134,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.OpenDocumentForGetChainedSegment.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.OpenDocumentForGetChainedSegment.md index 3c3567e668..6f7b1862c4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.OpenDocumentForGetChainedSegment.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.OpenDocumentForGetChainedSegment.md @@ -1,4 +1,5 @@ -# Class OpenDocumentForGetChainedSegment +# Class OpenDocumentForGetChainedSegment + Namespace: [VM.Managed.DAFUL.Chained.Operation](VM.Managed.DAFUL.Chained.Operation.md) Assembly: VMOpChained.dll @@ -11,7 +12,7 @@ public class OpenDocumentForGetChainedSegment : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [OpenDocumentForGetChainedSegment](VM.Managed.DAFUL.Chained.Operation.OpenDocumentForGetChainedSegment.md) @@ -87,7 +88,7 @@ public OpenDocumentForGetChainedSegment(string strFullPath) #### Parameters -`strFullPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFullPath` string The string full path. @@ -117,7 +118,7 @@ public object ChainedSegmentDocument { get; } #### Property Value - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### Name @@ -129,7 +130,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -151,7 +152,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.OpenDocumentWithFiles.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.OpenDocumentWithFiles.md index 7478b65530..257b5ad2a6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.OpenDocumentWithFiles.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.OpenDocumentWithFiles.md @@ -1,4 +1,5 @@ -# Class OpenDocumentWithFiles +# Class OpenDocumentWithFiles + Namespace: [VM.Managed.DAFUL.Chained.Operation](VM.Managed.DAFUL.Chained.Operation.md) Assembly: VMOpChained.dll @@ -11,7 +12,7 @@ public class OpenDocumentWithFiles : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [OpenDocumentWithFiles](VM.Managed.DAFUL.Chained.Operation.OpenDocumentWithFiles.md) @@ -87,11 +88,11 @@ public OpenDocumentWithFiles(List lstFullPath, Dictionary +`lstFullPath` List The LST full path. -`dicDocument` [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), Document\> +`dicDocument` Dictionary The dic document. @@ -111,7 +112,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### PathDocument\_Candidation @@ -123,7 +124,7 @@ public Dictionary PathDocument_Candidation { get; } #### Property Value - [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), Document\> + Dictionary ## Methods @@ -145,7 +146,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.ReplaceDesignPosition.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.ReplaceDesignPosition.md index 30bfcb1dec..c570d9713d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.ReplaceDesignPosition.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.ReplaceDesignPosition.md @@ -1,4 +1,5 @@ -# Class ReplaceDesignPosition +# Class ReplaceDesignPosition + Namespace: [VM.Managed.DAFUL.Chained.Operation](VM.Managed.DAFUL.Chained.Operation.md) Assembly: VMOpChained.dll @@ -11,7 +12,7 @@ public class ReplaceDesignPosition : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ReplaceDesignPosition](VM.Managed.DAFUL.Chained.Operation.ReplaceDesignPosition.md) @@ -87,11 +88,11 @@ public ReplaceDesignPosition(DesignPoint dp, double dValue, TMatrix matT, Docume #### Parameters -`dp` DesignPoint +`dp` [DesignPoint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignPoint.cs) The dp. -`dValue` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dValue` double The d value. @@ -129,7 +130,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -151,7 +152,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.md index d89debff56..b505e8c81a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Operation.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Chained.Operation +# Namespace VM.Managed.DAFUL.Chained.Operation + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.PartDocumentChainedPath.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.PartDocumentChainedPath.md index 9ef4c16920..207b58095f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.PartDocumentChainedPath.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.PartDocumentChainedPath.md @@ -1,4 +1,5 @@ -# Class PartDocumentChainedPath +# Class PartDocumentChainedPath + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,16 +12,16 @@ public class PartDocumentChainedPath : PartDocument, IObservableObject, IDisposa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -PartDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[PartDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs) ← [PartDocumentChainedPath](VM.Managed.DAFUL.Chained.PartDocumentChainedPath.md) #### Implements @@ -32,7 +33,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, IDocumentAnalysis, @@ -50,82 +51,82 @@ IDocumentOwner, #### Inherited Members -PartDocument.OperationBegin\(\), -PartDocument.OperationEnd\(\), -PartDocument.RegisterAddon\(\), -PartDocument.PostOpenDocument\(\), -PartDocument.PostOpenDocumentAfterErrCheckEvent\(\), -PartDocument.SetModes\(ModeForMFModal\[\]\), -PartDocument.SetDFMFFilePath\(string\), -PartDocument.OnDeserialization\(object\), -PartDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -PartDocument.InitializeSimParam\(\), -PartDocument.CreateAssemblyImpl\(\), -PartDocument.FindCategory\(string\), -PartDocument.InitializeCategoryInfo\(string\), -PartDocument.GetUnnamedObjectName\(object\), -PartDocument.Add\(ObjectBase\), -PartDocument.CalcBoundingBox\(IDesignFrame, ref double\[\]\), -PartDocument.ImportCADBody\(BuilderImport\[\]\), -PartDocument.ReplaceCADBody\(BuilderImport\[\]\), -PartDocument.GetCADBodyNameAttribute\(ref List\), -PartDocument.GetSimulationConfigurationType\(\), -PartDocument.GetData\(XmlNode\), -PartDocument.SetData\(XmlNode\), -PartDocument.LinkRequestUpdate\(object, LinkEventArgs\), -PartDocument.GetFirstCADBody\(\), -PartDocument.FindLocal\(string\), -PartDocument.MassPropertyInfo, -PartDocument.ReferenceFrame, -PartDocument.\_ReferenceFrame, -PartDocument.MaxDistance, -PartDocument.Modes, -PartDocument.DFMFFilePath, -PartDocument.LastModifiedTimeToDFMFFile, -PartDocument.SkipCheckDFMFFile, -PartDocument.InitialCategories, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[PartDocument.OperationBegin\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.OperationEnd\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.SetModes\(ModeForMFModal\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.SetDFMFFilePath\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.Add\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.CalcBoundingBox\(IDesignFrame, ref double\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.GetFirstCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.MassPropertyInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.ReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.\_ReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.MaxDistance](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.Modes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.DFMFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.LastModifiedTimeToDFMFFile](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.SkipCheckDFMFFile](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -220,8 +221,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -232,9 +231,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -248,12 +247,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -531,7 +527,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -562,7 +558,7 @@ public PartDocumentChainedPath(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -578,7 +574,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### WorkingPlane @@ -618,13 +614,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The fullname of type. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The category. @@ -638,7 +634,7 @@ public override void GetData(XmlNode writer) #### Parameters -`writer` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`writer` XmlNode The writer. @@ -652,7 +648,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the STR category. @@ -666,7 +662,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -684,7 +680,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -698,7 +694,7 @@ protected override void OnPostMakeDocumentImpl(DocCreateAnalysisInfo info) #### Parameters -`info` DocCreateAnalysisInfo +`info` [DocCreateAnalysisInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DocCreate3DInfo.cs) The [analysis document create information]. @@ -712,7 +708,7 @@ public override void SetData(XmlNode reader) #### Parameters -`reader` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`reader` XmlNode The reader. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.PartDocumentChainedSegment.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.PartDocumentChainedSegment.md index 966160583f..682d617b96 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.PartDocumentChainedSegment.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.PartDocumentChainedSegment.md @@ -1,4 +1,5 @@ -# Class PartDocumentChainedSegment +# Class PartDocumentChainedSegment + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,16 +12,16 @@ public class PartDocumentChainedSegment : PartDocument, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -PartDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[PartDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs) ← [PartDocumentChainedSegment](VM.Managed.DAFUL.Chained.PartDocumentChainedSegment.md) #### Implements @@ -32,7 +33,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, IDocumentAnalysis, @@ -50,82 +51,82 @@ IDocumentOwner, #### Inherited Members -PartDocument.OperationBegin\(\), -PartDocument.OperationEnd\(\), -PartDocument.RegisterAddon\(\), -PartDocument.PostOpenDocument\(\), -PartDocument.PostOpenDocumentAfterErrCheckEvent\(\), -PartDocument.SetModes\(ModeForMFModal\[\]\), -PartDocument.SetDFMFFilePath\(string\), -PartDocument.OnDeserialization\(object\), -PartDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -PartDocument.InitializeSimParam\(\), -PartDocument.CreateAssemblyImpl\(\), -PartDocument.FindCategory\(string\), -PartDocument.InitializeCategoryInfo\(string\), -PartDocument.GetUnnamedObjectName\(object\), -PartDocument.Add\(ObjectBase\), -PartDocument.CalcBoundingBox\(IDesignFrame, ref double\[\]\), -PartDocument.ImportCADBody\(BuilderImport\[\]\), -PartDocument.ReplaceCADBody\(BuilderImport\[\]\), -PartDocument.GetCADBodyNameAttribute\(ref List\), -PartDocument.GetSimulationConfigurationType\(\), -PartDocument.GetData\(XmlNode\), -PartDocument.SetData\(XmlNode\), -PartDocument.LinkRequestUpdate\(object, LinkEventArgs\), -PartDocument.GetFirstCADBody\(\), -PartDocument.FindLocal\(string\), -PartDocument.MassPropertyInfo, -PartDocument.ReferenceFrame, -PartDocument.\_ReferenceFrame, -PartDocument.MaxDistance, -PartDocument.Modes, -PartDocument.DFMFFilePath, -PartDocument.LastModifiedTimeToDFMFFile, -PartDocument.SkipCheckDFMFFile, -PartDocument.InitialCategories, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[PartDocument.OperationBegin\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.OperationEnd\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.SetModes\(ModeForMFModal\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.SetDFMFFilePath\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.Add\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.CalcBoundingBox\(IDesignFrame, ref double\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.GetFirstCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.MassPropertyInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.ReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.\_ReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.MaxDistance](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.Modes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.DFMFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.LastModifiedTimeToDFMFFile](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.SkipCheckDFMFFile](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[PartDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -220,8 +221,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -232,9 +231,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -248,12 +247,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -531,7 +527,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -562,7 +558,7 @@ public PartDocumentChainedSegment(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -578,7 +574,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### WorkingPlane @@ -618,13 +614,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The fullname of type. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The category. @@ -638,7 +634,7 @@ public override void GetData(XmlNode writer) #### Parameters -`writer` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`writer` XmlNode The writer. @@ -652,7 +648,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the STR category. @@ -666,7 +662,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -684,7 +680,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -698,7 +694,7 @@ protected override void OnPostMakeDocumentImpl(DocCreateAnalysisInfo info) #### Parameters -`info` DocCreateAnalysisInfo +`info` [DocCreateAnalysisInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DocCreate3DInfo.cs) The [analysis document create information]. @@ -712,7 +708,7 @@ public override void SetData(XmlNode reader) #### Parameters -`reader` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`reader` XmlNode The reader. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.PathInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.PathInfo.md index a49353198d..f5dcb1b9f2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.PathInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.PathInfo.md @@ -1,4 +1,5 @@ -# Class PathInfo +# Class PathInfo + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,7 +12,7 @@ public class PathInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PathInfo](VM.Managed.DAFUL.Chained.PathInfo.md) #### Extension Methods @@ -53,7 +54,7 @@ public double[] m_arAngle #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### m\_arOrientation @@ -65,7 +66,7 @@ public double[] m_arOrientation #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### m\_bCrossTangentLine @@ -77,7 +78,7 @@ public bool m_bCrossTangentLine #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_dArc\_Angle @@ -89,7 +90,7 @@ public double m_dArc_Angle #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_dArc\_Length @@ -101,7 +102,7 @@ public double m_dArc_Length #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_dAssembledRadius @@ -113,7 +114,7 @@ public double m_dAssembledRadius #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_dDirectionValue @@ -125,7 +126,7 @@ public double m_dDirectionValue #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_dExtendedRadius @@ -137,7 +138,7 @@ public double m_dExtendedRadius #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_dFactor @@ -149,7 +150,7 @@ public double m_dFactor #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_dMaxSegmentLength @@ -161,7 +162,7 @@ public double m_dMaxSegmentLength #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_dRadius @@ -173,7 +174,7 @@ public double m_dRadius #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_dRtheta @@ -185,7 +186,7 @@ public double m_dRtheta #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_dTan\_Length @@ -197,7 +198,7 @@ public double m_dTan_Length #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_dtheta @@ -209,7 +210,7 @@ public double m_dtheta #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_enEngageType @@ -245,7 +246,7 @@ public int m_ndirection #### Field Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### m\_ptCenterPosition @@ -257,7 +258,7 @@ public double[] m_ptCenterPosition #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### m\_ptLocalTangent1 @@ -270,7 +271,7 @@ public double[] m_ptLocalTangent1 #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### m\_ptLocalTangent2 @@ -283,7 +284,7 @@ public double[] m_ptLocalTangent2 #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### m\_ptTangent1 @@ -296,7 +297,7 @@ public double[] m_ptTangent1 #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### m\_ptTangent2 @@ -309,7 +310,7 @@ public double[] m_ptTangent2 #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### m\_vecRotationAxis diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Placing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Placing.md index 6270074d79..bc18fb2736 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Placing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Placing.md @@ -1,4 +1,5 @@ -# Class Placing +# Class Placing + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,9 +12,9 @@ public class Placing : LinkContainer, IObservableObject, IDisposableObject, ILin #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Placing](VM.Managed.DAFUL.Chained.Placing.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -154,7 +155,7 @@ public InstanceContainer[] ChainedSegments { get; set; } #### Property Value - InstanceContainer\[\] + [InstanceContainer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs)\[\] ### ExternContacts @@ -190,7 +191,7 @@ public bool IsFixNumberOfSegment { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### NumberOfSegment @@ -202,7 +203,7 @@ public int NumberOfSegment { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### OpenLoop @@ -214,7 +215,7 @@ public bool OpenLoop { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PlacingAdditionalInfo @@ -238,7 +239,7 @@ public double PlacingGap { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ToolkitType @@ -262,7 +263,7 @@ public string[] UserDefinedArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -276,7 +277,7 @@ public void Delete_ExternContacts(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object Theexternal contact geometry. @@ -290,7 +291,7 @@ public void Delete_Path(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The path component. @@ -304,7 +305,7 @@ public void Delete_Segment(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The segment component. @@ -318,7 +319,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.PlacingInfoBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.PlacingInfoBase.md index 97f5fd36a1..64534150fa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.PlacingInfoBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.PlacingInfoBase.md @@ -1,4 +1,5 @@ -# Class PlacingInfoBase +# Class PlacingInfoBase + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,9 +12,9 @@ public abstract class PlacingInfoBase : LinkContainer, IObservableObject, IDispo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [PlacingInfoBase](VM.Managed.DAFUL.Chained.PlacingInfoBase.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.PlacingPathInfoBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.PlacingPathInfoBase.md index 409ba4b054..6bd1238591 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.PlacingPathInfoBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.PlacingPathInfoBase.md @@ -1,4 +1,5 @@ -# Class PlacingPathInfoBase +# Class PlacingPathInfoBase + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,9 +12,9 @@ public abstract class PlacingPathInfoBase : LinkContainer, IObservableObject, ID #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [PlacingPathInfoBase](VM.Managed.DAFUL.Chained.PlacingPathInfoBase.md) @@ -79,7 +80,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.PlacingSegmentInfoBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.PlacingSegmentInfoBase.md index 7653237426..ea16d79944 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.PlacingSegmentInfoBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.PlacingSegmentInfoBase.md @@ -1,4 +1,5 @@ -# Class PlacingSegmentInfoBase +# Class PlacingSegmentInfoBase + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,9 +12,9 @@ public abstract class PlacingSegmentInfoBase : LinkContainer, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [PlacingSegmentInfoBase](VM.Managed.DAFUL.Chained.PlacingSegmentInfoBase.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Placing_File.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Placing_File.md index b5612b986d..b109af9952 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Placing_File.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Placing_File.md @@ -1,4 +1,5 @@ -# Class Placing\_File +# Class Placing\_File + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,9 +12,9 @@ public class Placing_File : LinkContainer, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Placing\_File](VM.Managed.DAFUL.Chained.Placing\_File.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,7 +117,7 @@ public string FileName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Height1 @@ -128,7 +129,7 @@ public ExpressionValueVariable Height1 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Height2 @@ -140,7 +141,7 @@ public ExpressionValueVariable Height2 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Length @@ -152,7 +153,7 @@ public ExpressionValueVariable Length { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### SegmentAdditionalInfo @@ -178,7 +179,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Placing_Paths.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Placing_Paths.md index c774750385..8ad3830b31 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Placing_Paths.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Placing_Paths.md @@ -1,4 +1,5 @@ -# Class Placing\_Paths +# Class Placing\_Paths + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,9 +12,9 @@ public class Placing_Paths : LinkContainer, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Placing\_Paths](VM.Managed.DAFUL.Chained.Placing\_Paths.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -128,7 +129,7 @@ public bool IncludeCPInPathObject { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsCCWDirection @@ -140,7 +141,7 @@ public bool IsCCWDirection { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Path @@ -152,7 +153,7 @@ public InstanceContainer Path { get; set; } #### Property Value - InstanceContainer + [InstanceContainer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs) ### PathAdditionalInfo @@ -176,7 +177,7 @@ public ExpressionValueVariable Radius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ReferenceCenterPosition @@ -201,7 +202,7 @@ public bool UsedRCP { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -215,7 +216,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.SegmentInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.SegmentInfo.md index 1b8b9ada82..f35ed2f0c6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.SegmentInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.SegmentInfo.md @@ -1,4 +1,5 @@ -# Class SegmentInfo +# Class SegmentInfo + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,7 +12,7 @@ public class SegmentInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SegmentInfo](VM.Managed.DAFUL.Chained.SegmentInfo.md) #### Extension Methods @@ -64,7 +65,7 @@ public double m_dHeight1 #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_dHeight2 @@ -76,7 +77,7 @@ public double m_dHeight2 #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_dLength @@ -88,7 +89,7 @@ public double m_dLength #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_dOriginalLength @@ -100,7 +101,7 @@ public double m_dOriginalLength #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.SegmentPlacingInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.SegmentPlacingInfo.md index 9d275ba9c2..0fdbc43be7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.SegmentPlacingInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.SegmentPlacingInfo.md @@ -1,4 +1,5 @@ -# Class SegmentPlacingInfo +# Class SegmentPlacingInfo + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,7 +12,7 @@ public class SegmentPlacingInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SegmentPlacingInfo](VM.Managed.DAFUL.Chained.SegmentPlacingInfo.md) #### Extension Methods @@ -40,7 +41,7 @@ public double[] m_arOrientation #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### m\_bEffectSprocketOn @@ -52,7 +53,7 @@ public bool m_bEffectSprocketOn #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_bSprocketOn @@ -64,7 +65,7 @@ public bool m_bSprocketOn #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_dAngleHalfSegment @@ -76,7 +77,7 @@ public double m_dAngleHalfSegment #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_dSegement\_AssembleLength @@ -88,7 +89,7 @@ public double m_dSegement_AssembleLength #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_dSegement\_OriginalLength @@ -100,7 +101,7 @@ public double m_dSegement_OriginalLength #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_dTheta @@ -112,7 +113,7 @@ public double m_dTheta #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_nInvolvedPath @@ -124,7 +125,7 @@ public int m_nInvolvedPath #### Field Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### m\_nNoOfSegment @@ -136,7 +137,7 @@ public int m_nNoOfSegment #### Field Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### m\_nStage @@ -148,7 +149,7 @@ public int m_nStage #### Field Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### m\_ptLengthMEnd @@ -160,7 +161,7 @@ public double[] m_ptLengthMEnd #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### m\_ptLengthPEnd @@ -172,7 +173,7 @@ public double[] m_ptLengthPEnd #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### m\_ptPosi @@ -184,7 +185,7 @@ public double[] m_ptPosi #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### m\_ptTangent diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ToolkitType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ToolkitType.md index eb14636734..74bbb9ceb8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ToolkitType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.ToolkitType.md @@ -1,4 +1,5 @@ -# Enum ToolkitType +# Enum ToolkitType + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Util.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Util.md index 5a93307ff5..33f7cae0cc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Util.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.Util.md @@ -1,4 +1,5 @@ -# Class Util +# Class Util + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll @@ -11,7 +12,7 @@ public class Util #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Util](VM.Managed.DAFUL.Chained.Util.md) #### Extension Methods @@ -40,11 +41,11 @@ public static void AddAttributeOfMeshFree(XmlDocument xmlDoc, SolidBody sb) #### Parameters -`xmlDoc` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDoc` XmlDocument The xml information. -`sb` SolidBody +`sb` [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) The Solid body. @@ -58,7 +59,7 @@ public static void UpdateNavForFaceset(SetFace faceset, Document doc) #### Parameters -`faceset` SetFace +`faceset` [SetFace](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SetFace.cs) The faceset. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.enConnectionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.enConnectionType.md index 4a2e981059..7f9a49e417 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.enConnectionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.enConnectionType.md @@ -1,4 +1,5 @@ -# Enum enConnectionType +# Enum enConnectionType + Namespace: [VM.Managed.DAFUL.Chained](VM.Managed.DAFUL.Chained.md) Assembly: VMDChainedBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.md index 4fe4eadd24..4d495026fa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Chained.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Chained +# Namespace VM.Managed.DAFUL.Chained + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ChangeAssemblyType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ChangeAssemblyType.md index 2707a86df2..ba1d418532 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ChangeAssemblyType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ChangeAssemblyType.md @@ -1,4 +1,5 @@ -# Enum ChangeAssemblyType +# Enum ChangeAssemblyType + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Clearance.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Clearance.md index 482f6f5308..5d53b821ed 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Clearance.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Clearance.md @@ -1,4 +1,5 @@ -# Class Clearance +# Class Clearance + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDCB.dll @@ -11,9 +12,9 @@ public abstract class Clearance : LinkContainer, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Clearance](VM.Managed.DAFUL.Clearance.md) @@ -82,7 +83,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -121,7 +122,7 @@ protected LinkAttribute __a$_a_VM.Models.Pre.LinkAttribute #### Field Value - LinkAttribute + [LinkAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre.Aspects/Attributes/LinkAttribute.cs) ### \_\_a$\_a\_VM.Models.Pre.LinkUpdateAttribute @@ -131,7 +132,7 @@ protected LinkUpdateAttribute __a$_a_VM.Models.Pre.LinkUpdateAttribute #### Field Value - LinkUpdateAttribute + [LinkUpdateAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre.Aspects/Attributes/LinkUpdateAttribute.cs) ## Properties @@ -145,7 +146,7 @@ public ExpressionValueVariable ExponentOfPenetration { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MaxDampingCoefficient @@ -157,7 +158,7 @@ public ExpressionValueVariable MaxDampingCoefficient { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### StiffnessCoefficient @@ -169,7 +170,7 @@ public ExpressionValueVariable StiffnessCoefficient { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### UseClearance @@ -181,7 +182,7 @@ public bool UseClearance { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseDampingEffectInVoid @@ -193,7 +194,7 @@ public bool UseDampingEffectInVoid { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -221,7 +222,7 @@ public virtual void ReadTemplate(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -235,7 +236,7 @@ public virtual void WriteTemplate(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ClearanceRevolute.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ClearanceRevolute.md index c9e38df90b..7c467249a2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ClearanceRevolute.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ClearanceRevolute.md @@ -1,4 +1,5 @@ -# Class ClearanceRevolute +# Class ClearanceRevolute + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDCB.dll @@ -11,9 +12,9 @@ public class ClearanceRevolute : Clearance, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Clearance](VM.Managed.DAFUL.Clearance.md) ← [ClearanceRevolute](VM.Managed.DAFUL.ClearanceRevolute.md) @@ -88,7 +89,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -129,7 +130,7 @@ public ExpressionValueVariable AxialClearance { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RadialClearance @@ -141,7 +142,7 @@ public ExpressionValueVariable RadialClearance { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -169,7 +170,7 @@ public override void ReadTemplate(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -183,7 +184,7 @@ public override void WriteTemplate(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. @@ -195,7 +196,7 @@ protected virtual void WriteTemplate(XmlWriter writer, string frictionName) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter -`frictionName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`frictionName` string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ClearanceTranslational.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ClearanceTranslational.md index 8966d92e07..9f0893ccb6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ClearanceTranslational.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ClearanceTranslational.md @@ -1,4 +1,5 @@ -# Class ClearanceTranslational +# Class ClearanceTranslational + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDCB.dll @@ -11,9 +12,9 @@ public class ClearanceTranslational : Clearance, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Clearance](VM.Managed.DAFUL.Clearance.md) ← [ClearanceTranslational](VM.Managed.DAFUL.ClearanceTranslational.md) @@ -88,7 +89,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -129,7 +130,7 @@ public ExpressionValueVariable XClearance { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### YClearance @@ -141,7 +142,7 @@ public ExpressionValueVariable YClearance { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -169,7 +170,7 @@ public override void ReadTemplate(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -183,7 +184,7 @@ public override void WriteTemplate(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. @@ -195,7 +196,7 @@ protected virtual void WriteTemplate(XmlWriter writer, string frictionName) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter -`frictionName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`frictionName` string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.CoSimBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.CoSimBase.md index 0f1d8f5687..8a6f036658 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.CoSimBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.CoSimBase.md @@ -1,4 +1,5 @@ -# Class CoSimBase +# Class CoSimBase + Namespace: [VM.Managed.DAFUL.CoSim](VM.Managed.DAFUL.CoSim.md) Assembly: VMDCoSimCore.dll @@ -12,9 +13,9 @@ public abstract class CoSimBase : Object, IObservableObject, ID #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [CoSimBase](VM.Managed.DAFUL.CoSim.CoSimBase.md) @@ -37,7 +38,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, INamed, IEnabled, @@ -137,7 +138,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -176,11 +177,11 @@ protected CoSimBase(string strProxyName, string strBuildInfo) #### Parameters -`strProxyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strProxyName` string Name of the STR proxy. -`strBuildInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBuildInfo` string The STR build info. @@ -194,7 +195,7 @@ protected CoSimBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -210,7 +211,7 @@ public string Comment { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### FullName @@ -222,7 +223,7 @@ public string FullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IsEnabled @@ -234,7 +235,7 @@ public bool IsEnabled { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -246,7 +247,7 @@ public string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NonSymmetricName @@ -258,7 +259,7 @@ public string NonSymmetricName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -278,7 +279,7 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -292,21 +293,21 @@ protected virtual bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, XmlE #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XML DOM. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XML ele. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [b has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SetOldNameWithNewEntity\(ObjectBase, ObjectBase\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.CoSimIO.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.CoSimIO.md index eafb8c8726..03265b1b76 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.CoSimIO.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.CoSimIO.md @@ -1,4 +1,5 @@ -# Class CoSimIO +# Class CoSimIO + Namespace: [VM.Managed.DAFUL.CoSim](VM.Managed.DAFUL.CoSim.md) Assembly: VMDCoSimCore.dll @@ -11,12 +12,12 @@ public abstract class CoSimIO : SubEntity, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [CoSimIO](VM.Managed.DAFUL.CoSim.CoSimIO.md) #### Derived @@ -31,7 +32,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -52,17 +53,17 @@ IReportable #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -155,7 +156,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -194,7 +195,7 @@ public CoSimIO(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the class. @@ -222,7 +223,7 @@ public virtual string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ReportTypeImpl diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.CoSimIOFunction.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.CoSimIOFunction.md index 60309ab4f8..ea41a5180b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.CoSimIOFunction.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.CoSimIOFunction.md @@ -1,4 +1,5 @@ -# Class CoSimIOFunction +# Class CoSimIOFunction + Namespace: [VM.Managed.DAFUL.CoSim](VM.Managed.DAFUL.CoSim.md) Assembly: VMDCoSimCore.dll @@ -11,9 +12,9 @@ public abstract class CoSimIOFunction : LinkContainer, IObservableObject, IDispo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [CoSimIOFunction](VM.Managed.DAFUL.CoSim.CoSimIOFunction.md) @@ -79,7 +80,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.CoSimIOFunctionStandard.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.CoSimIOFunctionStandard.md index ea327fdeab..99f34261b9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.CoSimIOFunctionStandard.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.CoSimIOFunctionStandard.md @@ -1,4 +1,5 @@ -# Class CoSimIOFunctionStandard +# Class CoSimIOFunctionStandard + Namespace: [VM.Managed.DAFUL.CoSim](VM.Managed.DAFUL.CoSim.md) Assembly: VMDCoSimCore.dll @@ -11,9 +12,9 @@ public sealed class CoSimIOFunctionStandard : CoSimIOFunction, IObservableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [CoSimIOFunction](VM.Managed.DAFUL.CoSim.CoSimIOFunction.md) ← [CoSimIOFunctionStandard](VM.Managed.DAFUL.CoSim.CoSimIOFunctionStandard.md) @@ -108,5 +109,5 @@ public Function Function { get; set; } #### Property Value - Function + [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.CoSimIOList.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.CoSimIOList.md index 0db1590c55..ff863832b7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.CoSimIOList.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.CoSimIOList.md @@ -1,4 +1,5 @@ -# Class CoSimIOList +# Class CoSimIOList + Namespace: [VM.Managed.DAFUL.CoSim](VM.Managed.DAFUL.CoSim.md) Assembly: VMDCoSimCore.dll @@ -11,9 +12,9 @@ public class CoSimIOList : LinkContainer, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [CoSimIOList](VM.Managed.DAFUL.CoSim.CoSimIOList.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -156,7 +157,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.CoSimSettingsBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.CoSimSettingsBase.md index 6e7b519f25..e1e8463a58 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.CoSimSettingsBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.CoSimSettingsBase.md @@ -1,4 +1,5 @@ -# Class CoSimSettingsBase +# Class CoSimSettingsBase + Namespace: [VM.Managed.DAFUL.CoSim](VM.Managed.DAFUL.CoSim.md) Assembly: VMDCoSimCore.dll @@ -11,9 +12,9 @@ public abstract class CoSimSettingsBase : CoSimBase, IObservableObject, IDisposa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [CoSimBase](VM.Managed.DAFUL.CoSim.CoSimBase.md) ← @@ -37,7 +38,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, INamed, IEnabled, @@ -145,7 +146,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -184,11 +185,11 @@ protected CoSimSettingsBase(string strProxyName, string strBuildInfo) #### Parameters -`strProxyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strProxyName` string Name of the proxy. -`strBuildInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBuildInfo` string The build info. @@ -202,7 +203,7 @@ protected CoSimSettingsBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the setting. @@ -218,7 +219,7 @@ public string ExecutingProgramPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### InterfaceProgramType @@ -242,7 +243,7 @@ public bool Use { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### \_IOList @@ -266,7 +267,7 @@ public ExpressionValueVariable _InterfaceTimeStep { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -294,7 +295,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.CoSimulationConfig.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.CoSimulationConfig.md index 6b15583c58..539cd3341c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.CoSimulationConfig.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.CoSimulationConfig.md @@ -1,4 +1,5 @@ -# Class CoSimulationConfig +# Class CoSimulationConfig + Namespace: [VM.Managed.DAFUL.CoSim](VM.Managed.DAFUL.CoSim.md) Assembly: VMDCoSimCore.dll @@ -11,11 +12,11 @@ public class CoSimulationConfig : SimulationConfigurationExtraBase, IObservableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -SimulationConfigurationExtraBase ← +[SimulationConfigurationExtraBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SimulationConfigurationExtra.cs) ← [CoSimulationConfig](VM.Managed.DAFUL.CoSim.CoSimulationConfig.md) #### Implements @@ -33,8 +34,8 @@ IVerifiable #### Inherited Members -SimulationConfigurationExtraBase.GetExtraInformation\(\), -SimulationConfigurationExtraBase.IsUse, +[SimulationConfigurationExtraBase.GetExtraInformation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SimulationConfigurationExtra.cs), +[SimulationConfigurationExtraBase.IsUse](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SimulationConfigurationExtra.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -119,7 +120,7 @@ public string ExecutingProgramPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### MFileName @@ -131,7 +132,7 @@ public string MFileName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -145,7 +146,7 @@ public override string GetExtraInformation() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The extra information. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.FMI.Operation.ExecuteProcess.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.FMI.Operation.ExecuteProcess.md index b647764a7f..2810b9d1ab 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.FMI.Operation.ExecuteProcess.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.FMI.Operation.ExecuteProcess.md @@ -1,4 +1,5 @@ -# Class ExecuteProcess +# Class ExecuteProcess + Namespace: [VM.Managed.DAFUL.CoSim.FMI.Operation](VM.Managed.DAFUL.CoSim.FMI.Operation.md) Assembly: VMOpCoSimFMI.dll @@ -9,7 +10,7 @@ public class ExecuteProcess : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ExecuteProcess](VM.Managed.DAFUL.CoSim.FMI.Operation.ExecuteProcess.md) @@ -95,7 +96,7 @@ public ExecuteProcess(Document doc, string strFilePath) `doc` Document -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string ### ExecuteProcess\(Document, string, string\) @@ -107,9 +108,9 @@ public ExecuteProcess(Document doc, string strFilePath, string strInterfacePath) `doc` Document -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string -`strInterfacePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInterfacePath` string ### ExecuteProcess\(JournalParameter\) @@ -133,7 +134,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -153,5 +154,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.FMI.Operation.ExecuteProcessForCar.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.FMI.Operation.ExecuteProcessForCar.md new file mode 100644 index 0000000000..c9d5ff9485 --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.FMI.Operation.ExecuteProcessForCar.md @@ -0,0 +1,158 @@ +# Class ExecuteProcessForCar + + +Namespace: [VM.Managed.DAFUL.CoSim.FMI.Operation](VM.Managed.DAFUL.CoSim.FMI.Operation.md) +Assembly: VMOpCoSimFMI.dll + +```csharp +public class ExecuteProcessForCar : OperationBase, IOperation +``` + +#### Inheritance + +object ← +OperationBase ← +[ExecuteProcessForCar](VM.Managed.DAFUL.CoSim.FMI.Operation.ExecuteProcessForCar.md) + +#### Implements + +IOperation + +#### Inherited Members + +OperationBase.g\_bRedrawKernel, +OperationBase.g\_bVerify, +OperationBase.g\_bSkipAddEvent, +OperationBase.g\_bDupicateMsg, +OperationBase.m\_bIsHistoryMerge, +OperationBase.Execute\(\), +OperationBase.PostExecute\(\), +OperationBase.GetInformation\(XmlWriter\), +OperationBase.Create\(string, View, object\), +OperationBase.Create\(string, IDocument, object\), +OperationBase.Create\(string, object\), +OperationBase.Create\(string\), +OperationBase.StartSession\(\), +OperationBase.StartSession\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSession\(OperationBase\), +OperationBase.StartSessionAndWait\(\), +OperationBase.StartSessionAndWait\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSessionAndWait\(OperationBase\), +OperationBase.Initialize\(OperationBase.ShowVerifyResult\), +OperationBase.RecordJournal\(OperationBase\), +OperationBase.UseSession\(string\), +OperationBase.raise\_OnOperationStatusChanged\(object, OperationStatusEventArgs\), +OperationBase.raise\_OnEndOperation\(object, EventArgs\), +OperationBase.ClearCurrentMark\(string\), +OperationBase.ClearCurrentMark\(IDocument\), +OperationBase.ClearCurrentMark\(\), +OperationBase.GlobalOverride, +OperationBase.IsDoingThread, +OperationBase.ExecuteMacro, +OperationBase.SimStatus, +OperationBase.Status, +OperationBase.autoEvents, +OperationBase.IsHistoryMerge, +OperationBase.SkipClearTemporaryLinkContainer, +OperationBase.PostExecuteClearTemporaryLinkContainer, +OperationBase.SkipEndOperation, +OperationBase.UseMacro, +OperationBase.MarkStatus, +OperationBase.UseThread, +OperationBase.Name, +OperationBase.ExecutableOnHold, +OperationBase.Override, +OperationBase.Parameter, +OperationBase.View, +OperationBase.Document, +OperationBase.OnEndOperation, +OperationBase.OnOperationStatusChanged + +#### Extension Methods + +[LinkPropertyItemCache.GetLinkProperties\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkProperties\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkPropertiesAndValues\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkPropertiesAndValues\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkedObjects\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkedObjects\_\_1\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_) + +## Constructors + +### ExecuteProcessForCar\(Document\) + +```csharp +public ExecuteProcessForCar(Document doc) +``` + +#### Parameters + +`doc` Document + +### ExecuteProcessForCar\(Document, string\) + +```csharp +public ExecuteProcessForCar(Document doc, string strFilePath) +``` + +#### Parameters + +`doc` Document + +`strFilePath` string + +### ExecuteProcessForCar\(Document, string, string\) + +```csharp +public ExecuteProcessForCar(Document doc, string strFilePath, string strInterfacePath) +``` + +#### Parameters + +`doc` Document + +`strFilePath` string + +`strInterfacePath` string + +### ExecuteProcessForCar\(JournalParameter\) + +```csharp +public ExecuteProcessForCar(JournalParameter jp) +``` + +#### Parameters + +`jp` JournalParameter + +## Properties + +### Name + +Gets the operation name. + +```csharp +public override string Name { get; } +``` + +#### Property Value + + string + +## Methods + +### Execute\(\) + +Execute the operation. + +```csharp +public override void Execute() +``` + +### GetInformation\(XmlWriter\) + +```csharp +public override void GetInformation(XmlWriter writer) +``` + +#### Parameters + +`writer` XmlWriter + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.FMI.Operation.ExportModel.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.FMI.Operation.ExportModel.md index 5a2e88e78d..c30fe2d7b7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.FMI.Operation.ExportModel.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.FMI.Operation.ExportModel.md @@ -1,4 +1,5 @@ -# Class ExportModel +# Class ExportModel + Namespace: [VM.Managed.DAFUL.CoSim.FMI.Operation](VM.Managed.DAFUL.CoSim.FMI.Operation.md) Assembly: VMOpCoSimFMI.dll @@ -9,7 +10,7 @@ public class ExportModel : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ExportModel](VM.Managed.DAFUL.CoSim.FMI.Operation.ExportModel.md) @@ -95,23 +96,23 @@ public ExportModel(Document doc, string filePath, string strDFSFile, string strR `doc` Document -`filePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`filePath` string -`strDFSFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDFSFile` string -`strRESFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRESFile` string -`inputs` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`inputs` IEnumerable -`outputs` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`outputs` IEnumerable -`version` ExpressionValueVariable +`version` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) -`interfaceTimeStep` ExpressionValueVariable +`interfaceTimeStep` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) -`modelDescription` [string](https://learn.microsoft.com/dotnet/api/system.string) +`modelDescription` string -`interfacePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`interfacePath` string ### ExportModel\(Document, string, string, string, IEnumerable, IEnumerable, ExpressionValueVariable, ExpressionValueVariable, string, string, string, string\) @@ -123,27 +124,27 @@ public ExportModel(Document doc, string filePath, string strDFSFile, string strR `doc` Document -`filePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`filePath` string -`strDFSFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDFSFile` string -`strRESFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRESFile` string -`inputs` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`inputs` IEnumerable -`outputs` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`outputs` IEnumerable -`version` ExpressionValueVariable +`version` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) -`interfaceTimeStep` ExpressionValueVariable +`interfaceTimeStep` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) -`modelDescription` [string](https://learn.microsoft.com/dotnet/api/system.string) +`modelDescription` string -`interfacePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`interfacePath` string -`scalefactor` [string](https://learn.microsoft.com/dotnet/api/system.string) +`scalefactor` string -`strMessageLevel` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMessageLevel` string ### ExportModel\(Document, List\) @@ -155,7 +156,7 @@ public ExportModel(Document doc, List lstInfo) `doc` Document -`lstInfo` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[object](https://learn.microsoft.com/dotnet/api/system.object)\> +`lstInfo` List ### ExportModel\(JournalParameter\) @@ -179,7 +180,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -199,7 +200,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter ### Get\_ModelDescription\(SubSystemDocument, string, IList, IList, IList, IList, double, string, double, string, string\) @@ -209,29 +210,29 @@ public XmlDocument Get_ModelDescription(SubSystemDocument subSystem, string strF #### Parameters -`subSystem` SubSystemDocument +`subSystem` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) -`strFileFullPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileFullPath` string -`lstInputName` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1) +`lstInputName` IList -`lstOutputName` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1) +`lstOutputName` IList -`lstInputSeq` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`lstInputSeq` IList -`lstOutputSeq` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`lstOutputSeq` IList -`version` [double](https://learn.microsoft.com/dotnet/api/system.double) +`version` double -`description` [string](https://learn.microsoft.com/dotnet/api/system.string) +`description` string -`stepSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`stepSize` double -`scalefactor` [string](https://learn.microsoft.com/dotnet/api/system.string) +`scalefactor` string -`messagelevel` [string](https://learn.microsoft.com/dotnet/api/system.string) +`messagelevel` string #### Returns - [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) + XmlDocument diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.FMI.Operation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.FMI.Operation.md index c5dc0b4c4c..011bfccab3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.FMI.Operation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.FMI.Operation.md @@ -1,8 +1,11 @@ -# Namespace VM.Managed.DAFUL.CoSim.FMI.Operation +# Namespace VM.Managed.DAFUL.CoSim.FMI.Operation + ### Classes [ExecuteProcess](VM.Managed.DAFUL.CoSim.FMI.Operation.ExecuteProcess.md) + [ExecuteProcessForCar](VM.Managed.DAFUL.CoSim.FMI.Operation.ExecuteProcessForCar.md) + [ExportModel](VM.Managed.DAFUL.CoSim.FMI.Operation.ExportModel.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.FileGen.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.FileGen.md index e78c53ba94..ca569c9814 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.FileGen.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.FileGen.md @@ -1,4 +1,5 @@ -# Class FileGen +# Class FileGen + Namespace: [VM.Managed.DAFUL.CoSim](VM.Managed.DAFUL.CoSim.md) Assembly: VMDCoSimCore.dll @@ -11,9 +12,9 @@ public class FileGen : CoSimSettingsBase, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [CoSimBase](VM.Managed.DAFUL.CoSim.CoSimBase.md) ← @@ -34,7 +35,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, INamed, IEnabled, @@ -149,7 +150,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -188,7 +189,7 @@ public FileGen(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the class. @@ -204,7 +205,7 @@ public string Description { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### FMIVersion @@ -216,7 +217,7 @@ public double FMIVersion { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### FilePath @@ -228,7 +229,7 @@ public string FilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### MessageLevel @@ -252,7 +253,7 @@ public ExpressionValueVariable ScaleFactor { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -264,7 +265,7 @@ public int Get_MessageLevel() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Initialize\(ConvertFactor\) @@ -290,7 +291,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.InterfaceType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.InterfaceType.md index 3dc67f1700..b64ce775ee 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.InterfaceType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.InterfaceType.md @@ -1,4 +1,5 @@ -# Enum InterfaceType +# Enum InterfaceType + Namespace: [VM.Managed.DAFUL.CoSim](VM.Managed.DAFUL.CoSim.md) Assembly: VMDCoSimCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Matlab.CoSimulationMatlabConfig.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Matlab.CoSimulationMatlabConfig.md index e25d8ffb8d..bd659f2cb2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Matlab.CoSimulationMatlabConfig.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Matlab.CoSimulationMatlabConfig.md @@ -1,4 +1,5 @@ -# Class CoSimulationMatlabConfig +# Class CoSimulationMatlabConfig + Namespace: [VM.Managed.DAFUL.CoSim.Matlab](VM.Managed.DAFUL.CoSim.Matlab.md) Assembly: VMDCoSimMatlab.dll @@ -11,12 +12,12 @@ public class CoSimulationMatlabConfig : CoSimulationConfig, IObservableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -SimulationConfigurationExtraBase ← -CoSimulationConfig ← +[SimulationConfigurationExtraBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SimulationConfigurationExtra.cs) ← +[CoSimulationConfig](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCoSimCore/CoSimulationConfig.cs) ← [CoSimulationMatlabConfig](VM.Managed.DAFUL.CoSim.Matlab.CoSimulationMatlabConfig.md) #### Implements @@ -34,11 +35,11 @@ IVerifiable #### Inherited Members -CoSimulationConfig.GetExtraInformation\(\), -CoSimulationConfig.ExecutingProgramPath, -CoSimulationConfig.MFileName, -SimulationConfigurationExtraBase.GetExtraInformation\(\), -SimulationConfigurationExtraBase.IsUse, +[CoSimulationConfig.GetExtraInformation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCoSimCore/CoSimulationConfig.cs), +[CoSimulationConfig.ExecutingProgramPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCoSimCore/CoSimulationConfig.cs), +[CoSimulationConfig.MFileName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCoSimCore/CoSimulationConfig.cs), +[SimulationConfigurationExtraBase.GetExtraInformation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SimulationConfigurationExtra.cs), +[SimulationConfigurationExtraBase.IsUse](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SimulationConfigurationExtra.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -82,7 +83,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -123,7 +124,7 @@ public string FileNameOfSimulink { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -137,7 +138,7 @@ public override string GetExtraInformation() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The extra information diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Matlab.MFileGen.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Matlab.MFileGen.md index a5b7777102..1643f2338f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Matlab.MFileGen.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Matlab.MFileGen.md @@ -1,4 +1,5 @@ -# Class MFileGen +# Class MFileGen + Namespace: [VM.Managed.DAFUL.CoSim.Matlab](VM.Managed.DAFUL.CoSim.Matlab.md) Assembly: VMDCoSimMatlab.dll @@ -11,14 +12,14 @@ public class MFileGen : FileGen, IObservableObject, IDisposableObject, ILinkable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -CoSimBase ← -CoSimSettingsBase ← -FileGen ← +[CoSimBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCoSimCore/CoSimBase.cs) ← +[CoSimSettingsBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCoSimCore/CoSimSettingsBase.cs) ← +[FileGen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCoSimCore/CoSimSettingsBase.cs) ← [MFileGen](VM.Managed.DAFUL.CoSim.Matlab.MFileGen.md) #### Implements @@ -35,7 +36,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, INamed, IEnabled, @@ -43,29 +44,29 @@ INavigatorItem #### Inherited Members -FileGen.Initialize\(Unit.ConvertFactor\), -FileGen.OnDeserialization\(object\), -FileGen.Get\_MessageLevel\(\), -FileGen.FilePath, -FileGen.FMIVersion, -FileGen.Description, -FileGen.MessageLevel, -FileGen.ScaleFactor, -CoSimSettingsBase.Initialize\(Unit.ConvertFactor\), -CoSimSettingsBase.OnDeserialization\(object\), -CoSimSettingsBase.Use, -CoSimSettingsBase.ExecutingProgramPath, -CoSimSettingsBase.InterfaceProgramType, -CoSimSettingsBase.\_InterfaceTimeStep, -CoSimSettingsBase.\_IOList, -CoSimBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -CoSimBase.FixUp\(ObjectBase\), -CoSimBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -CoSimBase.FullName, -CoSimBase.Name, -CoSimBase.NonSymmetricName, -CoSimBase.IsEnabled, -CoSimBase.Comment, +[FileGen.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCoSimCore/CoSimSettingsBase.cs), +[FileGen.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCoSimCore/CoSimSettingsBase.cs), +[FileGen.Get\_MessageLevel\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCoSimCore/CoSimSettingsBase.cs), +[FileGen.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCoSimCore/CoSimSettingsBase.cs), +[FileGen.FMIVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCoSimCore/CoSimSettingsBase.cs), +[FileGen.Description](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCoSimCore/CoSimSettingsBase.cs), +[FileGen.MessageLevel](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCoSimCore/CoSimSettingsBase.cs), +[FileGen.ScaleFactor](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCoSimCore/CoSimSettingsBase.cs), +[CoSimSettingsBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCoSimCore/CoSimSettingsBase.cs), +[CoSimSettingsBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCoSimCore/CoSimSettingsBase.cs), +[CoSimSettingsBase.Use](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCoSimCore/CoSimSettingsBase.cs), +[CoSimSettingsBase.ExecutingProgramPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCoSimCore/CoSimSettingsBase.cs), +[CoSimSettingsBase.InterfaceProgramType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCoSimCore/CoSimSettingsBase.cs), +[CoSimSettingsBase.\_InterfaceTimeStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCoSimCore/CoSimSettingsBase.cs), +[CoSimSettingsBase.\_IOList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCoSimCore/CoSimSettingsBase.cs), +[CoSimBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCoSimCore/CoSimBase.cs), +[CoSimBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCoSimCore/CoSimBase.cs), +[CoSimBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCoSimCore/CoSimBase.cs), +[CoSimBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCoSimCore/CoSimBase.cs), +[CoSimBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCoSimCore/CoSimBase.cs), +[CoSimBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCoSimCore/CoSimBase.cs), +[CoSimBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCoSimCore/CoSimBase.cs), +[CoSimBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCoSimCore/CoSimBase.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -158,7 +159,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -197,7 +198,7 @@ public MFileGen(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the class. @@ -214,7 +215,7 @@ public CoSimIOList IOList { get; set; } #### Property Value - CoSimIOList + [CoSimIOList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCoSimCore/CoSimIO.cs) ### InterfaceProgramType @@ -251,7 +252,7 @@ public string MFileName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SimulinkFileName @@ -263,7 +264,7 @@ public string SimulinkFileName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -291,7 +292,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -309,7 +310,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -323,7 +324,7 @@ public void SetMFileName(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The M file name. @@ -337,7 +338,7 @@ public void SetSimulinkFileName(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The simulink file name. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Matlab.Operation.ExecuteProcess.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Matlab.Operation.ExecuteProcess.md index 18d3f4fa99..0d6b1c84ad 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Matlab.Operation.ExecuteProcess.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Matlab.Operation.ExecuteProcess.md @@ -1,4 +1,5 @@ -# Class ExecuteProcess +# Class ExecuteProcess + Namespace: [VM.Managed.DAFUL.CoSim.Matlab.Operation](VM.Managed.DAFUL.CoSim.Matlab.Operation.md) Assembly: VMOpCoSimMatlab.dll @@ -9,7 +10,7 @@ public class ExecuteProcess : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ExecuteProcess](VM.Managed.DAFUL.CoSim.Matlab.Operation.ExecuteProcess.md) @@ -95,19 +96,19 @@ public ExecuteProcess(Document doc, string strInterfaceTimeStep, string strMFile `doc` Document -`strInterfaceTimeStep` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInterfaceTimeStep` string -`strMFileFullPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMFileFullPath` string -`lstInputSeq` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`lstInputSeq` IEnumerable -`lstOutputSeq` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`lstOutputSeq` IEnumerable -`strSInput` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSInput` string -`strSOutput` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSOutput` string -`strInterfacePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInterfacePath` string ### ExecuteProcess\(Document, string, string, IEnumerable, IEnumerable, string, string, string, string, string\) @@ -119,23 +120,23 @@ public ExecuteProcess(Document doc, string strInterfaceTimeStep, string strMFile `doc` Document -`strInterfaceTimeStep` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInterfaceTimeStep` string -`strMFileFullPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMFileFullPath` string -`lstInputSeq` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`lstInputSeq` IEnumerable -`lstOutputSeq` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`lstOutputSeq` IEnumerable -`strSInput` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSInput` string -`strSOutput` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSOutput` string -`strInterfacePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInterfacePath` string -`strScaleFactor` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strScaleFactor` string -`strMessageLevel` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMessageLevel` string ### ExecuteProcess\(Document, string, string, List, List, string, string, bool, List, List\) @@ -147,23 +148,23 @@ public ExecuteProcess(Document doc, string strInterfaceTimeStep, string strMFile `doc` Document -`strInterfaceTimeStep` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInterfaceTimeStep` string -`strMFileFullPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMFileFullPath` string -`lstInputSeq` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`lstInputSeq` List -`lstOutputSeq` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`lstOutputSeq` List -`strSInput` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSInput` string -`strSOutput` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSOutput` string -`bExternalCall` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bExternalCall` bool -`lstExternalSInputNames` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstExternalSInputNames` List -`lstExternalSOutputNames` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstExternalSOutputNames` List ### ExecuteProcess\(Document, string, string, List, List, string, string, bool, List, List, string, string\) @@ -175,27 +176,27 @@ public ExecuteProcess(Document doc, string strInterfaceTimeStep, string strMFile `doc` Document -`strInterfaceTimeStep` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInterfaceTimeStep` string -`strMFileFullPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMFileFullPath` string -`lstInputSeq` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`lstInputSeq` List -`lstOutputSeq` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`lstOutputSeq` List -`strSInput` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSInput` string -`strSOutput` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSOutput` string -`bExternalCall` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bExternalCall` bool -`lstExternalSInputNames` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstExternalSInputNames` List -`lstExternalSOutputNames` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstExternalSOutputNames` List -`strScaleFactor` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strScaleFactor` string -`strMessageLevel` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMessageLevel` string ### ExecuteProcess\(JournalParameter\) @@ -219,7 +220,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -239,7 +240,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter ### Success\(\) @@ -251,5 +252,5 @@ public bool Success() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Matlab.Operation.ExecuteProcessForCar.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Matlab.Operation.ExecuteProcessForCar.md new file mode 100644 index 0000000000..d15f9a5552 --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Matlab.Operation.ExecuteProcessForCar.md @@ -0,0 +1,256 @@ +# Class ExecuteProcessForCar + + +Namespace: [VM.Managed.DAFUL.CoSim.Matlab.Operation](VM.Managed.DAFUL.CoSim.Matlab.Operation.md) +Assembly: VMOpCoSimMatlab.dll + +```csharp +public class ExecuteProcessForCar : OperationBase, IOperation +``` + +#### Inheritance + +object ← +OperationBase ← +[ExecuteProcessForCar](VM.Managed.DAFUL.CoSim.Matlab.Operation.ExecuteProcessForCar.md) + +#### Implements + +IOperation + +#### Inherited Members + +OperationBase.g\_bRedrawKernel, +OperationBase.g\_bVerify, +OperationBase.g\_bSkipAddEvent, +OperationBase.g\_bDupicateMsg, +OperationBase.m\_bIsHistoryMerge, +OperationBase.Execute\(\), +OperationBase.PostExecute\(\), +OperationBase.GetInformation\(XmlWriter\), +OperationBase.Create\(string, View, object\), +OperationBase.Create\(string, IDocument, object\), +OperationBase.Create\(string, object\), +OperationBase.Create\(string\), +OperationBase.StartSession\(\), +OperationBase.StartSession\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSession\(OperationBase\), +OperationBase.StartSessionAndWait\(\), +OperationBase.StartSessionAndWait\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSessionAndWait\(OperationBase\), +OperationBase.Initialize\(OperationBase.ShowVerifyResult\), +OperationBase.RecordJournal\(OperationBase\), +OperationBase.UseSession\(string\), +OperationBase.raise\_OnOperationStatusChanged\(object, OperationStatusEventArgs\), +OperationBase.raise\_OnEndOperation\(object, EventArgs\), +OperationBase.ClearCurrentMark\(string\), +OperationBase.ClearCurrentMark\(IDocument\), +OperationBase.ClearCurrentMark\(\), +OperationBase.GlobalOverride, +OperationBase.IsDoingThread, +OperationBase.ExecuteMacro, +OperationBase.SimStatus, +OperationBase.Status, +OperationBase.autoEvents, +OperationBase.IsHistoryMerge, +OperationBase.SkipClearTemporaryLinkContainer, +OperationBase.PostExecuteClearTemporaryLinkContainer, +OperationBase.SkipEndOperation, +OperationBase.UseMacro, +OperationBase.MarkStatus, +OperationBase.UseThread, +OperationBase.Name, +OperationBase.ExecutableOnHold, +OperationBase.Override, +OperationBase.Parameter, +OperationBase.View, +OperationBase.Document, +OperationBase.OnEndOperation, +OperationBase.OnOperationStatusChanged + +#### Extension Methods + +[LinkPropertyItemCache.GetLinkProperties\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkProperties\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkPropertiesAndValues\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkPropertiesAndValues\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkedObjects\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkedObjects\_\_1\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_) + +## Constructors + +### ExecuteProcessForCar\(Document\) + +```csharp +public ExecuteProcessForCar(Document doc) +``` + +#### Parameters + +`doc` Document + +### ExecuteProcessForCar\(Document, string, string, IEnumerable, IEnumerable, string, string, string\) + +```csharp +public ExecuteProcessForCar(Document doc, string strInterfaceTimeStep, string strMFileFullPath, IEnumerable lstInputSeq, IEnumerable lstOutputSeq, string strSInput, string strSOutput, string strInterfacePath) +``` + +#### Parameters + +`doc` Document + +`strInterfaceTimeStep` string + +`strMFileFullPath` string + +`lstInputSeq` IEnumerable + +`lstOutputSeq` IEnumerable + +`strSInput` string + +`strSOutput` string + +`strInterfacePath` string + +### ExecuteProcessForCar\(Document, string, string, IEnumerable, IEnumerable, string, string, string, string, string\) + +```csharp +public ExecuteProcessForCar(Document doc, string strInterfaceTimeStep, string strMFileFullPath, IEnumerable lstInputSeq, IEnumerable lstOutputSeq, string strSInput, string strSOutput, string strInterfacePath, string strScaleFactor, string strMessageLevel) +``` + +#### Parameters + +`doc` Document + +`strInterfaceTimeStep` string + +`strMFileFullPath` string + +`lstInputSeq` IEnumerable + +`lstOutputSeq` IEnumerable + +`strSInput` string + +`strSOutput` string + +`strInterfacePath` string + +`strScaleFactor` string + +`strMessageLevel` string + +### ExecuteProcessForCar\(Document, string, string, List, List, string, string, bool, List, List\) + +```csharp +public ExecuteProcessForCar(Document doc, string strInterfaceTimeStep, string strMFileFullPath, List lstInputSeq, List lstOutputSeq, string strSInput, string strSOutput, bool bExternalCall, List lstExternalSInputNames, List lstExternalSOutputNames) +``` + +#### Parameters + +`doc` Document + +`strInterfaceTimeStep` string + +`strMFileFullPath` string + +`lstInputSeq` List + +`lstOutputSeq` List + +`strSInput` string + +`strSOutput` string + +`bExternalCall` bool + +`lstExternalSInputNames` List + +`lstExternalSOutputNames` List + +### ExecuteProcessForCar\(Document, string, string, List, List, string, string, bool, List, List, string, string\) + +```csharp +public ExecuteProcessForCar(Document doc, string strInterfaceTimeStep, string strMFileFullPath, List lstInputSeq, List lstOutputSeq, string strSInput, string strSOutput, bool bExternalCall, List lstExternalSInputNames, List lstExternalSOutputNames, string strScaleFactor, string strMessageLevel) +``` + +#### Parameters + +`doc` Document + +`strInterfaceTimeStep` string + +`strMFileFullPath` string + +`lstInputSeq` List + +`lstOutputSeq` List + +`strSInput` string + +`strSOutput` string + +`bExternalCall` bool + +`lstExternalSInputNames` List + +`lstExternalSOutputNames` List + +`strScaleFactor` string + +`strMessageLevel` string + +### ExecuteProcessForCar\(JournalParameter\) + +```csharp +public ExecuteProcessForCar(JournalParameter jp) +``` + +#### Parameters + +`jp` JournalParameter + +## Properties + +### Name + +Gets the operation name. + +```csharp +public override string Name { get; } +``` + +#### Property Value + + string + +## Methods + +### Execute\(\) + +Execute the operation. + +```csharp +public override void Execute() +``` + +### GetInformation\(XmlWriter\) + +```csharp +public override void GetInformation(XmlWriter writer) +``` + +#### Parameters + +`writer` XmlWriter + +### Success\(\) + +Results this instance. + +```csharp +public bool Success() +``` + +#### Returns + + bool + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Matlab.Operation.ExportModel.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Matlab.Operation.ExportModel.md index 26ea264c30..ed09022d64 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Matlab.Operation.ExportModel.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Matlab.Operation.ExportModel.md @@ -1,4 +1,5 @@ -# Class ExportModel +# Class ExportModel + Namespace: [VM.Managed.DAFUL.CoSim.Matlab.Operation](VM.Managed.DAFUL.CoSim.Matlab.Operation.md) Assembly: VMOpCoSimMatlab.dll @@ -9,7 +10,7 @@ public class ExportModel : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ExportModel](VM.Managed.DAFUL.CoSim.Matlab.Operation.ExportModel.md) @@ -95,17 +96,17 @@ public ExportModel(Document doc, string strDFSFile, string strRESFile, IEnumerab `doc` Document -`strDFSFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDFSFile` string -`strRESFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRESFile` string -`inputs` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`inputs` IEnumerable -`outputs` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`outputs` IEnumerable -`lstInputSeq` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`lstInputSeq` IEnumerable -`lstOutputSeq` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`lstOutputSeq` IEnumerable ### ExportModel\(Document, List\) @@ -117,7 +118,7 @@ public ExportModel(Document doc, List lstInfo) `doc` Document -`lstInfo` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[object](https://learn.microsoft.com/dotnet/api/system.object)\> +`lstInfo` List ### ExportModel\(JournalParameter\) @@ -141,7 +142,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -161,5 +162,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Matlab.Operation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Matlab.Operation.md index c1ce2cc677..3fff798ca4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Matlab.Operation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Matlab.Operation.md @@ -1,8 +1,11 @@ -# Namespace VM.Managed.DAFUL.CoSim.Matlab.Operation +# Namespace VM.Managed.DAFUL.CoSim.Matlab.Operation + ### Classes [ExecuteProcess](VM.Managed.DAFUL.CoSim.Matlab.Operation.ExecuteProcess.md) + [ExecuteProcessForCar](VM.Managed.DAFUL.CoSim.Matlab.Operation.ExecuteProcessForCar.md) + [ExportModel](VM.Managed.DAFUL.CoSim.Matlab.Operation.ExportModel.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Matlab.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Matlab.md index 225602b20c..1cbb81a6ec 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Matlab.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Matlab.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.CoSim.Matlab +# Namespace VM.Managed.DAFUL.CoSim.Matlab + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.MessageLevel.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.MessageLevel.md index f64baa65c3..8726ab6dfb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.MessageLevel.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.MessageLevel.md @@ -1,4 +1,5 @@ -# Enum MessageLevel +# Enum MessageLevel + Namespace: [VM.Managed.DAFUL.CoSim](VM.Managed.DAFUL.CoSim.md) Assembly: VMDCoSimCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Operation.ShowEnvironmentDlg.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Operation.ShowEnvironmentDlg.md index a2c1be3c15..08030bf534 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Operation.ShowEnvironmentDlg.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Operation.ShowEnvironmentDlg.md @@ -1,4 +1,5 @@ -# Class ShowEnvironmentDlg +# Class ShowEnvironmentDlg + Namespace: [VM.Managed.DAFUL.CoSim.Operation](VM.Managed.DAFUL.CoSim.Operation.md) Assembly: VMOpCoSim.dll @@ -11,10 +12,10 @@ public class ShowEnvironmentDlg : ShowSimulationDlg, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ShowSimulationDlg ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ShowSimulationDlg](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs) ← [ShowEnvironmentDlg](VM.Managed.DAFUL.CoSim.Operation.ShowEnvironmentDlg.md) #### Implements @@ -23,32 +24,33 @@ IOperation #### Inherited Members -ShowSimulationDlg.Execute\(\), -ShowSimulationDlg.SimulationRunImpl\(bool\), -ShowSimulationDlg.ExecuteImpl\(\), -ShowSimulationDlg.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ShowSimulationDlg.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[ShowSimulationDlg.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[ShowSimulationDlg.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[ShowSimulationDlg.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -137,7 +139,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -175,7 +177,7 @@ protected override void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool if set to true [write DFG]. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Operation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Operation.md index a377133602..afd0015feb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Operation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Operation.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.CoSim.Operation +# Namespace VM.Managed.DAFUL.CoSim.Operation + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.SInput.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.SInput.md index 947b1538bd..658e2a6f6b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.SInput.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.SInput.md @@ -1,4 +1,5 @@ -# Class SInput +# Class SInput + Namespace: [VM.Managed.DAFUL.CoSim](VM.Managed.DAFUL.CoSim.md) Assembly: VMDCoSimCore.dll @@ -11,12 +12,12 @@ public class SInput : CoSimIO, IObservableObject, IDisposableObject, ILinkable, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [CoSimIO](VM.Managed.DAFUL.CoSim.CoSimIO.md) ← [SInput](VM.Managed.DAFUL.CoSim.SInput.md) @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -53,17 +54,17 @@ IReportable [CoSimIO.ReferenceType](VM.Managed.DAFUL.CoSim.CoSimIO.md\#VM\_Managed\_DAFUL\_CoSim\_CoSimIO\_ReferenceType), [CoSimIO.ArgumentType](VM.Managed.DAFUL.CoSim.CoSimIO.md\#VM\_Managed\_DAFUL\_CoSim\_CoSimIO\_ArgumentType), [CoSimIO.ReportTypeImpl](VM.Managed.DAFUL.CoSim.CoSimIO.md\#VM\_Managed\_DAFUL\_CoSim\_CoSimIO\_ReportTypeImpl), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -156,7 +157,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -195,7 +196,7 @@ public SInput(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the class. @@ -223,7 +224,7 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ReportTypeImpl diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.SOutput.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.SOutput.md index 63807a8041..509b81dac3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.SOutput.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.SOutput.md @@ -1,4 +1,5 @@ -# Class SOutput +# Class SOutput + Namespace: [VM.Managed.DAFUL.CoSim](VM.Managed.DAFUL.CoSim.md) Assembly: VMDCoSimCore.dll @@ -11,12 +12,12 @@ public class SOutput : CoSimIO, IObservableObject, IDisposableObject, ILinkable, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [CoSimIO](VM.Managed.DAFUL.CoSim.CoSimIO.md) ← [SOutput](VM.Managed.DAFUL.CoSim.SOutput.md) @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -53,17 +54,17 @@ IReportable [CoSimIO.ReferenceType](VM.Managed.DAFUL.CoSim.CoSimIO.md\#VM\_Managed\_DAFUL\_CoSim\_CoSimIO\_ReferenceType), [CoSimIO.ArgumentType](VM.Managed.DAFUL.CoSim.CoSimIO.md\#VM\_Managed\_DAFUL\_CoSim\_CoSimIO\_ArgumentType), [CoSimIO.ReportTypeImpl](VM.Managed.DAFUL.CoSim.CoSimIO.md\#VM\_Managed\_DAFUL\_CoSim\_CoSimIO\_ReportTypeImpl), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -156,7 +157,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -195,7 +196,7 @@ public SOutput(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the class. @@ -235,7 +236,7 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ReportTypeImpl diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Settings.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Settings.md index e33d9c2b08..4b9fe4f26a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Settings.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.Settings.md @@ -1,4 +1,5 @@ -# Class Settings +# Class Settings + Namespace: [VM.Managed.DAFUL.CoSim](VM.Managed.DAFUL.CoSim.md) Assembly: VMDCoSimCore.dll @@ -13,17 +14,17 @@ public class Settings : SettingsBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[SettingsBase](https://learn.microsoft.com/dotnet/api/system.configuration.settingsbase) ← -[ApplicationSettingsBase](https://learn.microsoft.com/dotnet/api/system.configuration.applicationsettingsbase) ← -SettingsBase ← +object ← +SettingsBase ← +ApplicationSettingsBase ← +[SettingsBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VMManagedUtil/SettingsBase.cs) ← [Settings](VM.Managed.DAFUL.CoSim.Settings.md) #### Inherited Members -SettingsBase.GetProperty\(string\), -SettingsBase.Default, -SettingsBase.RootPath +[SettingsBase.GetProperty\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VMManagedUtil/SettingsBase.cs), +[SettingsBase.Default](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VMManagedUtil/SettingsBase.cs), +[SettingsBase.RootPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VMManagedUtil/SettingsBase.cs) #### Extension Methods @@ -54,5 +55,5 @@ public string InterfacePath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.md index 5b9a72c327..7038a24660 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CoSim.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.CoSim +# Namespace VM.Managed.DAFUL.CoSim + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CompositeField.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CompositeField.md index 4269cf0cfe..3ce5bcfee5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CompositeField.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CompositeField.md @@ -1,4 +1,5 @@ -# Class CompositeField +# Class CompositeField + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public abstract class CompositeField : LinkContainer, IObservableObject, IDispos #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [CompositeField](VM.Managed.DAFUL.CompositeField.md) @@ -79,7 +80,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -118,7 +119,7 @@ protected CompositeField(Property owner) #### Parameters -`owner` Property +`owner` [Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) The owner. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CompositeFieldUsable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CompositeFieldUsable.md index 548a935977..68e22f4fd4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CompositeFieldUsable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CompositeFieldUsable.md @@ -1,4 +1,5 @@ -# Class CompositeFieldUsable +# Class CompositeFieldUsable + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public abstract class CompositeFieldUsable : CompositeField, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [CompositeField](VM.Managed.DAFUL.CompositeField.md) ← [CompositeFieldUsable](VM.Managed.DAFUL.CompositeFieldUsable.md) @@ -80,7 +81,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -119,7 +120,7 @@ protected CompositeFieldUsable(Property owner) #### Parameters -`owner` Property +`owner` [Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) The owner. @@ -135,7 +136,7 @@ public abstract bool IsUse { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Use @@ -147,5 +148,5 @@ protected abstract bool Use { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CompositeFieldUsableFunction.LinkType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CompositeFieldUsableFunction.LinkType.md index d66a44e23a..7f561611ad 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CompositeFieldUsableFunction.LinkType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CompositeFieldUsableFunction.LinkType.md @@ -1,4 +1,5 @@ -# Enum CompositeFieldUsableFunction.LinkType +# Enum CompositeFieldUsableFunction.LinkType + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSB.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CompositeFieldUsableFunction.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CompositeFieldUsableFunction.md index 6a3cecda70..db508e4a7e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CompositeFieldUsableFunction.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CompositeFieldUsableFunction.md @@ -1,4 +1,5 @@ -# Class CompositeFieldUsableFunction +# Class CompositeFieldUsableFunction + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSB.dll @@ -11,12 +12,12 @@ public class CompositeFieldUsableFunction : CompositeFieldUsable, IObservableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -CompositeField ← -CompositeFieldUsable ← +[CompositeField](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/CompositeField.cs) ← +[CompositeFieldUsable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/CompositeField.cs) ← [CompositeFieldUsableFunction](VM.Managed.DAFUL.CompositeFieldUsableFunction.md) #### Implements @@ -34,8 +35,8 @@ IVerifiable #### Inherited Members -CompositeFieldUsable.IsUse, -CompositeFieldUsable.Use, +[CompositeFieldUsable.IsUse](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/CompositeField.cs), +[CompositeFieldUsable.Use](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/CompositeField.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -79,7 +80,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -118,7 +119,7 @@ public CompositeFieldUsableFunction(Property owner) #### Parameters -`owner` Property +`owner` [Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) The owner. @@ -132,7 +133,7 @@ public CompositeFieldUsableFunction(Property owner, Function func) #### Parameters -`owner` Property +`owner` [Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) The owner. @@ -174,7 +175,7 @@ public override bool IsUse { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TypeOfLink @@ -198,5 +199,5 @@ protected override bool Use { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CompositeFieldUsableValue.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CompositeFieldUsableValue.md index 8e6469e69f..a8913da591 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CompositeFieldUsableValue.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.CompositeFieldUsableValue.md @@ -1,4 +1,5 @@ -# Class CompositeFieldUsableValue +# Class CompositeFieldUsableValue + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class CompositeFieldUsableValue : CompositeFieldUsable, IObservableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [CompositeField](VM.Managed.DAFUL.CompositeField.md) ← [CompositeFieldUsable](VM.Managed.DAFUL.CompositeFieldUsable.md) ← @@ -79,7 +80,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -118,7 +119,7 @@ public CompositeFieldUsableValue(Property owner) #### Parameters -`owner` Property +`owner` [Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) The owner. @@ -132,7 +133,7 @@ public CompositeFieldUsableValue(double dValue) #### Parameters -`dValue` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dValue` double The d value. @@ -146,11 +147,11 @@ public CompositeFieldUsableValue(Property owner, double dValue) #### Parameters -`owner` Property +`owner` [Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) The owner. -`dValue` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dValue` double The d value. @@ -166,7 +167,7 @@ public override bool IsUse { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Use @@ -178,7 +179,7 @@ protected override bool Use { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Value @@ -190,5 +191,5 @@ public ExpressionValueVariable Value { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Connector-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Connector-1.md index 6473825190..b2a4fb7a1a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Connector-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Connector-1.md @@ -1,4 +1,5 @@ -# Class Connector +# Class Connector + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -17,14 +18,14 @@ The type of the property. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [Connector](VM.Managed.DAFUL.Connector\-1.md) #### Implements @@ -34,7 +35,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -71,34 +72,34 @@ IHasReplaceableEntity #### Inherited Members -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -197,7 +198,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -236,7 +237,7 @@ public Connector(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the connector. @@ -286,7 +287,7 @@ protected virtual bool CanSwitchImpl { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CanWriteToOutFileImpl @@ -296,7 +297,7 @@ protected virtual bool CanWriteToOutFileImpl { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ConnectorReferenceMarker @@ -320,7 +321,7 @@ public virtual bool Generable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### HasLayerExplicitly @@ -332,7 +333,7 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Hide @@ -344,7 +345,7 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Layer @@ -368,7 +369,7 @@ public virtual bool PreventDuplicatedRBE { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Referencable @@ -380,7 +381,7 @@ public bool Referencable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReferenceType @@ -392,7 +393,7 @@ public virtual string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ReportTypeImpl @@ -416,7 +417,7 @@ public bool Visible { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -430,7 +431,7 @@ public virtual void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -444,7 +445,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -478,21 +479,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -506,7 +507,7 @@ public override List GetTargetListForUpdate() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### Initialize\(ConvertFactor\) @@ -536,7 +537,7 @@ public void Instantiate(Reference reference, Canvas canvas) The reference. -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. @@ -550,7 +551,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -568,7 +569,7 @@ public void MakeReference(LinkedList lstRef) #### Parameters -`lstRef` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) +`lstRef` LinkedList The referece container. @@ -582,7 +583,7 @@ protected virtual void MakeReferenceImpl(LinkedList lstRef) #### Parameters -`lstRef` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) +`lstRef` LinkedList The container. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ConnectorMarkerTransformBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ConnectorMarkerTransformBase.md index 8f21aeee2e..ea21136996 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ConnectorMarkerTransformBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ConnectorMarkerTransformBase.md @@ -1,4 +1,5 @@ -# Class ConnectorMarkerTransformBase +# Class ConnectorMarkerTransformBase + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public abstract class ConnectorMarkerTransformBase : LinkContainer, IObservableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ConnectorMarkerTransformBase](VM.Managed.DAFUL.ConnectorMarkerTransformBase.md) @@ -79,7 +80,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ConnectrMarkerTransformFromCenter.RefFrameType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ConnectrMarkerTransformFromCenter.RefFrameType.md index af93661aa5..842b27f5c7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ConnectrMarkerTransformFromCenter.RefFrameType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ConnectrMarkerTransformFromCenter.RefFrameType.md @@ -1,4 +1,5 @@ -# Enum ConnectrMarkerTransformFromCenter.RefFrameType +# Enum ConnectrMarkerTransformFromCenter.RefFrameType + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ConnectrMarkerTransformFromCenter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ConnectrMarkerTransformFromCenter.md index 09ab894092..f798b6e0f6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ConnectrMarkerTransformFromCenter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ConnectrMarkerTransformFromCenter.md @@ -1,4 +1,5 @@ -# Class ConnectrMarkerTransformFromCenter +# Class ConnectrMarkerTransformFromCenter + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class ConnectrMarkerTransformFromCenter : ConnectorMarkerTransformBase, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ConnectorMarkerTransformBase](VM.Managed.DAFUL.ConnectorMarkerTransformBase.md) ← [ConnectrMarkerTransformFromCenter](VM.Managed.DAFUL.ConnectrMarkerTransformFromCenter.md) @@ -77,7 +78,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Ball.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Ball.md index 8ecf9e27a1..cdebb48b7a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Ball.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Ball.md @@ -1,4 +1,5 @@ -# Class Ball +# Class Ball + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll @@ -11,15 +12,15 @@ public class Ball : Constraint, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← [Constraint](VM.Managed.DAFUL.Constraints.Constraint\-1.md) ← [Ball](VM.Managed.DAFUL.Constraints.Ball.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -71,65 +72,65 @@ ITorqueReferenceForBearing [Constraint.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.Constraints.Constraint\-1.md\#VM\_Managed\_DAFUL\_Constraints\_Constraint\_1\_Initialize\_VM\_Unit\_ConvertFactor\_), [Constraint.Generable](VM.Managed.DAFUL.Constraints.Constraint\-1.md\#VM\_Managed\_DAFUL\_Constraints\_Constraint\_1\_Generable), -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -228,7 +229,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -267,7 +268,7 @@ public Ball(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the ball constraint. @@ -283,7 +284,7 @@ public override bool PreventDuplicatedRBE { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReportTypeImpl @@ -323,7 +324,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -337,7 +338,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Constraint-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Constraint-1.md index 3f79993f1a..18d5e09972 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Constraint-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Constraint-1.md @@ -1,4 +1,5 @@ -# Class Constraint +# Class Constraint + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll @@ -17,15 +18,15 @@ The type of the property. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← [Constraint](VM.Managed.DAFUL.Constraints.Constraint\-1.md) #### Implements @@ -35,7 +36,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -74,65 +75,65 @@ ITorqueReferenceForBearing #### Inherited Members -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -231,7 +232,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -270,7 +271,7 @@ public Constraint(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the constraint. @@ -286,7 +287,7 @@ public override bool Generable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Convel.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Convel.md index 7d16d2d2b7..203786edef 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Convel.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Convel.md @@ -1,4 +1,5 @@ -# Class Convel +# Class Convel + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCP.dll @@ -11,16 +12,16 @@ public class Convel : Constraint, IObservableObject, IDisposable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← -Constraint ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← +[Constraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs) ← [Convel](VM.Managed.DAFUL.Constraints.Convel.md) #### Implements @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -69,67 +70,67 @@ ITorqueReferenceForBearing #### Inherited Members -Constraint.Initialize\(Unit.ConvertFactor\), -Constraint.Generable, -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Constraint.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Constraint.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -228,7 +229,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -267,7 +268,7 @@ public Convel(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the constant velocity constraint. @@ -283,7 +284,7 @@ public override bool PreventDuplicatedRBE { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReportTypeImpl @@ -309,7 +310,7 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -337,7 +338,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -351,7 +352,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Coupler.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Coupler.md index 237b5311ea..14c862f402 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Coupler.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Coupler.md @@ -1,4 +1,5 @@ -# Class Coupler +# Class Coupler + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCP.dll @@ -11,14 +12,14 @@ public class Coupler : CouplerBase, IObservableObject, IDisposa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [CouplerBase](VM.Managed.DAFUL.Constraints.CouplerBase\-1.md) ← [Coupler](VM.Managed.DAFUL.Constraints.Coupler.md) @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -79,34 +80,34 @@ IEntityRelation [CouplerBase.Hide](VM.Managed.DAFUL.Constraints.CouplerBase\-1.md\#VM\_Managed\_DAFUL\_Constraints\_CouplerBase\_1\_Hide), [CouplerBase.ReferenceType](VM.Managed.DAFUL.Constraints.CouplerBase\-1.md\#VM\_Managed\_DAFUL\_Constraints\_CouplerBase\_1\_ReferenceType), [CouplerBase.ArgumentType](VM.Managed.DAFUL.Constraints.CouplerBase\-1.md\#VM\_Managed\_DAFUL\_Constraints\_CouplerBase\_1\_ArgumentType), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -205,7 +206,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -244,7 +245,7 @@ public Coupler(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the coupler. @@ -272,7 +273,7 @@ public string Joint3_FullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### JointType3 @@ -296,7 +297,7 @@ public int NumOfJoint { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -310,7 +311,7 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -324,7 +325,7 @@ protected override IEnumerable GetChildListImpl() #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) + IEnumerable ### GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\) @@ -336,21 +337,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -378,7 +379,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -404,7 +405,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -418,7 +419,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.CouplerBase-1.JointType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.CouplerBase-1.JointType.md index 95bf8c6ebe..9f5b1c4fb3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.CouplerBase-1.JointType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.CouplerBase-1.JointType.md @@ -1,4 +1,5 @@ -# Enum CouplerBase.JointType +# Enum CouplerBase.JointType + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCP.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.CouplerBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.CouplerBase-1.md index 64afd98da8..4a14e18928 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.CouplerBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.CouplerBase-1.md @@ -1,4 +1,5 @@ -# Class CouplerBase +# Class CouplerBase + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCP.dll @@ -18,14 +19,14 @@ The type of the property. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [CouplerBase](VM.Managed.DAFUL.Constraints.CouplerBase\-1.md) #### Implements @@ -35,7 +36,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -67,34 +68,34 @@ IEntityRelation #### Inherited Members -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -193,7 +194,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -232,7 +233,7 @@ public CouplerBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the coupler base. @@ -246,7 +247,7 @@ protected bool m_bSkipToUpdateSymmetric #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Properties @@ -272,7 +273,7 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Hide @@ -284,7 +285,7 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Joint1 @@ -308,7 +309,7 @@ public string Joint1_FullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Joint2 @@ -332,7 +333,7 @@ public string Joint2_FullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### JointType1 @@ -368,7 +369,7 @@ public string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -382,7 +383,7 @@ public virtual void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -396,7 +397,7 @@ protected virtual IEnumerable GetChildListImpl() #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) + IEnumerable ### GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\) @@ -408,21 +409,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -436,7 +437,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -462,7 +463,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -476,7 +477,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.CouplerCable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.CouplerCable.md index 480f889d32..4a315a6ba6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.CouplerCable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.CouplerCable.md @@ -1,4 +1,5 @@ -# Class CouplerCable +# Class CouplerCable + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCP.dll @@ -11,14 +12,14 @@ public class CouplerCable : CouplerBase, IObservableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [CouplerBase](VM.Managed.DAFUL.Constraints.CouplerBase\-1.md) ← [CouplerCable](VM.Managed.DAFUL.Constraints.CouplerCable.md) @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -79,34 +80,34 @@ IEntityRelation [CouplerBase.Hide](VM.Managed.DAFUL.Constraints.CouplerBase\-1.md\#VM\_Managed\_DAFUL\_Constraints\_CouplerBase\_1\_Hide), [CouplerBase.ReferenceType](VM.Managed.DAFUL.Constraints.CouplerBase\-1.md\#VM\_Managed\_DAFUL\_Constraints\_CouplerBase\_1\_ReferenceType), [CouplerBase.ArgumentType](VM.Managed.DAFUL.Constraints.CouplerBase\-1.md\#VM\_Managed\_DAFUL\_Constraints\_CouplerBase\_1\_ArgumentType), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -205,7 +206,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -244,7 +245,7 @@ public CouplerCable(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the coupler cable. @@ -260,7 +261,7 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -288,7 +289,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -302,7 +303,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.CouplerGear.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.CouplerGear.md index 07454710a3..f3eb53fa50 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.CouplerGear.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.CouplerGear.md @@ -1,4 +1,5 @@ -# Class CouplerGear +# Class CouplerGear + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCP.dll @@ -11,14 +12,14 @@ public class CouplerGear : CouplerBase, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [CouplerBase](VM.Managed.DAFUL.Constraints.CouplerBase\-1.md) ← [CouplerGear](VM.Managed.DAFUL.Constraints.CouplerGear.md) @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -79,34 +80,34 @@ IEntityRelation [CouplerBase.Hide](VM.Managed.DAFUL.Constraints.CouplerBase\-1.md\#VM\_Managed\_DAFUL\_Constraints\_CouplerBase\_1\_Hide), [CouplerBase.ReferenceType](VM.Managed.DAFUL.Constraints.CouplerBase\-1.md\#VM\_Managed\_DAFUL\_Constraints\_CouplerBase\_1\_ReferenceType), [CouplerBase.ArgumentType](VM.Managed.DAFUL.Constraints.CouplerBase\-1.md\#VM\_Managed\_DAFUL\_Constraints\_CouplerBase\_1\_ArgumentType), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -205,7 +206,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -244,7 +245,7 @@ public CouplerGear(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the coupler gear. @@ -260,7 +261,7 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -288,7 +289,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -302,7 +303,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.CouplerRackPinion.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.CouplerRackPinion.md index db2d69fa05..52a469297d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.CouplerRackPinion.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.CouplerRackPinion.md @@ -1,4 +1,5 @@ -# Class CouplerRackPinion +# Class CouplerRackPinion + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCP.dll @@ -11,14 +12,14 @@ public class CouplerRackPinion : CouplerBase, IObserv #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [CouplerBase](VM.Managed.DAFUL.Constraints.CouplerBase\-1.md) ← [CouplerRackPinion](VM.Managed.DAFUL.Constraints.CouplerRackPinion.md) @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -79,34 +80,34 @@ IEntityRelation [CouplerBase.Hide](VM.Managed.DAFUL.Constraints.CouplerBase\-1.md\#VM\_Managed\_DAFUL\_Constraints\_CouplerBase\_1\_Hide), [CouplerBase.ReferenceType](VM.Managed.DAFUL.Constraints.CouplerBase\-1.md\#VM\_Managed\_DAFUL\_Constraints\_CouplerBase\_1\_ReferenceType), [CouplerBase.ArgumentType](VM.Managed.DAFUL.Constraints.CouplerBase\-1.md\#VM\_Managed\_DAFUL\_Constraints\_CouplerBase\_1\_ArgumentType), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -205,7 +206,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -244,7 +245,7 @@ public CouplerRackPinion(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the coupler rack & pinion. @@ -260,7 +261,7 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -288,7 +289,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -302,7 +303,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Cylindrical.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Cylindrical.md index 8ff55ffd5d..dc0175c010 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Cylindrical.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Cylindrical.md @@ -1,4 +1,5 @@ -# Class Cylindrical +# Class Cylindrical + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll @@ -11,15 +12,15 @@ public class Cylindrical : Constraint, IObservableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← [Constraint](VM.Managed.DAFUL.Constraints.Constraint\-1.md) ← [Cylindrical](VM.Managed.DAFUL.Constraints.Cylindrical.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -72,65 +73,65 @@ IReferencable [Constraint.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.Constraints.Constraint\-1.md\#VM\_Managed\_DAFUL\_Constraints\_Constraint\_1\_Initialize\_VM\_Unit\_ConvertFactor\_), [Constraint.Generable](VM.Managed.DAFUL.Constraints.Constraint\-1.md\#VM\_Managed\_DAFUL\_Constraints\_Constraint\_1\_Generable), -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -229,7 +230,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -268,7 +269,7 @@ public Cylindrical(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the cylindrical constraint. @@ -284,7 +285,7 @@ public override bool PreventDuplicatedRBE { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReportTypeImpl @@ -310,7 +311,7 @@ public Marker GetActionMarker() #### Returns - Marker + [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) The action marker. @@ -352,7 +353,7 @@ public Marker GetBaseMarker() #### Returns - Marker + [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) The base marker. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Distance.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Distance.md index a100bacfd5..5ef1fa8dd0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Distance.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Distance.md @@ -1,4 +1,5 @@ -# Class Distance +# Class Distance + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCP.dll @@ -11,16 +12,16 @@ public class Distance : Constraint, IObservableObject, IDispos #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← -Constraint ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← +[Constraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs) ← [Distance](VM.Managed.DAFUL.Constraints.Distance.md) #### Implements @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -69,67 +70,67 @@ ITorqueReferenceForBearing #### Inherited Members -Constraint.Initialize\(Unit.ConvertFactor\), -Constraint.Generable, -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Constraint.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Constraint.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -228,7 +229,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -267,7 +268,7 @@ public Distance(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the distance constraint. @@ -283,7 +284,7 @@ public ExpressionValueVariable DistanceLength { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PreventDuplicatedRBE @@ -295,7 +296,7 @@ public override bool PreventDuplicatedRBE { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReportTypeImpl @@ -321,7 +322,7 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -349,7 +350,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -363,7 +364,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Driver.DriverType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Driver.DriverType.md index 4721e8cbef..5538914a47 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Driver.DriverType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Driver.DriverType.md @@ -1,4 +1,5 @@ -# Enum Driver.DriverType +# Enum Driver.DriverType + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Driver.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Driver.md index 495df8324e..a757fd601b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Driver.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Driver.md @@ -1,4 +1,5 @@ -# Class Driver +# Class Driver + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll @@ -11,9 +12,9 @@ public abstract class Driver : LinkContainer, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Driver](VM.Managed.DAFUL.Constraints.Driver.md) @@ -82,7 +83,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.DriverFunction.MotionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.DriverFunction.MotionType.md index f8ab37c942..bce6c7bc3d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.DriverFunction.MotionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.DriverFunction.MotionType.md @@ -1,4 +1,5 @@ -# Enum DriverFunction.MotionType +# Enum DriverFunction.MotionType + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.DriverFunction.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.DriverFunction.md index edf6874fd3..aef3a3d7c1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.DriverFunction.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.DriverFunction.md @@ -1,4 +1,5 @@ -# Class DriverFunction +# Class DriverFunction + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll @@ -11,9 +12,9 @@ public sealed class DriverFunction : Driver, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Driver](VM.Managed.DAFUL.Constraints.Driver.md) ← [DriverFunction](VM.Managed.DAFUL.Constraints.DriverFunction.md) @@ -124,7 +125,7 @@ public Function Function { get; set; } #### Property Value - Function + [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) ### InitialCondition diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.DriverInitialCondition.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.DriverInitialCondition.md index 74d3a65515..a94efc1a79 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.DriverInitialCondition.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.DriverInitialCondition.md @@ -1,4 +1,5 @@ -# Class DriverInitialCondition +# Class DriverInitialCondition + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll @@ -11,9 +12,9 @@ public sealed class DriverInitialCondition : Driver, IObservableObject, IDisposa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Driver](VM.Managed.DAFUL.Constraints.Driver.md) ← [DriverInitialCondition](VM.Managed.DAFUL.Constraints.DriverInitialCondition.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.DriverUserSubroutine.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.DriverUserSubroutine.md index 5c79e70589..afb3c7f935 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.DriverUserSubroutine.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.DriverUserSubroutine.md @@ -1,4 +1,5 @@ -# Class DriverUserSubroutine +# Class DriverUserSubroutine + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll @@ -11,9 +12,9 @@ public sealed class DriverUserSubroutine : Driver, IObservableObject, IDisposabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Driver](VM.Managed.DAFUL.Constraints.Driver.md) ← [DriverUserSubroutine](VM.Managed.DAFUL.Constraints.DriverUserSubroutine.md) @@ -122,5 +123,5 @@ public UserSubroutine UserSubroutine { get; set; } #### Property Value - UserSubroutine + [UserSubroutine](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSP/UserSubroutine.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Fixed.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Fixed.md index ca5db7ed52..5336f5ca6c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Fixed.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Fixed.md @@ -1,4 +1,5 @@ -# Class Fixed +# Class Fixed + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll @@ -11,15 +12,15 @@ public class Fixed : Constraint, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← [Constraint](VM.Managed.DAFUL.Constraints.Constraint\-1.md) ← [Fixed](VM.Managed.DAFUL.Constraints.Fixed.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -71,65 +72,65 @@ ITorqueReferenceForBearing [Constraint.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.Constraints.Constraint\-1.md\#VM\_Managed\_DAFUL\_Constraints\_Constraint\_1\_Initialize\_VM\_Unit\_ConvertFactor\_), [Constraint.Generable](VM.Managed.DAFUL.Constraints.Constraint\-1.md\#VM\_Managed\_DAFUL\_Constraints\_Constraint\_1\_Generable), -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -228,7 +229,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -267,7 +268,7 @@ public Fixed(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the fixed constraint. @@ -283,7 +284,7 @@ public override bool PreventDuplicatedRBE { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReportTypeImpl @@ -323,7 +324,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -337,7 +338,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Friction.EffectType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Friction.EffectType.md index 1fe1d790b7..f73451f64f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Friction.EffectType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Friction.EffectType.md @@ -1,4 +1,5 @@ -# Enum Friction.EffectType +# Enum Friction.EffectType + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Friction.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Friction.md index 2a78fc06d5..5bab86b52e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Friction.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Friction.md @@ -1,4 +1,5 @@ -# Class Friction +# Class Friction + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll @@ -11,9 +12,9 @@ public abstract class Friction : LinkContainer, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Friction](VM.Managed.DAFUL.Constraints.Friction.md) @@ -81,7 +82,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -122,7 +123,7 @@ public bool BendingMoment { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DynamicsThreshold @@ -134,7 +135,7 @@ public ExpressionValueVariable DynamicsThreshold { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Effect @@ -158,7 +159,7 @@ public bool IsUseFriction { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MaximumStictionDeformation @@ -170,7 +171,7 @@ public ExpressionValueVariable MaximumStictionDeformation { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MuDynamic @@ -182,7 +183,7 @@ public ExpressionValueVariable MuDynamic { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MuStatic @@ -194,7 +195,7 @@ public ExpressionValueVariable MuStatic { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ReactionForce @@ -206,7 +207,7 @@ public bool ReactionForce { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### StictionTransitionVelocity @@ -218,7 +219,7 @@ public ExpressionValueVariable StictionTransitionVelocity { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -258,7 +259,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -272,7 +273,7 @@ public virtual void ReadTemplate(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -286,7 +287,7 @@ public virtual void WriteTemplate(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.FrictionBall.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.FrictionBall.md index 1e70b863f4..b1dde957fc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.FrictionBall.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.FrictionBall.md @@ -1,4 +1,5 @@ -# Class FrictionBall +# Class FrictionBall + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll @@ -11,9 +12,9 @@ public class FrictionBall : FrictionRevolute, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Friction](VM.Managed.DAFUL.Constraints.Friction.md) ← [FrictionRevolute](VM.Managed.DAFUL.Constraints.FrictionRevolute.md) ← @@ -99,7 +100,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -138,7 +139,7 @@ public override void WriteTemplate(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.FrictionCylindrical.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.FrictionCylindrical.md index edbd3c87f4..d2f93055ab 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.FrictionCylindrical.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.FrictionCylindrical.md @@ -1,4 +1,5 @@ -# Class FrictionCylindrical +# Class FrictionCylindrical + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll @@ -11,9 +12,9 @@ public class FrictionCylindrical : Friction, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Friction](VM.Managed.DAFUL.Constraints.Friction.md) ← [FrictionCylindrical](VM.Managed.DAFUL.Constraints.FrictionCylindrical.md) @@ -90,7 +91,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -131,7 +132,7 @@ public ExpressionValueVariable InitialOverlap { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### OverlapDelta @@ -155,7 +156,7 @@ public ExpressionValueVariable PreForce { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PreTorque @@ -167,7 +168,7 @@ public ExpressionValueVariable PreTorque { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ReactionArm @@ -179,7 +180,7 @@ public ExpressionValueVariable ReactionArm { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TorsionalMoment @@ -191,7 +192,7 @@ public bool TorsionalMoment { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -219,7 +220,7 @@ public override void ReadTemplate(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -233,7 +234,7 @@ public override void WriteTemplate(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.FrictionRevolute.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.FrictionRevolute.md index 781711fb15..3756cdf690 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.FrictionRevolute.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.FrictionRevolute.md @@ -1,4 +1,5 @@ -# Class FrictionRevolute +# Class FrictionRevolute + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll @@ -11,9 +12,9 @@ public class FrictionRevolute : Friction, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Friction](VM.Managed.DAFUL.Constraints.Friction.md) ← [FrictionRevolute](VM.Managed.DAFUL.Constraints.FrictionRevolute.md) @@ -94,7 +95,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -135,7 +136,7 @@ public ExpressionValueVariable BendingReactionArm { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### FrictionArm @@ -147,7 +148,7 @@ public ExpressionValueVariable FrictionArm { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PinRadius @@ -159,7 +160,7 @@ public ExpressionValueVariable PinRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PreTorque @@ -171,7 +172,7 @@ public ExpressionValueVariable PreTorque { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -199,7 +200,7 @@ public override void ReadTemplate(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -213,7 +214,7 @@ public override void WriteTemplate(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. @@ -225,7 +226,7 @@ protected virtual void WriteTemplate(XmlWriter writer, string frictionName) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter -`frictionName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`frictionName` string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.FrictionTranslational.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.FrictionTranslational.md index 9690e8545c..1689c414cc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.FrictionTranslational.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.FrictionTranslational.md @@ -1,4 +1,5 @@ -# Class FrictionTranslational +# Class FrictionTranslational + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll @@ -11,9 +12,9 @@ public class FrictionTranslational : Friction, IObservableObject, IDisposableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Friction](VM.Managed.DAFUL.Constraints.Friction.md) ← [FrictionTranslational](VM.Managed.DAFUL.Constraints.FrictionTranslational.md) @@ -90,7 +91,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -131,7 +132,7 @@ public ExpressionValueVariable InitialOverlap { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### OverlapDelta @@ -155,7 +156,7 @@ public ExpressionValueVariable PreForce { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ReactionArm @@ -167,7 +168,7 @@ public ExpressionValueVariable ReactionArm { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TorsionalMoment @@ -179,7 +180,7 @@ public bool TorsionalMoment { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -207,7 +208,7 @@ public override void ReadTemplate(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -221,7 +222,7 @@ public override void WriteTemplate(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.FrictionUniversal.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.FrictionUniversal.md index 2a6fc3246f..73014d63ae 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.FrictionUniversal.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.FrictionUniversal.md @@ -1,4 +1,5 @@ -# Class FrictionUniversal +# Class FrictionUniversal + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCP.dll @@ -11,11 +12,11 @@ public class FrictionUniversal : Friction, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Friction ← +[Friction](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs) ← [FrictionUniversal](VM.Managed.DAFUL.Constraints.FrictionUniversal.md) #### Implements @@ -33,20 +34,20 @@ IVerifiable #### Inherited Members -Friction.Initialize\(Unit.ConvertFactor\), -Friction.WriteTemplate\(XmlWriter\), -Friction.ReadTemplate\(XmlReader\), -Friction.GetConnector\(\), -Friction.OnDeserialization\(object\), -Friction.MuStatic, -Friction.MuDynamic, -Friction.StictionTransitionVelocity, -Friction.DynamicsThreshold, -Friction.MaximumStictionDeformation, -Friction.Effect, -Friction.ReactionForce, -Friction.BendingMoment, -Friction.IsUseFriction, +[Friction.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs), +[Friction.WriteTemplate\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs), +[Friction.ReadTemplate\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs), +[Friction.GetConnector\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs), +[Friction.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs), +[Friction.MuStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs), +[Friction.MuDynamic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs), +[Friction.StictionTransitionVelocity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs), +[Friction.DynamicsThreshold](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs), +[Friction.MaximumStictionDeformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs), +[Friction.Effect](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs), +[Friction.ReactionForce](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs), +[Friction.BendingMoment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs), +[Friction.IsUseFriction](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -90,7 +91,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -131,7 +132,7 @@ public ExpressionValueVariable BendingReactionArm { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### FrictionArm @@ -143,7 +144,7 @@ public ExpressionValueVariable FrictionArm { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PinRadius @@ -155,7 +156,7 @@ public ExpressionValueVariable PinRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PreTorque @@ -167,5 +168,5 @@ public ExpressionValueVariable PreTorque { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.InitialCondition.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.InitialCondition.md index e9df23335d..f775b613e4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.InitialCondition.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.InitialCondition.md @@ -1,4 +1,5 @@ -# Class InitialCondition +# Class InitialCondition + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll @@ -11,9 +12,9 @@ public class InitialCondition : LinkContainer, IObservableObject, IDisposableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [InitialCondition](VM.Managed.DAFUL.Constraints.InitialCondition.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,7 +117,7 @@ public ExpressionValueVariable InitAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### InitAngularVel @@ -128,7 +129,7 @@ public ExpressionValueVariable InitAngularVel { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### IsUseInitAngle @@ -140,7 +141,7 @@ public bool IsUseInitAngle { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsUseInitAngularVel @@ -152,5 +153,5 @@ public bool IsUseInitAngularVel { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Inline.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Inline.md index 6227e4f4ee..94492d9b84 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Inline.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Inline.md @@ -1,4 +1,5 @@ -# Class Inline +# Class Inline + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCP.dll @@ -11,16 +12,16 @@ public class Inline : Constraint, IObservableObject, IDisposable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← -Constraint ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← +[Constraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs) ← [Inline](VM.Managed.DAFUL.Constraints.Inline.md) #### Implements @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -69,67 +70,67 @@ ITorqueReferenceForBearing #### Inherited Members -Constraint.Initialize\(Unit.ConvertFactor\), -Constraint.Generable, -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Constraint.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Constraint.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -228,7 +229,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -267,7 +268,7 @@ public Inline(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the inline constraint. @@ -283,7 +284,7 @@ public override bool PreventDuplicatedRBE { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReportTypeImpl @@ -323,7 +324,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -337,7 +338,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Inplane.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Inplane.md index 983b5c1e6e..0ea2be37ea 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Inplane.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Inplane.md @@ -1,4 +1,5 @@ -# Class Inplane +# Class Inplane + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCP.dll @@ -11,16 +12,16 @@ public class Inplane : Constraint, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← -Constraint ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← +[Constraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs) ← [Inplane](VM.Managed.DAFUL.Constraints.Inplane.md) #### Implements @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -69,67 +70,67 @@ ITorqueReferenceForBearing #### Inherited Members -Constraint.Initialize\(Unit.ConvertFactor\), -Constraint.Generable, -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Constraint.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Constraint.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -228,7 +229,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -267,7 +268,7 @@ public Inplane(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the inplane constraint. @@ -283,7 +284,7 @@ public override bool PreventDuplicatedRBE { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReportTypeImpl @@ -323,7 +324,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -337,7 +338,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Orientation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Orientation.md index b709b25d31..ead99bb529 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Orientation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Orientation.md @@ -1,4 +1,5 @@ -# Class Orientation +# Class Orientation + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCP.dll @@ -11,16 +12,16 @@ public class Orientation : Constraint, IObservableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← -Constraint ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← +[Constraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs) ← [Orientation](VM.Managed.DAFUL.Constraints.Orientation.md) #### Implements @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -69,67 +70,67 @@ ITorqueReferenceForBearing #### Inherited Members -Constraint.Initialize\(Unit.ConvertFactor\), -Constraint.Generable, -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Constraint.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Constraint.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -228,7 +229,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -267,7 +268,7 @@ public Orientation(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the orientation constraint. @@ -283,7 +284,7 @@ public override bool PreventDuplicatedRBE { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReportTypeImpl @@ -323,7 +324,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -337,7 +338,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.OverlapDeltaType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.OverlapDeltaType.md index f44171f3dc..7c0b69eb3a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.OverlapDeltaType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.OverlapDeltaType.md @@ -1,4 +1,5 @@ -# Enum OverlapDeltaType +# Enum OverlapDeltaType + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Parallel.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Parallel.md index 4474ee8689..0c8262a54f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Parallel.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Parallel.md @@ -1,4 +1,5 @@ -# Class Parallel +# Class Parallel + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCP.dll @@ -11,16 +12,16 @@ public class Parallel : Constraint, IObservableObject, IDispos #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← -Constraint ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← +[Constraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs) ← [Parallel](VM.Managed.DAFUL.Constraints.Parallel.md) #### Implements @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -69,67 +70,67 @@ ITorqueReferenceForBearing #### Inherited Members -Constraint.Initialize\(Unit.ConvertFactor\), -Constraint.Generable, -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Constraint.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Constraint.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -228,7 +229,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -267,7 +268,7 @@ public Parallel(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the parallel constraint. @@ -283,7 +284,7 @@ public override bool PreventDuplicatedRBE { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReportTypeImpl @@ -323,7 +324,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -337,7 +338,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Perpendicular.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Perpendicular.md index 30f59a5077..0b18d1e2d3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Perpendicular.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Perpendicular.md @@ -1,4 +1,5 @@ -# Class Perpendicular +# Class Perpendicular + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCP.dll @@ -11,16 +12,16 @@ public class Perpendicular : Constraint, IObservableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← -Constraint ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← +[Constraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs) ← [Perpendicular](VM.Managed.DAFUL.Constraints.Perpendicular.md) #### Implements @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -69,67 +70,67 @@ ITorqueReferenceForBearing #### Inherited Members -Constraint.Initialize\(Unit.ConvertFactor\), -Constraint.Generable, -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Constraint.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Constraint.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -228,7 +229,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -267,7 +268,7 @@ public Perpendicular(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the perpendicular constraint. @@ -283,7 +284,7 @@ public override bool PreventDuplicatedRBE { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReportTypeImpl @@ -309,7 +310,7 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -337,7 +338,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -351,7 +352,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Planar.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Planar.md index dfb3151f04..ea6ddab812 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Planar.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Planar.md @@ -1,4 +1,5 @@ -# Class Planar +# Class Planar + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll @@ -11,15 +12,15 @@ public class Planar : Constraint, IObservableObject, IDisposable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← [Constraint](VM.Managed.DAFUL.Constraints.Constraint\-1.md) ← [Planar](VM.Managed.DAFUL.Constraints.Planar.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -71,65 +72,65 @@ ITorqueReferenceForBearing [Constraint.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.Constraints.Constraint\-1.md\#VM\_Managed\_DAFUL\_Constraints\_Constraint\_1\_Initialize\_VM\_Unit\_ConvertFactor\_), [Constraint.Generable](VM.Managed.DAFUL.Constraints.Constraint\-1.md\#VM\_Managed\_DAFUL\_Constraints\_Constraint\_1\_Generable), -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -228,7 +229,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -267,7 +268,7 @@ public Planar(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the planar constraint. @@ -283,7 +284,7 @@ public override bool PreventDuplicatedRBE { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReportTypeImpl @@ -323,7 +324,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -337,7 +338,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyBall.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyBall.md index 1aac350645..64a91de34c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyBall.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyBall.md @@ -1,4 +1,5 @@ -# Class PropertyBall +# Class PropertyBall + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll @@ -11,13 +12,13 @@ public class PropertyBall : PropertyConstraint, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyConstraint](VM.Managed.DAFUL.Constraints.PropertyConstraint.md) ← [PropertyBall](VM.Managed.DAFUL.Constraints.PropertyBall.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -44,12 +45,12 @@ IArgument [PropertyConstraint.ReferenceType](VM.Managed.DAFUL.Constraints.PropertyConstraint.md\#VM\_Managed\_DAFUL\_Constraints\_PropertyConstraint\_ReferenceType), [PropertyConstraint.ArgumentType](VM.Managed.DAFUL.Constraints.PropertyConstraint.md\#VM\_Managed\_DAFUL\_Constraints\_PropertyConstraint\_ArgumentType), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -213,7 +214,7 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -227,7 +228,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyConstraint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyConstraint.md index 32821db0d4..ca5d016f76 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyConstraint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyConstraint.md @@ -1,4 +1,5 @@ -# Class PropertyConstraint +# Class PropertyConstraint + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll @@ -11,13 +12,13 @@ public abstract class PropertyConstraint : Property, IObservableObject, IDisposa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyConstraint](VM.Managed.DAFUL.Constraints.PropertyConstraint.md) #### Derived @@ -40,7 +41,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -50,12 +51,12 @@ IArgument #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -154,7 +155,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -205,5 +206,5 @@ public virtual string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyConvel.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyConvel.md index 486ea93c16..6cb354ab1b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyConvel.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyConvel.md @@ -1,4 +1,5 @@ -# Class PropertyConvel +# Class PropertyConvel + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCP.dll @@ -11,14 +12,14 @@ public class PropertyConvel : PropertyConstraint, IObservableObject, IDisposable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyConstraint ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyConstraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs) ← [PropertyConvel](VM.Managed.DAFUL.Constraints.PropertyConvel.md) #### Implements @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -42,14 +43,14 @@ IArgument #### Inherited Members -PropertyConstraint.ReferenceType, -PropertyConstraint.ArgumentType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyConstraint.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[PropertyConstraint.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -201,7 +202,7 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -215,7 +216,7 @@ public override void Draw(Canvas canvas, TMatrix matTBase, TMatrix matTAct, bool #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs)

    The canvas has icon information.

    @@ -227,7 +228,7 @@ public override void Draw(Canvas canvas, TMatrix matTBase, TMatrix matTAct, bool

    The action transformation.

    -`bHide` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHide` bool

    The hide flag.

    diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyCoupler.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyCoupler.md index 9d0c85ece4..f380f230f3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyCoupler.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyCoupler.md @@ -1,4 +1,5 @@ -# Class PropertyCoupler +# Class PropertyCoupler + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCP.dll @@ -11,13 +12,13 @@ public class PropertyCoupler : PropertyCouplerBase, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyCouplerBase](VM.Managed.DAFUL.Constraints.PropertyCouplerBase.md) ← [PropertyCoupler](VM.Managed.DAFUL.Constraints.PropertyCoupler.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -46,12 +47,12 @@ IHasID [PropertyCouplerBase.Ratio2](VM.Managed.DAFUL.Constraints.PropertyCouplerBase.md\#VM\_Managed\_DAFUL\_Constraints\_PropertyCouplerBase\_Ratio2), [PropertyCouplerBase.MotionType1](VM.Managed.DAFUL.Constraints.PropertyCouplerBase.md\#VM\_Managed\_DAFUL\_Constraints\_PropertyCouplerBase\_MotionType1), [PropertyCouplerBase.MotionType2](VM.Managed.DAFUL.Constraints.PropertyCouplerBase.md\#VM\_Managed\_DAFUL\_Constraints\_PropertyCouplerBase\_MotionType2), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -150,7 +151,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -203,7 +204,7 @@ public ExpressionValueVariable Ratio3 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyCouplerBase.MotionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyCouplerBase.MotionType.md index 0dcab11a50..e108d6291e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyCouplerBase.MotionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyCouplerBase.MotionType.md @@ -1,4 +1,5 @@ -# Enum PropertyCouplerBase.MotionType +# Enum PropertyCouplerBase.MotionType + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCP.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyCouplerBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyCouplerBase.md index 2bbfe4f065..6787f177eb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyCouplerBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyCouplerBase.md @@ -1,4 +1,5 @@ -# Class PropertyCouplerBase +# Class PropertyCouplerBase + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCP.dll @@ -11,13 +12,13 @@ public class PropertyCouplerBase : Property, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyCouplerBase](VM.Managed.DAFUL.Constraints.PropertyCouplerBase.md) #### Derived @@ -38,7 +39,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -47,12 +48,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -151,7 +152,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -216,7 +217,7 @@ public ExpressionValueVariable Ratio1 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Ratio2 @@ -228,7 +229,7 @@ public ExpressionValueVariable Ratio2 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyCouplerCable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyCouplerCable.md index bd6bbfda66..1e0697e707 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyCouplerCable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyCouplerCable.md @@ -1,4 +1,5 @@ -# Class PropertyCouplerCable +# Class PropertyCouplerCable + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCP.dll @@ -11,13 +12,13 @@ public class PropertyCouplerCable : PropertyCouplerBase, IObservableObject, IDis #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyCouplerBase](VM.Managed.DAFUL.Constraints.PropertyCouplerBase.md) ← [PropertyCouplerCable](VM.Managed.DAFUL.Constraints.PropertyCouplerCable.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -46,12 +47,12 @@ IHasID [PropertyCouplerBase.Ratio2](VM.Managed.DAFUL.Constraints.PropertyCouplerBase.md\#VM\_Managed\_DAFUL\_Constraints\_PropertyCouplerBase\_Ratio2), [PropertyCouplerBase.MotionType1](VM.Managed.DAFUL.Constraints.PropertyCouplerBase.md\#VM\_Managed\_DAFUL\_Constraints\_PropertyCouplerBase\_MotionType1), [PropertyCouplerBase.MotionType2](VM.Managed.DAFUL.Constraints.PropertyCouplerBase.md\#VM\_Managed\_DAFUL\_Constraints\_PropertyCouplerBase\_MotionType2), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -150,7 +151,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyCouplerGear.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyCouplerGear.md index 0fbf756c1b..50949062db 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyCouplerGear.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyCouplerGear.md @@ -1,4 +1,5 @@ -# Class PropertyCouplerGear +# Class PropertyCouplerGear + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCP.dll @@ -11,13 +12,13 @@ public class PropertyCouplerGear : PropertyCouplerBase, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyCouplerBase](VM.Managed.DAFUL.Constraints.PropertyCouplerBase.md) ← [PropertyCouplerGear](VM.Managed.DAFUL.Constraints.PropertyCouplerGear.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -46,12 +47,12 @@ IHasID [PropertyCouplerBase.Ratio2](VM.Managed.DAFUL.Constraints.PropertyCouplerBase.md\#VM\_Managed\_DAFUL\_Constraints\_PropertyCouplerBase\_Ratio2), [PropertyCouplerBase.MotionType1](VM.Managed.DAFUL.Constraints.PropertyCouplerBase.md\#VM\_Managed\_DAFUL\_Constraints\_PropertyCouplerBase\_MotionType1), [PropertyCouplerBase.MotionType2](VM.Managed.DAFUL.Constraints.PropertyCouplerBase.md\#VM\_Managed\_DAFUL\_Constraints\_PropertyCouplerBase\_MotionType2), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -150,7 +151,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyCouplerRackPinion.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyCouplerRackPinion.md index 0ab46c224d..edce159a99 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyCouplerRackPinion.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyCouplerRackPinion.md @@ -1,4 +1,5 @@ -# Class PropertyCouplerRackPinion +# Class PropertyCouplerRackPinion + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCP.dll @@ -11,13 +12,13 @@ public class PropertyCouplerRackPinion : PropertyCouplerBase, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyCouplerBase](VM.Managed.DAFUL.Constraints.PropertyCouplerBase.md) ← [PropertyCouplerRackPinion](VM.Managed.DAFUL.Constraints.PropertyCouplerRackPinion.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -46,12 +47,12 @@ IHasID [PropertyCouplerBase.Ratio2](VM.Managed.DAFUL.Constraints.PropertyCouplerBase.md\#VM\_Managed\_DAFUL\_Constraints\_PropertyCouplerBase\_Ratio2), [PropertyCouplerBase.MotionType1](VM.Managed.DAFUL.Constraints.PropertyCouplerBase.md\#VM\_Managed\_DAFUL\_Constraints\_PropertyCouplerBase\_MotionType1), [PropertyCouplerBase.MotionType2](VM.Managed.DAFUL.Constraints.PropertyCouplerBase.md\#VM\_Managed\_DAFUL\_Constraints\_PropertyCouplerBase\_MotionType2), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -150,7 +151,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyCylindrical.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyCylindrical.md index 944f088ccd..6b14a5c18c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyCylindrical.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyCylindrical.md @@ -1,4 +1,5 @@ -# Class PropertyCylindrical +# Class PropertyCylindrical + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll @@ -11,13 +12,13 @@ public class PropertyCylindrical : PropertyConstraint, IObservableObject, IDispo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyConstraint](VM.Managed.DAFUL.Constraints.PropertyConstraint.md) ← [PropertyCylindrical](VM.Managed.DAFUL.Constraints.PropertyCylindrical.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -44,12 +45,12 @@ IArgument [PropertyConstraint.ReferenceType](VM.Managed.DAFUL.Constraints.PropertyConstraint.md\#VM\_Managed\_DAFUL\_Constraints\_PropertyConstraint\_ReferenceType), [PropertyConstraint.ArgumentType](VM.Managed.DAFUL.Constraints.PropertyConstraint.md\#VM\_Managed\_DAFUL\_Constraints\_PropertyConstraint\_ArgumentType), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -237,7 +238,7 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TDriver @@ -301,7 +302,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyDistance.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyDistance.md index 5fb87c0bba..3e5d12f869 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyDistance.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyDistance.md @@ -1,4 +1,5 @@ -# Class PropertyDistance +# Class PropertyDistance + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCP.dll @@ -11,14 +12,14 @@ public class PropertyDistance : PropertyConstraint, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyConstraint ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyConstraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs) ← [PropertyDistance](VM.Managed.DAFUL.Constraints.PropertyDistance.md) #### Implements @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -42,14 +43,14 @@ IArgument #### Inherited Members -PropertyConstraint.ReferenceType, -PropertyConstraint.ArgumentType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyConstraint.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[PropertyConstraint.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -201,7 +202,7 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -215,7 +216,7 @@ public override void Draw(Canvas canvas, TMatrix matTBase, TMatrix matTAct, bool #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs)

    The canvas has icon information.

    @@ -227,7 +228,7 @@ public override void Draw(Canvas canvas, TMatrix matTBase, TMatrix matTAct, bool

    The action transformation.

    -`bHide` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHide` bool

    The hide flag.

    diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyFixed.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyFixed.md index da8da947e4..47a1ac0306 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyFixed.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyFixed.md @@ -1,4 +1,5 @@ -# Class PropertyFixed +# Class PropertyFixed + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll @@ -11,13 +12,13 @@ public class PropertyFixed : PropertyConstraint, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyConstraint](VM.Managed.DAFUL.Constraints.PropertyConstraint.md) ← [PropertyFixed](VM.Managed.DAFUL.Constraints.PropertyFixed.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -44,12 +45,12 @@ IArgument [PropertyConstraint.ReferenceType](VM.Managed.DAFUL.Constraints.PropertyConstraint.md\#VM\_Managed\_DAFUL\_Constraints\_PropertyConstraint\_ReferenceType), [PropertyConstraint.ArgumentType](VM.Managed.DAFUL.Constraints.PropertyConstraint.md\#VM\_Managed\_DAFUL\_Constraints\_PropertyConstraint\_ArgumentType), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -201,5 +202,5 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyInline.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyInline.md index 881100127c..b935a44004 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyInline.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyInline.md @@ -1,4 +1,5 @@ -# Class PropertyInline +# Class PropertyInline + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCP.dll @@ -11,14 +12,14 @@ public class PropertyInline : PropertyConstraint, IObservableObject, IDisposable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyConstraint ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyConstraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs) ← [PropertyInline](VM.Managed.DAFUL.Constraints.PropertyInline.md) #### Implements @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -42,14 +43,14 @@ IArgument #### Inherited Members -PropertyConstraint.ReferenceType, -PropertyConstraint.ArgumentType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyConstraint.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[PropertyConstraint.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -201,5 +202,5 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyInplane.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyInplane.md index e1aa121bd2..997b238771 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyInplane.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyInplane.md @@ -1,4 +1,5 @@ -# Class PropertyInplane +# Class PropertyInplane + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCP.dll @@ -11,14 +12,14 @@ public class PropertyInplane : PropertyConstraint, IObservableObject, IDisposabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyConstraint ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyConstraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs) ← [PropertyInplane](VM.Managed.DAFUL.Constraints.PropertyInplane.md) #### Implements @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -42,14 +43,14 @@ IArgument #### Inherited Members -PropertyConstraint.ReferenceType, -PropertyConstraint.ArgumentType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyConstraint.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[PropertyConstraint.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -201,5 +202,5 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyOrientation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyOrientation.md index 0522dcafde..780f180480 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyOrientation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyOrientation.md @@ -1,4 +1,5 @@ -# Class PropertyOrientation +# Class PropertyOrientation + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCP.dll @@ -11,14 +12,14 @@ public class PropertyOrientation : PropertyConstraint, IObservableObject, IDispo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyConstraint ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyConstraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs) ← [PropertyOrientation](VM.Managed.DAFUL.Constraints.PropertyOrientation.md) #### Implements @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -42,14 +43,14 @@ IArgument #### Inherited Members -PropertyConstraint.ReferenceType, -PropertyConstraint.ArgumentType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyConstraint.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[PropertyConstraint.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -201,5 +202,5 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyParallel.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyParallel.md index cd102413ef..35363a95b2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyParallel.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyParallel.md @@ -1,4 +1,5 @@ -# Class PropertyParallel +# Class PropertyParallel + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCP.dll @@ -11,14 +12,14 @@ public class PropertyParallel : PropertyConstraint, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyConstraint ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyConstraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs) ← [PropertyParallel](VM.Managed.DAFUL.Constraints.PropertyParallel.md) #### Implements @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -42,14 +43,14 @@ IArgument #### Inherited Members -PropertyConstraint.ReferenceType, -PropertyConstraint.ArgumentType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyConstraint.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[PropertyConstraint.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -201,5 +202,5 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyPerpendicular.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyPerpendicular.md index f926e6994d..7a2bcaebdc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyPerpendicular.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyPerpendicular.md @@ -1,4 +1,5 @@ -# Class PropertyPerpendicular +# Class PropertyPerpendicular + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCP.dll @@ -11,14 +12,14 @@ public class PropertyPerpendicular : PropertyConstraint, IObservableObject, IDis #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyConstraint ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyConstraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs) ← [PropertyPerpendicular](VM.Managed.DAFUL.Constraints.PropertyPerpendicular.md) #### Implements @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -42,14 +43,14 @@ IArgument #### Inherited Members -PropertyConstraint.ReferenceType, -PropertyConstraint.ArgumentType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyConstraint.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[PropertyConstraint.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -201,7 +202,7 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -215,7 +216,7 @@ public override void Draw(Canvas canvas, TMatrix matTBase, TMatrix matTAct, bool #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs)

    The canvas has icon information.

    @@ -227,7 +228,7 @@ public override void Draw(Canvas canvas, TMatrix matTBase, TMatrix matTAct, bool

    The action transformation.

    -`bHide` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHide` bool

    The hide flag.

    diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyPlanar.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyPlanar.md index 641e674074..e145b8da30 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyPlanar.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyPlanar.md @@ -1,4 +1,5 @@ -# Class PropertyPlanar +# Class PropertyPlanar + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll @@ -11,13 +12,13 @@ public class PropertyPlanar : PropertyConstraint, IObservableObject, IDisposable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyConstraint](VM.Managed.DAFUL.Constraints.PropertyConstraint.md) ← [PropertyPlanar](VM.Managed.DAFUL.Constraints.PropertyPlanar.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -44,12 +45,12 @@ IArgument [PropertyConstraint.ReferenceType](VM.Managed.DAFUL.Constraints.PropertyConstraint.md\#VM\_Managed\_DAFUL\_Constraints\_PropertyConstraint\_ReferenceType), [PropertyConstraint.ArgumentType](VM.Managed.DAFUL.Constraints.PropertyConstraint.md\#VM\_Managed\_DAFUL\_Constraints\_PropertyConstraint\_ArgumentType), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -201,5 +202,5 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyRevolute.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyRevolute.md index 34ac38c49e..8abc9ed169 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyRevolute.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyRevolute.md @@ -1,4 +1,5 @@ -# Class PropertyRevolute +# Class PropertyRevolute + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll @@ -11,13 +12,13 @@ public class PropertyRevolute : PropertyConstraint, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyConstraint](VM.Managed.DAFUL.Constraints.PropertyConstraint.md) ← [PropertyRevolute](VM.Managed.DAFUL.Constraints.PropertyRevolute.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -46,12 +47,12 @@ ILinkUpdateOwner [PropertyConstraint.ReferenceType](VM.Managed.DAFUL.Constraints.PropertyConstraint.md\#VM\_Managed\_DAFUL\_Constraints\_PropertyConstraint\_ReferenceType), [PropertyConstraint.ArgumentType](VM.Managed.DAFUL.Constraints.PropertyConstraint.md\#VM\_Managed\_DAFUL\_Constraints\_PropertyConstraint\_ArgumentType), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -150,7 +151,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -189,7 +190,7 @@ protected LinkAttribute __a$_a_VM.Models.Pre.LinkAttribute #### Field Value - LinkAttribute + [LinkAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre.Aspects/Attributes/LinkAttribute.cs) ### \_\_a$\_a\_VM.Models.Pre.LinkUpdateAttribute @@ -199,7 +200,7 @@ protected LinkUpdateAttribute __a$_a_VM.Models.Pre.LinkUpdateAttribute #### Field Value - LinkUpdateAttribute + [LinkUpdateAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre.Aspects/Attributes/LinkUpdateAttribute.cs) ## Properties @@ -289,7 +290,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyScrew.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyScrew.md index 36d8293f58..3729d588ce 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyScrew.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyScrew.md @@ -1,4 +1,5 @@ -# Class PropertyScrew +# Class PropertyScrew + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCP.dll @@ -11,14 +12,14 @@ public class PropertyScrew : PropertyConstraint, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyConstraint ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyConstraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs) ← [PropertyScrew](VM.Managed.DAFUL.Constraints.PropertyScrew.md) #### Implements @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -42,14 +43,14 @@ IArgument #### Inherited Members -PropertyConstraint.ReferenceType, -PropertyConstraint.ArgumentType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyConstraint.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[PropertyConstraint.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -201,7 +202,7 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Screw @@ -213,7 +214,7 @@ public ExpressionValueVariable Screw { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyTranslational.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyTranslational.md index cc360e231b..eb1c61478e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyTranslational.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyTranslational.md @@ -1,4 +1,5 @@ -# Class PropertyTranslational +# Class PropertyTranslational + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll @@ -11,13 +12,13 @@ public class PropertyTranslational : PropertyConstraint, IObservableObject, IDis #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyConstraint](VM.Managed.DAFUL.Constraints.PropertyConstraint.md) ← [PropertyTranslational](VM.Managed.DAFUL.Constraints.PropertyTranslational.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -46,12 +47,12 @@ ILinkUpdateOwner [PropertyConstraint.ReferenceType](VM.Managed.DAFUL.Constraints.PropertyConstraint.md\#VM\_Managed\_DAFUL\_Constraints\_PropertyConstraint\_ReferenceType), [PropertyConstraint.ArgumentType](VM.Managed.DAFUL.Constraints.PropertyConstraint.md\#VM\_Managed\_DAFUL\_Constraints\_PropertyConstraint\_ArgumentType), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -150,7 +151,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -189,7 +190,7 @@ protected LinkAttribute __a$_a_VM.Models.Pre.LinkAttribute #### Field Value - LinkAttribute + [LinkAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre.Aspects/Attributes/LinkAttribute.cs) ### \_\_a$\_a\_VM.Models.Pre.LinkUpdateAttribute @@ -199,7 +200,7 @@ protected LinkUpdateAttribute __a$_a_VM.Models.Pre.LinkUpdateAttribute #### Field Value - LinkUpdateAttribute + [LinkUpdateAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre.Aspects/Attributes/LinkUpdateAttribute.cs) ## Properties @@ -261,7 +262,7 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Restriction @@ -301,7 +302,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyUniversal.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyUniversal.md index 9d11ffa668..8dd4fe60f3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyUniversal.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.PropertyUniversal.md @@ -1,4 +1,5 @@ -# Class PropertyUniversal +# Class PropertyUniversal + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCP.dll @@ -11,14 +12,14 @@ public class PropertyUniversal : PropertyConstraint, IObservableObject, IDisposa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyConstraint ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyConstraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs) ← [PropertyUniversal](VM.Managed.DAFUL.Constraints.PropertyUniversal.md) #### Implements @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -42,14 +43,14 @@ IArgument #### Inherited Members -PropertyConstraint.ReferenceType, -PropertyConstraint.ArgumentType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyConstraint.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[PropertyConstraint.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -225,7 +226,7 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -239,7 +240,7 @@ public override void Draw(Canvas canvas, TMatrix matTBase, TMatrix matTAct, bool #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs)

    The canvas has icon information.

    @@ -251,7 +252,7 @@ public override void Draw(Canvas canvas, TMatrix matTBase, TMatrix matTAct, bool

    The action transformation.

    -`bHide` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHide` bool

    The hide flag.

    diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.ReferenceCylindrical.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.ReferenceCylindrical.md index e3504b9926..9945cfc5f7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.ReferenceCylindrical.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.ReferenceCylindrical.md @@ -1,4 +1,5 @@ -# Class ReferenceCylindrical +# Class ReferenceCylindrical + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll @@ -11,9 +12,9 @@ public class ReferenceCylindrical : Reference, IObservableObject, IDisposableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Reference ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, INamed, @@ -164,7 +165,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -195,11 +196,11 @@ protected ReferenceCylindrical(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. @@ -241,7 +242,7 @@ public string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -255,7 +256,7 @@ public Marker GetActionMarker() #### Returns - Marker + [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) The action marker. @@ -297,7 +298,7 @@ public Marker GetBaseMarker() #### Returns - Marker + [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) The base marker. @@ -339,21 +340,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlRootEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlRootEle` XmlElement The XmlDocument for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.ReferenceRevolute.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.ReferenceRevolute.md index 999430b61f..3cf5efd7ce 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.ReferenceRevolute.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.ReferenceRevolute.md @@ -1,4 +1,5 @@ -# Class ReferenceRevolute +# Class ReferenceRevolute + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll @@ -11,9 +12,9 @@ public class ReferenceRevolute : Reference, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Reference ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, INamed, @@ -168,7 +169,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -199,11 +200,11 @@ protected ReferenceRevolute(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. @@ -245,7 +246,7 @@ public string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -259,7 +260,7 @@ public Marker GetActionMarker() #### Returns - Marker + [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) The action marker. @@ -301,7 +302,7 @@ public Marker GetBaseMarker() #### Returns - Marker + [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) The base marker. @@ -343,21 +344,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlRootEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlRootEle` XmlElement The XmlDocument for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.ReferenceTranslational.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.ReferenceTranslational.md index 34ea1f040f..cd57788bfa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.ReferenceTranslational.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.ReferenceTranslational.md @@ -1,4 +1,5 @@ -# Class ReferenceTranslational +# Class ReferenceTranslational + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll @@ -11,9 +12,9 @@ public class ReferenceTranslational : Reference, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Reference ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, INamed, @@ -165,7 +166,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -196,11 +197,11 @@ protected ReferenceTranslational(SerializationInfo info, StreamingContext contex #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. @@ -242,7 +243,7 @@ public string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -256,21 +257,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlRootEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlRootEle` XmlElement The XmlDocument for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.RestrictionBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.RestrictionBase.md index 7be1405fcd..59c65989b4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.RestrictionBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.RestrictionBase.md @@ -1,4 +1,5 @@ -# Class RestrictionBase +# Class RestrictionBase + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll @@ -11,9 +12,9 @@ public abstract class RestrictionBase : LinkContainer, IObservableObject, IDispo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [RestrictionBase](VM.Managed.DAFUL.Constraints.RestrictionBase.md) @@ -80,7 +81,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -121,7 +122,7 @@ public ExpressionValueVariable BoundaryPenetration { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ExponentOfPenetration @@ -133,7 +134,7 @@ public ExpressionValueVariable ExponentOfPenetration { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MaxDampingCoefficient @@ -145,7 +146,7 @@ public ExpressionValueVariable MaxDampingCoefficient { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Minus @@ -157,7 +158,7 @@ public ExpressionValueVariable Minus { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Plus @@ -169,7 +170,7 @@ public ExpressionValueVariable Plus { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### StiffnessCoefficient @@ -181,7 +182,7 @@ public ExpressionValueVariable StiffnessCoefficient { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### UseMinus @@ -193,7 +194,7 @@ public bool UseMinus { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UsePlus @@ -205,7 +206,7 @@ public bool UsePlus { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -233,7 +234,7 @@ public bool IsUseRestriction() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if [use restriction]; otherwise, false. @@ -247,7 +248,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.RestrictionDisplacement.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.RestrictionDisplacement.md index 60d800d8cf..4dbec3ad42 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.RestrictionDisplacement.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.RestrictionDisplacement.md @@ -1,4 +1,5 @@ -# Class RestrictionDisplacement +# Class RestrictionDisplacement + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll @@ -11,9 +12,9 @@ public sealed class RestrictionDisplacement : RestrictionBase, IObservableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [RestrictionBase](VM.Managed.DAFUL.Constraints.RestrictionBase.md) ← [RestrictionDisplacement](VM.Managed.DAFUL.Constraints.RestrictionDisplacement.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.RestrictionRotationalAngle.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.RestrictionRotationalAngle.md index 7a911f323c..6e90bceb98 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.RestrictionRotationalAngle.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.RestrictionRotationalAngle.md @@ -1,4 +1,5 @@ -# Class RestrictionRotationalAngle +# Class RestrictionRotationalAngle + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll @@ -11,9 +12,9 @@ public sealed class RestrictionRotationalAngle : RestrictionBase, IObservableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [RestrictionBase](VM.Managed.DAFUL.Constraints.RestrictionBase.md) ← [RestrictionRotationalAngle](VM.Managed.DAFUL.Constraints.RestrictionRotationalAngle.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Revolute.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Revolute.md index a09be2fb92..daf309d686 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Revolute.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Revolute.md @@ -1,4 +1,5 @@ -# Class Revolute +# Class Revolute + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll @@ -11,15 +12,15 @@ public class Revolute : Constraint, IObservableObject, IDispos #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← [Constraint](VM.Managed.DAFUL.Constraints.Constraint\-1.md) ← [Revolute](VM.Managed.DAFUL.Constraints.Revolute.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -74,65 +75,65 @@ IForceComponent [Constraint.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.Constraints.Constraint\-1.md\#VM\_Managed\_DAFUL\_Constraints\_Constraint\_1\_Initialize\_VM\_Unit\_ConvertFactor\_), [Constraint.Generable](VM.Managed.DAFUL.Constraints.Constraint\-1.md\#VM\_Managed\_DAFUL\_Constraints\_Constraint\_1\_Generable), -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -231,7 +232,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -270,7 +271,7 @@ public Revolute(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the revolute constraint. @@ -286,7 +287,7 @@ public override bool PreventDuplicatedRBE { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReportTypeImpl @@ -312,7 +313,7 @@ public Marker GetActionMarker() #### Returns - Marker + [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) The action marker. @@ -354,7 +355,7 @@ public Marker GetBaseMarker() #### Returns - Marker + [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) The base marker. @@ -410,7 +411,7 @@ protected override void MakeReferenceImpl(LinkedList lstRef) #### Parameters -`lstRef` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) +`lstRef` LinkedList

    The container.

    diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Screw.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Screw.md index 512b447a07..db00d22c55 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Screw.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Screw.md @@ -1,4 +1,5 @@ -# Class Screw +# Class Screw + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCP.dll @@ -11,16 +12,16 @@ public class Screw : Constraint, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← -Constraint ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← +[Constraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs) ← [Screw](VM.Managed.DAFUL.Constraints.Screw.md) #### Implements @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -69,67 +70,67 @@ ITorqueReferenceForBearing #### Inherited Members -Constraint.Initialize\(Unit.ConvertFactor\), -Constraint.Generable, -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Constraint.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Constraint.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -228,7 +229,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -267,7 +268,7 @@ public Screw(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the screw constraint. @@ -283,7 +284,7 @@ public override bool PreventDuplicatedRBE { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReportTypeImpl @@ -323,7 +324,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -337,7 +338,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Translational.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Translational.md index 57f9b88cb2..6a550ce816 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Translational.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Translational.md @@ -1,4 +1,5 @@ -# Class Translational +# Class Translational + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCB.dll @@ -11,15 +12,15 @@ public class Translational : Constraint, IObservableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← [Constraint](VM.Managed.DAFUL.Constraints.Constraint\-1.md) ← [Translational](VM.Managed.DAFUL.Constraints.Translational.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -73,65 +74,65 @@ IReferencable [Constraint.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.Constraints.Constraint\-1.md\#VM\_Managed\_DAFUL\_Constraints\_Constraint\_1\_Initialize\_VM\_Unit\_ConvertFactor\_), [Constraint.Generable](VM.Managed.DAFUL.Constraints.Constraint\-1.md\#VM\_Managed\_DAFUL\_Constraints\_Constraint\_1\_Generable), -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -230,7 +231,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -269,7 +270,7 @@ public Translational(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the translational constraint. @@ -285,7 +286,7 @@ public override bool PreventDuplicatedRBE { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReportTypeImpl diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Universal.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Universal.md index a4cff220e3..243d62fc83 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Universal.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.Universal.md @@ -1,4 +1,5 @@ -# Class Universal +# Class Universal + Namespace: [VM.Managed.DAFUL.Constraints](VM.Managed.DAFUL.Constraints.md) Assembly: VMDCP.dll @@ -11,16 +12,16 @@ public class Universal : Constraint, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← -Constraint ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← +[Constraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs) ← [Universal](VM.Managed.DAFUL.Constraints.Universal.md) #### Implements @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -69,67 +70,67 @@ ITorqueReferenceForBearing #### Inherited Members -Constraint.Initialize\(Unit.ConvertFactor\), -Constraint.Generable, -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Constraint.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Constraint.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -228,7 +229,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -267,7 +268,7 @@ public Universal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the universal constraint. @@ -283,7 +284,7 @@ public override bool PreventDuplicatedRBE { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReportTypeImpl @@ -309,7 +310,7 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -337,7 +338,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -351,7 +352,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.md index 8be93e12fe..88828189ce 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Constraints.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Constraints +# Namespace VM.Managed.DAFUL.Constraints + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.AutoContact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.AutoContact.md index ddc9f216d0..4cf0c1083c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.AutoContact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.AutoContact.md @@ -1,4 +1,5 @@ -# Class AutoContact +# Class AutoContact + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,14 +12,14 @@ public class AutoContact : Contact, IObservableObject, IDis #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [Contact](VM.Managed.DAFUL.Contact.Contact\-1.md) ← [AutoContact](VM.Managed.DAFUL.Contact.AutoContact.md) @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -76,34 +77,34 @@ IReferencable [Contact.ReferenceType](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ReferenceType), [Contact.ArgumentType](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ArgumentType), [Contact.ReportTypeImpl](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ReportTypeImpl), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -202,7 +203,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -241,7 +242,7 @@ public AutoContact(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the contact. @@ -339,7 +340,7 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -353,7 +354,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -373,21 +374,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -401,7 +402,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.AutoContactInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.AutoContactInfo.md index 292e844155..c59b6af564 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.AutoContactInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.AutoContactInfo.md @@ -1,4 +1,5 @@ -# Class AutoContactInfo +# Class AutoContactInfo + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,12 +12,12 @@ public class AutoContactInfo : SubEntity, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [AutoContactInfo](VM.Managed.DAFUL.Contact.AutoContactInfo.md) #### Implements @@ -26,7 +27,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -46,17 +47,17 @@ IHasID #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -149,7 +150,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -214,7 +215,7 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsUse @@ -226,7 +227,7 @@ public bool IsUse { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -238,7 +239,7 @@ public override string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SubName @@ -250,7 +251,7 @@ public string SubName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### \_Contact @@ -284,7 +285,7 @@ public void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -298,7 +299,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -316,7 +317,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.CVCV.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.CVCV.md index 1b909bd22f..cbbe1b7aab 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.CVCV.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.CVCV.md @@ -1,4 +1,5 @@ -# Class CVCV +# Class CVCV + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -12,15 +13,15 @@ public class CVCV : ContactConstraint, IObservableObject, IDisposa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← [ContactConstraint](VM.Managed.DAFUL.Contact.ContactConstraint\-1.md) ← [CVCV](VM.Managed.DAFUL.Contact.CVCV.md) @@ -31,7 +32,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -72,65 +73,65 @@ IEnableForSimulationScenario [ContactConstraint.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](VM.Managed.DAFUL.Contact.ContactConstraint\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactConstraint\_1\_GetModelNavigatorInformationImpl\_System\_Xml\_XmlDocument\_System\_Xml\_XmlElement\_System\_Boolean\_), [ContactConstraint.TargetType](VM.Managed.DAFUL.Contact.ContactConstraint\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactConstraint\_1\_TargetType), [ContactConstraint.Use](VM.Managed.DAFUL.Contact.ContactConstraint\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactConstraint\_1\_Use), -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -229,7 +230,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -268,7 +269,7 @@ public CVCV(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the [curve to cam] contact. @@ -320,7 +321,7 @@ public override string TargetType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Use @@ -332,7 +333,7 @@ public override bool Use { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -346,7 +347,7 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -360,7 +361,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -380,21 +381,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.CYTMC.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.CYTMC.md index 00a74aa68c..3f0a15875f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.CYTMC.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.CYTMC.md @@ -1,4 +1,5 @@ -# Class CYTMC +# Class CYTMC + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,14 +12,14 @@ public class CYTMC : Contact2Dot5D, IObservableObject, IDisposabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [Contact](VM.Managed.DAFUL.Contact.Contact\-1.md) ← [Contact2Dot5D](VM.Managed.DAFUL.Contact.Contact2Dot5D\-1.md) ← [CYTMC](VM.Managed.DAFUL.Contact.CYTMC.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -82,34 +83,34 @@ IEntityRelation [Contact.ReferenceType](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ReferenceType), [Contact.ArgumentType](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ArgumentType), [Contact.ReportTypeImpl](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ReportTypeImpl), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -208,7 +209,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -247,7 +248,7 @@ public CYTMC(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the 2D contact. @@ -313,7 +314,7 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -327,7 +328,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -347,7 +348,7 @@ public override IEnumerable GetChildList() #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) + IEnumerable Child list diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.Contact-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.Contact-1.md index 55680a72cb..bc2ea6f634 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.Contact-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.Contact-1.md @@ -1,4 +1,5 @@ -# Class Contact +# Class Contact + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -15,14 +16,14 @@ public abstract class Contact : Entity, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [Contact](VM.Managed.DAFUL.Contact.Contact\-1.md) #### Implements @@ -32,7 +33,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -64,34 +65,34 @@ IReportable #### Inherited Members -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -190,7 +191,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -229,7 +230,7 @@ public Contact(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the contact. @@ -257,7 +258,7 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Hide @@ -269,7 +270,7 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReferenceType @@ -281,7 +282,7 @@ public virtual string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ReportTypeImpl @@ -307,7 +308,7 @@ public virtual void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. @@ -321,7 +322,7 @@ protected override void LinkRequestDestroy(object objNotifier, LinkEventArgs arg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -339,7 +340,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -365,7 +366,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -387,7 +388,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.Contact2D-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.Contact2D-1.md index e443777100..1a5ec3b1d8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.Contact2D-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.Contact2D-1.md @@ -1,4 +1,5 @@ -# Class Contact2D +# Class Contact2D + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -17,14 +18,14 @@ The type of the property. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [Contact](VM.Managed.DAFUL.Contact.Contact\-1.md) ← [Contact2D](VM.Managed.DAFUL.Contact.Contact2D\-1.md) @@ -35,7 +36,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -81,34 +82,34 @@ IEntityRelation [Contact.ReferenceType](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ReferenceType), [Contact.ArgumentType](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ArgumentType), [Contact.ReportTypeImpl](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ReportTypeImpl), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -207,7 +208,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -246,7 +247,7 @@ public Contact2D(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the 2D contact. @@ -300,7 +301,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.Contact2Dot5D-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.Contact2Dot5D-1.md index 2874f39945..91ab226f38 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.Contact2Dot5D-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.Contact2Dot5D-1.md @@ -1,4 +1,5 @@ -# Class Contact2Dot5D +# Class Contact2Dot5D + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -18,14 +19,14 @@ The type of the property. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [Contact](VM.Managed.DAFUL.Contact.Contact\-1.md) ← [Contact2Dot5D](VM.Managed.DAFUL.Contact.Contact2Dot5D\-1.md) @@ -36,7 +37,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -83,34 +84,34 @@ IEntityRelation [Contact.ReferenceType](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ReferenceType), [Contact.ArgumentType](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ArgumentType), [Contact.ReportTypeImpl](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ReportTypeImpl), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -209,7 +210,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -248,7 +249,7 @@ public Contact2Dot5D(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the 2.5D contact. @@ -290,7 +291,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -310,7 +311,7 @@ public virtual IEnumerable GetChildList() #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) + IEnumerable Child list @@ -324,21 +325,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.Contact3D-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.Contact3D-1.md index 0841451fdc..df37ca405b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.Contact3D-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.Contact3D-1.md @@ -1,4 +1,5 @@ -# Class Contact3D +# Class Contact3D + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -17,14 +18,14 @@ The type of the property. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [Contact](VM.Managed.DAFUL.Contact.Contact\-1.md) ← [Contact3D](VM.Managed.DAFUL.Contact.Contact3D\-1.md) @@ -35,7 +36,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -83,34 +84,34 @@ IReferencable [Contact.ReferenceType](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ReferenceType), [Contact.ArgumentType](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ArgumentType), [Contact.ReportTypeImpl](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ReportTypeImpl), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -209,7 +210,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -248,7 +249,7 @@ public Contact3D(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the 3D contact. @@ -290,7 +291,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -310,7 +311,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -324,7 +325,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactConstraint-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactConstraint-1.md index 80c6ce189d..4433d66b92 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactConstraint-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactConstraint-1.md @@ -1,4 +1,5 @@ -# Class ContactConstraint +# Class ContactConstraint + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -17,15 +18,15 @@ The type of the property. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← [ContactConstraint](VM.Managed.DAFUL.Contact.ContactConstraint\-1.md) #### Implements @@ -35,7 +36,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -73,65 +74,65 @@ IEnableForSimulationScenario #### Inherited Members -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -230,7 +231,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -269,7 +270,7 @@ public ContactConstraint(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the [contact constraint]. @@ -285,7 +286,7 @@ public abstract string TargetType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Use @@ -297,7 +298,7 @@ public abstract bool Use { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -309,21 +310,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactFunction.FunctionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactFunction.FunctionType.md index 53dc0a0d62..baffdf5be9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactFunction.FunctionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactFunction.FunctionType.md @@ -1,4 +1,5 @@ -# Enum ContactFunction.FunctionType +# Enum ContactFunction.FunctionType + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactFunction.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactFunction.md index 1fa15c1c89..d6e60da874 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactFunction.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactFunction.md @@ -1,4 +1,5 @@ -# Class ContactFunction +# Class ContactFunction + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -12,9 +13,9 @@ public abstract class ContactFunction : LinkContainer, IObservableObject, IDispo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ContactFunction](VM.Managed.DAFUL.Contact.ContactFunction.md) @@ -81,7 +82,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -140,7 +141,7 @@ public ExpressionValueVariable BufferRangeFactor { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MaxStepFactor @@ -152,7 +153,7 @@ public ExpressionValueVariable MaxStepFactor { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Type @@ -192,7 +193,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -206,7 +207,7 @@ public virtual void ReadTemplate(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -220,7 +221,7 @@ public virtual void WriteTemplate(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactGeom2D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactGeom2D.md index 76866c0431..9e929d8ba8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactGeom2D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactGeom2D.md @@ -1,4 +1,5 @@ -# Class ContactGeom2D +# Class ContactGeom2D + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,14 +12,14 @@ public class ContactGeom2D : ContactGeomBase, IObservable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [ContactGeomBase](VM.Managed.DAFUL.Contact.ContactGeomBase\-1.md) ← [ContactGeom2D](VM.Managed.DAFUL.Contact.ContactGeom2D.md) @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -62,34 +63,34 @@ IContactGeometry [ContactGeomBase.ReferenceMarker](VM.Managed.DAFUL.Contact.ContactGeomBase\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactGeomBase\_1\_ReferenceMarker), [ContactGeomBase.GeometryFullName](VM.Managed.DAFUL.Contact.ContactGeomBase\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactGeomBase\_1\_GeometryFullName), [ContactGeomBase.HasLayerExplicitly](VM.Managed.DAFUL.Contact.ContactGeomBase\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactGeomBase\_1\_HasLayerExplicitly), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -188,7 +189,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -227,7 +228,7 @@ public ContactGeom2D(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the 2D contact geometry . @@ -255,7 +256,7 @@ public override string GeometryFullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### MaxPenetration @@ -267,7 +268,7 @@ public ExpressionValueVariable MaxPenetration { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ParentBody @@ -305,21 +306,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -343,7 +344,7 @@ The direction. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -367,7 +368,7 @@ The normal direction. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -381,7 +382,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -399,7 +400,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactGeom2Dot5D-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactGeom2Dot5D-1.md index 96c2bb6a8c..017aa17a08 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactGeom2Dot5D-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactGeom2Dot5D-1.md @@ -1,4 +1,5 @@ -# Class ContactGeom2Dot5D +# Class ContactGeom2Dot5D + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -15,14 +16,14 @@ public abstract class ContactGeom2Dot5D : ContactGeomBase, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [ContactGeomBase](VM.Managed.DAFUL.Contact.ContactGeomBase\-1.md) ← [ContactGeom2Dot5D](VM.Managed.DAFUL.Contact.ContactGeom2Dot5D\-1.md) @@ -33,7 +34,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -67,34 +68,34 @@ IContactGeometry [ContactGeomBase.ReferenceMarker](VM.Managed.DAFUL.Contact.ContactGeomBase\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactGeomBase\_1\_ReferenceMarker), [ContactGeomBase.GeometryFullName](VM.Managed.DAFUL.Contact.ContactGeomBase\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactGeomBase\_1\_GeometryFullName), [ContactGeomBase.HasLayerExplicitly](VM.Managed.DAFUL.Contact.ContactGeomBase\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactGeomBase\_1\_HasLayerExplicitly), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -193,7 +194,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -232,7 +233,7 @@ public ContactGeom2Dot5D(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the 2.5D contact geometry . @@ -260,7 +261,7 @@ public ExpressionValueVariable MaxPenetration { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TargetGeometry @@ -308,7 +309,7 @@ The direction. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -332,7 +333,7 @@ The normal direction. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactGeom3D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactGeom3D.md index 7aa5410a75..dd02d6a28d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactGeom3D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactGeom3D.md @@ -1,4 +1,5 @@ -# Class ContactGeom3D +# Class ContactGeom3D + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,14 +12,14 @@ public class ContactGeom3D : ContactGeomBase, IObservable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [ContactGeomBase](VM.Managed.DAFUL.Contact.ContactGeomBase\-1.md) ← [ContactGeom3D](VM.Managed.DAFUL.Contact.ContactGeom3D.md) @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -62,34 +63,34 @@ IContactGeometry [ContactGeomBase.ReferenceMarker](VM.Managed.DAFUL.Contact.ContactGeomBase\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactGeomBase\_1\_ReferenceMarker), [ContactGeomBase.GeometryFullName](VM.Managed.DAFUL.Contact.ContactGeomBase\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactGeomBase\_1\_GeometryFullName), [ContactGeomBase.HasLayerExplicitly](VM.Managed.DAFUL.Contact.ContactGeomBase\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactGeomBase\_1\_HasLayerExplicitly), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -188,7 +189,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -227,7 +228,7 @@ public ContactGeom3D(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the 3D contact geometry. @@ -255,7 +256,7 @@ public override string GeometryFullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### HalfThickness @@ -267,7 +268,7 @@ public ExpressionValueVariable HalfThickness { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### IsRepresentedAsBSurface @@ -279,7 +280,7 @@ public virtual bool IsRepresentedAsBSurface { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MaxPenetration @@ -291,7 +292,7 @@ public ExpressionValueVariable MaxPenetration { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### SurfaceSmoothingType @@ -329,21 +330,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -367,7 +368,7 @@ The normal direction. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -391,7 +392,7 @@ The normal direction. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -405,7 +406,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -423,7 +424,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -441,7 +442,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactGeomBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactGeomBase-1.md index 714c9dcdf6..8a2b6f312a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactGeomBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactGeomBase-1.md @@ -1,4 +1,5 @@ -# Class ContactGeomBase +# Class ContactGeomBase + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -17,14 +18,14 @@ The type of the property. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [ContactGeomBase](VM.Managed.DAFUL.Contact.ContactGeomBase\-1.md) #### Implements @@ -34,7 +35,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -60,34 +61,34 @@ IGroup #### Inherited Members -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -186,7 +187,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -225,7 +226,7 @@ public ContactGeomBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the contact geometry @@ -241,7 +242,7 @@ public virtual string GeometryFullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### HasLayerExplicitly @@ -253,7 +254,7 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReferenceMarker @@ -265,7 +266,7 @@ public InvisibleMarker ReferenceMarker { get; set; } #### Property Value - InvisibleMarker + [InvisibleMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) ## Methods @@ -279,7 +280,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactGeomBody-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactGeomBody-1.md index 727bbcc7ff..3cb76c6fc1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactGeomBody-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactGeomBody-1.md @@ -1,4 +1,5 @@ -# Class ContactGeomBody +# Class ContactGeomBody + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -15,14 +16,14 @@ public abstract class ContactGeomBody : ContactGeom2Dot5D, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [ContactGeomBase](VM.Managed.DAFUL.Contact.ContactGeomBase\-1.md) ← [ContactGeom2Dot5D](VM.Managed.DAFUL.Contact.ContactGeom2Dot5D\-1.md) ← [ContactGeomBody](VM.Managed.DAFUL.Contact.ContactGeomBody\-1.md) @@ -34,7 +35,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -74,34 +75,34 @@ IContactGeometry [ContactGeomBase.ReferenceMarker](VM.Managed.DAFUL.Contact.ContactGeomBase\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactGeomBase\_1\_ReferenceMarker), [ContactGeomBase.GeometryFullName](VM.Managed.DAFUL.Contact.ContactGeomBase\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactGeomBase\_1\_GeometryFullName), [ContactGeomBase.HasLayerExplicitly](VM.Managed.DAFUL.Contact.ContactGeomBase\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactGeomBase\_1\_HasLayerExplicitly), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -200,7 +201,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -239,7 +240,7 @@ public ContactGeomBody(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the 2D contact geometry . @@ -267,7 +268,7 @@ public override string GeometryFullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GeometryParentKey @@ -305,21 +306,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [b has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -343,7 +344,7 @@ The direction. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -367,7 +368,7 @@ The normal direction. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -381,7 +382,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -399,7 +400,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactGeomCurveset.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactGeomCurveset.md index eca8cd6c90..9ca6c5562f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactGeomCurveset.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactGeomCurveset.md @@ -1,4 +1,5 @@ -# Class ContactGeomCurveset +# Class ContactGeomCurveset + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,14 +12,14 @@ public class ContactGeomCurveset : ContactGeom2Dot5D ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [ContactGeomBase](VM.Managed.DAFUL.Contact.ContactGeomBase\-1.md) ← [ContactGeom2Dot5D](VM.Managed.DAFUL.Contact.ContactGeom2Dot5D\-1.md) ← [ContactGeomCurveset](VM.Managed.DAFUL.Contact.ContactGeomCurveset.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -70,34 +71,34 @@ IContactGeometry [ContactGeomBase.ReferenceMarker](VM.Managed.DAFUL.Contact.ContactGeomBase\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactGeomBase\_1\_ReferenceMarker), [ContactGeomBase.GeometryFullName](VM.Managed.DAFUL.Contact.ContactGeomBase\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactGeomBase\_1\_GeometryFullName), [ContactGeomBase.HasLayerExplicitly](VM.Managed.DAFUL.Contact.ContactGeomBase\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactGeomBase\_1\_HasLayerExplicitly), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -196,7 +197,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -235,7 +236,7 @@ public ContactGeomCurveset(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the contact geometry . @@ -263,7 +264,7 @@ public override string GeometryFullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GeometryParentKey @@ -339,11 +340,11 @@ public IContactableRigid2D[] GetCurvesetsIncludeSlice(int nSlice, bool bOrigin) #### Parameters -`nSlice` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nSlice` int The number of slice. -`bOrigin` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bOrigin` bool The original geometry position. @@ -363,7 +364,7 @@ public IContactableRigid2D[] GetCurvesetsIncludeSlice(bool bOrigin) #### Parameters -`bOrigin` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bOrigin` bool The original geometry position. @@ -383,21 +384,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [b has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -421,7 +422,7 @@ The normal direction. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -445,7 +446,7 @@ The normal direction. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -499,7 +500,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -517,7 +518,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -531,7 +532,7 @@ protected override void OnLinkReserved(ILink link, object objNotifier, EventArgs `link` ILink -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object -`args` [EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) +`args` EventArgs diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactGeomCylinder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactGeomCylinder.md index fef5fe3ce7..f17fb5473d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactGeomCylinder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactGeomCylinder.md @@ -1,4 +1,5 @@ -# Class ContactGeomCylinder +# Class ContactGeomCylinder + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,14 +12,14 @@ public class ContactGeomCylinder : ContactGeomBody, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [ContactGeomBase](VM.Managed.DAFUL.Contact.ContactGeomBase\-1.md) ← [ContactGeom2Dot5D](VM.Managed.DAFUL.Contact.ContactGeom2Dot5D\-1.md) ← [ContactGeomBody](VM.Managed.DAFUL.Contact.ContactGeomBody\-1.md) ← @@ -31,7 +32,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -80,34 +81,34 @@ IContactGeometry [ContactGeomBase.ReferenceMarker](VM.Managed.DAFUL.Contact.ContactGeomBase\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactGeomBase\_1\_ReferenceMarker), [ContactGeomBase.GeometryFullName](VM.Managed.DAFUL.Contact.ContactGeomBase\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactGeomBase\_1\_GeometryFullName), [ContactGeomBase.HasLayerExplicitly](VM.Managed.DAFUL.Contact.ContactGeomBase\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactGeomBase\_1\_HasLayerExplicitly), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -206,7 +207,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -245,7 +246,7 @@ public ContactGeomCylinder(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the 2D contact geometry . diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactGeomSphere.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactGeomSphere.md index f29421e1cd..2defe2c7b2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactGeomSphere.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactGeomSphere.md @@ -1,4 +1,5 @@ -# Class ContactGeomSphere +# Class ContactGeomSphere + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,14 +12,14 @@ public class ContactGeomSphere : ContactGeomBody, IOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [ContactGeomBase](VM.Managed.DAFUL.Contact.ContactGeomBase\-1.md) ← [ContactGeom2Dot5D](VM.Managed.DAFUL.Contact.ContactGeom2Dot5D\-1.md) ← [ContactGeomBody](VM.Managed.DAFUL.Contact.ContactGeomBody\-1.md) ← @@ -31,7 +32,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -80,34 +81,34 @@ IContactGeometry [ContactGeomBase.ReferenceMarker](VM.Managed.DAFUL.Contact.ContactGeomBase\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactGeomBase\_1\_ReferenceMarker), [ContactGeomBase.GeometryFullName](VM.Managed.DAFUL.Contact.ContactGeomBase\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactGeomBase\_1\_GeometryFullName), [ContactGeomBase.HasLayerExplicitly](VM.Managed.DAFUL.Contact.ContactGeomBase\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactGeomBase\_1\_HasLayerExplicitly), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -206,7 +207,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -245,7 +246,7 @@ public ContactGeomSphere(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the 2D contact geometry . diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactHelper.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactHelper.md index 4e2f48c4c7..b3be4b1c64 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactHelper.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactHelper.md @@ -1,4 +1,5 @@ -# Class ContactHelper +# Class ContactHelper + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,7 +12,7 @@ public class ContactHelper #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ContactHelper](VM.Managed.DAFUL.Contact.ContactHelper.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactStandard.CalculationMethodType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactStandard.CalculationMethodType.md index dc36922669..0d717bf5ee 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactStandard.CalculationMethodType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactStandard.CalculationMethodType.md @@ -1,4 +1,5 @@ -# Enum ContactStandard.CalculationMethodType +# Enum ContactStandard.CalculationMethodType + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactStandard.DampingCoefficientType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactStandard.DampingCoefficientType.md index d82c3e9056..d0d8225bf1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactStandard.DampingCoefficientType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactStandard.DampingCoefficientType.md @@ -1,4 +1,5 @@ -# Enum ContactStandard.DampingCoefficientType +# Enum ContactStandard.DampingCoefficientType + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactStandard.InputType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactStandard.InputType.md index fcce3c4df2..ce0e009eeb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactStandard.InputType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactStandard.InputType.md @@ -1,4 +1,5 @@ -# Enum ContactStandard.InputType +# Enum ContactStandard.InputType + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactStandard.StiffnessCoefficientType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactStandard.StiffnessCoefficientType.md index 4d4c63532f..acfdf6a3f6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactStandard.StiffnessCoefficientType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactStandard.StiffnessCoefficientType.md @@ -1,4 +1,5 @@ -# Enum ContactStandard.StiffnessCoefficientType +# Enum ContactStandard.StiffnessCoefficientType + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactStandard.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactStandard.md index 10474b0abf..2d14efaded 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactStandard.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactStandard.md @@ -1,4 +1,5 @@ -# Class ContactStandard +# Class ContactStandard + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,9 +12,9 @@ public sealed class ContactStandard : ContactFunction, IObservableObject, IDispo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ContactFunction](VM.Managed.DAFUL.Contact.ContactFunction.md) ← [ContactStandard](VM.Managed.DAFUL.Contact.ContactStandard.md) @@ -115,7 +116,7 @@ protected LinkAttribute __a$_a_VM.Models.Pre.LinkAttribute #### Field Value - LinkAttribute + [LinkAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre.Aspects/Attributes/LinkAttribute.cs) ### \_\_a$\_a\_VM.Models.Pre.LinkUpdateAttribute @@ -125,7 +126,7 @@ protected LinkUpdateAttribute __a$_a_VM.Models.Pre.LinkUpdateAttribute #### Field Value - LinkUpdateAttribute + [LinkUpdateAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre.Aspects/Attributes/LinkUpdateAttribute.cs) ## Properties @@ -139,7 +140,7 @@ public ExpressionValueVariable ActionPoissonsRatio { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ActionYoungsModulus @@ -151,7 +152,7 @@ public ExpressionValueVariable ActionYoungsModulus { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### BasePoissonsRatio @@ -163,7 +164,7 @@ public ExpressionValueVariable BasePoissonsRatio { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### BaseYoungsModulus @@ -175,7 +176,7 @@ public ExpressionValueVariable BaseYoungsModulus { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### BounceOffDampingFactor @@ -187,7 +188,7 @@ public ExpressionValueVariable BounceOffDampingFactor { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### BoundaryPenetration @@ -199,7 +200,7 @@ public ExpressionValueVariable BoundaryPenetration { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### CalculatedFromMaterial @@ -211,7 +212,7 @@ public bool CalculatedFromMaterial { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CalculationMethodOfContactArea @@ -235,7 +236,7 @@ public ExpressionValueVariable DampCoef { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DampCoefRatio @@ -247,7 +248,7 @@ public ExpressionValueVariable DampCoefRatio { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DampingSpline @@ -259,7 +260,7 @@ public Spline DampingSpline { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### DampingType @@ -283,7 +284,7 @@ public ExpressionValueVariable DynFriCoef { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DynThreshold @@ -295,7 +296,7 @@ public ExpressionValueVariable DynThreshold { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### FrictionSpline @@ -307,7 +308,7 @@ public Spline FrictionSpline { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### FrictionSplineInfo @@ -343,7 +344,7 @@ public ExpressionValueVariable MaxSticDeform { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### StaFriCoef @@ -355,7 +356,7 @@ public ExpressionValueVariable StaFriCoef { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### SticVel @@ -367,7 +368,7 @@ public ExpressionValueVariable SticVel { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### StiffCoef @@ -379,7 +380,7 @@ public ExpressionValueVariable StiffCoef { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### StiffOrder @@ -391,7 +392,7 @@ public ExpressionValueVariable StiffOrder { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### StiffPerContactArea @@ -403,7 +404,7 @@ public ExpressionValueVariable StiffPerContactArea { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### StiffnessSpline @@ -415,7 +416,7 @@ public Spline StiffnessSpline { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### StiffnessType @@ -439,7 +440,7 @@ public ExpressionValueVariable ThicknessOfContactSurface { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Type @@ -463,7 +464,7 @@ public bool UseBounceOffDampingFactor { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseStiction @@ -475,7 +476,7 @@ public bool UseStiction { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -515,7 +516,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -529,9 +530,9 @@ protected override void OnLinkReserved(ILink link, object objNotifer, EventArgs `link` ILink -`objNotifer` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifer` object -`args` [EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) +`args` EventArgs ### ReadTemplate\(XmlReader\) @@ -543,7 +544,7 @@ public override void ReadTemplate(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -557,7 +558,7 @@ public override void WriteTemplate(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactUserSubroutine.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactUserSubroutine.md index 1a6846d7ad..645a8c0095 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactUserSubroutine.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ContactUserSubroutine.md @@ -1,4 +1,5 @@ -# Class ContactUserSubroutine +# Class ContactUserSubroutine + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,9 +12,9 @@ public sealed class ContactUserSubroutine : ContactFunction, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ContactFunction](VM.Managed.DAFUL.Contact.ContactFunction.md) ← [ContactUserSubroutine](VM.Managed.DAFUL.Contact.ContactUserSubroutine.md) @@ -127,7 +128,7 @@ public UserSubroutine UserSubroutine { get; set; } #### Property Value - UserSubroutine + [UserSubroutine](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSP/UserSubroutine.cs) ## Methods @@ -141,7 +142,7 @@ public override void ReadTemplate(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -155,7 +156,7 @@ public override void WriteTemplate(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.FrictionContactConstraint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.FrictionContactConstraint.md index 5f2388089b..b0e8263c2f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.FrictionContactConstraint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.FrictionContactConstraint.md @@ -1,4 +1,5 @@ -# Class FrictionContactConstraint +# Class FrictionContactConstraint + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,11 +12,11 @@ public class FrictionContactConstraint : Friction, IObservableObject, IDisposabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Friction ← +[Friction](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs) ← [FrictionContactConstraint](VM.Managed.DAFUL.Contact.FrictionContactConstraint.md) #### Implements @@ -33,20 +34,20 @@ IVerifiable #### Inherited Members -Friction.Initialize\(Unit.ConvertFactor\), -Friction.WriteTemplate\(XmlWriter\), -Friction.ReadTemplate\(XmlReader\), -Friction.GetConnector\(\), -Friction.OnDeserialization\(object\), -Friction.MuStatic, -Friction.MuDynamic, -Friction.StictionTransitionVelocity, -Friction.DynamicsThreshold, -Friction.MaximumStictionDeformation, -Friction.Effect, -Friction.ReactionForce, -Friction.BendingMoment, -Friction.IsUseFriction, +[Friction.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs), +[Friction.WriteTemplate\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs), +[Friction.ReadTemplate\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs), +[Friction.GetConnector\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs), +[Friction.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs), +[Friction.MuStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs), +[Friction.MuDynamic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs), +[Friction.StictionTransitionVelocity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs), +[Friction.DynamicsThreshold](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs), +[Friction.MaximumStictionDeformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs), +[Friction.Effect](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs), +[Friction.ReactionForce](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs), +[Friction.BendingMoment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs), +[Friction.IsUseFriction](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Friction.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -90,7 +91,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.FrictionSplineInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.FrictionSplineInfo.md index 7c50f6f4f3..e1e7c31264 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.FrictionSplineInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.FrictionSplineInfo.md @@ -1,4 +1,5 @@ -# Class FrictionSplineInfo +# Class FrictionSplineInfo + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,9 +12,9 @@ public class FrictionSplineInfo : LinkContainer, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [FrictionSplineInfo](VM.Managed.DAFUL.Contact.FrictionSplineInfo.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,7 +117,7 @@ public Spline FricSpline { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### NormalForce diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.GeneralContact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.GeneralContact.md index 860ca37357..ea6ec3df86 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.GeneralContact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.GeneralContact.md @@ -1,4 +1,5 @@ -# Class GeneralContact +# Class GeneralContact + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,14 +12,14 @@ public class GeneralContact : Contact, IObservableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [Contact](VM.Managed.DAFUL.Contact.Contact\-1.md) ← [GeneralContact](VM.Managed.DAFUL.Contact.GeneralContact.md) @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -82,34 +83,34 @@ IHasReplaceableEntity [Contact.ReferenceType](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ReferenceType), [Contact.ArgumentType](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ArgumentType), [Contact.ReportTypeImpl](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ReportTypeImpl), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -208,7 +209,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -247,7 +248,7 @@ public GeneralContact(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -297,7 +298,7 @@ protected virtual bool CanSwitchImpl { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReferenceType @@ -309,7 +310,7 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ReportTypeImpl @@ -335,7 +336,7 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -349,7 +350,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -369,21 +370,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -413,6 +414,24 @@ public static void InitializeEvent(Document3D doc) `doc` Document3D +### LinkRequestUpdate\(object, LinkEventArgs\) + +Request for update the linked object. + +```csharp +protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) +``` + +#### Parameters + +`objNotifier` object + +The linked object. + +`arg` LinkEventArgs + +The instance containing the event data. + ### ReadTemplateImpl\(XmlReader\) Reads the template document [implementation]. @@ -423,7 +442,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -445,7 +464,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.IContact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.IContact.md index 6bd77f0ae8..0fb57a550e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.IContact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.IContact.md @@ -1,4 +1,5 @@ -# Interface IContact +# Interface IContact + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -55,5 +56,5 @@ Property Property { get; set; } #### Property Value - Property + [Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.IContact2Dot5D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.IContact2Dot5D.md index f1207083a6..b772ab4de3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.IContact2Dot5D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.IContact2Dot5D.md @@ -1,4 +1,5 @@ -# Interface IContact2Dot5D +# Interface IContact2Dot5D + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.IContactGeometry2Dot5D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.IContactGeometry2Dot5D.md index 9871527c1b..936f6d9f2f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.IContactGeometry2Dot5D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.IContactGeometry2Dot5D.md @@ -1,4 +1,5 @@ -# Interface IContactGeometry2Dot5D +# Interface IContactGeometry2Dot5D + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MCTMC.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MCTMC.md index 7818ce364e..38d7ca6167 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MCTMC.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MCTMC.md @@ -1,4 +1,5 @@ -# Class MCTMC +# Class MCTMC + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,14 +12,14 @@ public class MCTMC : Contact2Dot5D, IObservableObject, IDisposabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [Contact](VM.Managed.DAFUL.Contact.Contact\-1.md) ← [Contact2Dot5D](VM.Managed.DAFUL.Contact.Contact2Dot5D\-1.md) ← [MCTMC](VM.Managed.DAFUL.Contact.MCTMC.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -82,34 +83,34 @@ IEntityRelation [Contact.ReferenceType](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ReferenceType), [Contact.ArgumentType](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ArgumentType), [Contact.ReportTypeImpl](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ReportTypeImpl), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -208,7 +209,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -247,7 +248,7 @@ public MCTMC(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the 2D contact. @@ -313,7 +314,7 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -327,7 +328,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -347,7 +348,7 @@ public override IEnumerable GetChildList() #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) + IEnumerable Child list diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MbyNContact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MbyNContact.md index 90fbedec3f..61008b7db8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MbyNContact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MbyNContact.md @@ -1,4 +1,5 @@ -# Class MbyNContact +# Class MbyNContact + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,14 +12,14 @@ public class MbyNContact : MultipleContactBase, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [Contact](VM.Managed.DAFUL.Contact.Contact\-1.md) ← [MultipleContactBase](VM.Managed.DAFUL.Contact.MultipleContactBase.md) ← [MbyNContact](VM.Managed.DAFUL.Contact.MbyNContact.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -83,34 +84,34 @@ IHasReplaceableEntity [Contact.ReferenceType](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ReferenceType), [Contact.ArgumentType](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ArgumentType), [Contact.ReportTypeImpl](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ReportTypeImpl), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -209,7 +210,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -248,7 +249,7 @@ public MbyNContact(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the contact. @@ -316,7 +317,7 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -358,21 +359,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -400,7 +401,7 @@ The type. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the specified object is interface; otherwise, false. @@ -414,7 +415,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -432,7 +433,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -446,7 +447,7 @@ protected override void OnLinkReserved(ILink link, object objNotifier, EventArgs `link` ILink -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object -`args` [EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) +`args` EventArgs diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MultiContactType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MultiContactType.md index 5087160584..f44aa63b4b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MultiContactType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MultiContactType.md @@ -1,4 +1,5 @@ -# Enum MultiContactType +# Enum MultiContactType + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MultiObjectContactConnection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MultiObjectContactConnection.md index 939947aa97..d7a7376127 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MultiObjectContactConnection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MultiObjectContactConnection.md @@ -1,4 +1,5 @@ -# Class MultiObjectContactConnection +# Class MultiObjectContactConnection + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,11 +12,11 @@ public class MultiObjectContactConnection : MultiObjectConnection, IObservableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -MultiObjectConnection ← +[MultiObjectConnection](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs) ← [MultiObjectContactConnection](VM.Managed.DAFUL.Contact.MultiObjectContactConnection.md) #### Implements @@ -33,9 +34,9 @@ IVerifiable #### Inherited Members -MultiObjectConnection.GetConnection\(object, object\), -MultiObjectConnection.Reset\(\), -MultiObjectConnection.Connection, +[MultiObjectConnection.GetConnection\(object, object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs), +[MultiObjectConnection.Reset\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs), +[MultiObjectConnection.Connection](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/MultiObject.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -79,7 +80,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -160,11 +161,11 @@ public override ObjectBase GetConnection(object obBase, object obAction) #### Parameters -`obBase` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obBase` object The base object for the connection object. -`obAction` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obAction` object The action object for the connection object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MultiObjectContactGeometryFinderBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MultiObjectContactGeometryFinderBase.md index 1509249ae1..fd4341c985 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MultiObjectContactGeometryFinderBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MultiObjectContactGeometryFinderBase.md @@ -1,4 +1,5 @@ -# Class MultiObjectContactGeometryFinderBase +# Class MultiObjectContactGeometryFinderBase + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,9 +12,9 @@ public abstract class MultiObjectContactGeometryFinderBase : LinkContainer, IObs #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MultiObjectContactGeometryFinderBase](VM.Managed.DAFUL.Contact.MultiObjectContactGeometryFinderBase.md) @@ -80,7 +81,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MultiObjectContactGeometryFinderByName.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MultiObjectContactGeometryFinderByName.md index 916ce3406f..c3d7a2c2d3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MultiObjectContactGeometryFinderByName.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MultiObjectContactGeometryFinderByName.md @@ -1,4 +1,5 @@ -# Class MultiObjectContactGeometryFinderByName +# Class MultiObjectContactGeometryFinderByName + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,9 +12,9 @@ public class MultiObjectContactGeometryFinderByName : MultiObjectContactGeometry #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MultiObjectContactGeometryFinderBase](VM.Managed.DAFUL.Contact.MultiObjectContactGeometryFinderBase.md) ← [MultiObjectContactGeometryFinderByName](VM.Managed.DAFUL.Contact.MultiObjectContactGeometryFinderByName.md) @@ -77,7 +78,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -132,7 +133,7 @@ public string ContactGeometryName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MultiObjectContactGeometryFinderSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MultiObjectContactGeometryFinderSimple.md index 9ae7fac88b..fe518058bd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MultiObjectContactGeometryFinderSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MultiObjectContactGeometryFinderSimple.md @@ -1,4 +1,5 @@ -# Class MultiObjectContactGeometryFinderSimple +# Class MultiObjectContactGeometryFinderSimple + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,9 +12,9 @@ public class MultiObjectContactGeometryFinderSimple : MultiObjectContactGeometry #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MultiObjectContactGeometryFinderBase](VM.Managed.DAFUL.Contact.MultiObjectContactGeometryFinderBase.md) ← [MultiObjectContactGeometryFinderSimple](VM.Managed.DAFUL.Contact.MultiObjectContactGeometryFinderSimple.md) @@ -77,7 +78,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MultipleContactBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MultipleContactBase.md index 8db8e89008..30eaac6b8a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MultipleContactBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MultipleContactBase.md @@ -1,4 +1,5 @@ -# Class MultipleContactBase +# Class MultipleContactBase + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -12,14 +13,14 @@ public abstract class MultipleContactBase : Contact, IObse #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [Contact](VM.Managed.DAFUL.Contact.Contact\-1.md) ← [MultipleContactBase](VM.Managed.DAFUL.Contact.MultipleContactBase.md) @@ -35,7 +36,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -80,34 +81,34 @@ IReferencable [Contact.ReferenceType](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ReferenceType), [Contact.ArgumentType](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ArgumentType), [Contact.ReportTypeImpl](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ReportTypeImpl), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -206,7 +207,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -245,7 +246,7 @@ public MultipleContactBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the contact. @@ -301,7 +302,7 @@ The type. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the specified object is contact; otherwise, false. @@ -327,13 +328,13 @@ The action body. The type. -`bSwitch` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bSwitch` bool The switch. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the specified object is contact; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MultipleContactInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MultipleContactInfo.md index 59239b08f0..5899f6e5b8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MultipleContactInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.MultipleContactInfo.md @@ -1,4 +1,5 @@ -# Class MultipleContactInfo +# Class MultipleContactInfo + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,9 +12,9 @@ public class MultipleContactInfo : LinkContainer, IObservableObject, IDisposable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MultipleContactInfo](VM.Managed.DAFUL.Contact.MultipleContactInfo.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -142,7 +143,7 @@ public bool IsFrontDirection { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### \_Geometry diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.NCombinationContact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.NCombinationContact.md index 9554f3a8b2..fee0ea10d7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.NCombinationContact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.NCombinationContact.md @@ -1,4 +1,5 @@ -# Class NCombinationContact +# Class NCombinationContact + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,14 +12,14 @@ public class NCombinationContact : MultipleContactBase, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [Contact](VM.Managed.DAFUL.Contact.Contact\-1.md) ← [MultipleContactBase](VM.Managed.DAFUL.Contact.MultipleContactBase.md) ← [NCombinationContact](VM.Managed.DAFUL.Contact.NCombinationContact.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -83,34 +84,34 @@ IHasReplaceableEntity [Contact.ReferenceType](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ReferenceType), [Contact.ArgumentType](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ArgumentType), [Contact.ReportTypeImpl](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ReportTypeImpl), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -209,7 +210,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -248,7 +249,7 @@ public NCombinationContact(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the contact. @@ -290,7 +291,7 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -304,21 +305,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -340,13 +341,13 @@ The object. The type. -`dic` [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)\> +`dic` Dictionary\> The create pair. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the specified object is interface; otherwise, false. @@ -360,7 +361,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -378,7 +379,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -392,7 +393,7 @@ protected override void OnLinkReserved(ILink link, object objNotifier, EventArgs `link` ILink -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object -`arg` [EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) +`arg` EventArgs diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PTCV.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PTCV.md index 2af2e641a9..a5bc0777ab 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PTCV.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PTCV.md @@ -1,4 +1,5 @@ -# Class PTCV +# Class PTCV + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -12,15 +13,15 @@ public class PTCV : ContactConstraint, IObservableObject, IDisposa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← [ContactConstraint](VM.Managed.DAFUL.Contact.ContactConstraint\-1.md) ← [PTCV](VM.Managed.DAFUL.Contact.PTCV.md) @@ -31,7 +32,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -72,65 +73,65 @@ IEnableForSimulationScenario [ContactConstraint.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](VM.Managed.DAFUL.Contact.ContactConstraint\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactConstraint\_1\_GetModelNavigatorInformationImpl\_System\_Xml\_XmlDocument\_System\_Xml\_XmlElement\_System\_Boolean\_), [ContactConstraint.TargetType](VM.Managed.DAFUL.Contact.ContactConstraint\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactConstraint\_1\_TargetType), [ContactConstraint.Use](VM.Managed.DAFUL.Contact.ContactConstraint\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactConstraint\_1\_Use), -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -229,7 +230,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -268,7 +269,7 @@ public PTCV(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the [point to cam] contact. @@ -294,7 +295,7 @@ protected override bool CanSwitchImpl { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PreventDuplicatedRBE @@ -306,7 +307,7 @@ public override bool PreventDuplicatedRBE { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReportTypeImpl @@ -330,7 +331,7 @@ public override string TargetType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Use @@ -342,7 +343,7 @@ public override bool Use { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -356,7 +357,7 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -370,7 +371,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -390,21 +391,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PTSF.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PTSF.md index a7bb039f3c..5120d944d1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PTSF.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PTSF.md @@ -1,4 +1,5 @@ -# Class PTSF +# Class PTSF + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,15 +12,15 @@ public class PTSF : ContactConstraint, IObservableObject, IDisposa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← [ContactConstraint](VM.Managed.DAFUL.Contact.ContactConstraint\-1.md) ← [PTSF](VM.Managed.DAFUL.Contact.PTSF.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -71,65 +72,65 @@ IEnableForSimulationScenario [ContactConstraint.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](VM.Managed.DAFUL.Contact.ContactConstraint\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactConstraint\_1\_GetModelNavigatorInformationImpl\_System\_Xml\_XmlDocument\_System\_Xml\_XmlElement\_System\_Boolean\_), [ContactConstraint.TargetType](VM.Managed.DAFUL.Contact.ContactConstraint\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactConstraint\_1\_TargetType), [ContactConstraint.Use](VM.Managed.DAFUL.Contact.ContactConstraint\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactConstraint\_1\_Use), -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -228,7 +229,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -267,7 +268,7 @@ public PTSF(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the [point to surface] contact. @@ -281,7 +282,7 @@ protected override bool CanSwitchImpl { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Geometry @@ -317,7 +318,7 @@ public override string TargetType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Use @@ -329,7 +330,7 @@ public override bool Use { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -343,7 +344,7 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -357,7 +358,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyAutoContact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyAutoContact.md index 2735265442..f12544ca0f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyAutoContact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyAutoContact.md @@ -1,4 +1,5 @@ -# Class PropertyAutoContact +# Class PropertyAutoContact + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,13 +12,13 @@ public class PropertyAutoContact : Property, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyAutoContact](VM.Managed.DAFUL.Contact.PropertyAutoContact.md) #### Implements @@ -31,7 +32,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -40,12 +41,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -144,7 +145,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyCVCV.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyCVCV.md index 8aec3f5072..e0f198f8e6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyCVCV.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyCVCV.md @@ -1,4 +1,5 @@ -# Class PropertyCVCV +# Class PropertyCVCV + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,14 +12,14 @@ public class PropertyCVCV : PropertyContactConstraint, IObservableObject, IDispo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyConstraint ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyConstraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs) ← [PropertyContactConstraint](VM.Managed.DAFUL.Contact.PropertyContactConstraint.md) ← [PropertyCVCV](VM.Managed.DAFUL.Contact.PropertyCVCV.md) @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -44,14 +45,14 @@ IArgument #### Inherited Members [PropertyContactConstraint.Friction](VM.Managed.DAFUL.Contact.PropertyContactConstraint.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContactConstraint\_Friction), -PropertyConstraint.ReferenceType, -PropertyConstraint.ArgumentType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyConstraint.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[PropertyConstraint.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -150,7 +151,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -191,7 +192,7 @@ public ExpressionValueVariable ActionClearance { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ArgumentType @@ -215,7 +216,7 @@ public ExpressionValueVariable BaseClearance { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### StiffScaleFactor @@ -227,7 +228,7 @@ public ExpressionValueVariable StiffScaleFactor { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyCYTMC.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyCYTMC.md index ffe5c12d11..1c6c6d0b36 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyCYTMC.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyCYTMC.md @@ -1,4 +1,5 @@ -# Class PropertyCYTMC +# Class PropertyCYTMC + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,13 +12,13 @@ public class PropertyCYTMC : PropertyContact2Dot5D, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyContact](VM.Managed.DAFUL.Contact.PropertyContact.md) ← [PropertyContact2Dot5D](VM.Managed.DAFUL.Contact.PropertyContact2Dot5D.md) ← [PropertyCYTMC](VM.Managed.DAFUL.Contact.PropertyCYTMC.md) @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -54,12 +55,12 @@ IHasID [PropertyContact.IsActionGeometryFrontDirection](VM.Managed.DAFUL.Contact.PropertyContact.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContact\_IsActionGeometryFrontDirection), [PropertyContact.IsBaseGeometryDisplayNormalDirection](VM.Managed.DAFUL.Contact.PropertyContact.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContact\_IsBaseGeometryDisplayNormalDirection), [PropertyContact.IsActionGeometryDisplayNormalDirection](VM.Managed.DAFUL.Contact.PropertyContact.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContact\_IsActionGeometryDisplayNormalDirection), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -158,7 +159,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContact.md index 27a4bd371b..4be5726872 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContact.md @@ -1,4 +1,5 @@ -# Class PropertyContact +# Class PropertyContact + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -12,13 +13,13 @@ public abstract class PropertyContact : Property, IObservableObject, IDisposable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyContact](VM.Managed.DAFUL.Contact.PropertyContact.md) #### Derived @@ -38,7 +39,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -47,12 +48,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -151,7 +152,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -208,7 +209,7 @@ public bool IsActionGeometryDisplayNormalDirection { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsActionGeometryFrontDirection @@ -220,7 +221,7 @@ public bool IsActionGeometryFrontDirection { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsBaseGeometryDisplayNormalDirection @@ -232,7 +233,7 @@ public bool IsBaseGeometryDisplayNormalDirection { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsBaseGeometryFrontDirection @@ -244,7 +245,7 @@ public bool IsBaseGeometryFrontDirection { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContact2D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContact2D.md index aeaa43d5e7..ea85cea3f8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContact2D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContact2D.md @@ -1,4 +1,5 @@ -# Class PropertyContact2D +# Class PropertyContact2D + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,13 +12,13 @@ public abstract class PropertyContact2D : PropertyContact, IObservableObject, ID #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyContact](VM.Managed.DAFUL.Contact.PropertyContact.md) ← [PropertyContact2D](VM.Managed.DAFUL.Contact.PropertyContact2D.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -47,12 +48,12 @@ IHasID [PropertyContact.IsActionGeometryFrontDirection](VM.Managed.DAFUL.Contact.PropertyContact.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContact\_IsActionGeometryFrontDirection), [PropertyContact.IsBaseGeometryDisplayNormalDirection](VM.Managed.DAFUL.Contact.PropertyContact.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContact\_IsBaseGeometryDisplayNormalDirection), [PropertyContact.IsActionGeometryDisplayNormalDirection](VM.Managed.DAFUL.Contact.PropertyContact.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContact\_IsActionGeometryDisplayNormalDirection), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -151,7 +152,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContact2Dot5D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContact2Dot5D.md index b9a0b37ee7..94b996c7be 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContact2Dot5D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContact2Dot5D.md @@ -1,4 +1,5 @@ -# Class PropertyContact2Dot5D +# Class PropertyContact2Dot5D + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,13 +12,13 @@ public abstract class PropertyContact2Dot5D : PropertyContact, IObservableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyContact](VM.Managed.DAFUL.Contact.PropertyContact.md) ← [PropertyContact2Dot5D](VM.Managed.DAFUL.Contact.PropertyContact2Dot5D.md) @@ -38,7 +39,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -53,12 +54,12 @@ IHasID [PropertyContact.IsActionGeometryFrontDirection](VM.Managed.DAFUL.Contact.PropertyContact.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContact\_IsActionGeometryFrontDirection), [PropertyContact.IsBaseGeometryDisplayNormalDirection](VM.Managed.DAFUL.Contact.PropertyContact.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContact\_IsBaseGeometryDisplayNormalDirection), [PropertyContact.IsActionGeometryDisplayNormalDirection](VM.Managed.DAFUL.Contact.PropertyContact.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContact\_IsActionGeometryDisplayNormalDirection), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -157,7 +158,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -198,7 +199,7 @@ public ExpressionValueVariable IncrementTime { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### LimitIncrementInNR @@ -210,7 +211,7 @@ public ExpressionValueVariable LimitIncrementInNR { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### UseIncrementTime @@ -222,7 +223,7 @@ public bool UseIncrementTime { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseLimitIncrementInNR @@ -234,7 +235,7 @@ public bool UseLimitIncrementInNR { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -262,7 +263,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContact3D.PointCheckType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContact3D.PointCheckType.md index 1a2250d39b..2ada293e81 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContact3D.PointCheckType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContact3D.PointCheckType.md @@ -1,4 +1,5 @@ -# Enum PropertyContact3D.PointCheckType +# Enum PropertyContact3D.PointCheckType + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContact3D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContact3D.md index 4455bd8565..bcf68d7fe8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContact3D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContact3D.md @@ -1,4 +1,5 @@ -# Class PropertyContact3D +# Class PropertyContact3D + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,13 +12,13 @@ public abstract class PropertyContact3D : PropertyContact, IObservableObject, ID #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyContact](VM.Managed.DAFUL.Contact.PropertyContact.md) ← [PropertyContact3D](VM.Managed.DAFUL.Contact.PropertyContact3D.md) @@ -37,7 +38,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -52,12 +53,12 @@ IHasID [PropertyContact.IsActionGeometryFrontDirection](VM.Managed.DAFUL.Contact.PropertyContact.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContact\_IsActionGeometryFrontDirection), [PropertyContact.IsBaseGeometryDisplayNormalDirection](VM.Managed.DAFUL.Contact.PropertyContact.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContact\_IsBaseGeometryDisplayNormalDirection), [PropertyContact.IsActionGeometryDisplayNormalDirection](VM.Managed.DAFUL.Contact.PropertyContact.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContact\_IsActionGeometryDisplayNormalDirection), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -156,7 +157,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -198,7 +199,7 @@ public bool CrossCheck { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IncrementTime @@ -210,7 +211,7 @@ public ExpressionValueVariable IncrementTime { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### InternalPointFactor @@ -222,7 +223,7 @@ public ExpressionValueVariable InternalPointFactor { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### LimitIncrementInNR @@ -234,7 +235,7 @@ public ExpressionValueVariable LimitIncrementInNR { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PointCheck @@ -258,7 +259,7 @@ public bool UseIncrementTime { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseInternalPointFactor @@ -270,7 +271,7 @@ public bool UseInternalPointFactor { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseLimitIncrementInNR @@ -282,7 +283,7 @@ public bool UseLimitIncrementInNR { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseNodeOnlyOption @@ -294,7 +295,7 @@ public bool UseNodeOnlyOption { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseSlidingOnlyOption @@ -306,7 +307,7 @@ public bool UseSlidingOnlyOption { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -334,7 +335,7 @@ public virtual PropertyContact3D.PointCheckType LoadOldVersion(bool bCrossCheck) #### Parameters -`bCrossCheck` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bCrossCheck` bool The cross check flag. @@ -352,7 +353,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactConstraint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactConstraint.md index c12a3a6f85..530ebbf518 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactConstraint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactConstraint.md @@ -1,4 +1,5 @@ -# Class PropertyContactConstraint +# Class PropertyContactConstraint + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,14 +12,14 @@ public abstract class PropertyContactConstraint : PropertyConstraint, IObservabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyConstraint ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyConstraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs) ← [PropertyContactConstraint](VM.Managed.DAFUL.Contact.PropertyContactConstraint.md) #### Derived @@ -39,7 +40,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -49,14 +50,14 @@ IArgument #### Inherited Members -PropertyConstraint.ReferenceType, -PropertyConstraint.ArgumentType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyConstraint.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[PropertyConstraint.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -155,7 +156,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactGeom2D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactGeom2D.md index c1400df121..07d57b0d0d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactGeom2D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactGeom2D.md @@ -1,4 +1,5 @@ -# Class PropertyContactGeom2D +# Class PropertyContactGeom2D + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,13 +12,13 @@ public class PropertyContactGeom2D : PropertyContactGeomBase, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyContactGeomBase](VM.Managed.DAFUL.Contact.PropertyContactGeomBase.md) ← [PropertyContactGeom2D](VM.Managed.DAFUL.Contact.PropertyContactGeom2D.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -41,12 +42,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -145,7 +146,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactGeom2Dot5D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactGeom2Dot5D.md index 634d9e49da..7f0791167c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactGeom2Dot5D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactGeom2Dot5D.md @@ -1,4 +1,5 @@ -# Class PropertyContactGeom2Dot5D +# Class PropertyContactGeom2Dot5D + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,13 +12,13 @@ public abstract class PropertyContactGeom2Dot5D : PropertyContactGeomBase, IObse #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyContactGeomBase](VM.Managed.DAFUL.Contact.PropertyContactGeomBase.md) ← [PropertyContactGeom2Dot5D](VM.Managed.DAFUL.Contact.PropertyContactGeom2Dot5D.md) @@ -37,7 +38,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -46,12 +47,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -150,7 +151,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -191,7 +192,7 @@ public ExpressionValueVariable HalfThickness { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### IsDisplayNormalDirection @@ -203,7 +204,7 @@ public bool IsDisplayNormalDirection { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsFrontDirection @@ -215,7 +216,7 @@ public bool IsFrontDirection { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MaxPenetration @@ -227,7 +228,7 @@ public ExpressionValueVariable MaxPenetration { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactGeom3D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactGeom3D.md index c8ac668086..b70fcf068a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactGeom3D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactGeom3D.md @@ -1,4 +1,5 @@ -# Class PropertyContactGeom3D +# Class PropertyContactGeom3D + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,13 +12,13 @@ public class PropertyContactGeom3D : PropertyContactGeomBase, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyContactGeomBase](VM.Managed.DAFUL.Contact.PropertyContactGeomBase.md) ← [PropertyContactGeom3D](VM.Managed.DAFUL.Contact.PropertyContactGeom3D.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -41,12 +42,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -145,7 +146,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactGeomBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactGeomBase.md index 8af1d3a114..ae902c69e3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactGeomBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactGeomBase.md @@ -1,4 +1,5 @@ -# Class PropertyContactGeomBase +# Class PropertyContactGeomBase + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,13 +12,13 @@ public abstract class PropertyContactGeomBase : Property, IObservableObject, IDi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyContactGeomBase](VM.Managed.DAFUL.Contact.PropertyContactGeomBase.md) #### Derived @@ -37,7 +38,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -46,12 +47,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -150,7 +151,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactGeomBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactGeomBody.md index e3db1ae508..617ccd1414 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactGeomBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactGeomBody.md @@ -1,4 +1,5 @@ -# Class PropertyContactGeomBody +# Class PropertyContactGeomBody + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,13 +12,13 @@ public abstract class PropertyContactGeomBody : PropertyContactGeom2Dot5D, IObse #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyContactGeomBase](VM.Managed.DAFUL.Contact.PropertyContactGeomBase.md) ← [PropertyContactGeom2Dot5D](VM.Managed.DAFUL.Contact.PropertyContactGeom2Dot5D.md) ← [PropertyContactGeomBody](VM.Managed.DAFUL.Contact.PropertyContactGeomBody.md) @@ -38,7 +39,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -52,12 +53,12 @@ IHasID [PropertyContactGeom2Dot5D.IsFrontDirection](VM.Managed.DAFUL.Contact.PropertyContactGeom2Dot5D.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContactGeom2Dot5D\_IsFrontDirection), [PropertyContactGeom2Dot5D.MaxPenetration](VM.Managed.DAFUL.Contact.PropertyContactGeom2Dot5D.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContactGeom2Dot5D\_MaxPenetration), [PropertyContactGeom2Dot5D.HalfThickness](VM.Managed.DAFUL.Contact.PropertyContactGeom2Dot5D.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContactGeom2Dot5D\_HalfThickness), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -156,7 +157,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactGeomCurveset.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactGeomCurveset.md index 8fbf82310c..ca27396cac 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactGeomCurveset.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactGeomCurveset.md @@ -1,4 +1,5 @@ -# Class PropertyContactGeomCurveset +# Class PropertyContactGeomCurveset + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,13 +12,13 @@ public class PropertyContactGeomCurveset : PropertyContactGeom2Dot5D, IObservabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyContactGeomBase](VM.Managed.DAFUL.Contact.PropertyContactGeomBase.md) ← [PropertyContactGeom2Dot5D](VM.Managed.DAFUL.Contact.PropertyContactGeom2Dot5D.md) ← [PropertyContactGeomCurveset](VM.Managed.DAFUL.Contact.PropertyContactGeomCurveset.md) @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -47,12 +48,12 @@ IHasID [PropertyContactGeom2Dot5D.IsFrontDirection](VM.Managed.DAFUL.Contact.PropertyContactGeom2Dot5D.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContactGeom2Dot5D\_IsFrontDirection), [PropertyContactGeom2Dot5D.MaxPenetration](VM.Managed.DAFUL.Contact.PropertyContactGeom2Dot5D.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContactGeom2Dot5D\_MaxPenetration), [PropertyContactGeom2Dot5D.HalfThickness](VM.Managed.DAFUL.Contact.PropertyContactGeom2Dot5D.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContactGeom2Dot5D\_HalfThickness), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -151,7 +152,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -192,7 +193,7 @@ public ExpressionValueVariable NumOfSliceBetweenCurve { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactGeomCylinder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactGeomCylinder.md index 96475833ba..ff044f2599 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactGeomCylinder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactGeomCylinder.md @@ -1,4 +1,5 @@ -# Class PropertyContactGeomCylinder +# Class PropertyContactGeomCylinder + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,13 +12,13 @@ public class PropertyContactGeomCylinder : PropertyContactGeomBody, IObservableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyContactGeomBase](VM.Managed.DAFUL.Contact.PropertyContactGeomBase.md) ← [PropertyContactGeom2Dot5D](VM.Managed.DAFUL.Contact.PropertyContactGeom2Dot5D.md) ← [PropertyContactGeomBody](VM.Managed.DAFUL.Contact.PropertyContactGeomBody.md) ← @@ -34,7 +35,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -48,12 +49,12 @@ IHasID [PropertyContactGeom2Dot5D.IsFrontDirection](VM.Managed.DAFUL.Contact.PropertyContactGeom2Dot5D.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContactGeom2Dot5D\_IsFrontDirection), [PropertyContactGeom2Dot5D.MaxPenetration](VM.Managed.DAFUL.Contact.PropertyContactGeom2Dot5D.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContactGeom2Dot5D\_MaxPenetration), [PropertyContactGeom2Dot5D.HalfThickness](VM.Managed.DAFUL.Contact.PropertyContactGeom2Dot5D.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContactGeom2Dot5D\_HalfThickness), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -152,7 +153,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -205,7 +206,7 @@ public ExpressionValueVariable Radius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TopPosition @@ -241,7 +242,7 @@ public double _Radius { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### \_TopPosition diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactGeomSphere.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactGeomSphere.md index 1a58fb2423..51a4fea4e3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactGeomSphere.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyContactGeomSphere.md @@ -1,4 +1,5 @@ -# Class PropertyContactGeomSphere +# Class PropertyContactGeomSphere + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,13 +12,13 @@ public class PropertyContactGeomSphere : PropertyContactGeomBody, IObservableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyContactGeomBase](VM.Managed.DAFUL.Contact.PropertyContactGeomBase.md) ← [PropertyContactGeom2Dot5D](VM.Managed.DAFUL.Contact.PropertyContactGeom2Dot5D.md) ← [PropertyContactGeomBody](VM.Managed.DAFUL.Contact.PropertyContactGeomBody.md) ← @@ -34,7 +35,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -48,12 +49,12 @@ IHasID [PropertyContactGeom2Dot5D.IsFrontDirection](VM.Managed.DAFUL.Contact.PropertyContactGeom2Dot5D.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContactGeom2Dot5D\_IsFrontDirection), [PropertyContactGeom2Dot5D.MaxPenetration](VM.Managed.DAFUL.Contact.PropertyContactGeom2Dot5D.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContactGeom2Dot5D\_MaxPenetration), [PropertyContactGeom2Dot5D.HalfThickness](VM.Managed.DAFUL.Contact.PropertyContactGeom2Dot5D.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContactGeom2Dot5D\_HalfThickness), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -152,7 +153,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -205,7 +206,7 @@ public ExpressionValueVariable Radius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### \_CenterPosition @@ -229,7 +230,7 @@ public double _Radius { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyGeneralContact.ContactType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyGeneralContact.ContactType.md index dbf817b4d0..9814086e47 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyGeneralContact.ContactType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyGeneralContact.ContactType.md @@ -1,4 +1,5 @@ -# Enum PropertyGeneralContact.ContactType +# Enum PropertyGeneralContact.ContactType + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyGeneralContact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyGeneralContact.md index 886cb77cd8..df33229e48 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyGeneralContact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyGeneralContact.md @@ -1,4 +1,5 @@ -# Class PropertyGeneralContact +# Class PropertyGeneralContact + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,13 +12,13 @@ public class PropertyGeneralContact : PropertyContact3D, IObservableObject, IDis #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyContact](VM.Managed.DAFUL.Contact.PropertyContact.md) ← [PropertyContact3D](VM.Managed.DAFUL.Contact.PropertyContact3D.md) ← [PropertyGeneralContact](VM.Managed.DAFUL.Contact.PropertyGeneralContact.md) @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -61,12 +62,12 @@ IHasID [PropertyContact.IsActionGeometryFrontDirection](VM.Managed.DAFUL.Contact.PropertyContact.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContact\_IsActionGeometryFrontDirection), [PropertyContact.IsBaseGeometryDisplayNormalDirection](VM.Managed.DAFUL.Contact.PropertyContact.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContact\_IsBaseGeometryDisplayNormalDirection), [PropertyContact.IsActionGeometryDisplayNormalDirection](VM.Managed.DAFUL.Contact.PropertyContact.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContact\_IsActionGeometryDisplayNormalDirection), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -165,7 +166,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -200,24 +201,24 @@ public PropertyGeneralContact()

    Gets and sets the type of contact.

    - Type : VM.Managed.DAFUL.Contact.ContactType - LinkRequestUpdate 시 처리 : N/A - LinkRequestDestroy 시 처리 : - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Contact Type - Control Type : ComboBox - ToolTip : N/A - Error Message : N/A - Category : Characteristic - Category Index : 1 - 변경 시 DFS 재생성 여부 : No - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : VM.Managed.DAFUL.Contact.ContactType +LinkRequestUpdate 시 처리 : N/A +LinkRequestDestroy 시 처리 : +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Contact Type +Control Type : ComboBox +ToolTip : N/A +Error Message : N/A +Category : Characteristic +Category Index : 1 +변경 시 DFS 재생성 여부 : No +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public PropertyGeneralContact.ContactType TypeOfContact { get; set; } @@ -253,7 +254,7 @@ public override PropertyContact3D.PointCheckType LoadOldVersion(bool bCrossCheck #### Parameters -`bCrossCheck` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bCrossCheck` bool The cross check flag. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyMCTMC.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyMCTMC.md index d78447bc7e..5f79d5bcd1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyMCTMC.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyMCTMC.md @@ -1,4 +1,5 @@ -# Class PropertyMCTMC +# Class PropertyMCTMC + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,13 +12,13 @@ public class PropertyMCTMC : PropertyContact2Dot5D, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyContact](VM.Managed.DAFUL.Contact.PropertyContact.md) ← [PropertyContact2Dot5D](VM.Managed.DAFUL.Contact.PropertyContact2Dot5D.md) ← [PropertyMCTMC](VM.Managed.DAFUL.Contact.PropertyMCTMC.md) @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -54,12 +55,12 @@ IHasID [PropertyContact.IsActionGeometryFrontDirection](VM.Managed.DAFUL.Contact.PropertyContact.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContact\_IsActionGeometryFrontDirection), [PropertyContact.IsBaseGeometryDisplayNormalDirection](VM.Managed.DAFUL.Contact.PropertyContact.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContact\_IsBaseGeometryDisplayNormalDirection), [PropertyContact.IsActionGeometryDisplayNormalDirection](VM.Managed.DAFUL.Contact.PropertyContact.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContact\_IsActionGeometryDisplayNormalDirection), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -158,7 +159,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyMultiContact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyMultiContact.md index 62f0882bc0..a7cbdae429 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyMultiContact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyMultiContact.md @@ -1,4 +1,5 @@ -# Class PropertyMultiContact +# Class PropertyMultiContact + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,13 +12,13 @@ public class PropertyMultiContact : Property, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyMultiContact](VM.Managed.DAFUL.Contact.PropertyMultiContact.md) #### Implements @@ -31,7 +32,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -40,12 +41,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -144,7 +145,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -199,7 +200,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -219,11 +220,11 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The ob unnamed. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyPTCV.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyPTCV.md index 6640d0d903..61f14384a5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyPTCV.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyPTCV.md @@ -1,4 +1,5 @@ -# Class PropertyPTCV +# Class PropertyPTCV + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,14 +12,14 @@ public class PropertyPTCV : PropertyContactConstraint, IObservableObject, IDispo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyConstraint ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyConstraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs) ← [PropertyContactConstraint](VM.Managed.DAFUL.Contact.PropertyContactConstraint.md) ← [PropertyPTCV](VM.Managed.DAFUL.Contact.PropertyPTCV.md) @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -44,14 +45,14 @@ IArgument #### Inherited Members [PropertyContactConstraint.Friction](VM.Managed.DAFUL.Contact.PropertyContactConstraint.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContactConstraint\_Friction), -PropertyConstraint.ReferenceType, -PropertyConstraint.ArgumentType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyConstraint.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[PropertyConstraint.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -150,7 +151,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -203,7 +204,7 @@ public ExpressionValueVariable BaseClearance { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Driver @@ -215,7 +216,7 @@ public Driver Driver { get; set; } #### Property Value - Driver + [Driver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Driver.cs) ### StiffScaleFactor @@ -227,7 +228,7 @@ public ExpressionValueVariable StiffScaleFactor { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyPTSF.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyPTSF.md index 5f07965f32..ed309631d4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyPTSF.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyPTSF.md @@ -1,4 +1,5 @@ -# Class PropertyPTSF +# Class PropertyPTSF + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,14 +12,14 @@ public class PropertyPTSF : PropertyContactConstraint, IObservableObject, IDispo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyConstraint ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyConstraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs) ← [PropertyContactConstraint](VM.Managed.DAFUL.Contact.PropertyContactConstraint.md) ← [PropertyPTSF](VM.Managed.DAFUL.Contact.PropertyPTSF.md) @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -44,14 +45,14 @@ IArgument #### Inherited Members [PropertyContactConstraint.Friction](VM.Managed.DAFUL.Contact.PropertyContactConstraint.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContactConstraint\_Friction), -PropertyConstraint.ReferenceType, -PropertyConstraint.ArgumentType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyConstraint.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[PropertyConstraint.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -150,7 +151,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyRTR3D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyRTR3D.md index dc01d32a28..0bae3908a4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyRTR3D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertyRTR3D.md @@ -1,4 +1,5 @@ -# Class PropertyRTR3D +# Class PropertyRTR3D + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,13 +12,13 @@ public class PropertyRTR3D : PropertyContact3D, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyContact](VM.Managed.DAFUL.Contact.PropertyContact.md) ← [PropertyContact3D](VM.Managed.DAFUL.Contact.PropertyContact3D.md) ← [PropertyRTR3D](VM.Managed.DAFUL.Contact.PropertyRTR3D.md) @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -61,12 +62,12 @@ IHasID [PropertyContact.IsActionGeometryFrontDirection](VM.Managed.DAFUL.Contact.PropertyContact.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContact\_IsActionGeometryFrontDirection), [PropertyContact.IsBaseGeometryDisplayNormalDirection](VM.Managed.DAFUL.Contact.PropertyContact.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContact\_IsBaseGeometryDisplayNormalDirection), [PropertyContact.IsActionGeometryDisplayNormalDirection](VM.Managed.DAFUL.Contact.PropertyContact.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContact\_IsActionGeometryDisplayNormalDirection), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -165,7 +166,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertySPTMC.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertySPTMC.md index 0205039ff9..10956e01bf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertySPTMC.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertySPTMC.md @@ -1,4 +1,5 @@ -# Class PropertySPTMC +# Class PropertySPTMC + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,13 +12,13 @@ public class PropertySPTMC : PropertyContact2Dot5D, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyContact](VM.Managed.DAFUL.Contact.PropertyContact.md) ← [PropertyContact2Dot5D](VM.Managed.DAFUL.Contact.PropertyContact2Dot5D.md) ← [PropertySPTMC](VM.Managed.DAFUL.Contact.PropertySPTMC.md) @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -54,12 +55,12 @@ IHasID [PropertyContact.IsActionGeometryFrontDirection](VM.Managed.DAFUL.Contact.PropertyContact.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContact\_IsActionGeometryFrontDirection), [PropertyContact.IsBaseGeometryDisplayNormalDirection](VM.Managed.DAFUL.Contact.PropertyContact.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContact\_IsBaseGeometryDisplayNormalDirection), [PropertyContact.IsActionGeometryDisplayNormalDirection](VM.Managed.DAFUL.Contact.PropertyContact.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContact\_IsActionGeometryDisplayNormalDirection), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -158,7 +159,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertySPTSP.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertySPTSP.md index a7c5e8501b..449e11daf9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertySPTSP.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.PropertySPTSP.md @@ -1,4 +1,5 @@ -# Class PropertySPTSP +# Class PropertySPTSP + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,14 +12,14 @@ public class PropertySPTSP : PropertyContactConstraint, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyConstraint ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyConstraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs) ← [PropertyContactConstraint](VM.Managed.DAFUL.Contact.PropertyContactConstraint.md) ← [PropertySPTSP](VM.Managed.DAFUL.Contact.PropertySPTSP.md) @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -44,14 +45,14 @@ IArgument #### Inherited Members [PropertyContactConstraint.Friction](VM.Managed.DAFUL.Contact.PropertyContactConstraint.md\#VM\_Managed\_DAFUL\_Contact\_PropertyContactConstraint\_Friction), -PropertyConstraint.ReferenceType, -PropertyConstraint.ArgumentType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyConstraint.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[PropertyConstraint.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -150,7 +151,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.RTR3D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.RTR3D.md index abb9a8df9f..9f2daa5a34 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.RTR3D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.RTR3D.md @@ -1,4 +1,5 @@ -# Class RTR3D +# Class RTR3D + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,14 +12,14 @@ public class RTR3D : Contact3D, IObservableObject, IDisposableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [Contact](VM.Managed.DAFUL.Contact.Contact\-1.md) ← [Contact3D](VM.Managed.DAFUL.Contact.Contact3D\-1.md) ← [RTR3D](VM.Managed.DAFUL.Contact.RTR3D.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -84,34 +85,34 @@ IPostOpenDocumentForContact [Contact.ReferenceType](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ReferenceType), [Contact.ArgumentType](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ArgumentType), [Contact.ReportTypeImpl](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ReportTypeImpl), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -210,7 +211,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -249,7 +250,7 @@ public RTR3D(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the rigid to rigid 3D contact. @@ -277,7 +278,7 @@ public bool IsSphereToSurface { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReferenceType @@ -289,7 +290,7 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ReportTypeImpl @@ -315,7 +316,7 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -329,21 +330,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -371,13 +372,13 @@ public static bool IsSphereBodyWithSetFace(SetFace setFace) #### Parameters -`setFace` SetFace +`setFace` [SetFace](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SetFace.cs) The faceset #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReadTemplateImpl\(XmlReader\) @@ -389,7 +390,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -411,7 +412,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ReferenceContact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ReferenceContact.md index b419b40c64..c966def8a4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ReferenceContact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.ReferenceContact.md @@ -1,4 +1,5 @@ -# Class ReferenceContact +# Class ReferenceContact + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,9 +12,9 @@ public class ReferenceContact : Reference, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Reference ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, INamed, @@ -163,7 +164,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -194,11 +195,11 @@ protected ReferenceContact(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.SPTMC.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.SPTMC.md index 9435f7b2d2..e72e8f8473 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.SPTMC.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.SPTMC.md @@ -1,4 +1,5 @@ -# Class SPTMC +# Class SPTMC + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,14 +12,14 @@ public class SPTMC : Contact2Dot5D, IObservableObject, IDisposabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [Contact](VM.Managed.DAFUL.Contact.Contact\-1.md) ← [Contact2Dot5D](VM.Managed.DAFUL.Contact.Contact2Dot5D\-1.md) ← [SPTMC](VM.Managed.DAFUL.Contact.SPTMC.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -82,34 +83,34 @@ IEntityRelation [Contact.ReferenceType](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ReferenceType), [Contact.ArgumentType](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ArgumentType), [Contact.ReportTypeImpl](VM.Managed.DAFUL.Contact.Contact\-1.md\#VM\_Managed\_DAFUL\_Contact\_Contact\_1\_ReportTypeImpl), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -208,7 +209,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -247,7 +248,7 @@ public SPTMC(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the 2D contact. @@ -313,7 +314,7 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -327,7 +328,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -347,7 +348,7 @@ public override IEnumerable GetChildList() #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) + IEnumerable Child list diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.SPTSP.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.SPTSP.md index 997be032dd..0c9692d235 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.SPTSP.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.SPTSP.md @@ -1,4 +1,5 @@ -# Class SPTSP +# Class SPTSP + Namespace: [VM.Managed.DAFUL.Contact](VM.Managed.DAFUL.Contact.md) Assembly: VMDCt.dll @@ -11,15 +12,15 @@ public class SPTSP : ContactConstraint, IObservableObject, IDispo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← [ContactConstraint](VM.Managed.DAFUL.Contact.ContactConstraint\-1.md) ← [SPTSP](VM.Managed.DAFUL.Contact.SPTSP.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -71,65 +72,65 @@ IEnableForSimulationScenario [ContactConstraint.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](VM.Managed.DAFUL.Contact.ContactConstraint\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactConstraint\_1\_GetModelNavigatorInformationImpl\_System\_Xml\_XmlDocument\_System\_Xml\_XmlElement\_System\_Boolean\_), [ContactConstraint.TargetType](VM.Managed.DAFUL.Contact.ContactConstraint\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactConstraint\_1\_TargetType), [ContactConstraint.Use](VM.Managed.DAFUL.Contact.ContactConstraint\-1.md\#VM\_Managed\_DAFUL\_Contact\_ContactConstraint\_1\_Use), -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -228,7 +229,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -267,7 +268,7 @@ public SPTSP(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the sphere to sphere contact. @@ -305,7 +306,7 @@ protected override bool CanSwitchImpl { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReportTypeImpl @@ -329,7 +330,7 @@ public override string TargetType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Use @@ -341,7 +342,7 @@ public override bool Use { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -355,7 +356,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.md index c64a7bbe75..5f4343fcaf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Contact.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Contact +# Namespace VM.Managed.DAFUL.Contact + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.DOEInformationBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.DOEInformationBase.md index 4ad854d1ab..9692acefd0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.DOEInformationBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.DOEInformationBase.md @@ -1,4 +1,5 @@ -# Class DOEInformationBase +# Class DOEInformationBase + Namespace: [VM.Managed.DAFUL.DOE](VM.Managed.DAFUL.DOE.md) Assembly: VMDDOE.dll @@ -9,9 +10,9 @@ public class DOEInformationBase : LinkContainer, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [DOEInformationBase](VM.Managed.DAFUL.DOE.DOEInformationBase.md) @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -115,7 +116,7 @@ public string FullPath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Index @@ -125,7 +126,7 @@ public int Index { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Path @@ -135,7 +136,7 @@ public string Path { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Target @@ -155,5 +156,5 @@ public bool UseRun { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.DOESimulationAttribute.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.DOESimulationAttribute.md index 74ff192f98..4d6e52b7fb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.DOESimulationAttribute.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.DOESimulationAttribute.md @@ -1,4 +1,5 @@ -# Class DOESimulationAttribute +# Class DOESimulationAttribute + Namespace: [VM.Managed.DAFUL.DOE](VM.Managed.DAFUL.DOE.md) Assembly: VMDDOE.dll @@ -9,9 +10,9 @@ public class DOESimulationAttribute : AttributeBase, IObservableObject, IDisposa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [DOESimulationAttribute](VM.Managed.DAFUL.DOE.DOESimulationAttribute.md) @@ -76,7 +77,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -135,7 +136,7 @@ public int[] RunIndexs { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] + int\[\] ### TypeOfDOE @@ -155,7 +156,7 @@ public bool UseAppendDateAndTime { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseCreateGraphicFile @@ -165,7 +166,7 @@ public bool UseCreateGraphicFile { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseCreateModel @@ -175,7 +176,7 @@ public bool UseCreateModel { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseSimResultPath @@ -185,7 +186,7 @@ public bool UseSimResultPath { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### \_Level @@ -195,7 +196,7 @@ public uint _Level { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### \_ResultPath @@ -205,7 +206,7 @@ public string _ResultPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### \_Run @@ -215,7 +216,7 @@ public double _Run { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -261,7 +262,7 @@ public string GetAbsoluteResultPath(Document document) #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetAllFiles\(\) @@ -271,7 +272,7 @@ public List GetAllFiles() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### GetCaseCount\(\) @@ -281,7 +282,7 @@ public int GetCaseCount() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### LinkRequestUpdate\(object, LinkEventArgs\) @@ -293,7 +294,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object `arg` LinkEventArgs @@ -309,7 +310,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.DOEType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.DOEType.md index 93a070b328..13fafcf139 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.DOEType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.DOEType.md @@ -1,4 +1,5 @@ -# Enum DOEType +# Enum DOEType + Namespace: [VM.Managed.DAFUL.DOE](VM.Managed.DAFUL.DOE.md) Assembly: VMDDOE.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.DesignArrayMaker.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.DesignArrayMaker.md index b995c2a1b2..8236c4d7e8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.DesignArrayMaker.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.DesignArrayMaker.md @@ -1,4 +1,5 @@ -# Class DesignArrayMaker +# Class DesignArrayMaker + Namespace: [VM.Managed.DAFUL.DOE](VM.Managed.DAFUL.DOE.md) Assembly: VMDDOE.dll @@ -9,7 +10,7 @@ public class DesignArrayMaker #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DesignArrayMaker](VM.Managed.DAFUL.DOE.DesignArrayMaker.md) #### Extension Methods @@ -36,17 +37,17 @@ public static bool GenerateDesignArray(int iMethod, int nLevels, int nDPS, ref i #### Parameters -`iMethod` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`iMethod` int -`nLevels` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nLevels` int -`nDPS` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nDPS` int -`nRuns` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nRuns` int -`ArraryTable` [ArrayList](https://learn.microsoft.com/dotnet/api/system.collections.arraylist) +`ArraryTable` ArrayList #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.DesignParameterCase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.DesignParameterCase.md index 9a04302b89..6c276dc4b6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.DesignParameterCase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.DesignParameterCase.md @@ -1,4 +1,5 @@ -# Class DesignParameterCase +# Class DesignParameterCase + Namespace: [VM.Managed.DAFUL.DOE](VM.Managed.DAFUL.DOE.md) Assembly: VMDDOE.dll @@ -9,7 +10,7 @@ public class DesignParameterCase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DesignParameterCase](VM.Managed.DAFUL.DOE.DesignParameterCase.md) #### Extension Methods @@ -36,7 +37,7 @@ public int Case { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### IsInput @@ -46,7 +47,7 @@ public bool IsInput { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsRun @@ -56,7 +57,7 @@ public bool IsRun { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RunIndex @@ -66,7 +67,7 @@ public int RunIndex { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Value @@ -76,5 +77,5 @@ public double Value { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.DesignParameterInfo.ValueType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.DesignParameterInfo.ValueType.md index c8b7c078d7..8e25f14490 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.DesignParameterInfo.ValueType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.DesignParameterInfo.ValueType.md @@ -1,4 +1,5 @@ -# Enum DesignParameterInfo.ValueType +# Enum DesignParameterInfo.ValueType + Namespace: [VM.Managed.DAFUL.DOE](VM.Managed.DAFUL.DOE.md) Assembly: VMDDOE.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.DesignParameterInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.DesignParameterInfo.md index f090b89fda..96d8f48815 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.DesignParameterInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.DesignParameterInfo.md @@ -1,4 +1,5 @@ -# Class DesignParameterInfo +# Class DesignParameterInfo + Namespace: [VM.Managed.DAFUL.DOE](VM.Managed.DAFUL.DOE.md) Assembly: VMDDOE.dll @@ -9,9 +10,9 @@ public class DesignParameterInfo : DOEInformationBase, IObservableObject, IDispo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [DOEInformationBase](VM.Managed.DAFUL.DOE.DOEInformationBase.md) ← [DesignParameterInfo](VM.Managed.DAFUL.DOE.DesignParameterInfo.md) @@ -79,7 +80,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,7 +117,7 @@ public List Cases { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[DesignParameterCase](VM.Managed.DAFUL.DOE.DesignParameterCase.md)\> + List<[DesignParameterCase](VM.Managed.DAFUL.DOE.DesignParameterCase.md)\> ### Current @@ -126,7 +127,7 @@ public double Current { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TypeOfValue @@ -146,7 +147,7 @@ public double[] Values { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### \_Lower @@ -156,7 +157,7 @@ public double _Lower { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### \_Upper @@ -166,7 +167,7 @@ public double _Upper { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -180,15 +181,15 @@ public static Dictionary> CalculateDesigns(DOETyp `type` [DOEType](VM.Managed.DAFUL.DOE.DOEType.md) -`lstDP` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[DesignParameterInfo](VM.Managed.DAFUL.DOE.DesignParameterInfo.md)\> +`lstDP` List<[DesignParameterInfo](VM.Managed.DAFUL.DOE.DesignParameterInfo.md)\> -`nLevel` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nLevel` int -`nRun` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nRun` int #### Returns - [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[DesignParameterInfo](VM.Managed.DAFUL.DOE.DesignParameterInfo.md), [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\>\> + Dictionary<[DesignParameterInfo](VM.Managed.DAFUL.DOE.DesignParameterInfo.md), List\> ### ChangeCaseValue\(List, uint\) @@ -198,9 +199,9 @@ public void ChangeCaseValue(List case_format, uint nLevel) #### Parameters -`case_format` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`case_format` List -`nLevel` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nLevel` uint ### ChangeTargetValue\(double\) @@ -210,11 +211,11 @@ public bool ChangeTargetValue(double dValue) #### Parameters -`dValue` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dValue` double #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetCaseFormat\(List\) @@ -224,11 +225,11 @@ public static List GetCaseFormat(List lst) #### Parameters -`lst` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`lst` List #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> + List ### GetCases\(\) @@ -238,7 +239,7 @@ public List GetCases() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> + List ### IsSameCases\(List\) @@ -248,11 +249,11 @@ public bool IsSameCases(List lst) #### Parameters -`lst` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`lst` List #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsSameCasesForUserInput\(List\) @@ -262,11 +263,11 @@ public bool IsSameCasesForUserInput(List lst) #### Parameters -`lst` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`lst` List #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LinkRequestUpdate\(object, LinkEventArgs\) @@ -278,7 +279,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Operation.ShowAnalysisResult.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Operation.ShowAnalysisResult.md index ffb503932a..afe697194e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Operation.ShowAnalysisResult.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Operation.ShowAnalysisResult.md @@ -1,4 +1,5 @@ -# Class ShowAnalysisResult +# Class ShowAnalysisResult + Namespace: [VM.Managed.DAFUL.DOE.Operation](VM.Managed.DAFUL.DOE.Operation.md) Assembly: VMOPDOE.dll @@ -9,7 +10,7 @@ public class ShowAnalysisResult : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ShowAnalysisResult](VM.Managed.DAFUL.DOE.Operation.ShowAnalysisResult.md) @@ -103,7 +104,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Operation.ShowDOESimulationDlg.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Operation.ShowDOESimulationDlg.md index ad7a59f78d..d2f65b33f1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Operation.ShowDOESimulationDlg.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Operation.ShowDOESimulationDlg.md @@ -1,4 +1,5 @@ -# Class ShowDOESimulationDlg +# Class ShowDOESimulationDlg + Namespace: [VM.Managed.DAFUL.DOE.Operation](VM.Managed.DAFUL.DOE.Operation.md) Assembly: VMOPDOE.dll @@ -11,10 +12,10 @@ public class ShowDOESimulationDlg : ShowSimulationDlg, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ShowSimulationDlg ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ShowSimulationDlg](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs) ← [ShowDOESimulationDlg](VM.Managed.DAFUL.DOE.Operation.ShowDOESimulationDlg.md) #### Implements @@ -23,32 +24,33 @@ IOperation #### Inherited Members -ShowSimulationDlg.Execute\(\), -ShowSimulationDlg.SimulationRunImpl\(bool\), -ShowSimulationDlg.ExecuteImpl\(\), -ShowSimulationDlg.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ShowSimulationDlg.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[ShowSimulationDlg.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[ShowSimulationDlg.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[ShowSimulationDlg.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -139,7 +141,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -159,13 +161,13 @@ protected void ExportFileForSolvingImpl(DocumentAnalysis doc, string strPath, Fr #### Parameters -`doc` DocumentAnalysis +`doc` [DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string `simResult` FrmDOESimulation.Result -`bGraphic` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bGraphic` bool ### ShowDialog\(\) @@ -199,5 +201,5 @@ public override void WriteExtraJournal(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Operation.ShowSimulationModifyDlg.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Operation.ShowSimulationModifyDlg.md index 2cdda2c284..2a2f1dc52b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Operation.ShowSimulationModifyDlg.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Operation.ShowSimulationModifyDlg.md @@ -1,4 +1,5 @@ -# Class ShowSimulationModifyDlg +# Class ShowSimulationModifyDlg + Namespace: [VM.Managed.DAFUL.DOE.Operation](VM.Managed.DAFUL.DOE.Operation.md) Assembly: VMOPDOE.dll @@ -9,10 +10,10 @@ public class ShowSimulationModifyDlg : ShowSimulationDlg, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ShowSimulationDlg ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ShowSimulationDlg](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs) ← [ShowSimulationModifyDlg](VM.Managed.DAFUL.DOE.Operation.ShowSimulationModifyDlg.md) #### Implements @@ -21,32 +22,33 @@ IOperation #### Inherited Members -ShowSimulationDlg.Execute\(\), -ShowSimulationDlg.SimulationRunImpl\(bool\), -ShowSimulationDlg.ExecuteImpl\(\), -ShowSimulationDlg.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ShowSimulationDlg.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[ShowSimulationDlg.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[ShowSimulationDlg.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[ShowSimulationDlg.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -137,7 +139,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Operation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Operation.md index 222d7a3049..20dc026dab 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Operation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Operation.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.DOE.Operation +# Namespace VM.Managed.DAFUL.DOE.Operation + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.PerformanceIndexInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.PerformanceIndexInfo.md index 014d673819..59c35b267a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.PerformanceIndexInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.PerformanceIndexInfo.md @@ -1,4 +1,5 @@ -# Class PerformanceIndexInfo +# Class PerformanceIndexInfo + Namespace: [VM.Managed.DAFUL.DOE](VM.Managed.DAFUL.DOE.md) Assembly: VMDDOE.dll @@ -9,9 +10,9 @@ public class PerformanceIndexInfo : DOEInformationBase, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [DOEInformationBase](VM.Managed.DAFUL.DOE.DOEInformationBase.md) ← [PerformanceIndexInfo](VM.Managed.DAFUL.DOE.PerformanceIndexInfo.md) @@ -79,7 +80,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,7 +117,7 @@ public double MaximumTime { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MinimumTime @@ -126,7 +127,7 @@ public double MinimumTime { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TypeOfResult @@ -146,7 +147,7 @@ public bool UseDown { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Weight\_Factor @@ -156,7 +157,7 @@ public double Weight_Factor { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -170,7 +171,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.ConfiguraionInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.ConfiguraionInfo.md index 5b7298f523..28d6aa5141 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.ConfiguraionInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.ConfiguraionInfo.md @@ -1,4 +1,5 @@ -# Class ConfiguraionInfo +# Class ConfiguraionInfo + Namespace: [VM.Managed.DAFUL.DOE.Result](VM.Managed.DAFUL.DOE.Result.md) Assembly: VMDDOEResult.dll @@ -9,7 +10,7 @@ public class ConfiguraionInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ConfiguraionInfo](VM.Managed.DAFUL.DOE.Result.ConfiguraionInfo.md) #### Extension Methods @@ -46,7 +47,7 @@ public List DesignParameters { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[DesignParameter](VM.Managed.DAFUL.DOE.Result.DesignParameter.md)\> + List<[DesignParameter](VM.Managed.DAFUL.DOE.Result.DesignParameter.md)\> ### IsAppendDateAndTime @@ -56,7 +57,7 @@ public bool IsAppendDateAndTime { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsCreateGraphicFile @@ -66,7 +67,7 @@ public bool IsCreateGraphicFile { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Level @@ -76,7 +77,7 @@ public uint Level { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### PerformanceIndexs @@ -86,7 +87,7 @@ public List PerformanceIndexs { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[PerformanceIndex](VM.Managed.DAFUL.DOE.Result.PerformanceIndex.md)\> + List<[PerformanceIndex](VM.Managed.DAFUL.DOE.Result.PerformanceIndex.md)\> ### ResultPath @@ -96,7 +97,7 @@ public string ResultPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Run @@ -106,7 +107,7 @@ public double Run { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RunIndexs @@ -116,7 +117,7 @@ public int[] RunIndexs { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] + int\[\] ### SimulationFile @@ -126,5 +127,5 @@ public string SimulationFile { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.DOEDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.DOEDocument.md index 69d3f75665..9898c4bd14 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.DOEDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.DOEDocument.md @@ -1,4 +1,5 @@ -# Class DOEDocument +# Class DOEDocument + Namespace: [VM.Managed.DAFUL.DOE.Result](VM.Managed.DAFUL.DOE.Result.md) Assembly: VMDDOEResult.dll @@ -9,9 +10,9 @@ public class DOEDocument : ControlDocument, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← @@ -34,7 +35,7 @@ IOwned, IHasID, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IControlDocument #### Inherited Members @@ -249,7 +250,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -298,7 +299,7 @@ public override bool IsReload { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -324,7 +325,7 @@ public override void Load(string strPath) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string ### ReloadResult\(\) @@ -342,7 +343,7 @@ public override void Save(string strPath) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The path to save. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.DOEFile.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.DOEFile.md index 1b957befcf..63e004bf20 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.DOEFile.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.DOEFile.md @@ -1,4 +1,5 @@ -# Class DOEFile +# Class DOEFile + Namespace: [VM.Managed.DAFUL.DOE.Result](VM.Managed.DAFUL.DOE.Result.md) Assembly: VMDDOEResult.dll @@ -9,7 +10,7 @@ public class DOEFile #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DOEFile](VM.Managed.DAFUL.DOE.Result.DOEFile.md) #### Extension Methods @@ -40,7 +41,7 @@ public DOEFile(enProc proc, string strPath) `proc` [enProc](VM.Managed.DAFUL.DOE.Result.enProc.md) -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string ## Methods @@ -52,7 +53,7 @@ public bool CanWrite() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CanWrite\(string\) @@ -62,11 +63,11 @@ public static bool CanWrite(string strPath) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ClosePost\(\) @@ -76,7 +77,7 @@ public bool ClosePost() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CloseSolver\(\) @@ -86,7 +87,7 @@ public bool CloseSolver() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ConverMemToObjet\(MemoryStream, Type\) @@ -96,13 +97,13 @@ public static object ConverMemToObjet(MemoryStream stream, Type type) #### Parameters -`stream` [MemoryStream](https://learn.microsoft.com/dotnet/api/system.io.memorystream) +`stream` MemoryStream -`type` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`type` Type #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### Create\(string\) @@ -112,11 +113,11 @@ public bool Create(string strPath) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### \~DOEFile\(\) @@ -132,7 +133,7 @@ public int GetCurrentCase() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetDefaultInnerFileName\(enProc\) @@ -146,7 +147,7 @@ public string GetDefaultInnerFileName(enProc proc) #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetDefaultInnerFileName\(enProc, int\) @@ -158,11 +159,11 @@ public string GetDefaultInnerFileName(enProc proc, int nCaseIdx) `proc` [enProc](VM.Managed.DAFUL.DOE.Result.enProc.md) -`nCaseIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nCaseIdx` int #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetResult\(DOEFile, enProc\) @@ -178,7 +179,7 @@ public static object GetResult(DOEFile doe_file, enProc proc) #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### GetResult\(DOEFile, enProc, int\) @@ -192,11 +193,11 @@ public static object GetResult(DOEFile doe_file, enProc proc, int nIdx) `proc` [enProc](VM.Managed.DAFUL.DOE.Result.enProc.md) -`nIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIdx` int #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### IsExists\(\) @@ -206,7 +207,7 @@ public bool IsExists() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsExists\(enProc\) @@ -220,7 +221,7 @@ public bool IsExists(enProc proc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Load\(enProc, ref MemoryStream\) @@ -232,11 +233,11 @@ public bool Load(enProc proc, ref MemoryStream stream) `proc` [enProc](VM.Managed.DAFUL.DOE.Result.enProc.md) -`stream` [MemoryStream](https://learn.microsoft.com/dotnet/api/system.io.memorystream) +`stream` MemoryStream #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LoadCase\(int, ref MemoryStream\) @@ -246,13 +247,13 @@ public bool LoadCase(int nCaseIdx, ref MemoryStream stream) #### Parameters -`nCaseIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nCaseIdx` int -`stream` [MemoryStream](https://learn.microsoft.com/dotnet/api/system.io.memorystream) +`stream` MemoryStream #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Save\(MemoryStream\) @@ -262,11 +263,11 @@ public bool Save(MemoryStream stream) #### Parameters -`stream` [MemoryStream](https://learn.microsoft.com/dotnet/api/system.io.memorystream) +`stream` MemoryStream #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SaveAs\(string, MemoryStream\) @@ -276,13 +277,13 @@ public bool SaveAs(string strNewPath, MemoryStream stream) #### Parameters -`strNewPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strNewPath` string -`stream` [MemoryStream](https://learn.microsoft.com/dotnet/api/system.io.memorystream) +`stream` MemoryStream #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SaveCase\(int, MemoryStream\) @@ -292,11 +293,11 @@ public bool SaveCase(int nCaseIdx, MemoryStream stream) #### Parameters -`nCaseIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nCaseIdx` int -`stream` [MemoryStream](https://learn.microsoft.com/dotnet/api/system.io.memorystream) +`stream` MemoryStream #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.DOEInformationBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.DOEInformationBase.md index 0e32f3a1ab..ad638ecf85 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.DOEInformationBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.DOEInformationBase.md @@ -1,4 +1,5 @@ -# Class DOEInformationBase +# Class DOEInformationBase + Namespace: [VM.Managed.DAFUL.DOE.Result](VM.Managed.DAFUL.DOE.Result.md) Assembly: VMDDOEResult.dll @@ -9,7 +10,7 @@ public class DOEInformationBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DOEInformationBase](VM.Managed.DAFUL.DOE.Result.DOEInformationBase.md) #### Derived @@ -41,7 +42,7 @@ public int Index { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Name @@ -51,7 +52,7 @@ public string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Path @@ -61,5 +62,5 @@ public string Path { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.DOEPre.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.DOEPre.md index 5d605dc1f1..e7389a917f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.DOEPre.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.DOEPre.md @@ -1,4 +1,5 @@ -# Class DOEPre +# Class DOEPre + Namespace: [VM.Managed.DAFUL.DOE.Result](VM.Managed.DAFUL.DOE.Result.md) Assembly: VMDDOEResult.dll @@ -9,7 +10,7 @@ public class DOEPre #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DOEPre](VM.Managed.DAFUL.DOE.Result.DOEPre.md) #### Extension Methods @@ -56,7 +57,7 @@ public Dictionary> DesignParameterMap { get; } #### Property Value - [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[DesignParameter](VM.Managed.DAFUL.DOE.Result.DesignParameter.md)\>\> + Dictionary\> ### PerformanceIndexMap @@ -66,7 +67,7 @@ public Dictionary> PerformanceIndexMap { get; } #### Property Value - [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[PerformanceIndex](VM.Managed.DAFUL.DOE.Result.PerformanceIndex.md)\>\> + Dictionary\> ### RunSequence @@ -76,5 +77,5 @@ public int RunSequence { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.DOESolver.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.DOESolver.md index a900362022..92e569b335 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.DOESolver.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.DOESolver.md @@ -1,4 +1,5 @@ -# Class DOESolver +# Class DOESolver + Namespace: [VM.Managed.DAFUL.DOE.Result](VM.Managed.DAFUL.DOE.Result.md) Assembly: VMDDOEResult.dll @@ -9,7 +10,7 @@ public class DOESolver #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DOESolver](VM.Managed.DAFUL.DOE.Result.DOESolver.md) #### Extension Methods @@ -34,7 +35,7 @@ public DOESolver(string[] arKey) #### Parameters -`arKey` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arKey` string\[\] ## Properties @@ -46,7 +47,7 @@ public List Times { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> + List ### Values @@ -56,7 +57,7 @@ public SerializableDictionary> Values { get; set; } #### Property Value - [SerializableDictionary](VM.Managed.DAFUL.DOE.Result.SerializableDictionary\-2.md)<[string](https://learn.microsoft.com/dotnet/api/system.string), [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\>\> + [SerializableDictionary](VM.Managed.DAFUL.DOE.Result.SerializableDictionary\-2.md)\> ## Methods @@ -68,5 +69,5 @@ public void AddValues(string[] arValue) #### Parameters -`arValue` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arValue` string\[\] diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.DOEType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.DOEType.md index d0db84980f..4209789744 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.DOEType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.DOEType.md @@ -1,4 +1,5 @@ -# Enum DOEType +# Enum DOEType + Namespace: [VM.Managed.DAFUL.DOE.Result](VM.Managed.DAFUL.DOE.Result.md) Assembly: VMDDOEResult.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.DesignParameter.ValueType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.DesignParameter.ValueType.md index eed1acc234..6e95342f94 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.DesignParameter.ValueType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.DesignParameter.ValueType.md @@ -1,4 +1,5 @@ -# Enum DesignParameter.ValueType +# Enum DesignParameter.ValueType + Namespace: [VM.Managed.DAFUL.DOE.Result](VM.Managed.DAFUL.DOE.Result.md) Assembly: VMDDOEResult.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.DesignParameter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.DesignParameter.md index 2798753e2a..e0200cd5ab 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.DesignParameter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.DesignParameter.md @@ -1,4 +1,5 @@ -# Class DesignParameter +# Class DesignParameter + Namespace: [VM.Managed.DAFUL.DOE.Result](VM.Managed.DAFUL.DOE.Result.md) Assembly: VMDDOEResult.dll @@ -9,7 +10,7 @@ public class DesignParameter : DOEInformationBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DOEInformationBase](VM.Managed.DAFUL.DOE.Result.DOEInformationBase.md) ← [DesignParameter](VM.Managed.DAFUL.DOE.Result.DesignParameter.md) @@ -43,7 +44,7 @@ public double Current { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Lower @@ -53,7 +54,7 @@ public double Lower { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Type @@ -73,7 +74,7 @@ public double Upper { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Values @@ -83,7 +84,7 @@ public double[] Values { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ## Methods @@ -95,5 +96,5 @@ public string GetName() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.IDOEView.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.IDOEView.md index 66074bb2eb..316d6f1f88 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.IDOEView.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.IDOEView.md @@ -1,4 +1,5 @@ -# Interface IDOEView +# Interface IDOEView + Namespace: [VM.Managed.DAFUL.DOE.Result](VM.Managed.DAFUL.DOE.Result.md) Assembly: VMDDOEResult.dll @@ -29,7 +30,7 @@ void Open(string strPath) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string ### Reload\(string\) @@ -39,7 +40,7 @@ void Reload(string strPath) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string ### ReloadResult\(string\) @@ -49,7 +50,7 @@ void ReloadResult(string strPath) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string ### Save\(string\) @@ -59,7 +60,7 @@ void Save(string strPath) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string ### SaveAs\(string\) @@ -69,5 +70,5 @@ void SaveAs(string strPath) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.PerformanceIndex.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.PerformanceIndex.md index 6c43f8262a..1f6f477ccf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.PerformanceIndex.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.PerformanceIndex.md @@ -1,4 +1,5 @@ -# Class PerformanceIndex +# Class PerformanceIndex + Namespace: [VM.Managed.DAFUL.DOE.Result](VM.Managed.DAFUL.DOE.Result.md) Assembly: VMDDOEResult.dll @@ -9,7 +10,7 @@ public class PerformanceIndex : DOEInformationBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DOEInformationBase](VM.Managed.DAFUL.DOE.Result.DOEInformationBase.md) ← [PerformanceIndex](VM.Managed.DAFUL.DOE.Result.PerformanceIndex.md) @@ -43,7 +44,7 @@ public double EndTime { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### IsDown @@ -53,7 +54,7 @@ public bool IsDown { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ResultType @@ -73,7 +74,7 @@ public double StartTime { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### WeightFactor @@ -83,5 +84,5 @@ public double WeightFactor { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.ResultType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.ResultType.md index 85f9a0bd13..1966f000e0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.ResultType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.ResultType.md @@ -1,4 +1,5 @@ -# Enum ResultType +# Enum ResultType + Namespace: [VM.Managed.DAFUL.DOE.Result](VM.Managed.DAFUL.DOE.Result.md) Assembly: VMDDOEResult.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.SerializableDictionary-2.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.SerializableDictionary-2.md index b4913fff3e..03d725e412 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.SerializableDictionary-2.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.SerializableDictionary-2.md @@ -1,4 +1,5 @@ -# Class SerializableDictionary +# Class SerializableDictionary + Namespace: [VM.Managed.DAFUL.DOE.Result](VM.Managed.DAFUL.DOE.Result.md) Assembly: VMDDOEResult.dll @@ -15,8 +16,8 @@ public class SerializableDictionary : Dictionary #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2) ← +object ← +Dictionary ← [SerializableDictionary](VM.Managed.DAFUL.DOE.Result.SerializableDictionary\-2.md) #### Extension Methods @@ -43,7 +44,7 @@ public XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema ### ReadXml\(XmlReader\) @@ -53,7 +54,7 @@ public void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader ### WriteXml\(XmlWriter\) @@ -63,5 +64,5 @@ public void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.enProc.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.enProc.md index ae596df37b..6dded168ed 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.enProc.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.enProc.md @@ -1,4 +1,5 @@ -# Enum enProc +# Enum enProc + Namespace: [VM.Managed.DAFUL.DOE.Result](VM.Managed.DAFUL.DOE.Result.md) Assembly: VMDDOEResult.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.md index 910d7c6871..3f07873006 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.Result.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.DOE.Result +# Namespace VM.Managed.DAFUL.DOE.Result + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.ResultType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.ResultType.md index 2b6ce8e53a..380e047a17 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.ResultType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.ResultType.md @@ -1,4 +1,5 @@ -# Enum ResultType +# Enum ResultType + Namespace: [VM.Managed.DAFUL.DOE](VM.Managed.DAFUL.DOE.md) Assembly: VMDDOE.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.md index d32a0007a1..af080849c6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DOE.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.DOE +# Namespace VM.Managed.DAFUL.DOE + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DocumentAnalysis.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DocumentAnalysis.md index af600c1852..cfc3bccf0b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DocumentAnalysis.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.DocumentAnalysis.md @@ -1,4 +1,5 @@ -# Class DocumentAnalysis +# Class DocumentAnalysis + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public abstract class DocumentAnalysis : Document3D, IObservableObject, IDisposa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← @@ -35,7 +36,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, IDocumentAnalysis, @@ -146,8 +147,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -158,9 +157,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -174,12 +173,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -457,7 +453,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -488,7 +484,7 @@ public DocumentAnalysis(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -504,7 +500,7 @@ protected bool m_bSkipGravity #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Properties @@ -542,7 +538,7 @@ public int CountOfMFLinearStaticSimulationConfigurations { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Gravity @@ -554,7 +550,7 @@ public Gravity Gravity { get; set; } #### Property Value - Gravity + [Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Gravity.cs) ### IconSize @@ -566,7 +562,7 @@ public override double IconSize { set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### IncrementTime @@ -578,7 +574,7 @@ public double IncrementTime { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SimulationScenarioTypeName @@ -590,7 +586,7 @@ public virtual string SimulationScenarioTypeName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UseIncrementTime @@ -602,7 +598,7 @@ public bool UseIncrementTime { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseToolkitSubsystem @@ -614,7 +610,7 @@ public virtual bool UseToolkitSubsystem { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -634,7 +630,7 @@ The configuration. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CheckBeforeSave\(\) @@ -670,7 +666,7 @@ public override List> GetAllArgumentList() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[KeyValuePair](https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [string](https://learn.microsoft.com/dotnet/api/system.string)\>\> + List\> The argument list @@ -684,7 +680,7 @@ public override void GetBodyAndTransformation(ref List +`lstBodyInfo` List The body information. @@ -698,7 +694,7 @@ public override void GetData(XmlNode writer) #### Parameters -`writer` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`writer` XmlNode The writer. @@ -724,7 +720,7 @@ public IMaterial GetDefaultMaterial(bool bAdd) #### Parameters -`bAdd` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bAdd` bool The [add to document] flag. @@ -742,7 +738,7 @@ public Dictionary GetEntityRequest() #### Returns - [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2) + Dictionary ### GetSimulationConfigurationType\(\) @@ -754,7 +750,7 @@ public virtual string GetSimulationConfigurationType() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The simulation configuration type. @@ -774,7 +770,7 @@ The ss. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### InitializeSimParam\(\) @@ -800,7 +796,7 @@ The ss. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsEnabledImpl\(ObjectBase\) @@ -818,7 +814,7 @@ The object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if is enabled [the specified object]; otherwise, false. @@ -832,7 +828,7 @@ public bool IsExistDefaultMaterial() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LinkRequestUpdate\(object, LinkEventArgs\) @@ -844,7 +840,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -862,7 +858,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -890,7 +886,7 @@ protected virtual void OnPostMakeDocumentImpl(DocCreateAnalysisInfo info) #### Parameters -`info` DocCreateAnalysisInfo +`info` [DocCreateAnalysisInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DocCreate3DInfo.cs) The [analysis document create information]. @@ -942,7 +938,7 @@ The object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -970,7 +966,7 @@ The configuration. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SetData\(XmlNode\) @@ -982,7 +978,7 @@ public override void SetData(XmlNode reader) #### Parameters -`reader` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`reader` XmlNode The reader. @@ -1000,7 +996,7 @@ protected override void SetEnableImpl(ObjectBase ob, bool bEnable) The object. -`bEnable` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bEnable` bool if set to true enable. @@ -1018,7 +1014,7 @@ public void SetStateFromActiveSimulationScenarioMap(Scenario ss, bool bActive) The ss. -`bActive` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bActive` bool ### SkipDelete\(ObjectBase\) @@ -1036,7 +1032,7 @@ The obj. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SkipObjectInWriting\(ObjectBase\) @@ -1054,5 +1050,5 @@ The obj. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.Differential1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.Differential1.md index ee5c4fd4c3..948303b4d7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.Differential1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.Differential1.md @@ -1,4 +1,5 @@ -# Class Differential1 +# Class Differential1 + Namespace: [VM.Managed.DAFUL.Equation](VM.Managed.DAFUL.Equation.md) Assembly: VMDEq.dll @@ -11,12 +12,12 @@ public class Differential1 : Equation, IObservableObject, IDisposableObject, ILi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [Equation](VM.Managed.DAFUL.Equation.Equation.md) ← [Differential1](VM.Managed.DAFUL.Equation.Differential1.md) @@ -31,7 +32,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -59,17 +60,17 @@ IReportable [Equation.ReferenceType](VM.Managed.DAFUL.Equation.Equation.md\#VM\_Managed\_DAFUL\_Equation\_Equation\_ReferenceType), [Equation.ArgumentType](VM.Managed.DAFUL.Equation.Equation.md\#VM\_Managed\_DAFUL\_Equation\_Equation\_ArgumentType), [Equation.ReportTypeImpl](VM.Managed.DAFUL.Equation.Equation.md\#VM\_Managed\_DAFUL\_Equation\_Equation\_ReportTypeImpl), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -162,7 +163,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -201,7 +202,7 @@ public Differential1(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the 1st differential equation. @@ -241,7 +242,7 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ReportTypeImpl @@ -281,7 +282,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The obj notifier. @@ -299,7 +300,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -313,7 +314,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.Differential2.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.Differential2.md index 22bfd14a0d..0742d55246 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.Differential2.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.Differential2.md @@ -1,4 +1,5 @@ -# Class Differential2 +# Class Differential2 + Namespace: [VM.Managed.DAFUL.Equation](VM.Managed.DAFUL.Equation.md) Assembly: VMDEq.dll @@ -11,12 +12,12 @@ public class Differential2 : Differential1, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [Equation](VM.Managed.DAFUL.Equation.Equation.md) ← [Differential1](VM.Managed.DAFUL.Equation.Differential1.md) ← [Differential2](VM.Managed.DAFUL.Equation.Differential2.md) @@ -28,7 +29,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -64,17 +65,17 @@ IReportable [Equation.ReferenceType](VM.Managed.DAFUL.Equation.Equation.md\#VM\_Managed\_DAFUL\_Equation\_Equation\_ReferenceType), [Equation.ArgumentType](VM.Managed.DAFUL.Equation.Equation.md\#VM\_Managed\_DAFUL\_Equation\_Equation\_ArgumentType), [Equation.ReportTypeImpl](VM.Managed.DAFUL.Equation.Equation.md\#VM\_Managed\_DAFUL\_Equation\_Equation\_ReportTypeImpl), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -167,7 +168,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -206,7 +207,7 @@ public Differential2(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the 2nd differential equation. @@ -234,7 +235,7 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ReportTypeImpl @@ -274,7 +275,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -288,7 +289,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.Equation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.Equation.md index 66555cf431..a05ccf234e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.Equation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.Equation.md @@ -1,4 +1,5 @@ -# Class Equation +# Class Equation + Namespace: [VM.Managed.DAFUL.Equation](VM.Managed.DAFUL.Equation.md) Assembly: VMDEq.dll @@ -11,12 +12,12 @@ public abstract class Equation : SubEntity, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [Equation](VM.Managed.DAFUL.Equation.Equation.md) #### Derived @@ -31,7 +32,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -53,17 +54,17 @@ IReportable #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -156,7 +157,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -195,7 +196,7 @@ public Equation(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the equation. @@ -223,7 +224,7 @@ public virtual string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ReportTypeImpl @@ -263,7 +264,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -277,7 +278,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.EquationDiffStandard.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.EquationDiffStandard.md index 8cf698b996..e8e713c11e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.EquationDiffStandard.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.EquationDiffStandard.md @@ -1,4 +1,5 @@ -# Class EquationDiffStandard +# Class EquationDiffStandard + Namespace: [VM.Managed.DAFUL.Equation](VM.Managed.DAFUL.Equation.md) Assembly: VMDEq.dll @@ -11,9 +12,9 @@ public sealed class EquationDiffStandard : EquationFunctionDiff, IObservableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [EquationFunction](VM.Managed.DAFUL.Equation.EquationFunction.md) ← [EquationFunctionDiff](VM.Managed.DAFUL.Equation.EquationFunctionDiff.md) ← @@ -114,7 +115,7 @@ public Function Function { get; set; } #### Property Value - Function + [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) ### Type diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.EquationDiffUserSubroutine.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.EquationDiffUserSubroutine.md index 1791cd1743..72aa01d1c6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.EquationDiffUserSubroutine.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.EquationDiffUserSubroutine.md @@ -1,4 +1,5 @@ -# Class EquationDiffUserSubroutine +# Class EquationDiffUserSubroutine + Namespace: [VM.Managed.DAFUL.Equation](VM.Managed.DAFUL.Equation.md) Assembly: VMDEq.dll @@ -11,9 +12,9 @@ public sealed class EquationDiffUserSubroutine : EquationFunctionDiff, IObservab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [EquationFunction](VM.Managed.DAFUL.Equation.EquationFunction.md) ← [EquationFunctionDiff](VM.Managed.DAFUL.Equation.EquationFunctionDiff.md) ← @@ -126,5 +127,5 @@ public UserSubroutine UserSubroutine { get; set; } #### Property Value - UserSubroutine + [UserSubroutine](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSP/UserSubroutine.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.EquationFunction.FunctionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.EquationFunction.FunctionType.md index 7c24bc879b..0cd875b2ca 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.EquationFunction.FunctionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.EquationFunction.FunctionType.md @@ -1,4 +1,5 @@ -# Enum EquationFunction.FunctionType +# Enum EquationFunction.FunctionType + Namespace: [VM.Managed.DAFUL.Equation](VM.Managed.DAFUL.Equation.md) Assembly: VMDEq.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.EquationFunction.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.EquationFunction.md index 75aaf6c505..947a48f819 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.EquationFunction.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.EquationFunction.md @@ -1,4 +1,5 @@ -# Class EquationFunction +# Class EquationFunction + Namespace: [VM.Managed.DAFUL.Equation](VM.Managed.DAFUL.Equation.md) Assembly: VMDEq.dll @@ -11,9 +12,9 @@ public abstract class EquationFunction : LinkContainer, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [EquationFunction](VM.Managed.DAFUL.Equation.EquationFunction.md) @@ -81,7 +82,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.EquationFunctionDiff.FunctionEquType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.EquationFunctionDiff.FunctionEquType.md index eb6a6c2252..3d5c19a938 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.EquationFunctionDiff.FunctionEquType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.EquationFunctionDiff.FunctionEquType.md @@ -1,4 +1,5 @@ -# Enum EquationFunctionDiff.FunctionEquType +# Enum EquationFunctionDiff.FunctionEquType + Namespace: [VM.Managed.DAFUL.Equation](VM.Managed.DAFUL.Equation.md) Assembly: VMDEq.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.EquationFunctionDiff.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.EquationFunctionDiff.md index e6c4f4cdc7..83baf6bf3a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.EquationFunctionDiff.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.EquationFunctionDiff.md @@ -1,4 +1,5 @@ -# Class EquationFunctionDiff +# Class EquationFunctionDiff + Namespace: [VM.Managed.DAFUL.Equation](VM.Managed.DAFUL.Equation.md) Assembly: VMDEq.dll @@ -11,9 +12,9 @@ public abstract class EquationFunctionDiff : EquationFunction, IObservableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [EquationFunction](VM.Managed.DAFUL.Equation.EquationFunction.md) ← [EquationFunctionDiff](VM.Managed.DAFUL.Equation.EquationFunctionDiff.md) @@ -83,7 +84,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -162,5 +163,5 @@ public bool IsUseHold { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.EquationStandard.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.EquationStandard.md index bc9ca58286..7af0b1ae18 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.EquationStandard.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.EquationStandard.md @@ -1,4 +1,5 @@ -# Class EquationStandard +# Class EquationStandard + Namespace: [VM.Managed.DAFUL.Equation](VM.Managed.DAFUL.Equation.md) Assembly: VMDEq.dll @@ -11,9 +12,9 @@ public sealed class EquationStandard : EquationFunction, IObservableObject, IDis #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [EquationFunction](VM.Managed.DAFUL.Equation.EquationFunction.md) ← [EquationStandard](VM.Managed.DAFUL.Equation.EquationStandard.md) @@ -110,7 +111,7 @@ public Function Function { get; set; } #### Property Value - Function + [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) ### Type diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.EquationUserSubroutine.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.EquationUserSubroutine.md index 4377c8ce97..16396f06ba 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.EquationUserSubroutine.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.EquationUserSubroutine.md @@ -1,4 +1,5 @@ -# Class EquationUserSubroutine +# Class EquationUserSubroutine + Namespace: [VM.Managed.DAFUL.Equation](VM.Managed.DAFUL.Equation.md) Assembly: VMDEq.dll @@ -11,9 +12,9 @@ public sealed class EquationUserSubroutine : EquationFunction, IObservableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [EquationFunction](VM.Managed.DAFUL.Equation.EquationFunction.md) ← [EquationUserSubroutine](VM.Managed.DAFUL.Equation.EquationUserSubroutine.md) @@ -122,5 +123,5 @@ public UserSubroutine UserSubroutine { get; set; } #### Property Value - UserSubroutine + [UserSubroutine](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSP/UserSubroutine.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.VariableEq.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.VariableEq.md index 5aec7b2bb9..d1f7694400 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.VariableEq.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.VariableEq.md @@ -1,4 +1,5 @@ -# Class VariableEq +# Class VariableEq + Namespace: [VM.Managed.DAFUL.Equation](VM.Managed.DAFUL.Equation.md) Assembly: VMDEq.dll @@ -11,12 +12,12 @@ public class VariableEq : Equation, IObservableObject, IDisposableObject, ILinka #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [Equation](VM.Managed.DAFUL.Equation.Equation.md) ← [VariableEq](VM.Managed.DAFUL.Equation.VariableEq.md) @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -55,17 +56,17 @@ IReportable [Equation.ReferenceType](VM.Managed.DAFUL.Equation.Equation.md\#VM\_Managed\_DAFUL\_Equation\_Equation\_ReferenceType), [Equation.ArgumentType](VM.Managed.DAFUL.Equation.Equation.md\#VM\_Managed\_DAFUL\_Equation\_Equation\_ArgumentType), [Equation.ReportTypeImpl](VM.Managed.DAFUL.Equation.Equation.md\#VM\_Managed\_DAFUL\_Equation\_Equation\_ReportTypeImpl), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -158,7 +159,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -197,7 +198,7 @@ public VariableEq(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the variable equation. @@ -237,7 +238,7 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ReportTypeImpl @@ -277,7 +278,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The obj notifier. @@ -295,7 +296,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -309,7 +310,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.md index a2cfdf9376..0e9f72993b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Equation.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Equation +# Namespace VM.Managed.DAFUL.Equation + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.AbstractXmlSerializer-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.AbstractXmlSerializer-1.md index 9700bc30df..676986db70 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.AbstractXmlSerializer-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.AbstractXmlSerializer-1.md @@ -1,4 +1,5 @@ -# Class AbstractXmlSerializer +# Class AbstractXmlSerializer + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -15,7 +16,7 @@ public class AbstractXmlSerializer #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AbstractXmlSerializer](VM.Managed.DAFUL.FE.AbstractXmlSerializer\-1.md) #### Extension Methods @@ -64,7 +65,7 @@ public virtual XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema ### ReadXml\(XmlReader\) @@ -74,7 +75,7 @@ public virtual void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader ### WriteXml\(XmlWriter\) @@ -84,7 +85,7 @@ public virtual void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter ## Operators diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.AttributeShellToSolid.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.AttributeShellToSolid.md index a3b0855054..3e2330272b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.AttributeShellToSolid.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.AttributeShellToSolid.md @@ -1,4 +1,5 @@ -# Class AttributeShellToSolid +# Class AttributeShellToSolid + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,9 +12,9 @@ public class AttributeShellToSolid : AttributeBase, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeShellToSolid](VM.Managed.DAFUL.FE.AttributeShellToSolid.md) @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -109,7 +110,7 @@ public AttributeShellToSolid(double dAlpha) #### Parameters -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha. @@ -133,5 +134,5 @@ public double Alpha { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.BC.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.BC.md index b315d17779..2ebb063414 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.BC.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.BC.md @@ -1,4 +1,5 @@ -# Class BC +# Class BC + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -12,14 +13,14 @@ public class BC : FEEntity, IObservableObject, IDisposableObject, IL #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [FEEntity](VM.Managed.DAFUL.FE.FEEntity\-1.md) ← [BC](VM.Managed.DAFUL.FE.BC.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -66,34 +67,34 @@ IGenerable [FEEntity.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.FE.FEEntity\-1.md\#VM\_Managed\_DAFUL\_FE\_FEEntity\_1\_Initialize\_VM\_Unit\_ConvertFactor\_), [FEEntity.HasLayerExplicitly](VM.Managed.DAFUL.FE.FEEntity\-1.md\#VM\_Managed\_DAFUL\_FE\_FEEntity\_1\_HasLayerExplicitly), [FEEntity.FEID](VM.Managed.DAFUL.FE.FEEntity\-1.md\#VM\_Managed\_DAFUL\_FE\_FEEntity\_1\_FEID), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -192,7 +193,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -223,7 +224,7 @@ public BC(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the boundary condition. @@ -259,7 +260,7 @@ bool GenerableImpl { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsHide @@ -271,7 +272,7 @@ bool IsHide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReferenceMarker @@ -297,7 +298,7 @@ public virtual void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -311,7 +312,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -329,7 +330,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -359,7 +360,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -373,7 +374,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.BeamPropertyInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.BeamPropertyInfo.md index 6adc1d7107..ce565e2350 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.BeamPropertyInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.BeamPropertyInfo.md @@ -1,4 +1,5 @@ -# Class BeamPropertyInfo +# Class BeamPropertyInfo + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,9 +12,9 @@ public class BeamPropertyInfo : LinkContainer, IObservableObject, IDisposableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [BeamPropertyInfo](VM.Managed.DAFUL.FE.BeamPropertyInfo.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -126,7 +127,7 @@ public ExpressionValueVariable Radius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### \_Material diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.DistributedMass.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.DistributedMass.md index 85c4de7a85..30be7e65ba 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.DistributedMass.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.DistributedMass.md @@ -1,4 +1,5 @@ -# Class DistributedMass +# Class DistributedMass + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,12 +12,12 @@ public class DistributedMass : FMassBase, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [FESubEntity](VM.Managed.DAFUL.FE.FESubEntity.md) ← [FMassBase](VM.Managed.DAFUL.FE.FMassBase.md) ← [DistributedMass](VM.Managed.DAFUL.FE.DistributedMass.md) @@ -28,7 +29,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -64,17 +65,17 @@ IReferencable [FESubEntity.GetNodalBodyForSubsystem\(SubSystem, Mesh\)](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_GetNodalBodyForSubsystem\_VM\_Managed\_DAFUL\_SubSystem\_VM\_Managed\_DAFUL\_FE\_Mesh\_), [FESubEntity.FEID](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_FEID), [FESubEntity.OwnerMesh](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_OwnerMesh), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -167,7 +168,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -198,7 +199,7 @@ public DistributedMass(string strName, SetPatchBase sets) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the distributed mass. @@ -216,7 +217,7 @@ public DistributedMass(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the distributed mass. @@ -240,7 +241,7 @@ public ExpressionValueVariable MassPerUnit { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TargetGeometry @@ -264,7 +265,7 @@ public ExpressionValueVariable TotalMass { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -278,7 +279,7 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -292,21 +293,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [b has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -334,7 +335,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.EigenvalueInfo.RBEType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.EigenvalueInfo.RBEType.md index 4e38c4f1e7..998c08556b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.EigenvalueInfo.RBEType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.EigenvalueInfo.RBEType.md @@ -1,4 +1,5 @@ -# Enum EigenvalueInfo.RBEType +# Enum EigenvalueInfo.RBEType + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.EigenvalueInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.EigenvalueInfo.md index 6cda073978..b0957afd11 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.EigenvalueInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.EigenvalueInfo.md @@ -1,4 +1,5 @@ -# Class EigenvalueInfo +# Class EigenvalueInfo + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,9 +12,9 @@ public class EigenvalueInfo : LinkContainer, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [EigenvalueInfo](VM.Managed.DAFUL.FE.EigenvalueInfo.md) @@ -79,7 +80,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -108,7 +109,7 @@ public EigenvalueInfo(bool bUseStaticCorrectionMode) #### Parameters -`bUseStaticCorrectionMode` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseStaticCorrectionMode` bool ### EigenvalueInfo\(\) @@ -128,7 +129,7 @@ public bool ImposeRotationalUnitDisplacement { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseStaticCorrectionMode @@ -140,5 +141,5 @@ public bool UseStaticCorrectionMode { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Element.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Element.md index 934fc3137a..8623bc5877 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Element.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Element.md @@ -1,4 +1,5 @@ -# Struct Element +# Struct Element + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -25,11 +26,11 @@ public Element(Mesh meshParent, uint nIndex, uint nIndexType, ObjectEventCore co The owner of mesh. -`nIndex` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nIndex` uint The index. -`nIndexType` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nIndexType` uint The type of index. @@ -49,7 +50,7 @@ public uint[] NodeIndex #### Field Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] + uint\[\] ### Type diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ElementInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ElementInfo.md index 09a0a213b9..8700b9e417 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ElementInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ElementInfo.md @@ -1,4 +1,5 @@ -# Struct ElementInfo +# Struct ElementInfo + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -33,5 +34,5 @@ public uint m_nIndex #### Field Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ElementType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ElementType.md index 563fabc9c3..9f30c19ca0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ElementType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ElementType.md @@ -1,4 +1,5 @@ -# Enum ElementType +# Enum ElementType + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.FEEntity-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.FEEntity-1.md index 9c23933de0..3de0154fce 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.FEEntity-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.FEEntity-1.md @@ -1,4 +1,5 @@ -# Class FEEntity +# Class FEEntity + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -17,14 +18,14 @@ The type of the property. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [FEEntity](VM.Managed.DAFUL.FE.FEEntity\-1.md) #### Implements @@ -34,7 +35,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -61,34 +62,34 @@ IGroup, #### Inherited Members -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -187,7 +188,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -226,7 +227,7 @@ public FEEntity(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the FE entity. @@ -242,7 +243,7 @@ public uint FEID { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### HasLayerExplicitly @@ -254,7 +255,7 @@ protected override sealed bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.FEObject.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.FEObject.md index 251423943b..9d31c29884 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.FEObject.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.FEObject.md @@ -1,4 +1,5 @@ -# Class FEObject +# Class FEObject + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,9 +12,9 @@ public abstract class FEObject : ContainerObject, IObservableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← @@ -34,7 +35,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -141,7 +142,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -172,11 +173,11 @@ protected FEObject(string strProxyName, string strBuildInfo) #### Parameters -`strProxyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strProxyName` string Name of the proxy. -`strBuildInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBuildInfo` string The build information. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.FEProperty.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.FEProperty.md index 67bd9b4d16..3767b76d60 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.FEProperty.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.FEProperty.md @@ -1,4 +1,5 @@ -# Class FEProperty +# Class FEProperty + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,13 +12,13 @@ public abstract class FEProperty : Property, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [FEProperty](VM.Managed.DAFUL.FE.FEProperty.md) #### Derived @@ -36,7 +37,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -45,12 +46,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -149,7 +150,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.FESubEntity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.FESubEntity.md index 746c533993..eded4246f3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.FESubEntity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.FESubEntity.md @@ -1,4 +1,5 @@ -# Class FESubEntity +# Class FESubEntity + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,12 +12,12 @@ public abstract class FESubEntity : SubEntity, IObservableObject, IDisposableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [FESubEntity](VM.Managed.DAFUL.FE.FESubEntity.md) #### Derived @@ -37,7 +38,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -57,17 +58,17 @@ INavigatorItem, #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -160,7 +161,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -191,15 +192,15 @@ protected FESubEntity(string strName, string strProxyName, string strBuildInfo) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the FE sub entity. -`strProxyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strProxyName` string Name of the proxy. -`strBuildInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBuildInfo` string The build information. @@ -213,11 +214,11 @@ protected FESubEntity(string strProxyName, string strBuildInfo) #### Parameters -`strProxyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strProxyName` string Name of the proxy. -`strBuildInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBuildInfo` string The build information. @@ -231,7 +232,7 @@ protected FESubEntity(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the FE sub entity. @@ -255,7 +256,7 @@ public uint FEID { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### OwnerMesh @@ -305,7 +306,7 @@ public static ObjectBase GetNodalBodyForSubsystem(SubSystem subsystem, Mesh mesh #### Parameters -`subsystem` SubSystem +`subsystem` [SubSystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystem.cs) The sub system. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.FMass.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.FMass.md index 9907bdc737..ea8d89f9d3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.FMass.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.FMass.md @@ -1,4 +1,5 @@ -# Class FMass +# Class FMass + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,12 +12,12 @@ public class FMass : FESubEntity, IObservableObject, IDisposableObject, ILinkabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [FESubEntity](VM.Managed.DAFUL.FE.FESubEntity.md) ← [FMass](VM.Managed.DAFUL.FE.FMass.md) @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -51,17 +52,17 @@ INavigatorItem, [FESubEntity.GetNodalBodyForSubsystem\(SubSystem, Mesh\)](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_GetNodalBodyForSubsystem\_VM\_Managed\_DAFUL\_SubSystem\_VM\_Managed\_DAFUL\_FE\_Mesh\_), [FESubEntity.FEID](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_FEID), [FESubEntity.OwnerMesh](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_OwnerMesh), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -154,7 +155,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -185,7 +186,7 @@ public FMass(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the FE mass. @@ -209,7 +210,7 @@ public double Mass { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MomentOfInertia\[MomentOfInertia\] @@ -221,7 +222,7 @@ public double MomentOfInertia[MomentOfInertia enType] { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Node @@ -263,7 +264,7 @@ public double get_MomentOfInertia(MomentOfInertia enType) #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### set\_MomentOfInertia\(MomentOfInertia, double\) @@ -275,5 +276,5 @@ public void set_MomentOfInertia(MomentOfInertia enType, double dVal) `enType` MomentOfInertia -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.FMassBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.FMassBase.md index 5cea62740d..604f28ab8a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.FMassBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.FMassBase.md @@ -1,4 +1,5 @@ -# Class FMassBase +# Class FMassBase + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,12 +12,12 @@ public abstract class FMassBase : FESubEntity, IObservableObject, IDisposableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [FESubEntity](VM.Managed.DAFUL.FE.FESubEntity.md) ← [FMassBase](VM.Managed.DAFUL.FE.FMassBase.md) @@ -32,7 +33,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -61,17 +62,17 @@ IReferencable [FESubEntity.GetNodalBodyForSubsystem\(SubSystem, Mesh\)](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_GetNodalBodyForSubsystem\_VM\_Managed\_DAFUL\_SubSystem\_VM\_Managed\_DAFUL\_FE\_Mesh\_), [FESubEntity.FEID](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_FEID), [FESubEntity.OwnerMesh](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_OwnerMesh), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -164,7 +165,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -195,15 +196,15 @@ protected FMassBase(string strName, string strProxyName, string strBuildInfo) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the FE sub entity. -`strProxyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strProxyName` string Name of the proxy. -`strBuildInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBuildInfo` string The build information. @@ -217,11 +218,11 @@ protected FMassBase(string strProxyName, string strBuildInfo) #### Parameters -`strProxyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strProxyName` string Name of the proxy. -`strBuildInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBuildInfo` string The build information. @@ -235,7 +236,7 @@ protected FMassBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the FE sub entity. @@ -259,7 +260,7 @@ bool IsHide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsVisible @@ -271,7 +272,7 @@ bool IsVisible { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Layer @@ -297,7 +298,7 @@ public virtual void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -317,7 +318,7 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.FRBE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.FRBE.md index fa99cf7c1b..f30c1a2f5f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.FRBE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.FRBE.md @@ -1,4 +1,5 @@ -# Class FRBE +# Class FRBE + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,12 +12,12 @@ public class FRBE : FESubEntity, IObservableObject, IDisposableObject, ILinkable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [FESubEntity](VM.Managed.DAFUL.FE.FESubEntity.md) ← [FRBE](VM.Managed.DAFUL.FE.FRBE.md) @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -63,17 +64,17 @@ IMultiChangable [FESubEntity.GetNodalBodyForSubsystem\(SubSystem, Mesh\)](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_GetNodalBodyForSubsystem\_VM\_Managed\_DAFUL\_SubSystem\_VM\_Managed\_DAFUL\_FE\_Mesh\_), [FESubEntity.FEID](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_FEID), [FESubEntity.OwnerMesh](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_OwnerMesh), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -166,7 +167,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -197,7 +198,7 @@ public FRBE(string strName, EigenvalueInfo.RBEType behaviorType) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the FRBE. @@ -215,7 +216,7 @@ public FRBE(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the FRBE. @@ -263,7 +264,7 @@ public virtual Color Color { get; set; } #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### EigenvalueAnalysisInfo @@ -287,7 +288,7 @@ bool IsHide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsHideWhenImporting @@ -299,7 +300,7 @@ public bool IsHideWhenImporting { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsVisible @@ -311,7 +312,7 @@ bool IsVisible { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Layer @@ -347,7 +348,7 @@ public uint NumNode { get; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### this\[uint\] @@ -371,7 +372,7 @@ public virtual void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -385,21 +386,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [b has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -416,7 +417,7 @@ public virtual XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -444,7 +445,7 @@ public override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -474,7 +475,7 @@ public virtual void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -488,7 +489,7 @@ public virtual void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. @@ -500,7 +501,7 @@ public Node get_Node(uint nIndex) #### Parameters -`nIndex` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nIndex` uint #### Returns @@ -514,7 +515,7 @@ public void set_Node(uint nIndex, Node node) #### Parameters -`nIndex` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nIndex` uint `node` [Node](VM.Managed.DAFUL.FE.Node.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.FlexibleBodyType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.FlexibleBodyType.md index 331addc0fe..db37326640 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.FlexibleBodyType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.FlexibleBodyType.md @@ -1,4 +1,5 @@ -# Enum FlexibleBodyType +# Enum FlexibleBodyType + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.CLoad.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.CLoad.md index 5c9353f1a8..4d0aa1f7cd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.CLoad.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.CLoad.md @@ -1,4 +1,5 @@ -# Class CLoad +# Class CLoad + Namespace: [VM.Managed.DAFUL.FE.Force](VM.Managed.DAFUL.FE.Force.md) Assembly: VMFE.dll @@ -11,14 +12,14 @@ public class CLoad : FEEntity, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [FEEntity](VM.Managed.DAFUL.FE.FEEntity\-1.md) ← [CLoad](VM.Managed.DAFUL.FE.Force.CLoad.md) @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -66,34 +67,34 @@ IHasReplaceableEntity [FEEntity.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.FE.FEEntity\-1.md\#VM\_Managed\_DAFUL\_FE\_FEEntity\_1\_Initialize\_VM\_Unit\_ConvertFactor\_), [FEEntity.HasLayerExplicitly](VM.Managed.DAFUL.FE.FEEntity\-1.md\#VM\_Managed\_DAFUL\_FE\_FEEntity\_1\_HasLayerExplicitly), [FEEntity.FEID](VM.Managed.DAFUL.FE.FEEntity\-1.md\#VM\_Managed\_DAFUL\_FE\_FEEntity\_1\_FEID), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -192,7 +193,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -223,7 +224,7 @@ public CLoad(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the concentrated load. @@ -271,7 +272,7 @@ bool IsHide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReferenceType @@ -283,7 +284,7 @@ public virtual string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### \_CLoadComponent @@ -309,7 +310,7 @@ public virtual void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -323,21 +324,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlRootEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlRootEle` XmlElement The XmlDocument for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -351,7 +352,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -385,7 +386,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -399,7 +400,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.CLoadStandard.CLoadFunction.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.CLoadStandard.CLoadFunction.md index ceb6174493..89d3e584a9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.CLoadStandard.CLoadFunction.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.CLoadStandard.CLoadFunction.md @@ -1,4 +1,5 @@ -# Class CLoadStandard.CLoadFunction +# Class CLoadStandard.CLoadFunction + Namespace: [VM.Managed.DAFUL.FE.Force](VM.Managed.DAFUL.FE.Force.md) Assembly: VMFE.dll @@ -11,9 +12,9 @@ public class CLoadStandard.CLoadFunction : LinkContainer, IObservableObject, IDi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [CLoadStandard.CLoadFunction](VM.Managed.DAFUL.FE.Force.CLoadStandard.CLoadFunction.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -122,5 +123,5 @@ public Function Function { get; set; } #### Property Value - Function + [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.CLoadStandard.DirectionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.CLoadStandard.DirectionType.md index 0e99c402b5..b9db42fa04 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.CLoadStandard.DirectionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.CLoadStandard.DirectionType.md @@ -1,4 +1,5 @@ -# Enum CLoadStandard.DirectionType +# Enum CLoadStandard.DirectionType + Namespace: [VM.Managed.DAFUL.FE.Force](VM.Managed.DAFUL.FE.Force.md) Assembly: VMFE.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.CLoadStandard.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.CLoadStandard.md index 69a44d7693..53c5e1d5ae 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.CLoadStandard.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.CLoadStandard.md @@ -1,4 +1,5 @@ -# Class CLoadStandard +# Class CLoadStandard + Namespace: [VM.Managed.DAFUL.FE.Force](VM.Managed.DAFUL.FE.Force.md) Assembly: VMFE.dll @@ -11,9 +12,9 @@ public class CLoadStandard : FEForceFunctionCLoad, IObservableObject, IDisposabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [FEForceFunction](VM.Managed.DAFUL.FE.Force.FEForceFunction.md) ← [FEForceFunctionCLoad](VM.Managed.DAFUL.FE.Force.FEForceFunctionCLoad.md) ← @@ -82,7 +83,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -305,7 +306,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.CLoadUserSubroutine.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.CLoadUserSubroutine.md index 49baf6a82a..76c614e8ce 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.CLoadUserSubroutine.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.CLoadUserSubroutine.md @@ -1,4 +1,5 @@ -# Class CLoadUserSubroutine +# Class CLoadUserSubroutine + Namespace: [VM.Managed.DAFUL.FE.Force](VM.Managed.DAFUL.FE.Force.md) Assembly: VMFE.dll @@ -11,9 +12,9 @@ public class CLoadUserSubroutine : FEForceFunctionCLoad, IObservableObject, IDis #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [FEForceFunction](VM.Managed.DAFUL.FE.Force.FEForceFunction.md) ← [FEForceFunctionCLoad](VM.Managed.DAFUL.FE.Force.FEForceFunctionCLoad.md) ← @@ -83,7 +84,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -142,5 +143,5 @@ public UserSubroutine UserSubroutine { get; set; } #### Property Value - UserSubroutine + [UserSubroutine](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSP/UserSubroutine.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.FEForceFunction.FunctionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.FEForceFunction.FunctionType.md index 53ad26a2c4..0b159fb3fb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.FEForceFunction.FunctionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.FEForceFunction.FunctionType.md @@ -1,4 +1,5 @@ -# Enum FEForceFunction.FunctionType +# Enum FEForceFunction.FunctionType + Namespace: [VM.Managed.DAFUL.FE.Force](VM.Managed.DAFUL.FE.Force.md) Assembly: VMFE.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.FEForceFunction.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.FEForceFunction.md index 3de98970e9..4b966dab85 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.FEForceFunction.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.FEForceFunction.md @@ -1,4 +1,5 @@ -# Class FEForceFunction +# Class FEForceFunction + Namespace: [VM.Managed.DAFUL.FE.Force](VM.Managed.DAFUL.FE.Force.md) Assembly: VMFE.dll @@ -11,9 +12,9 @@ public abstract class FEForceFunction : LinkContainer, IObservableObject, IDispo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [FEForceFunction](VM.Managed.DAFUL.FE.Force.FEForceFunction.md) @@ -81,7 +82,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.FEForceFunctionCLoad.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.FEForceFunctionCLoad.md index a1850e6038..0951d7d885 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.FEForceFunctionCLoad.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.FEForceFunctionCLoad.md @@ -1,4 +1,5 @@ -# Class FEForceFunctionCLoad +# Class FEForceFunctionCLoad + Namespace: [VM.Managed.DAFUL.FE.Force](VM.Managed.DAFUL.FE.Force.md) Assembly: VMFE.dll @@ -11,9 +12,9 @@ public abstract class FEForceFunctionCLoad : FEForceFunction, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [FEForceFunction](VM.Managed.DAFUL.FE.Force.FEForceFunction.md) ← [FEForceFunctionCLoad](VM.Managed.DAFUL.FE.Force.FEForceFunctionCLoad.md) @@ -82,7 +83,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -150,7 +151,7 @@ public Marker ReferenceMarker { get; set; } #### Property Value - Marker + [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) ### \_CLoadReferenceMarker @@ -176,7 +177,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.PLoad.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.PLoad.md index 823f373744..880cf59a63 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.PLoad.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.PLoad.md @@ -1,4 +1,5 @@ -# Class PLoad +# Class PLoad + Namespace: [VM.Managed.DAFUL.FE.Force](VM.Managed.DAFUL.FE.Force.md) Assembly: VMFE.dll @@ -11,14 +12,14 @@ public class PLoad : FEEntity, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [FEEntity](VM.Managed.DAFUL.FE.FEEntity\-1.md) ← [PLoad](VM.Managed.DAFUL.FE.Force.PLoad.md) @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -66,34 +67,34 @@ IHasReplaceableEntity [FEEntity.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.FE.FEEntity\-1.md\#VM\_Managed\_DAFUL\_FE\_FEEntity\_1\_Initialize\_VM\_Unit\_ConvertFactor\_), [FEEntity.HasLayerExplicitly](VM.Managed.DAFUL.FE.FEEntity\-1.md\#VM\_Managed\_DAFUL\_FE\_FEEntity\_1\_HasLayerExplicitly), [FEEntity.FEID](VM.Managed.DAFUL.FE.FEEntity\-1.md\#VM\_Managed\_DAFUL\_FE\_FEEntity\_1\_FEID), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -192,7 +193,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -223,7 +224,7 @@ public PLoad(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the pressure load. @@ -259,7 +260,7 @@ bool IsHide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PLoadComponent @@ -283,7 +284,7 @@ public virtual string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### \_PLoadComponent @@ -309,7 +310,7 @@ public virtual void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -323,21 +324,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlRootEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlRootEle` XmlElement The XmlDocument for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -351,7 +352,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -385,7 +386,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -399,7 +400,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.PLoadStandard.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.PLoadStandard.md index 259ba32e94..a62069b1aa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.PLoadStandard.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.PLoadStandard.md @@ -1,4 +1,5 @@ -# Class PLoadStandard +# Class PLoadStandard + Namespace: [VM.Managed.DAFUL.FE.Force](VM.Managed.DAFUL.FE.Force.md) Assembly: VMFE.dll @@ -11,9 +12,9 @@ public class PLoadStandard : FEForceFunction, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [FEForceFunction](VM.Managed.DAFUL.FE.Force.FEForceFunction.md) ← [PLoadStandard](VM.Managed.DAFUL.FE.Force.PLoadStandard.md) @@ -77,7 +78,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -124,7 +125,7 @@ public Function Function { get; set; } #### Property Value - Function + [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) ### Type diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.PLoadUserSubroutine.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.PLoadUserSubroutine.md index 3454db136e..d848431985 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.PLoadUserSubroutine.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.PLoadUserSubroutine.md @@ -1,4 +1,5 @@ -# Class PLoadUserSubroutine +# Class PLoadUserSubroutine + Namespace: [VM.Managed.DAFUL.FE.Force](VM.Managed.DAFUL.FE.Force.md) Assembly: VMFE.dll @@ -11,9 +12,9 @@ public class PLoadUserSubroutine : FEForceFunction, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [FEForceFunction](VM.Managed.DAFUL.FE.Force.FEForceFunction.md) ← [PLoadUserSubroutine](VM.Managed.DAFUL.FE.Force.PLoadUserSubroutine.md) @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -137,5 +138,5 @@ public UserSubroutine UserSubroutine { get; set; } #### Property Value - UserSubroutine + [UserSubroutine](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSP/UserSubroutine.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.PropertyCLoad.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.PropertyCLoad.md index cec068016e..c5c84b9a84 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.PropertyCLoad.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.PropertyCLoad.md @@ -1,4 +1,5 @@ -# Class PropertyCLoad +# Class PropertyCLoad + Namespace: [VM.Managed.DAFUL.FE.Force](VM.Managed.DAFUL.FE.Force.md) Assembly: VMFE.dll @@ -11,13 +12,13 @@ public class PropertyCLoad : PropertyFEForce, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [FEProperty](VM.Managed.DAFUL.FE.FEProperty.md) ← [PropertyFEForce](VM.Managed.DAFUL.FE.Force.PropertyFEForce.md) ← [PropertyCLoad](VM.Managed.DAFUL.FE.Force.PropertyCLoad.md) @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -43,12 +44,12 @@ IHasID #### Inherited Members [PropertyFEForce.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.FE.Force.PropertyFEForce.md\#VM\_Managed\_DAFUL\_FE\_Force\_PropertyFEForce\_Initialize\_VM\_Unit\_ConvertFactor\_), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -147,7 +148,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.PropertyFEForce.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.PropertyFEForce.md index 3ecf77a205..83b583c9fb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.PropertyFEForce.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.PropertyFEForce.md @@ -1,4 +1,5 @@ -# Class PropertyFEForce +# Class PropertyFEForce + Namespace: [VM.Managed.DAFUL.FE.Force](VM.Managed.DAFUL.FE.Force.md) Assembly: VMFE.dll @@ -11,13 +12,13 @@ public abstract class PropertyFEForce : FEProperty, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [FEProperty](VM.Managed.DAFUL.FE.FEProperty.md) ← [PropertyFEForce](VM.Managed.DAFUL.FE.Force.PropertyFEForce.md) @@ -37,7 +38,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -46,12 +47,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -150,7 +151,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.PropertyPLoad.DirectionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.PropertyPLoad.DirectionType.md index fa2577b0ba..90c49d5876 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.PropertyPLoad.DirectionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.PropertyPLoad.DirectionType.md @@ -1,4 +1,5 @@ -# Enum PropertyPLoad.DirectionType +# Enum PropertyPLoad.DirectionType + Namespace: [VM.Managed.DAFUL.FE.Force](VM.Managed.DAFUL.FE.Force.md) Assembly: VMFE.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.PropertyPLoad.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.PropertyPLoad.md index f5ad058f82..d83b718eea 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.PropertyPLoad.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.PropertyPLoad.md @@ -1,4 +1,5 @@ -# Class PropertyPLoad +# Class PropertyPLoad + Namespace: [VM.Managed.DAFUL.FE.Force](VM.Managed.DAFUL.FE.Force.md) Assembly: VMFE.dll @@ -11,13 +12,13 @@ public class PropertyPLoad : PropertyFEForce, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [FEProperty](VM.Managed.DAFUL.FE.FEProperty.md) ← [PropertyFEForce](VM.Managed.DAFUL.FE.Force.PropertyFEForce.md) ← [PropertyPLoad](VM.Managed.DAFUL.FE.Force.PropertyPLoad.md) @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -43,12 +44,12 @@ IHasID #### Inherited Members [PropertyFEForce.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.FE.Force.PropertyFEForce.md\#VM\_Managed\_DAFUL\_FE\_Force\_PropertyFEForce\_Initialize\_VM\_Unit\_ConvertFactor\_), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -147,7 +148,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.md index df2ce7743d..29533d3322 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Force.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.FE.Force +# Namespace VM.Managed.DAFUL.FE.Force + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.MeshAddEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.MeshAddEvent.md index 84537c0256..c69f71d3c2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.MeshAddEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.MeshAddEvent.md @@ -1,4 +1,5 @@ -# Class MeshAddEvent +# Class MeshAddEvent + Namespace: [VM.Managed.DAFUL.FE.History](VM.Managed.DAFUL.FE.History.md) Assembly: VMFE.dll @@ -11,25 +12,25 @@ public class MeshAddEvent : MeshAddRemoveEventBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [MeshAddRemoveEventBase](VM.Managed.DAFUL.FE.History.MeshAddRemoveEventBase.md) ← [MeshAddEvent](VM.Managed.DAFUL.FE.History.MeshAddEvent.md) #### Inherited Members [MeshAddRemoveEventBase.Clear\(bool\)](VM.Managed.DAFUL.FE.History.MeshAddRemoveEventBase.md\#VM\_Managed\_DAFUL\_FE\_History\_MeshAddRemoveEventBase\_Clear\_System\_Boolean\_), -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -47,7 +48,7 @@ public override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Undo\(HistoryEventArgs\) @@ -57,5 +58,5 @@ public override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.MeshAddRemoveEventBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.MeshAddRemoveEventBase.md index 0e1d7a527c..2e8f9c3944 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.MeshAddRemoveEventBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.MeshAddRemoveEventBase.md @@ -1,4 +1,5 @@ -# Class MeshAddRemoveEventBase +# Class MeshAddRemoveEventBase + Namespace: [VM.Managed.DAFUL.FE.History](VM.Managed.DAFUL.FE.History.md) Assembly: VMFE.dll @@ -11,8 +12,8 @@ public abstract class MeshAddRemoveEventBase : HistoryEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [MeshAddRemoveEventBase](VM.Managed.DAFUL.FE.History.MeshAddRemoveEventBase.md) #### Derived @@ -22,17 +23,17 @@ HistoryEvent ← #### Inherited Members -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -50,9 +51,9 @@ protected MeshAddRemoveEventBase(UIntPtr keyMesh, UIntPtr keyObj) #### Parameters -`keyMesh` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`keyMesh` UIntPtr -`keyObj` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`keyObj` UIntPtr ## Methods @@ -64,5 +65,5 @@ protected override void Clear(bool bReserveReferenceCount) #### Parameters -`bReserveReferenceCount` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReserveReferenceCount` bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.MeshRemoveEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.MeshRemoveEvent.md index d65f6486bc..ce22528037 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.MeshRemoveEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.MeshRemoveEvent.md @@ -1,4 +1,5 @@ -# Class MeshRemoveEvent +# Class MeshRemoveEvent + Namespace: [VM.Managed.DAFUL.FE.History](VM.Managed.DAFUL.FE.History.md) Assembly: VMFE.dll @@ -11,25 +12,25 @@ public class MeshRemoveEvent : MeshAddRemoveEventBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [MeshAddRemoveEventBase](VM.Managed.DAFUL.FE.History.MeshAddRemoveEventBase.md) ← [MeshRemoveEvent](VM.Managed.DAFUL.FE.History.MeshRemoveEvent.md) #### Inherited Members [MeshAddRemoveEventBase.Clear\(bool\)](VM.Managed.DAFUL.FE.History.MeshAddRemoveEventBase.md\#VM\_Managed\_DAFUL\_FE\_History\_MeshAddRemoveEventBase\_Clear\_System\_Boolean\_), -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -47,7 +48,7 @@ public override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Undo\(HistoryEventArgs\) @@ -57,5 +58,5 @@ public override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.NodalBodyUpdatePositionEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.NodalBodyUpdatePositionEvent.md index a460808aeb..8ae742d3fe 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.NodalBodyUpdatePositionEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.NodalBodyUpdatePositionEvent.md @@ -1,4 +1,5 @@ -# Class NodalBodyUpdatePositionEvent +# Class NodalBodyUpdatePositionEvent + Namespace: [VM.Managed.DAFUL.FE.History](VM.Managed.DAFUL.FE.History.md) Assembly: VMFE.dll @@ -11,23 +12,23 @@ public class NodalBodyUpdatePositionEvent : HistoryEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [NodalBodyUpdatePositionEvent](VM.Managed.DAFUL.FE.History.NodalBodyUpdatePositionEvent.md) #### Inherited Members -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -45,7 +46,7 @@ public NodalBodyUpdatePositionEvent(object obj, NodalBody.NodeInformation[] arNo #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object `arNodeInfo` [NodalBody](VM.Managed.DAFUL.FE.NodalBody.md).[NodeInformation](VM.Managed.DAFUL.FE.NodalBody.NodeInformation.md)\[\] @@ -61,7 +62,7 @@ public override void Clear(bool bReserveReferenceCount) #### Parameters -`bReserveReferenceCount` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReserveReferenceCount` bool ### Redo\(HistoryEventArgs\) @@ -71,7 +72,7 @@ public override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Undo\(HistoryEventArgs\) @@ -81,5 +82,5 @@ public override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.NodesetUpdateDisplayEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.NodesetUpdateDisplayEvent.md index 0cd030b356..1130afe7b0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.NodesetUpdateDisplayEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.NodesetUpdateDisplayEvent.md @@ -1,4 +1,5 @@ -# Class NodesetUpdateDisplayEvent +# Class NodesetUpdateDisplayEvent + Namespace: [VM.Managed.DAFUL.FE.History](VM.Managed.DAFUL.FE.History.md) Assembly: VMFE.dll @@ -11,23 +12,23 @@ public class NodesetUpdateDisplayEvent : HistoryEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [NodesetUpdateDisplayEvent](VM.Managed.DAFUL.FE.History.NodesetUpdateDisplayEvent.md) #### Inherited Members -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -45,7 +46,7 @@ public NodesetUpdateDisplayEvent(object obOriginal) #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object ## Methods @@ -57,7 +58,7 @@ protected override void AfterRedo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### AfterUndo\(HistoryEventArgs\) @@ -67,7 +68,7 @@ protected override void AfterUndo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Clear\(bool\) @@ -77,7 +78,7 @@ protected override void Clear(bool bReserveReferenceCount) #### Parameters -`bReserveReferenceCount` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReserveReferenceCount` bool ### NodesetUpdateDisplay\(ObjectBase\) @@ -97,7 +98,7 @@ protected override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Undo\(HistoryEventArgs\) @@ -107,5 +108,5 @@ protected override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseEdgesetAddEdgesEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseEdgesetAddEdgesEvent.md index 25b6de7608..77dbc61897 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseEdgesetAddEdgesEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseEdgesetAddEdgesEvent.md @@ -1,4 +1,5 @@ -# Class ObjectBaseEdgesetAddEdgesEvent +# Class ObjectBaseEdgesetAddEdgesEvent + Namespace: [VM.Managed.DAFUL.FE.History](VM.Managed.DAFUL.FE.History.md) Assembly: VMFE.dll @@ -11,8 +12,8 @@ public class ObjectBaseEdgesetAddEdgesEvent : ObjectBaseEdgesetAddRemoveEdgesEve #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [ObjectBaseEdgesetAddRemoveEdgesEvent](VM.Managed.DAFUL.FE.History.ObjectBaseEdgesetAddRemoveEdgesEvent.md) ← [ObjectBaseEdgesetAddEdgesEvent](VM.Managed.DAFUL.FE.History.ObjectBaseEdgesetAddEdgesEvent.md) @@ -24,17 +25,17 @@ HistoryEvent ← [ObjectBaseEdgesetAddRemoveEdgesEvent.AddEdges\(\)](VM.Managed.DAFUL.FE.History.ObjectBaseEdgesetAddRemoveEdgesEvent.md\#VM\_Managed\_DAFUL\_FE\_History\_ObjectBaseEdgesetAddRemoveEdgesEvent\_AddEdges), [ObjectBaseEdgesetAddRemoveEdgesEvent.RemoveEdges\(\)](VM.Managed.DAFUL.FE.History.ObjectBaseEdgesetAddRemoveEdgesEvent.md\#VM\_Managed\_DAFUL\_FE\_History\_ObjectBaseEdgesetAddRemoveEdgesEvent\_RemoveEdges), [ObjectBaseEdgesetAddRemoveEdgesEvent.RefreshNavigator\(\)](VM.Managed.DAFUL.FE.History.ObjectBaseEdgesetAddRemoveEdgesEvent.md\#VM\_Managed\_DAFUL\_FE\_History\_ObjectBaseEdgesetAddRemoveEdgesEvent\_RefreshNavigator), -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -52,9 +53,9 @@ public ObjectBaseEdgesetAddEdgesEvent(object obOriginal, ICollection\> +`edges` ICollection\> ## Methods @@ -66,7 +67,7 @@ public override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Undo\(HistoryEventArgs\) @@ -76,5 +77,5 @@ public override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseEdgesetAddRemoveEdgesEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseEdgesetAddRemoveEdgesEvent.md index 19d73fa5f8..578395313f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseEdgesetAddRemoveEdgesEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseEdgesetAddRemoveEdgesEvent.md @@ -1,4 +1,5 @@ -# Class ObjectBaseEdgesetAddRemoveEdgesEvent +# Class ObjectBaseEdgesetAddRemoveEdgesEvent + Namespace: [VM.Managed.DAFUL.FE.History](VM.Managed.DAFUL.FE.History.md) Assembly: VMFE.dll @@ -11,8 +12,8 @@ public abstract class ObjectBaseEdgesetAddRemoveEdgesEvent : HistoryEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [ObjectBaseEdgesetAddRemoveEdgesEvent](VM.Managed.DAFUL.FE.History.ObjectBaseEdgesetAddRemoveEdgesEvent.md) #### Derived @@ -22,17 +23,17 @@ HistoryEvent ← #### Inherited Members -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -50,9 +51,9 @@ public ObjectBaseEdgesetAddRemoveEdgesEvent(object obOriginal, ICollection\> +`edges` ICollection\> ## Methods @@ -70,7 +71,7 @@ protected override void AfterRedo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### AfterUndo\(HistoryEventArgs\) @@ -80,7 +81,7 @@ protected override void AfterUndo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Clear\(bool\) @@ -90,7 +91,7 @@ protected override void Clear(bool bReserveReferenceCount) #### Parameters -`bReserveReferenceCount` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReserveReferenceCount` bool ### RefreshNavigator\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseEdgesetRemoveEdgesEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseEdgesetRemoveEdgesEvent.md index 4e81724a40..fcf75c001a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseEdgesetRemoveEdgesEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseEdgesetRemoveEdgesEvent.md @@ -1,4 +1,5 @@ -# Class ObjectBaseEdgesetRemoveEdgesEvent +# Class ObjectBaseEdgesetRemoveEdgesEvent + Namespace: [VM.Managed.DAFUL.FE.History](VM.Managed.DAFUL.FE.History.md) Assembly: VMFE.dll @@ -11,8 +12,8 @@ public class ObjectBaseEdgesetRemoveEdgesEvent : ObjectBaseEdgesetAddRemoveEdges #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [ObjectBaseEdgesetAddRemoveEdgesEvent](VM.Managed.DAFUL.FE.History.ObjectBaseEdgesetAddRemoveEdgesEvent.md) ← [ObjectBaseEdgesetRemoveEdgesEvent](VM.Managed.DAFUL.FE.History.ObjectBaseEdgesetRemoveEdgesEvent.md) @@ -24,17 +25,17 @@ HistoryEvent ← [ObjectBaseEdgesetAddRemoveEdgesEvent.AddEdges\(\)](VM.Managed.DAFUL.FE.History.ObjectBaseEdgesetAddRemoveEdgesEvent.md\#VM\_Managed\_DAFUL\_FE\_History\_ObjectBaseEdgesetAddRemoveEdgesEvent\_AddEdges), [ObjectBaseEdgesetAddRemoveEdgesEvent.RemoveEdges\(\)](VM.Managed.DAFUL.FE.History.ObjectBaseEdgesetAddRemoveEdgesEvent.md\#VM\_Managed\_DAFUL\_FE\_History\_ObjectBaseEdgesetAddRemoveEdgesEvent\_RemoveEdges), [ObjectBaseEdgesetAddRemoveEdgesEvent.RefreshNavigator\(\)](VM.Managed.DAFUL.FE.History.ObjectBaseEdgesetAddRemoveEdgesEvent.md\#VM\_Managed\_DAFUL\_FE\_History\_ObjectBaseEdgesetAddRemoveEdgesEvent\_RefreshNavigator), -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -52,9 +53,9 @@ public ObjectBaseEdgesetRemoveEdgesEvent(object obOriginal, ICollection\> +`edges` ICollection\> ## Methods @@ -66,7 +67,7 @@ public override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Undo\(HistoryEventArgs\) @@ -76,5 +77,5 @@ public override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseFEColorEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseFEColorEvent.md index 72cf5e330b..d1ae559c25 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseFEColorEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseFEColorEvent.md @@ -1,4 +1,5 @@ -# Class ObjectBaseFEColorEvent +# Class ObjectBaseFEColorEvent + Namespace: [VM.Managed.DAFUL.FE.History](VM.Managed.DAFUL.FE.History.md) Assembly: VMFE.dll @@ -11,8 +12,8 @@ public class ObjectBaseFEColorEvent : ObjectBaseMeshColorEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [ObjectBaseMeshColorEvent](VM.Managed.DAFUL.FE.History.ObjectBaseMeshColorEvent.md) ← [ObjectBaseFEColorEvent](VM.Managed.DAFUL.FE.History.ObjectBaseFEColorEvent.md) @@ -25,17 +26,17 @@ HistoryEvent ← [ObjectBaseMeshColorEvent.Clear\(bool\)](VM.Managed.DAFUL.FE.History.ObjectBaseMeshColorEvent.md\#VM\_Managed\_DAFUL\_FE\_History\_ObjectBaseMeshColorEvent\_Clear\_System\_Boolean\_), [ObjectBaseMeshColorEvent.GetColor\(\)](VM.Managed.DAFUL.FE.History.ObjectBaseMeshColorEvent.md\#VM\_Managed\_DAFUL\_FE\_History\_ObjectBaseMeshColorEvent\_GetColor), [ObjectBaseMeshColorEvent.ReplaceColor\(Color\)](VM.Managed.DAFUL.FE.History.ObjectBaseMeshColorEvent.md\#VM\_Managed\_DAFUL\_FE\_History\_ObjectBaseMeshColorEvent\_ReplaceColor\_System\_Drawing\_Color\_), -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -53,9 +54,9 @@ public ObjectBaseFEColorEvent(object obOriginal, Color color) #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) +`color` Color ### ObjectBaseFEColorEvent\(object\) @@ -65,7 +66,7 @@ public ObjectBaseFEColorEvent(object obOriginal) #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object ## Methods @@ -77,7 +78,7 @@ protected override Color GetColor() #### Returns - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### ReplaceColor\(Color\) @@ -87,5 +88,5 @@ protected override void ReplaceColor(Color color) #### Parameters -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) +`color` Color diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseFEImportEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseFEImportEvent.md index d62e3e3a13..826f3e5e77 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseFEImportEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseFEImportEvent.md @@ -1,4 +1,5 @@ -# Class ObjectBaseFEImportEvent +# Class ObjectBaseFEImportEvent + Namespace: [VM.Managed.DAFUL.FE.History](VM.Managed.DAFUL.FE.History.md) Assembly: VMFE.dll @@ -11,9 +12,9 @@ public class ObjectBaseFEImportEvent : SerializableFEDisplayObjectModifiedEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← -SerializableObjectModifiedEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← +[SerializableObjectModifiedEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs) ← SerializableObjectBaseModifiedEventBase ← SerializableObjectBaseModifiedEvent ← SerializableFEDisplayObjectModifiedEvent ← @@ -37,29 +38,29 @@ SerializableObjectBaseModifiedEventBase.Dispose\(bool\), SerializableObjectBaseModifiedEventBase.Dispose\(\), SerializableObjectBaseModifiedEventBase.InitialBackup, SerializableObjectBaseModifiedEventBase.ObjectDelegateKey, -SerializableObjectModifiedEvent.Undo\(HistoryEventArgs\), -SerializableObjectModifiedEvent.Redo\(HistoryEventArgs\), -SerializableObjectModifiedEvent.Clear\(bool\), -SerializableObjectModifiedEvent.ReplaceBackupData\(byte\[\], IHistoryObjectSerializableDelegate\), -SerializableObjectModifiedEvent.SetObjectDelegate\(IHistoryObjectSerializableDelegate\), -SerializableObjectModifiedEvent.Modified\(object\), -SerializableObjectModifiedEvent.ObjectDelegate, -SerializableObjectModifiedEvent.Backup, -SerializableObjectModifiedEvent.IsBackup, -SerializableObjectModifiedEvent.Context, -SerializableObjectModifiedEvent.SurrogateSelector, -SerializableObjectModifiedEvent.DoingUndoRedoSerialize, -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[SerializableObjectModifiedEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.ReplaceBackupData\(byte\[\], IHistoryObjectSerializableDelegate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.SetObjectDelegate\(IHistoryObjectSerializableDelegate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Modified\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.ObjectDelegate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Backup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.IsBackup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Context](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.SurrogateSelector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.DoingUndoRedoSerialize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -77,5 +78,5 @@ public ObjectBaseFEImportEvent(object obOriginal) #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseFEShellToSolidEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseFEShellToSolidEvent.md index 41b686e39d..b8a5e0bddb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseFEShellToSolidEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseFEShellToSolidEvent.md @@ -1,4 +1,5 @@ -# Class ObjectBaseFEShellToSolidEvent +# Class ObjectBaseFEShellToSolidEvent + Namespace: [VM.Managed.DAFUL.FE.History](VM.Managed.DAFUL.FE.History.md) Assembly: VMFE.dll @@ -11,23 +12,23 @@ public class ObjectBaseFEShellToSolidEvent : HistoryEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [ObjectBaseFEShellToSolidEvent](VM.Managed.DAFUL.FE.History.ObjectBaseFEShellToSolidEvent.md) #### Inherited Members -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -45,7 +46,7 @@ public ObjectBaseFEShellToSolidEvent(object obOriginal) #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object ## Methods @@ -57,7 +58,7 @@ public override void Clear(bool bReserveReferenceCount) #### Parameters -`bReserveReferenceCount` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReserveReferenceCount` bool ### Redo\(HistoryEventArgs\) @@ -67,7 +68,7 @@ public override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Undo\(HistoryEventArgs\) @@ -77,5 +78,5 @@ public override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseMeshColorEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseMeshColorEvent.md index 77166c159b..c2a20eb3e3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseMeshColorEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseMeshColorEvent.md @@ -1,4 +1,5 @@ -# Class ObjectBaseMeshColorEvent +# Class ObjectBaseMeshColorEvent + Namespace: [VM.Managed.DAFUL.FE.History](VM.Managed.DAFUL.FE.History.md) Assembly: VMFE.dll @@ -11,8 +12,8 @@ public abstract class ObjectBaseMeshColorEvent : HistoryEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [ObjectBaseMeshColorEvent](VM.Managed.DAFUL.FE.History.ObjectBaseMeshColorEvent.md) #### Derived @@ -22,17 +23,17 @@ HistoryEvent ← #### Inherited Members -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -50,9 +51,9 @@ public ObjectBaseMeshColorEvent(object obOriginal, Color color) #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) +`color` Color ### ObjectBaseMeshColorEvent\(object\) @@ -62,7 +63,7 @@ public ObjectBaseMeshColorEvent(object obOriginal) #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object ## Fields @@ -74,7 +75,7 @@ protected Color m_Color #### Field Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### m\_keyObj @@ -84,7 +85,7 @@ protected UIntPtr m_keyObj #### Field Value - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ## Methods @@ -96,7 +97,7 @@ public override void Clear(bool bReserveReferenceCount) #### Parameters -`bReserveReferenceCount` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReserveReferenceCount` bool ### GetColor\(\) @@ -106,7 +107,7 @@ protected abstract Color GetColor() #### Returns - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### Redo\(HistoryEventArgs\) @@ -116,7 +117,7 @@ public override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### ReplaceColor\(Color\) @@ -126,7 +127,7 @@ protected abstract void ReplaceColor(Color color) #### Parameters -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) +`color` Color ### Undo\(HistoryEventArgs\) @@ -136,5 +137,5 @@ public override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseNodesetAddNodesEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseNodesetAddNodesEvent.md index 4476f6f7af..d1831771ce 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseNodesetAddNodesEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseNodesetAddNodesEvent.md @@ -1,4 +1,5 @@ -# Class ObjectBaseNodesetAddNodesEvent +# Class ObjectBaseNodesetAddNodesEvent + Namespace: [VM.Managed.DAFUL.FE.History](VM.Managed.DAFUL.FE.History.md) Assembly: VMFE.dll @@ -11,8 +12,8 @@ public class ObjectBaseNodesetAddNodesEvent : ObjectBaseNodesetAddRemoveNodesEve #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [ObjectBaseNodesetAddRemoveNodesEvent](VM.Managed.DAFUL.FE.History.ObjectBaseNodesetAddRemoveNodesEvent.md) ← [ObjectBaseNodesetAddNodesEvent](VM.Managed.DAFUL.FE.History.ObjectBaseNodesetAddNodesEvent.md) @@ -24,17 +25,17 @@ HistoryEvent ← [ObjectBaseNodesetAddRemoveNodesEvent.AddNodes\(\)](VM.Managed.DAFUL.FE.History.ObjectBaseNodesetAddRemoveNodesEvent.md\#VM\_Managed\_DAFUL\_FE\_History\_ObjectBaseNodesetAddRemoveNodesEvent\_AddNodes), [ObjectBaseNodesetAddRemoveNodesEvent.RemoveNodes\(\)](VM.Managed.DAFUL.FE.History.ObjectBaseNodesetAddRemoveNodesEvent.md\#VM\_Managed\_DAFUL\_FE\_History\_ObjectBaseNodesetAddRemoveNodesEvent\_RemoveNodes), [ObjectBaseNodesetAddRemoveNodesEvent.RefreshNavigator\(\)](VM.Managed.DAFUL.FE.History.ObjectBaseNodesetAddRemoveNodesEvent.md\#VM\_Managed\_DAFUL\_FE\_History\_ObjectBaseNodesetAddRemoveNodesEvent\_RefreshNavigator), -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -52,9 +53,9 @@ public ObjectBaseNodesetAddNodesEvent(object obOriginal, ICollection arNod #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object -`arNodeIndex` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[uint](https://learn.microsoft.com/dotnet/api/system.uint32)\> +`arNodeIndex` ICollection ## Methods @@ -66,7 +67,7 @@ protected override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Undo\(HistoryEventArgs\) @@ -76,5 +77,5 @@ protected override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseNodesetAddRemoveNodesEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseNodesetAddRemoveNodesEvent.md index 0ffff356e7..a0d34a9d33 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseNodesetAddRemoveNodesEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseNodesetAddRemoveNodesEvent.md @@ -1,4 +1,5 @@ -# Class ObjectBaseNodesetAddRemoveNodesEvent +# Class ObjectBaseNodesetAddRemoveNodesEvent + Namespace: [VM.Managed.DAFUL.FE.History](VM.Managed.DAFUL.FE.History.md) Assembly: VMFE.dll @@ -11,8 +12,8 @@ public abstract class ObjectBaseNodesetAddRemoveNodesEvent : HistoryEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [ObjectBaseNodesetAddRemoveNodesEvent](VM.Managed.DAFUL.FE.History.ObjectBaseNodesetAddRemoveNodesEvent.md) #### Derived @@ -22,17 +23,17 @@ HistoryEvent ← #### Inherited Members -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -50,9 +51,9 @@ public ObjectBaseNodesetAddRemoveNodesEvent(object obOriginal, ICollection #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object -`arNodeIndex` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[uint](https://learn.microsoft.com/dotnet/api/system.uint32)\> +`arNodeIndex` ICollection ## Methods @@ -70,7 +71,7 @@ protected override void AfterRedo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### AfterUndo\(HistoryEventArgs\) @@ -80,7 +81,7 @@ protected override void AfterUndo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Clear\(bool\) @@ -90,7 +91,7 @@ protected override void Clear(bool bReserveReferenceCount) #### Parameters -`bReserveReferenceCount` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReserveReferenceCount` bool ### RefreshNavigator\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseNodesetRemoveNodesEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseNodesetRemoveNodesEvent.md index 8861908c45..f1efbdd9fc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseNodesetRemoveNodesEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseNodesetRemoveNodesEvent.md @@ -1,4 +1,5 @@ -# Class ObjectBaseNodesetRemoveNodesEvent +# Class ObjectBaseNodesetRemoveNodesEvent + Namespace: [VM.Managed.DAFUL.FE.History](VM.Managed.DAFUL.FE.History.md) Assembly: VMFE.dll @@ -11,8 +12,8 @@ public class ObjectBaseNodesetRemoveNodesEvent : ObjectBaseNodesetAddRemoveNodes #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [ObjectBaseNodesetAddRemoveNodesEvent](VM.Managed.DAFUL.FE.History.ObjectBaseNodesetAddRemoveNodesEvent.md) ← [ObjectBaseNodesetRemoveNodesEvent](VM.Managed.DAFUL.FE.History.ObjectBaseNodesetRemoveNodesEvent.md) @@ -24,17 +25,17 @@ HistoryEvent ← [ObjectBaseNodesetAddRemoveNodesEvent.AddNodes\(\)](VM.Managed.DAFUL.FE.History.ObjectBaseNodesetAddRemoveNodesEvent.md\#VM\_Managed\_DAFUL\_FE\_History\_ObjectBaseNodesetAddRemoveNodesEvent\_AddNodes), [ObjectBaseNodesetAddRemoveNodesEvent.RemoveNodes\(\)](VM.Managed.DAFUL.FE.History.ObjectBaseNodesetAddRemoveNodesEvent.md\#VM\_Managed\_DAFUL\_FE\_History\_ObjectBaseNodesetAddRemoveNodesEvent\_RemoveNodes), [ObjectBaseNodesetAddRemoveNodesEvent.RefreshNavigator\(\)](VM.Managed.DAFUL.FE.History.ObjectBaseNodesetAddRemoveNodesEvent.md\#VM\_Managed\_DAFUL\_FE\_History\_ObjectBaseNodesetAddRemoveNodesEvent\_RefreshNavigator), -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -52,9 +53,9 @@ public ObjectBaseNodesetRemoveNodesEvent(object obOriginal, ICollection ar #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object -`arNodeIndex` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[uint](https://learn.microsoft.com/dotnet/api/system.uint32)\> +`arNodeIndex` ICollection ## Methods @@ -66,7 +67,7 @@ protected override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Undo\(HistoryEventArgs\) @@ -76,5 +77,5 @@ protected override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBasePatchsetAddPatchesEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBasePatchsetAddPatchesEvent.md index 02b328d36c..b8b29af94c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBasePatchsetAddPatchesEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBasePatchsetAddPatchesEvent.md @@ -1,4 +1,5 @@ -# Class ObjectBasePatchsetAddPatchesEvent +# Class ObjectBasePatchsetAddPatchesEvent + Namespace: [VM.Managed.DAFUL.FE.History](VM.Managed.DAFUL.FE.History.md) Assembly: VMFE.dll @@ -11,8 +12,8 @@ public class ObjectBasePatchsetAddPatchesEvent : ObjectBasePatchsetAddRemovePatc #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [ObjectBasePatchsetAddRemovePatchesEvent](VM.Managed.DAFUL.FE.History.ObjectBasePatchsetAddRemovePatchesEvent.md) ← [ObjectBasePatchsetAddPatchesEvent](VM.Managed.DAFUL.FE.History.ObjectBasePatchsetAddPatchesEvent.md) @@ -24,17 +25,17 @@ HistoryEvent ← [ObjectBasePatchsetAddRemovePatchesEvent.AddPatches\(\)](VM.Managed.DAFUL.FE.History.ObjectBasePatchsetAddRemovePatchesEvent.md\#VM\_Managed\_DAFUL\_FE\_History\_ObjectBasePatchsetAddRemovePatchesEvent\_AddPatches), [ObjectBasePatchsetAddRemovePatchesEvent.RemovePatches\(\)](VM.Managed.DAFUL.FE.History.ObjectBasePatchsetAddRemovePatchesEvent.md\#VM\_Managed\_DAFUL\_FE\_History\_ObjectBasePatchsetAddRemovePatchesEvent\_RemovePatches), [ObjectBasePatchsetAddRemovePatchesEvent.RefreshNavigator\(\)](VM.Managed.DAFUL.FE.History.ObjectBasePatchsetAddRemovePatchesEvent.md\#VM\_Managed\_DAFUL\_FE\_History\_ObjectBasePatchsetAddRemovePatchesEvent\_RefreshNavigator), -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -52,9 +53,9 @@ public ObjectBasePatchsetAddPatchesEvent(object obOriginal, ICollection p #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object -`patches` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[Patch](VM.Managed.DAFUL.FE.Patch.md)\> +`patches` ICollection<[Patch](VM.Managed.DAFUL.FE.Patch.md)\> ## Methods @@ -66,7 +67,7 @@ public override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Undo\(HistoryEventArgs\) @@ -76,5 +77,5 @@ public override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBasePatchsetAddRemovePatchesEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBasePatchsetAddRemovePatchesEvent.md index 2bc370cbe9..5a74eb245e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBasePatchsetAddRemovePatchesEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBasePatchsetAddRemovePatchesEvent.md @@ -1,4 +1,5 @@ -# Class ObjectBasePatchsetAddRemovePatchesEvent +# Class ObjectBasePatchsetAddRemovePatchesEvent + Namespace: [VM.Managed.DAFUL.FE.History](VM.Managed.DAFUL.FE.History.md) Assembly: VMFE.dll @@ -11,8 +12,8 @@ public abstract class ObjectBasePatchsetAddRemovePatchesEvent : HistoryEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [ObjectBasePatchsetAddRemovePatchesEvent](VM.Managed.DAFUL.FE.History.ObjectBasePatchsetAddRemovePatchesEvent.md) #### Derived @@ -22,17 +23,17 @@ HistoryEvent ← #### Inherited Members -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -50,9 +51,9 @@ public ObjectBasePatchsetAddRemovePatchesEvent(object obOriginal, ICollection +`patches` ICollection<[Patch](VM.Managed.DAFUL.FE.Patch.md)\> ## Methods @@ -70,7 +71,7 @@ protected override void AfterRedo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### AfterUndo\(HistoryEventArgs\) @@ -80,7 +81,7 @@ protected override void AfterUndo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Clear\(bool\) @@ -90,7 +91,7 @@ protected override void Clear(bool bReserveReferenceCount) #### Parameters -`bReserveReferenceCount` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReserveReferenceCount` bool ### RefreshNavigator\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBasePatchsetRemovePatchesEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBasePatchsetRemovePatchesEvent.md index 9e557fe59f..4d40b745d2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBasePatchsetRemovePatchesEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBasePatchsetRemovePatchesEvent.md @@ -1,4 +1,5 @@ -# Class ObjectBasePatchsetRemovePatchesEvent +# Class ObjectBasePatchsetRemovePatchesEvent + Namespace: [VM.Managed.DAFUL.FE.History](VM.Managed.DAFUL.FE.History.md) Assembly: VMFE.dll @@ -11,8 +12,8 @@ public class ObjectBasePatchsetRemovePatchesEvent : ObjectBasePatchsetAddRemoveP #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [ObjectBasePatchsetAddRemovePatchesEvent](VM.Managed.DAFUL.FE.History.ObjectBasePatchsetAddRemovePatchesEvent.md) ← [ObjectBasePatchsetRemovePatchesEvent](VM.Managed.DAFUL.FE.History.ObjectBasePatchsetRemovePatchesEvent.md) @@ -24,17 +25,17 @@ HistoryEvent ← [ObjectBasePatchsetAddRemovePatchesEvent.AddPatches\(\)](VM.Managed.DAFUL.FE.History.ObjectBasePatchsetAddRemovePatchesEvent.md\#VM\_Managed\_DAFUL\_FE\_History\_ObjectBasePatchsetAddRemovePatchesEvent\_AddPatches), [ObjectBasePatchsetAddRemovePatchesEvent.RemovePatches\(\)](VM.Managed.DAFUL.FE.History.ObjectBasePatchsetAddRemovePatchesEvent.md\#VM\_Managed\_DAFUL\_FE\_History\_ObjectBasePatchsetAddRemovePatchesEvent\_RemovePatches), [ObjectBasePatchsetAddRemovePatchesEvent.RefreshNavigator\(\)](VM.Managed.DAFUL.FE.History.ObjectBasePatchsetAddRemovePatchesEvent.md\#VM\_Managed\_DAFUL\_FE\_History\_ObjectBasePatchsetAddRemovePatchesEvent\_RefreshNavigator), -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -52,9 +53,9 @@ public ObjectBasePatchsetRemovePatchesEvent(object obOriginal, ICollection +`patches` ICollection<[Patch](VM.Managed.DAFUL.FE.Patch.md)\> ## Methods @@ -66,7 +67,7 @@ public override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Undo\(HistoryEventArgs\) @@ -76,5 +77,5 @@ public override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseSetBaseColorEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseSetBaseColorEvent.md index 18b498b96b..8fbf76f08d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseSetBaseColorEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.ObjectBaseSetBaseColorEvent.md @@ -1,4 +1,5 @@ -# Class ObjectBaseSetBaseColorEvent +# Class ObjectBaseSetBaseColorEvent + Namespace: [VM.Managed.DAFUL.FE.History](VM.Managed.DAFUL.FE.History.md) Assembly: VMFE.dll @@ -11,8 +12,8 @@ public class ObjectBaseSetBaseColorEvent : ObjectBaseMeshColorEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [ObjectBaseMeshColorEvent](VM.Managed.DAFUL.FE.History.ObjectBaseMeshColorEvent.md) ← [ObjectBaseSetBaseColorEvent](VM.Managed.DAFUL.FE.History.ObjectBaseSetBaseColorEvent.md) @@ -25,17 +26,17 @@ HistoryEvent ← [ObjectBaseMeshColorEvent.Clear\(bool\)](VM.Managed.DAFUL.FE.History.ObjectBaseMeshColorEvent.md\#VM\_Managed\_DAFUL\_FE\_History\_ObjectBaseMeshColorEvent\_Clear\_System\_Boolean\_), [ObjectBaseMeshColorEvent.GetColor\(\)](VM.Managed.DAFUL.FE.History.ObjectBaseMeshColorEvent.md\#VM\_Managed\_DAFUL\_FE\_History\_ObjectBaseMeshColorEvent\_GetColor), [ObjectBaseMeshColorEvent.ReplaceColor\(Color\)](VM.Managed.DAFUL.FE.History.ObjectBaseMeshColorEvent.md\#VM\_Managed\_DAFUL\_FE\_History\_ObjectBaseMeshColorEvent\_ReplaceColor\_System\_Drawing\_Color\_), -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -53,9 +54,9 @@ public ObjectBaseSetBaseColorEvent(object obOriginal, Color color) #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) +`color` Color ### ObjectBaseSetBaseColorEvent\(object\) @@ -65,7 +66,7 @@ public ObjectBaseSetBaseColorEvent(object obOriginal) #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object ## Methods @@ -77,7 +78,7 @@ protected override Color GetColor() #### Returns - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### ReplaceColor\(Color\) @@ -87,5 +88,5 @@ protected override void ReplaceColor(Color color) #### Parameters -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) +`color` Color diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.md index ef45ba9090..9a1e4a1681 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.History.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.FE.History +# Namespace VM.Managed.DAFUL.FE.History + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.IFEMeshChildItem.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.IFEMeshChildItem.md index fc7f1c4275..e5e8f1ef57 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.IFEMeshChildItem.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.IFEMeshChildItem.md @@ -1,4 +1,5 @@ -# Interface IFEMeshChildItem +# Interface IFEMeshChildItem + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.IFEObject.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.IFEObject.md index 1880bdb2bf..4914f01b7b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.IFEObject.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.IFEObject.md @@ -1,4 +1,5 @@ -# Interface IFEObject +# Interface IFEObject + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -27,5 +28,5 @@ uint FEID { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.IHasModal.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.IHasModal.md index 93d73bf5bd..33e78ea41b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.IHasModal.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.IHasModal.md @@ -1,4 +1,5 @@ -# Interface IHasModal +# Interface IHasModal + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -27,7 +28,7 @@ string GetModalPath() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetModes\(\) @@ -53,11 +54,11 @@ void SetModalPath(string strPath, string strDocumentDir) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The modal absolute path -`strDocumentDir` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDocumentDir` string The document directory @@ -71,7 +72,7 @@ void SetModalPath(string strPath) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The modal absolute path diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.IModalBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.IModalBody.md index 997f0855ec..993050415b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.IModalBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.IModalBody.md @@ -1,4 +1,5 @@ -# Interface IModalBody +# Interface IModalBody + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ImportInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ImportInfo.md index 697fc2f6f3..ea57a789e9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ImportInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ImportInfo.md @@ -1,4 +1,5 @@ -# Class ImportInfo +# Class ImportInfo + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,7 +12,7 @@ public class ImportInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ImportInfo](VM.Managed.DAFUL.FE.ImportInfo.md) #### Extension Methods @@ -54,7 +55,7 @@ public double[] Marker[uint nID] { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### Material\[uint\] @@ -78,7 +79,7 @@ public uint NodeID[uint nIndex] { get; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### NodeIndex\[uint\] @@ -90,7 +91,7 @@ public uint NodeIndex[uint nID] { get; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### PropertyBeam\[uint\] @@ -178,7 +179,7 @@ public void AddElementInfo(uint nID, ElementType enType, uint nIndex) #### Parameters -`nID` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nID` uint The ID. @@ -186,7 +187,7 @@ The ID. The element type. -`nIndex` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nIndex` uint The index. @@ -200,11 +201,11 @@ public void AddMarker(uint index, double[] marker) #### Parameters -`index` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`index` uint The index. -`marker` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`marker` double\[\] The marker. @@ -232,11 +233,11 @@ public void AddNodeID(uint nID, uint nIndex) #### Parameters -`nID` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nID` uint The ID. -`nIndex` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nIndex` uint The index. @@ -248,7 +249,7 @@ public ElementInfo get_ElementInfo(uint nID) #### Parameters -`nID` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nID` uint #### Returns @@ -262,11 +263,11 @@ public double[] get_Marker(uint nID) #### Parameters -`nID` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nID` uint #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### get\_Material\(uint\) @@ -276,7 +277,7 @@ public IMaterial get_Material(uint nID) #### Parameters -`nID` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nID` uint #### Returns @@ -290,11 +291,11 @@ public uint get_NodeID(uint nIndex) #### Parameters -`nIndex` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nIndex` uint #### Returns - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### get\_NodeIndex\(uint\) @@ -304,11 +305,11 @@ public uint get_NodeIndex(uint nID) #### Parameters -`nID` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nID` uint #### Returns - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### get\_PropertyBeam\(uint\) @@ -318,7 +319,7 @@ public IFEObject get_PropertyBeam(uint nID) #### Parameters -`nID` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nID` uint #### Returns @@ -332,7 +333,7 @@ public IFEObject get_PropertyShell(uint nID) #### Parameters -`nID` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nID` uint #### Returns @@ -346,7 +347,7 @@ public IFEObject get_PropertySolid(uint nID) #### Parameters -`nID` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nID` uint #### Returns @@ -360,7 +361,7 @@ public IFEObject get_RBE(uint nID) #### Parameters -`nID` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nID` uint #### Returns @@ -374,7 +375,7 @@ public IFEObject get_Set(uint nID) #### Parameters -`nID` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nID` uint #### Returns diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ImportMeshException.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ImportMeshException.md index 4e79803899..ae5d4062b3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ImportMeshException.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ImportMeshException.md @@ -1,4 +1,5 @@ -# Class ImportMeshException +# Class ImportMeshException + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,8 +12,8 @@ public class ImportMeshException : Exception #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Exception](https://learn.microsoft.com/dotnet/api/system.exception) ← +object ← +Exception ← [ImportMeshException](VM.Managed.DAFUL.FE.ImportMeshException.md) #### Extension Methods @@ -31,5 +32,5 @@ public ImportMeshException(string strMessage) #### Parameters -`strMessage` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMessage` string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.LinkerFE-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.LinkerFE-1.md index 10f022d7e3..00b47d2f25 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.LinkerFE-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.LinkerFE-1.md @@ -1,4 +1,5 @@ -# Struct LinkerFE +# Struct LinkerFE + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -53,7 +54,7 @@ public bool IsReference { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Key @@ -65,7 +66,7 @@ public UIntPtr Key { get; } #### Property Value - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### Object @@ -106,7 +107,7 @@ public XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema ### ReadXml\(XmlReader\) @@ -118,7 +119,7 @@ public void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -132,7 +133,7 @@ public void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.MarkerOnNode.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.MarkerOnNode.md index 738c54434d..522954c4c8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.MarkerOnNode.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.MarkerOnNode.md @@ -1,4 +1,5 @@ -# Class MarkerOnNode +# Class MarkerOnNode + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,15 +12,15 @@ public class MarkerOnNode : Marker, IObservableObject, IDisposableObject, ILinka #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← -DesignSubEntity ← -DesignFrame ← -Marker ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← +[DesignSubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs) ← +[DesignFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs) ← +[Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) ← [MarkerOnNode](VM.Managed.DAFUL.FE.MarkerOnNode.md) #### Implements @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, INamed, INavigatorItem, @@ -67,57 +68,57 @@ IChildItem #### Inherited Members -Marker.Initialize\(Unit.ConvertFactor\), -Marker.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -Marker.LinkRequestUpdating\(object, LinkEventArgs\), -Marker.LinkRequestUpdate\(object, LinkEventArgs\), -Marker.LinkRequestDestroy\(object, LinkEventArgs\), -Marker.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Marker.GetModelNavigatorInformationImplCore\(XmlDocument, XmlElement, bool\), -Marker.ParentConnectable, -Marker.\_ParentConnectable, -Marker.ReferenceType, -Marker.ArgumentType, -Marker.FrameIconName, -DesignFrame.Initialize\(Unit.ConvertFactor\), -DesignFrame.LinkRequestUpdate\(object, LinkEventArgs\), -DesignFrame.GetDirection\(Coordinate\), -DesignFrame.GetFullName\(\), -DesignFrame.Draw\(Canvas\), -DesignFrame.ReDraw\(\), -DesignFrame.InstantiateImpl\(Reference, Canvas\), -DesignFrame.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\), -DesignFrame.WriteTemplateImpl\(XmlWriter\), -DesignFrame.ReadTemplateImpl\(XmlReader\), -DesignFrame.Transformation, -DesignFrame.Value, -DesignFrame.X, -DesignFrame.Y, -DesignFrame.Z, -DesignFrame.Orientation, -DesignFrame.Position, -DesignFrame.TransformationMatrix, -DesignFrame.Hide, -DesignFrame.FrameIconName, -DesignFrame.Layer, -DesignFrame.IsVisible, -DesignSubEntity.m\_bSkipToUpdateSymmetric, -DesignSubEntity.g\_dicUpdatedDesignSubEntity, -DesignSubEntity.FixUp\(ObjectBase\), -DesignSubEntity.CheckCircularReference\(\), -DesignSubEntity.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\), -DesignSubEntity.IsInterface, -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[Marker.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs), +[Marker.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs), +[Marker.LinkRequestUpdating\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs), +[Marker.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs), +[Marker.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs), +[Marker.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs), +[Marker.GetModelNavigatorInformationImplCore\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs), +[Marker.ParentConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs), +[Marker.\_ParentConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs), +[Marker.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs), +[Marker.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs), +[Marker.FrameIconName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs), +[DesignFrame.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.GetDirection\(Coordinate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.GetFullName\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.InstantiateImpl\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Transformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Value](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.X](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Y](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Z](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Orientation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Position](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.TransformationMatrix](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.FrameIconName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignSubEntity.m\_bSkipToUpdateSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.g\_dicUpdatedDesignSubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.CheckCircularReference\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.IsInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -210,7 +211,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -241,7 +242,7 @@ public MarkerOnNode(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the FRBE. @@ -265,7 +266,7 @@ public override string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -279,21 +280,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -311,7 +312,7 @@ protected override void InstantiateImpl(Reference reference, Canvas canvas) The reference -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.DFMFType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.DFMFType.md index 1828250192..a0118fff9a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.DFMFType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.DFMFType.md @@ -1,4 +1,5 @@ -# Enum Mesh.DFMFType +# Enum Mesh.DFMFType + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.ElementContainer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.ElementContainer.md index c818251a45..1045a3f306 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.ElementContainer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.ElementContainer.md @@ -1,4 +1,5 @@ -# Class Mesh.ElementContainer +# Class Mesh.ElementContainer + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,7 +12,7 @@ public sealed class Mesh.ElementContainer #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Mesh.ElementContainer](VM.Managed.DAFUL.FE.Mesh.ElementContainer.md) #### Extension Methods @@ -40,7 +41,7 @@ The owner mesh. The element type. -`nIndexElementType` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nIndexElementType` uint The index of element type. @@ -56,7 +57,7 @@ public uint Count { get; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### Mesh diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.ElementInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.ElementInfo.md index be47b053e3..911bc10a6e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.ElementInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.ElementInfo.md @@ -1,4 +1,5 @@ -# Class Mesh.ElementInfo +# Class Mesh.ElementInfo + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -9,7 +10,7 @@ public class Mesh.ElementInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Mesh.ElementInfo](VM.Managed.DAFUL.FE.Mesh.ElementInfo.md) #### Extension Methods @@ -36,7 +37,7 @@ public uint[] arNodeIndex #### Field Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] + uint\[\] ### enType @@ -56,5 +57,5 @@ public uint nNodes #### Field Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.MetaInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.MetaInfo.md index 9fa997d4c1..9c8047fb27 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.MetaInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.MetaInfo.md @@ -1,4 +1,5 @@ -# Struct Mesh.MetaInfo +# Struct Mesh.MetaInfo + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -21,19 +22,19 @@ public MetaInfo(string strName, uint nVer, string strPrefix, Type type) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The name of MetaInfo. -`nVer` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nVer` uint The version. -`strPrefix` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefix` string The prefix. -`type` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`type` Type The type. @@ -49,7 +50,7 @@ public ConstructorInfo m_csi #### Field Value - [ConstructorInfo](https://learn.microsoft.com/dotnet/api/system.reflection.constructorinfo) + ConstructorInfo ### m\_nVersion @@ -61,7 +62,7 @@ public uint m_nVersion #### Field Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### m\_strName @@ -73,7 +74,7 @@ public string m_strName #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### m\_strNewNamePrefix @@ -85,5 +86,5 @@ public string m_strNewNamePrefix #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.ModeInvariantVariable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.ModeInvariantVariable.md index 81c055b1ef..b37e99b67b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.ModeInvariantVariable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.ModeInvariantVariable.md @@ -1,4 +1,5 @@ -# Class Mesh.ModeInvariantVariable +# Class Mesh.ModeInvariantVariable + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,7 +12,7 @@ public class Mesh.ModeInvariantVariable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Mesh.ModeInvariantVariable](VM.Managed.DAFUL.FE.Mesh.ModeInvariantVariable.md) #### Extension Methods @@ -30,7 +31,7 @@ public ModeInvariantVariable(int nModeSize) #### Parameters -`nModeSize` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nModeSize` int ## Fields @@ -42,7 +43,7 @@ public double[] m_arInvariant2 #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### m\_arInvariant3 @@ -52,7 +53,7 @@ public double[] m_arInvariant3 #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### m\_arInvariant4 @@ -62,7 +63,7 @@ public double[] m_arInvariant4 #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### m\_arInvariant5 @@ -72,7 +73,7 @@ public double[] m_arInvariant5 #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### m\_arInvariant6 @@ -82,7 +83,7 @@ public double[] m_arInvariant6 #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### m\_arInvariant7 @@ -92,7 +93,7 @@ public double[] m_arInvariant7 #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### m\_arInvariant8 @@ -102,7 +103,7 @@ public double[] m_arInvariant8 #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### m\_dInvariant1 @@ -112,5 +113,5 @@ public double m_dInvariant1 #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.ModeMeta.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.ModeMeta.md index 7d710b8081..81370163f7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.ModeMeta.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.ModeMeta.md @@ -1,4 +1,5 @@ -# Enum Mesh.ModeMeta +# Enum Mesh.ModeMeta + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.ModeMetaInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.ModeMetaInfo.md index 58598e9791..5ce2bcb9b6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.ModeMetaInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.ModeMetaInfo.md @@ -1,4 +1,5 @@ -# Struct Mesh.ModeMetaInfo +# Struct Mesh.ModeMetaInfo + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -19,9 +20,9 @@ public ModeMetaInfo(string strName, ulong sizeContents) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string -`sizeContents` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`sizeContents` ulong ### ModeMetaInfo\(string\) @@ -31,7 +32,7 @@ public ModeMetaInfo(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string ## Fields @@ -43,7 +44,7 @@ public ulong m_sizeContents #### Field Value - [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) + ulong ### m\_strName @@ -53,5 +54,5 @@ public string m_strName #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.NodeContainer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.NodeContainer.md index 522cbdd5b1..cedcde2edb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.NodeContainer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.NodeContainer.md @@ -1,4 +1,5 @@ -# Class Mesh.NodeContainer +# Class Mesh.NodeContainer + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,7 +12,7 @@ public sealed class Mesh.NodeContainer #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Mesh.NodeContainer](VM.Managed.DAFUL.FE.Mesh.NodeContainer.md) #### Extension Methods @@ -48,7 +49,7 @@ public uint Count { get; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### Mesh diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.ShellThicknessType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.ShellThicknessType.md index c69981532b..ca1f96c00d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.ShellThicknessType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.ShellThicknessType.md @@ -1,4 +1,5 @@ -# Enum Mesh.ShellThicknessType +# Enum Mesh.ShellThicknessType + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.md index 9c1254ed12..4821a8a95a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mesh.md @@ -1,4 +1,5 @@ -# Class Mesh +# Class Mesh + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,9 +12,9 @@ public class Mesh : FEObject, IObservableObject, IDisposableObject, ILinkable, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← @@ -35,7 +36,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -154,7 +155,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -195,7 +196,7 @@ public static Dictionary g_dicMeta #### Field Value - [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[Mesh](VM.Managed.DAFUL.FE.Mesh.md).[Meta](VM.Managed.DAFUL.FE.Mesh.Meta.md), [Mesh](VM.Managed.DAFUL.FE.Mesh.md).[MetaInfo](VM.Managed.DAFUL.FE.Mesh.MetaInfo.md)\> + Dictionary<[Mesh](VM.Managed.DAFUL.FE.Mesh.md).Meta, [Mesh](VM.Managed.DAFUL.FE.Mesh.md).[MetaInfo](VM.Managed.DAFUL.FE.Mesh.MetaInfo.md)\> ## Properties @@ -234,7 +235,7 @@ public bool CanSwitchNodal { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Color @@ -246,7 +247,7 @@ public Color Color { get; set; } #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### ConvertUnitLength @@ -258,7 +259,7 @@ public double ConvertUnitLength { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Elements\[ElementType\] @@ -282,7 +283,7 @@ public NamedObjectDictionary FEMass { get; set; } #### Property Value - NamedObjectDictionary<[FMassBase](VM.Managed.DAFUL.FE.FMassBase.md)\> + [NamedObjectDictionary](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/NamedObjectDictionary.cs)<[FMassBase](VM.Managed.DAFUL.FE.FMassBase.md)\> ### FullName @@ -294,7 +295,7 @@ public virtual string FullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IsHide @@ -306,7 +307,7 @@ bool IsHide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsModalBody @@ -318,7 +319,7 @@ public bool IsModalBody { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsVisible @@ -330,7 +331,7 @@ bool IsVisible { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Layer @@ -354,7 +355,7 @@ public NamedObjectDictionary Markers { get; set; } #### Property Value - NamedObjectDictionary<[MarkerOnNode](VM.Managed.DAFUL.FE.MarkerOnNode.md)\> + [NamedObjectDictionary](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/NamedObjectDictionary.cs)<[MarkerOnNode](VM.Managed.DAFUL.FE.MarkerOnNode.md)\> ### MassCenter @@ -378,7 +379,7 @@ public double MassValue { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Materials @@ -390,7 +391,7 @@ public List Materials { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### ModalANSYSFilter @@ -400,7 +401,7 @@ public static string ModalANSYSFilter { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ModalFileAbsolutePath @@ -412,7 +413,7 @@ public string ModalFileAbsolutePath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ModalFileRelativePath @@ -424,7 +425,7 @@ public string ModalFileRelativePath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ModalInertia @@ -448,7 +449,7 @@ public double ModalMass { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ModalMassCenter @@ -470,7 +471,7 @@ public static string ModalNASTRANFilter { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ModalReferencePosition @@ -492,7 +493,7 @@ public static string ModalUserDefinedFilter { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ModeInterfacePoints @@ -552,7 +553,7 @@ public virtual string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NodalFilter @@ -562,7 +563,7 @@ public static string NodalFilter { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Nodes @@ -586,7 +587,7 @@ public virtual string NonSymmetricName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Properties @@ -610,7 +611,7 @@ public NamedObjectDictionary RigidBodyElements { get; set; } #### Property Value - NamedObjectDictionary<[FRBE](VM.Managed.DAFUL.FE.FRBE.md)\> + [NamedObjectDictionary](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/NamedObjectDictionary.cs)<[FRBE](VM.Managed.DAFUL.FE.FRBE.md)\> ### SelectedModeCount @@ -622,7 +623,7 @@ public int SelectedModeCount { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Sets @@ -646,7 +647,7 @@ public string StartModeName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeOfDFMF @@ -666,7 +667,7 @@ public bool UseDFMF { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseModalReferencePosition @@ -678,7 +679,7 @@ public bool UseModalReferencePosition { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### \_Color @@ -690,7 +691,7 @@ public int _Color { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -720,7 +721,7 @@ public DesignPoint AddDesignPointForInterfaceNode(VectorBase vecPos) #### Returns - DesignPoint + [DesignPoint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignPoint.cs) ### CalcMassProperty\(\) @@ -738,23 +739,23 @@ public void CalcMassProperty(list<_VM_VECTOR,std::allocator<_VM_VECTOR> >* lstVe #### Parameters -`lstVecNodePosition` [list<\_VM\_VECTOR,std::allocator<\_VM\_VECTOR\> \>](std.list<\_VM\_VECTOR,std.md)\* +`lstVecNodePosition` list<\_VM\_VECTOR,std::allocator<\_VM\_VECTOR\> \>\* -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double)\* +`dMass` double\* -`vecMassCenter` [\_VM\_VECTOR](\_VM\_VECTOR.md)\* +`vecMassCenter` \_VM\_VECTOR\* -`dJxx` [double](https://learn.microsoft.com/dotnet/api/system.double)\* +`dJxx` double\* -`dJyy` [double](https://learn.microsoft.com/dotnet/api/system.double)\* +`dJyy` double\* -`dJzz` [double](https://learn.microsoft.com/dotnet/api/system.double)\* +`dJzz` double\* -`dJxy` [double](https://learn.microsoft.com/dotnet/api/system.double)\* +`dJxy` double\* -`dJyz` [double](https://learn.microsoft.com/dotnet/api/system.double)\* +`dJyz` double\* -`dJxz` [double](https://learn.microsoft.com/dotnet/api/system.double)\* +`dJxz` double\* ### CalcMassProperty\(double\*, \_VM\_VECTOR\*, double\*, double\*, double\*, double\*, double\*, double\*\) @@ -764,21 +765,21 @@ public void CalcMassProperty(double* dMass, _VM_VECTOR* vecMassCenter, double* d #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double)\* +`dMass` double\* -`vecMassCenter` [\_VM\_VECTOR](\_VM\_VECTOR.md)\* +`vecMassCenter` \_VM\_VECTOR\* -`dJxx` [double](https://learn.microsoft.com/dotnet/api/system.double)\* +`dJxx` double\* -`dJyy` [double](https://learn.microsoft.com/dotnet/api/system.double)\* +`dJyy` double\* -`dJzz` [double](https://learn.microsoft.com/dotnet/api/system.double)\* +`dJzz` double\* -`dJxy` [double](https://learn.microsoft.com/dotnet/api/system.double)\* +`dJxy` double\* -`dJyz` [double](https://learn.microsoft.com/dotnet/api/system.double)\* +`dJyz` double\* -`dJxz` [double](https://learn.microsoft.com/dotnet/api/system.double)\* +`dJxz` double\* ### ConnectProxy\(\) @@ -796,11 +797,11 @@ public bool ConvertShellToSolid(Mesh.ShellThicknessType typeOfThickness, double `typeOfThickness` [Mesh](VM.Managed.DAFUL.FE.Mesh.md).[ShellThicknessType](VM.Managed.DAFUL.FE.Mesh.ShellThicknessType.md) -`dThickness` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dThickness` double #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Draw\(Canvas\) @@ -812,7 +813,7 @@ public virtual void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -826,7 +827,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -870,7 +871,7 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -910,11 +911,11 @@ public Tuple[] GetEdgesWithNodes(uint[] arNodeIndex) #### Parameters -`arNodeIndex` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`arNodeIndex` uint\[\] #### Returns - [Tuple](https://learn.microsoft.com/dotnet/api/system.tuple\-2)<[uint](https://learn.microsoft.com/dotnet/api/system.uint32), [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\>\[\] + Tuple\[\] ### GetElementID\(ElementType, uint\) @@ -930,13 +931,13 @@ public int GetElementID(ElementType type, uint nIndex) The element type. -`nIndex` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nIndex` uint The element index. #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetMaterials\(\) @@ -948,7 +949,7 @@ public IEnumerable GetMaterials() #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) + IEnumerable ### GetNodeID\(uint\) @@ -960,13 +961,13 @@ public uint GetNodeID(uint nIndex) #### Parameters -`nIndex` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nIndex` uint The node index. #### Returns - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### GetNodeIndex\(uint\) @@ -978,13 +979,13 @@ public uint GetNodeIndex(uint nID) #### Parameters -`nID` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nID` uint The node ID. #### Returns - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### GetNodeInfoForCalcMass\(uint, double, ref VectorBase, ref \_MomentOfInertia, ref double, ref uint\) @@ -996,11 +997,11 @@ public void GetNodeInfoForCalcMass(uint nIndex, double dConvertUnitLength, ref V #### Parameters -`nIndex` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nIndex` uint The node index. -`dConvertUnitLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dConvertUnitLength` double The length of converted unit. @@ -1012,11 +1013,11 @@ The specified position of node. The specified inertia of node. -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double The specified mass of node. -`nID` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nID` uint The specified id of node. @@ -1028,7 +1029,7 @@ public Vector GetNodePosition(uint nIndex) #### Parameters -`nIndex` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nIndex` uint #### Returns @@ -1042,11 +1043,11 @@ public IEnumerable GetOuterNodes(IEnumerable lstNodeIndex) #### Parameters -`lstNodeIndex` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[uint](https://learn.microsoft.com/dotnet/api/system.uint32)\> +`lstNodeIndex` IEnumerable #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[uint](https://learn.microsoft.com/dotnet/api/system.uint32)\> + IEnumerable ### GetPropertyNameToOuterNodes\(\) @@ -1056,7 +1057,7 @@ public Dictionary> GetPropertyNameToOuterNodes() #### Returns - [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\]\>\> + Dictionary\> ### GetSubChangableEntityImpl\(Dictionary\) @@ -1068,7 +1069,7 @@ void GetSubChangableEntityImpl(Dictionary dicObj) #### Parameters -`dicObj` [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), ObjectBase\> +`dicObj` Dictionary The object dictionary. @@ -1100,7 +1101,7 @@ The material. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if is [delete material] [the specified material]; otherwise, false. @@ -1120,7 +1121,7 @@ The setpatch. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if is [delete setpatch] [the specified setpatch]; otherwise, false. @@ -1134,7 +1135,7 @@ public bool IsOnlyLinearMaterial() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if this instance refer only linear material; otherwise, false. @@ -1148,7 +1149,7 @@ protected override void LinkRequestDestroy(object objNotifier, LinkEventArgs arg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -1166,7 +1167,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -1184,7 +1185,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -1224,7 +1225,7 @@ public override bool SkipUpdateObjectImpl() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UpdateMesh\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.MeshAssembly.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.MeshAssembly.md index 7d0a907079..3aa743152e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.MeshAssembly.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.MeshAssembly.md @@ -1,4 +1,5 @@ -# Class MeshAssembly +# Class MeshAssembly + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,9 +12,9 @@ public class MeshAssembly : Assembly, IObservableObject, IDisposableObject, ILin #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Assembly ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer #### Inherited Members @@ -139,7 +140,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -184,11 +185,11 @@ protected MeshAssembly(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.MeshDocument.MFInterfaceType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.MeshDocument.MFInterfaceType.md index 5c9b52852b..67b2b44dd6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.MeshDocument.MFInterfaceType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.MeshDocument.MFInterfaceType.md @@ -1,4 +1,5 @@ -# Enum MeshDocument.MFInterfaceType +# Enum MeshDocument.MFInterfaceType + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.MeshDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.MeshDocument.md index cd8e97a0b2..280858e618 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.MeshDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.MeshDocument.md @@ -1,4 +1,5 @@ -# Class MeshDocument +# Class MeshDocument + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,15 +12,15 @@ public class MeshDocument : DocumentAnalysis, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← [MeshDocument](VM.Managed.DAFUL.FE.MeshDocument.md) #### Implements @@ -31,7 +32,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, IDocumentAnalysis, @@ -49,48 +50,48 @@ IInterfaceSupport #### Inherited Members -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -185,8 +186,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -197,9 +196,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -213,12 +212,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -496,7 +492,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -527,7 +523,7 @@ public MeshDocument(UIntPtr pDoc) #### Parameters -`pDoc` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pDoc` UIntPtr The document handle. @@ -541,7 +537,7 @@ public static bool g_bSkipDisplayModeShape #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_pDocMesh @@ -553,7 +549,7 @@ protected IDocumentMesh* m_pDocMesh #### Field Value - [IDocumentMesh](VM.DAFUL.FE.IDocumentMesh.md)\* + IDocumentMesh\* ## Properties @@ -567,7 +563,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### Interfaces @@ -579,7 +575,7 @@ public virtual InterfaceManager Interfaces { get; set; } #### Property Value - InterfaceManager + [InterfaceManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InterfaceManager.cs) ### KeepOldKernelUnit @@ -591,7 +587,7 @@ protected override sealed bool KeepOldKernelUnit { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### NodalFilePath @@ -603,7 +599,7 @@ public string NodalFilePath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UseDFMFForNodal @@ -615,7 +611,7 @@ public bool UseDFMFForNodal { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -625,6 +621,24 @@ public bool UseDFMFForNodal { get; } public override void AfterDelete() ``` +### AppendHashInformation\(BinaryWriter, string, string\) + +```csharp +public static long AppendHashInformation(BinaryWriter binaryWriter, string categoryName, string strTextForHash) +``` + +#### Parameters + +`binaryWriter` BinaryWriter + +`categoryName` string + +`strTextForHash` string + +#### Returns + + long + ### BeforeDelete\(ObjectBase\) ```csharp @@ -671,9 +685,9 @@ public SetEdge CreateEdgeset(Tuple[] edges, string strName) #### Parameters -`edges` [Tuple](https://learn.microsoft.com/dotnet/api/system.tuple\-2)<[uint](https://learn.microsoft.com/dotnet/api/system.uint32), [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\>\[\] +`edges` Tuple\[\] -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string #### Returns @@ -687,7 +701,7 @@ public SetEdge CreateEdgeset(Tuple[] edges) #### Parameters -`edges` [Tuple](https://learn.microsoft.com/dotnet/api/system.tuple\-2)<[uint](https://learn.microsoft.com/dotnet/api/system.uint32), [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\>\[\] +`edges` Tuple\[\] #### Returns @@ -703,7 +717,7 @@ public SetEdge CreateEdgeset(uint[] arNodeIndex) #### Parameters -`arNodeIndex` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`arNodeIndex` uint\[\] node index. @@ -755,11 +769,11 @@ public SetNode CreateNodeset(uint[] nodes, string strName) #### Parameters -`nodes` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`nodes` uint\[\] node indexes. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name. @@ -779,7 +793,7 @@ public SetNode CreateNodeset(uint[] nodes) #### Parameters -`nodes` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`nodes` uint\[\] node indexes. @@ -803,7 +817,7 @@ public SetPatch CreatePatchset(Patch[] patches, string strName) patch informations. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name. @@ -843,11 +857,11 @@ public override void DisplayModeShape(int nModeSeq, double dScale) #### Parameters -`nModeSeq` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nModeSeq` int The sequence of mode. -`dScale` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dScale` double The scale factor. @@ -861,7 +875,7 @@ public override void EnableModeShape(bool bEnable) #### Parameters -`bEnable` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bEnable` bool The enable flag. @@ -875,13 +889,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The fullname of type. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The category. @@ -895,7 +909,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -929,10 +943,24 @@ public override void GetData(XmlNode writer) #### Parameters -`writer` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`writer` XmlNode The writer. +### GetHashFromDFMF\(string\) + +```csharp +public static string GetHashFromDFMF(string strDFMFFilePath) +``` + +#### Parameters + +`strDFMFFilePath` string + +#### Returns + + string + ### GetMeshFileType\(string\) Gets the mesh file type. @@ -943,13 +971,13 @@ public static uint GetMeshFileType(string strMeshFile) #### Parameters -`strMeshFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMeshFile` string The mesh file path. #### Returns - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint BDF, DAT(Nastran) = 1, DAT(ANSYS), INP, CDB = 2, UDFF = 4, DFMF = 5 @@ -963,7 +991,7 @@ public override List GetObjectsForChangeAssembly() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### GetUsedNodes\(\) @@ -975,7 +1003,7 @@ public uint[] GetUsedNodes() #### Returns - [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] + uint\[\] used node indexes. @@ -989,15 +1017,15 @@ public void ImportMesh(string strMeshFile, Color color, string strModalFile, Uni #### Parameters -`strMeshFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMeshFile` string The mesh file path. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) +`color` Color The mesh color. -`strModalFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strModalFile` string The modal file path. @@ -1005,11 +1033,11 @@ The modal file path. The unit convert factor. -`bDropOffHighOrder` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDropOffHighOrder` bool The drop off high order flag. -`bModalOnly` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bModalOnly` bool The modal only flag. @@ -1023,15 +1051,15 @@ public virtual void ImportMesh(string strMeshFile, Color color, string strModalF #### Parameters -`strMeshFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMeshFile` string The mesh file path. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) +`color` Color The mesh color. -`strModalFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strModalFile` string The modal file path. @@ -1049,11 +1077,11 @@ public void ImportMesh(string strMeshFile, string strModalFile, Unit unit) #### Parameters -`strMeshFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMeshFile` string The mesh file path. -`strModalFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strModalFile` string The modal file path. @@ -1071,11 +1099,11 @@ public Mesh ImportMesh(string strMeshFile, Color color, Unit unit, bool bDropOff #### Parameters -`strMeshFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMeshFile` string The mesh file path. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) +`color` Color The mesh color. @@ -1083,11 +1111,11 @@ The mesh color. The unit convert factor. -`bDropOffHighOrder` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDropOffHighOrder` bool The drop off high order flag. -`bModalOnly` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bModalOnly` bool The modal only flag. @@ -1095,11 +1123,11 @@ The modal only flag. Create set. -`strRunDllPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRunDllPath` string The rundll exe path. -`strNF2DFPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strNF2DFPath` string The nfedf dll path. @@ -1117,11 +1145,11 @@ public Mesh ImportMesh(string strMeshFile, Color color, Unit unit, bool bDropOff #### Parameters -`strMeshFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMeshFile` string The mesh file path. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) +`color` Color The mesh color. @@ -1129,11 +1157,11 @@ The mesh color. The unit convert factor. -`bDropOffHighOrder` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDropOffHighOrder` bool The drop off high order flag. -`bModalOnly` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bModalOnly` bool The modal only flag. @@ -1155,11 +1183,11 @@ public Mesh ImportMesh(string strMeshFile, Color color, Unit unit, bool bDropOff #### Parameters -`strMeshFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMeshFile` string The mesh file path. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) +`color` Color The mesh color. @@ -1167,11 +1195,11 @@ The mesh color. The unit convert factor. -`bDropOffHighOrder` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDropOffHighOrder` bool The drop off high order flag. -`bModalOnly` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bModalOnly` bool The modal only flag. @@ -1189,11 +1217,11 @@ public Mesh ImportMesh(string strMeshFile, Color color, Unit unit) #### Parameters -`strMeshFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMeshFile` string The mesh file path. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) +`color` Color The mesh color. @@ -1215,7 +1243,7 @@ public Mesh ImportMesh(string strMeshFile, Unit unit, string strRunDll, string s #### Parameters -`strMeshFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMeshFile` string The mesh file path. @@ -1223,11 +1251,11 @@ The mesh file path. The unit convert factor. -`strRunDll` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRunDll` string The rundll exe path. -`strNF2DF` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strNF2DF` string The nfedf dll path. @@ -1245,7 +1273,7 @@ public Mesh ImportMesh(string strMeshFile, Unit unit) #### Parameters -`strMeshFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMeshFile` string The mesh file path. @@ -1267,7 +1295,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string The category name. @@ -1289,7 +1317,7 @@ public bool IsExistMesh() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if is [exist mesh]; otherwise, false. @@ -1303,7 +1331,7 @@ public bool IsPatchsetMakeable() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if is [makeable patchset]; otherwise, false. @@ -1317,7 +1345,7 @@ protected override void LinkRequestUpdate(object obNotifier, LinkEventArgs arg) #### Parameters -`obNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obNotifier` object The linked object. @@ -1335,7 +1363,7 @@ public virtual void ModifyModal(string strModalFile, Unit unit, bool bOnlyDelete #### Parameters -`strModalFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strModalFile` string The modal file path. @@ -1343,7 +1371,7 @@ The modal file path. The unit convert factor. -`bOnlyDelete` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bOnlyDelete` bool ### OnDeserialization\(object\) @@ -1355,7 +1383,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -1369,7 +1397,7 @@ public override void OnPostMakeDocumentImpl(DocCreateAnalysisInfo docCreateAnaly #### Parameters -`docCreateAnalysisInfo` DocCreateAnalysisInfo +`docCreateAnalysisInfo` [DocCreateAnalysisInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DocCreate3DInfo.cs) ### PostOpenDocument\(\) @@ -1405,7 +1433,7 @@ public void SetAcitveMesh(UIntPtr pProxyMesh) #### Parameters -`pProxyMesh` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pProxyMesh` UIntPtr The mesh proxy. @@ -1419,7 +1447,7 @@ public override void SetData(XmlNode reader) #### Parameters -`reader` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`reader` XmlNode The reader. @@ -1433,7 +1461,7 @@ protected override void SetHandle(UIntPtr pDocHandle) #### Parameters -`pDocHandle` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pDocHandle` UIntPtr The document handle. @@ -1453,7 +1481,7 @@ The obj. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UpdateNavigatorForReference\(Mesh, bool\) @@ -1469,7 +1497,7 @@ public void UpdateNavigatorForReference(Mesh mesh, bool bRemove) The mesh. -`bRemove` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bRemove` bool if set to true [b remove]. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.MeshNameChangeOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.MeshNameChangeOperation.md index 9197c683c4..2a98d01806 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.MeshNameChangeOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.MeshNameChangeOperation.md @@ -1,4 +1,5 @@ -# Class MeshNameChangeOperation +# Class MeshNameChangeOperation + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,7 +12,7 @@ public class MeshNameChangeOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [MeshNameChangeOperation](VM.Managed.DAFUL.FE.MeshNameChangeOperation.md) @@ -91,11 +92,11 @@ public MeshNameChangeOperation(Mesh mesh, string strOldName, string strNewName) The mesh. -`strOldName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOldName` string The old name. -`strNewName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strNewName` string The new name. @@ -111,7 +112,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -123,7 +124,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.MeshPropertyApplyOperation.GetResultCallback.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.MeshPropertyApplyOperation.GetResultCallback.md index a288b7160a..b76f85ce1b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.MeshPropertyApplyOperation.GetResultCallback.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.MeshPropertyApplyOperation.GetResultCallback.md @@ -1,4 +1,5 @@ -# Delegate MeshPropertyApplyOperation.GetResultCallback +# Delegate MeshPropertyApplyOperation.GetResultCallback + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,7 +12,7 @@ public delegate bool MeshPropertyApplyOperation.GetResultCallback() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.MeshPropertyApplyOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.MeshPropertyApplyOperation.md index 2717871ec9..0d8d22ac4d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.MeshPropertyApplyOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.MeshPropertyApplyOperation.md @@ -1,4 +1,5 @@ -# Class MeshPropertyApplyOperation +# Class MeshPropertyApplyOperation + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,7 +12,7 @@ public class MeshPropertyApplyOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [MeshPropertyApplyOperation](VM.Managed.DAFUL.FE.MeshPropertyApplyOperation.md) @@ -111,7 +112,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Success @@ -123,7 +124,7 @@ public bool Success { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.MeshReader.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.MeshReader.md index eaffdda0b9..46e7deed58 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.MeshReader.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.MeshReader.md @@ -1,4 +1,5 @@ -# Class MeshReader +# Class MeshReader + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,9 +12,9 @@ public class MeshReader : Mesh, IObservableObject, IDisposableObject, ILinkable, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -230,7 +231,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -267,7 +268,7 @@ public List NodeForMesher { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### TetraForMesher @@ -277,5 +278,5 @@ public List TetraForMesher { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[uint](https://learn.microsoft.com/dotnet/api/system.uint32)\> + List diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ModalSetting.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ModalSetting.md index 480772a84b..8ca06ab642 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ModalSetting.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ModalSetting.md @@ -1,4 +1,5 @@ -# Class ModalSetting +# Class ModalSetting + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -12,11 +13,11 @@ public class ModalSetting : ToolKitSettingBase, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -ToolKitSettingBase ← +[ToolKitSettingBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ToolKitSettingBase.cs) ← [ModalSetting](VM.Managed.DAFUL.FE.ModalSetting.md) #### Implements @@ -34,12 +35,12 @@ IVerifiable #### Inherited Members -ToolKitSettingBase.Add\(ObjectBase\), -ToolKitSettingBase.Remove\(ObjectBase\), -ToolKitSettingBase.Contains\(ObjectBase\), -ToolKitSettingBase.Replace\(ObjectBase, ObjectBase\), -ToolKitSettingBase.PostDeserialize\(Configuration\), -ToolKitSettingBase.Clear\(\), +[ToolKitSettingBase.Add\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ToolKitSettingBase.cs), +[ToolKitSettingBase.Remove\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ToolKitSettingBase.cs), +[ToolKitSettingBase.Contains\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ToolKitSettingBase.cs), +[ToolKitSettingBase.Replace\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ToolKitSettingBase.cs), +[ToolKitSettingBase.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ToolKitSettingBase.cs), +[ToolKitSettingBase.Clear\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ToolKitSettingBase.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -83,7 +84,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -144,7 +145,7 @@ The object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if [contains] the object; otherwise, false. @@ -158,7 +159,7 @@ public override void PostDeserialize(Configuration config) #### Parameters -`config` Configuration +`config` [Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) The config. @@ -178,7 +179,7 @@ The object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Replace\(ObjectBase, ObjectBase\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mode.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mode.md index 788df043a7..6a963628da 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mode.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Mode.md @@ -1,4 +1,5 @@ -# Class Mode +# Class Mode + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,12 +12,12 @@ public class Mode : FESubEntity, IObservableObject, IDisposableObject, ILinkable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [FESubEntity](VM.Managed.DAFUL.FE.FESubEntity.md) ← [Mode](VM.Managed.DAFUL.FE.Mode.md) @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -52,17 +53,17 @@ IUnEditableSubEnttity [FESubEntity.GetNodalBodyForSubsystem\(SubSystem, Mesh\)](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_GetNodalBodyForSubsystem\_VM\_Managed\_DAFUL\_SubSystem\_VM\_Managed\_DAFUL\_FE\_Mesh\_), [FESubEntity.FEID](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_FEID), [FESubEntity.OwnerMesh](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_OwnerMesh), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -155,7 +156,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -186,11 +187,11 @@ public Mode(double dEigenvalue, double dDamping) #### Parameters -`dEigenvalue` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dEigenvalue` double The value of eigenvalue. -`dDamping` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDamping` double The value of damping. @@ -204,7 +205,7 @@ public Mode(double dEigenvalue) #### Parameters -`dEigenvalue` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dEigenvalue` double The value of eigenvalue. @@ -220,7 +221,7 @@ public double Damping { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Eigenvalue @@ -232,7 +233,7 @@ public double Eigenvalue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Name @@ -244,7 +245,7 @@ public override string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -258,21 +259,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [b has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ModeInterfacePoint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ModeInterfacePoint.md index c1bb4b3a9f..1765ee2c9e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ModeInterfacePoint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ModeInterfacePoint.md @@ -1,4 +1,5 @@ -# Class ModeInterfacePoint +# Class ModeInterfacePoint + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,12 +12,12 @@ public class ModeInterfacePoint : FESubEntity, IObservableObject, IDisposableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [FESubEntity](VM.Managed.DAFUL.FE.FESubEntity.md) ← [ModeInterfacePoint](VM.Managed.DAFUL.FE.ModeInterfacePoint.md) @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -55,17 +56,17 @@ IReferencable [FESubEntity.GetNodalBodyForSubsystem\(SubSystem, Mesh\)](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_GetNodalBodyForSubsystem\_VM\_Managed\_DAFUL\_SubSystem\_VM\_Managed\_DAFUL\_FE\_Mesh\_), [FESubEntity.FEID](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_FEID), [FESubEntity.OwnerMesh](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_OwnerMesh), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -158,7 +159,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -189,7 +190,7 @@ public ModeInterfacePoint(string strName, Vector vecPosition) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The name of [mode interface point]. @@ -217,7 +218,7 @@ bool IsHide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsVisible @@ -229,7 +230,7 @@ bool IsVisible { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Layer @@ -267,7 +268,7 @@ public virtual void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -287,7 +288,7 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -301,21 +302,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [b has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ModeMasterPoint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ModeMasterPoint.md index ab651937e2..7ecdc8ad60 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ModeMasterPoint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ModeMasterPoint.md @@ -1,4 +1,5 @@ -# Class ModeMasterPoint +# Class ModeMasterPoint + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,12 +12,12 @@ public class ModeMasterPoint : FESubEntity, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [FESubEntity](VM.Managed.DAFUL.FE.FESubEntity.md) ← [ModeMasterPoint](VM.Managed.DAFUL.FE.ModeMasterPoint.md) @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -55,17 +56,17 @@ IReferencable [FESubEntity.GetNodalBodyForSubsystem\(SubSystem, Mesh\)](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_GetNodalBodyForSubsystem\_VM\_Managed\_DAFUL\_SubSystem\_VM\_Managed\_DAFUL\_FE\_Mesh\_), [FESubEntity.FEID](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_FEID), [FESubEntity.OwnerMesh](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_OwnerMesh), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -158,7 +159,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -189,11 +190,11 @@ public ModeMasterPoint(string strName, uint nodeIndex) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The name of [mode master point]. -`nodeIndex` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nodeIndex` uint ### ModeMasterPoint\(\) @@ -215,7 +216,7 @@ bool IsHide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsVisible @@ -227,7 +228,7 @@ bool IsVisible { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Layer @@ -251,7 +252,7 @@ public uint MasterNodeID { get; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### MasterNodeIndex @@ -263,7 +264,7 @@ public uint MasterNodeIndex { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ## Methods @@ -277,7 +278,7 @@ public virtual void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -297,7 +298,7 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -311,21 +312,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [b has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.NodalBody.ElementInformation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.NodalBody.ElementInformation.md index 12c1a5f30b..c6c8f2c4ce 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.NodalBody.ElementInformation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.NodalBody.ElementInformation.md @@ -1,4 +1,5 @@ -# Struct NodalBody.ElementInformation +# Struct NodalBody.ElementInformation + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -21,7 +22,7 @@ public double[] EffectiveStrain #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### PlasticStrain @@ -33,5 +34,5 @@ public double[] PlasticStrain #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.NodalBody.NodeCurrentOrientation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.NodalBody.NodeCurrentOrientation.md index 0c80c2bfe0..5a8ab455e4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.NodalBody.NodeCurrentOrientation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.NodalBody.NodeCurrentOrientation.md @@ -1,4 +1,5 @@ -# Struct NodalBody.NodeCurrentOrientation +# Struct NodalBody.NodeCurrentOrientation + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -21,7 +22,7 @@ public double XX #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### XY @@ -33,7 +34,7 @@ public double XY #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### XZ @@ -45,7 +46,7 @@ public double XZ #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### YX @@ -57,7 +58,7 @@ public double YX #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### YY @@ -69,7 +70,7 @@ public double YY #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### YZ @@ -81,7 +82,7 @@ public double YZ #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ZX @@ -93,7 +94,7 @@ public double ZX #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ZY @@ -105,7 +106,7 @@ public double ZY #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ZZ @@ -117,5 +118,5 @@ public double ZZ #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.NodalBody.NodeCurrentPosition.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.NodalBody.NodeCurrentPosition.md index 0f2478575e..111d14ae8a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.NodalBody.NodeCurrentPosition.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.NodalBody.NodeCurrentPosition.md @@ -1,4 +1,5 @@ -# Struct NodalBody.NodeCurrentPosition +# Struct NodalBody.NodeCurrentPosition + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -21,7 +22,7 @@ public double X #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y @@ -33,7 +34,7 @@ public double Y #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Z @@ -45,5 +46,5 @@ public double Z #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.NodalBody.NodeInformation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.NodalBody.NodeInformation.md index 9f5e5d4dbc..70db4c08b2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.NodalBody.NodeInformation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.NodalBody.NodeInformation.md @@ -1,4 +1,5 @@ -# Struct NodalBody.NodeInformation +# Struct NodalBody.NodeInformation + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -45,5 +46,5 @@ public double Temperature #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.NodalBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.NodalBody.md index 89e5d836c0..006428817e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.NodalBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.NodalBody.md @@ -1,4 +1,5 @@ -# Class NodalBody +# Class NodalBody + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,13 +12,13 @@ public class NodalBody : InstanceContainer, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← -InstanceContainer ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← +[InstanceContainer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs) ← [NodalBody](VM.Managed.DAFUL.FE.NodalBody.md) #### Implements @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -75,46 +76,46 @@ INodalBody #### Inherited Members -InstanceContainer.InitInterfaceTable\(\), -InstanceContainer.LinkRequestUpdate\(object, LinkEventArgs\), -InstanceContainer.BindInterface\(\), -InstanceContainer.BindInterface\(ObjectBase, ObjectBase\), -InstanceContainer.BindInterface\(InstanceContainer.InterfaceTable\), -InstanceContainer.Find\(string\), -InstanceContainer.FindLocal\(string\), -InstanceContainer.GetNewEntityName\(string\), -InstanceContainer.GetNewEntityName\(string, bool, int\), -InstanceContainer.GetNewEntityName\(string, bool, int, int\), -InstanceContainer.GetUnnamedObjectName\(object\), -InstanceContainer.MakeReferenceImpl\(LinkedList\), -InstanceContainer.PostOpenDocumentAfterHookEvent\(\), -InstanceContainer.TransformImpl\(TMatrix\), -InstanceContainer.Redraw\(\), -InstanceContainer.GetLayerImpl\(\), -InstanceContainer.SetLayerImpl\(Layer\), -InstanceContainer.IsDestroyContainer\(\), -InstanceContainer.GetTargetListForUpdate\(\), -InstanceContainer.ProcessDuplicateReferenceImpl\(Reference\), -InstanceContainer.PostAddToDocument\(\), -InstanceContainer.LinkRequestDestroy\(object, LinkEventArgs\), -InstanceContainer.GetChildListImpl\(\), -InstanceContainer.OnDeserialization\(object\), -InstanceContainer.Instance, -InstanceContainer.InterfaceTableList, -InstanceContainer.InterfaceTables, -InstanceContainer.Layer, -InstanceContainer.IsVisible, -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[InstanceContainer.InitInterfaceTable\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.BindInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.BindInterface\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.BindInterface\(InstanceContainer.InterfaceTable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.Find\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetNewEntityName\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetNewEntityName\(string, bool, int\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetNewEntityName\(string, bool, int, int\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.TransformImpl\(TMatrix\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.Redraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.IsDestroyContainer\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.ProcessDuplicateReferenceImpl\(Reference\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetChildListImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.Instance](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.InterfaceTableList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.InterfaceTables](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -207,7 +208,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -238,11 +239,11 @@ public NodalBody(string strName, string strMeshFilePath, TransformBase transf) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the nodal body. -`strMeshFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMeshFilePath` string The nodal body file path. @@ -260,7 +261,7 @@ public NodalBody(string strName, Instance instanceNodalBody) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the nodal body. @@ -325,7 +326,7 @@ string FilePath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### InitVel @@ -337,7 +338,7 @@ public BodyPropertyBase.InitialVelocity InitVel { get; set; } #### Property Value - BodyPropertyBase.InitialVelocity + [BodyPropertyBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs).[InitialVelocity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ### IsModalBody @@ -349,7 +350,7 @@ public bool IsModalBody { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LargeDeformation @@ -361,7 +362,7 @@ public bool LargeDeformation { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MassCenter @@ -397,7 +398,7 @@ public double MassValue { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MeshList @@ -409,7 +410,7 @@ public List MeshList { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Mesh](VM.Managed.DAFUL.FE.Mesh.md)\> + List<[Mesh](VM.Managed.DAFUL.FE.Mesh.md)\> ### ModalMassCenter @@ -433,7 +434,7 @@ public double ModalMassValue { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ModalMomentOfInertiaValue @@ -481,7 +482,7 @@ public int NumberOfEdgeset { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfElement @@ -493,7 +494,7 @@ public int NumberOfElement { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfElementset @@ -505,7 +506,7 @@ public int NumberOfElementset { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfFrequency @@ -517,7 +518,7 @@ public int NumberOfFrequency { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfNode @@ -529,7 +530,7 @@ public int NumberOfNode { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfNodeset @@ -541,7 +542,7 @@ public int NumberOfNodeset { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfPatchset @@ -553,7 +554,7 @@ public int NumberOfPatchset { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfProperty @@ -565,7 +566,7 @@ public int NumberOfProperty { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### ParentType @@ -601,7 +602,19 @@ public InvisibleMarker ReferenceMarker { get; set; } #### Property Value - InvisibleMarker + [InvisibleMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) + +### SupportSetMassImpl + +Gets the flag for whether or not to support set for mass. + +```csharp +bool SupportSetMassImpl { get; } +``` + +#### Property Value + + bool ### TopologyEntityTypeName @@ -613,7 +626,7 @@ public override string TopologyEntityTypeName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UseAdvancedOption @@ -623,7 +636,7 @@ public bool UseAdvancedOption { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseRMovingReferenceFrame @@ -633,7 +646,7 @@ public bool UseRMovingReferenceFrame { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseTMovingReferenceFrame @@ -643,7 +656,7 @@ public bool UseTMovingReferenceFrame { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### \_MovingReferenceFrame @@ -683,11 +696,11 @@ public static NodalBody Create(SubSystemDocument docToAdd, string strBodyName, M #### Parameters -`docToAdd` SubSystemDocument +`docToAdd` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to add created . -`strBodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBodyName` string The body name of new . @@ -715,11 +728,11 @@ public static NodalBody Create(SubSystemDocument docToAdd, string strBodyName, M #### Parameters -`docToAdd` SubSystemDocument +`docToAdd` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The to add created . -`strBodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBodyName` string The body name of new . @@ -743,7 +756,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -769,7 +782,7 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -809,17 +822,17 @@ public virtual bool GetGeometryNavigatorInformation(XmlDocument xmlDom, XmlEleme #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument information. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement information. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -833,7 +846,7 @@ virtual void GetMassPropImpl(ref double dMass, VectorBase vecCenterPosition, OMa #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double The mass. @@ -845,11 +858,11 @@ The center position. The orientation. -`arTensor` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arTensor` double\[\] The tensor. -`bGlobal` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bGlobal` bool ### GetMeshesImpl\(\) @@ -875,21 +888,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlRootEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlRootEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -915,7 +928,7 @@ public VectorBase GetNodePositionsForMesh(Mesh mesh, int nIndex) `mesh` [Mesh](VM.Managed.DAFUL.FE.Mesh.md) -`nIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIndex` int #### Returns @@ -963,7 +976,7 @@ The reference. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -981,7 +994,7 @@ public void InitBodyType(BodyAnalysisType type, bool bUpdateNavi) The flexible body type. -`bUpdateNavi` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUpdateNavi` bool The Update Navigator. @@ -1031,7 +1044,7 @@ public virtual bool IsAutoContactable() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the specified auto contactable; otherwise, false. @@ -1045,7 +1058,7 @@ public override bool IsDestroyContainer() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if is [destroy container]; otherwise, false. @@ -1063,7 +1076,7 @@ public static bool IsOnlyLinearMaterial(ObjectBase obNodalBody) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if this instance refer only linear material; otherwise, false. @@ -1077,7 +1090,7 @@ public bool IsReadDFN() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if read; otherwise, false. @@ -1091,7 +1104,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -1109,7 +1122,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -1151,7 +1164,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -1191,7 +1204,7 @@ virtual void SetMassPropImpl(double dMass, VectorBase vecCenterPosition, OMatrix #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double The mass. @@ -1203,11 +1216,11 @@ The center position. The orientation. -`arTensor` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arTensor` double\[\] The tensor. -`bGlobal` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bGlobal` bool ### SetNodeElementInformation\(NodeInformation\[\], ElementInformation\[\]\) @@ -1229,7 +1242,7 @@ The element information. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -1253,7 +1266,7 @@ The orientation. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -1267,13 +1280,13 @@ public bool SetNodePositions(string strDFNPath) #### Parameters -`strDFNPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDFNPath` string The dfn file path. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -1301,7 +1314,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.NodalMassCalculationException.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.NodalMassCalculationException.md index 59a7a05f59..97fdec3cac 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.NodalMassCalculationException.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.NodalMassCalculationException.md @@ -1,4 +1,5 @@ -# Class NodalMassCalculationException +# Class NodalMassCalculationException + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,8 +12,8 @@ public class NodalMassCalculationException : Exception #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Exception](https://learn.microsoft.com/dotnet/api/system.exception) ← +object ← +Exception ← [NodalMassCalculationException](VM.Managed.DAFUL.FE.NodalMassCalculationException.md) #### Extension Methods @@ -31,5 +32,5 @@ public NodalMassCalculationException(string strMessage) #### Parameters -`strMessage` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMessage` string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Node.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Node.md index c347eca4f6..36ac5dfa36 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Node.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Node.md @@ -1,4 +1,5 @@ -# Struct Node +# Struct Node + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -25,7 +26,7 @@ public Node(Mesh meshParent, uint nIndex) The owner of mesh. -`nIndex` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nIndex` uint The index. @@ -41,7 +42,7 @@ public uint ID #### Field Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### Index @@ -53,7 +54,7 @@ public uint Index #### Field Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### Mass @@ -65,7 +66,7 @@ public double Mass #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MomentOfInertia diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.AddDesignPointOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.AddDesignPointOperation.md index 767dbe1814..c684e65526 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.AddDesignPointOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.AddDesignPointOperation.md @@ -1,4 +1,5 @@ -# Class AddDesignPointOperation +# Class AddDesignPointOperation + Namespace: [VM.Managed.DAFUL.FE.Operation](VM.Managed.DAFUL.FE.Operation.md) Assembly: VMOpMesh.dll @@ -11,7 +12,7 @@ public class AddDesignPointOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [AddDesignPointOperation](VM.Managed.DAFUL.FE.Operation.AddDesignPointOperation.md) @@ -109,7 +110,7 @@ public DesignPoint CreatedDesignPoint { get; } #### Property Value - DesignPoint + [DesignPoint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignPoint.cs) ### Name @@ -121,7 +122,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -141,5 +142,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.CalculateNewFEMass.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.CalculateNewFEMass.md new file mode 100644 index 0000000000..b29eb7d767 --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.CalculateNewFEMass.md @@ -0,0 +1,128 @@ +# Class CalculateNewFEMass + + +Namespace: [VM.Managed.DAFUL.FE.Operation](VM.Managed.DAFUL.FE.Operation.md) +Assembly: VMOpMesh.dll + +```csharp +public class CalculateNewFEMass : OperationBase, IOperation +``` + +#### Inheritance + +object ← +OperationBase ← +[CalculateNewFEMass](VM.Managed.DAFUL.FE.Operation.CalculateNewFEMass.md) + +#### Implements + +IOperation + +#### Inherited Members + +OperationBase.g\_bRedrawKernel, +OperationBase.g\_bVerify, +OperationBase.g\_bSkipAddEvent, +OperationBase.g\_bDupicateMsg, +OperationBase.m\_bIsHistoryMerge, +OperationBase.Execute\(\), +OperationBase.PostExecute\(\), +OperationBase.GetInformation\(XmlWriter\), +OperationBase.Create\(string, View, object\), +OperationBase.Create\(string, IDocument, object\), +OperationBase.Create\(string, object\), +OperationBase.Create\(string\), +OperationBase.StartSession\(\), +OperationBase.StartSession\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSession\(OperationBase\), +OperationBase.StartSessionAndWait\(\), +OperationBase.StartSessionAndWait\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSessionAndWait\(OperationBase\), +OperationBase.Initialize\(OperationBase.ShowVerifyResult\), +OperationBase.RecordJournal\(OperationBase\), +OperationBase.UseSession\(string\), +OperationBase.raise\_OnOperationStatusChanged\(object, OperationStatusEventArgs\), +OperationBase.raise\_OnEndOperation\(object, EventArgs\), +OperationBase.ClearCurrentMark\(string\), +OperationBase.ClearCurrentMark\(IDocument\), +OperationBase.ClearCurrentMark\(\), +OperationBase.GlobalOverride, +OperationBase.IsDoingThread, +OperationBase.ExecuteMacro, +OperationBase.SimStatus, +OperationBase.Status, +OperationBase.autoEvents, +OperationBase.IsHistoryMerge, +OperationBase.SkipClearTemporaryLinkContainer, +OperationBase.PostExecuteClearTemporaryLinkContainer, +OperationBase.SkipEndOperation, +OperationBase.UseMacro, +OperationBase.MarkStatus, +OperationBase.UseThread, +OperationBase.Name, +OperationBase.ExecutableOnHold, +OperationBase.Override, +OperationBase.Parameter, +OperationBase.View, +OperationBase.Document, +OperationBase.OnEndOperation, +OperationBase.OnOperationStatusChanged + +#### Extension Methods + +[LinkPropertyItemCache.GetLinkProperties\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkProperties\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkPropertiesAndValues\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkPropertiesAndValues\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkedObjects\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkedObjects\_\_1\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_) + +## Constructors + +### CalculateNewFEMass\(NodalBody, bool, BodyAnalysisType, List\) + +```csharp +public CalculateNewFEMass(NodalBody nodalBody, bool fromUI, BodyAnalysisType analysisType, List fmassBaseList) +``` + +#### Parameters + +`nodalBody` NodalBody + +`fromUI` bool + +`analysisType` BodyAnalysisType + +`fmassBaseList` List + +## Properties + +### Name + +Gets the operation name. + +```csharp +public override string Name { get; } +``` + +#### Property Value + + string + +### Result + +```csharp +public (double[], double, double[]) Result { get; } +``` + +#### Property Value + + \(double\[\], double, double\[\]\) + +## Methods + +### Execute\(\) + +Execute the operation. + +```csharp +public override void Execute() +``` + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.ChangeNodalModalOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.ChangeNodalModalOperation.md index b1b9adc129..d6b337f265 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.ChangeNodalModalOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.ChangeNodalModalOperation.md @@ -1,4 +1,5 @@ -# Class ChangeNodalModalOperation +# Class ChangeNodalModalOperation + Namespace: [VM.Managed.DAFUL.FE.Operation](VM.Managed.DAFUL.FE.Operation.md) Assembly: VMOpMesh.dll @@ -11,7 +12,7 @@ public class ChangeNodalModalOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ChangeNodalModalOperation](VM.Managed.DAFUL.FE.Operation.ChangeNodalModalOperation.md) @@ -117,7 +118,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -137,5 +138,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.CreateEdgeset.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.CreateEdgeset.md index f3dfd0aefd..486852a4c4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.CreateEdgeset.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.CreateEdgeset.md @@ -1,4 +1,5 @@ -# Class CreateEdgeset +# Class CreateEdgeset + Namespace: [VM.Managed.DAFUL.FE.Operation](VM.Managed.DAFUL.FE.Operation.md) Assembly: VMOpMesh.dll @@ -11,7 +12,7 @@ public class CreateEdgeset : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [CreateEdgeset](VM.Managed.DAFUL.FE.Operation.CreateEdgeset.md) @@ -97,7 +98,7 @@ public CreateEdgeset(Document doc, uint[] arnNodeIndex) `doc` Document -`arnNodeIndex` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`arnNodeIndex` uint\[\] ### CreateEdgeset\(JournalParameter\) @@ -131,7 +132,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -151,7 +152,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter ### UpdateUI\(IUIUpdate, Document\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.CreateMarkerOnNode.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.CreateMarkerOnNode.md index b02ec0ab1b..caa160525f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.CreateMarkerOnNode.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.CreateMarkerOnNode.md @@ -1,4 +1,5 @@ -# Class CreateMarkerOnNode +# Class CreateMarkerOnNode + Namespace: [VM.Managed.DAFUL.FE.Operation](VM.Managed.DAFUL.FE.Operation.md) Assembly: VMOpMesh.dll @@ -11,7 +12,7 @@ public class CreateMarkerOnNode : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [CreateMarkerOnNode](VM.Managed.DAFUL.FE.Operation.CreateMarkerOnNode.md) @@ -133,7 +134,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -153,7 +154,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter ### UpdateUI\(IUIUpdate, Document\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.CreateNodalBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.CreateNodalBody.md index f2922a865f..9824a11bce 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.CreateNodalBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.CreateNodalBody.md @@ -1,4 +1,5 @@ -# Class CreateNodalBody +# Class CreateNodalBody + Namespace: [VM.Managed.DAFUL.FE.Operation](VM.Managed.DAFUL.FE.Operation.md) Assembly: VMOpMesh.dll @@ -9,7 +10,7 @@ public class CreateNodalBody : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [CreateNodalBody](VM.Managed.DAFUL.FE.Operation.CreateNodalBody.md) @@ -83,7 +84,7 @@ public CreateNodalBody(List lstInfo) #### Parameters -`lstInfo` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[object](https://learn.microsoft.com/dotnet/api/system.object)\> +`lstInfo` List ### CreateNodalBody\(JournalParameter\) @@ -107,7 +108,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -127,5 +128,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.CreateNodeset.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.CreateNodeset.md index 4f328409ff..9ababf764f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.CreateNodeset.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.CreateNodeset.md @@ -1,4 +1,5 @@ -# Class CreateNodeset +# Class CreateNodeset + Namespace: [VM.Managed.DAFUL.FE.Operation](VM.Managed.DAFUL.FE.Operation.md) Assembly: VMOpMesh.dll @@ -11,7 +12,7 @@ public class CreateNodeset : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [CreateNodeset](VM.Managed.DAFUL.FE.Operation.CreateNodeset.md) @@ -97,7 +98,7 @@ public CreateNodeset(Document doc, uint[] arnNodeIndex) `doc` Document -`arnNodeIndex` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`arnNodeIndex` uint\[\] ### CreateNodeset\(JournalParameter\) @@ -121,7 +122,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Nodeset @@ -151,7 +152,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter ### UpdateUI\(IUIUpdate, Document\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.CreatePatchset.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.CreatePatchset.md index c63002edae..986cec8fa7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.CreatePatchset.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.CreatePatchset.md @@ -1,4 +1,5 @@ -# Class CreatePatchset +# Class CreatePatchset + Namespace: [VM.Managed.DAFUL.FE.Operation](VM.Managed.DAFUL.FE.Operation.md) Assembly: VMOpMesh.dll @@ -11,7 +12,7 @@ public class CreatePatchset : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [CreatePatchset](VM.Managed.DAFUL.FE.Operation.CreatePatchset.md) @@ -121,7 +122,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Patchset @@ -151,7 +152,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter ### UpdateUI\(IUIUpdate, Document\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.ImportMesh.MeshImportData.ImportType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.ImportMesh.MeshImportData.ImportType.md index ffea29dacb..4221e322b8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.ImportMesh.MeshImportData.ImportType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.ImportMesh.MeshImportData.ImportType.md @@ -1,4 +1,5 @@ -# Enum ImportMesh.MeshImportData.ImportType +# Enum ImportMesh.MeshImportData.ImportType + Namespace: [VM.Managed.DAFUL.FE.Operation](VM.Managed.DAFUL.FE.Operation.md) Assembly: VMOpMesh.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.ImportMesh.MeshImportData.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.ImportMesh.MeshImportData.md index 180e51b40c..b736650273 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.ImportMesh.MeshImportData.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.ImportMesh.MeshImportData.md @@ -1,4 +1,5 @@ -# Struct ImportMesh.MeshImportData +# Struct ImportMesh.MeshImportData + Namespace: [VM.Managed.DAFUL.FE.Operation](VM.Managed.DAFUL.FE.Operation.md) Assembly: VMOpMesh.dll @@ -19,7 +20,7 @@ public Color Color #### Field Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### DegenerateElement @@ -29,7 +30,7 @@ public bool DegenerateElement #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ImportOnlyRBEIncludingStaticCorrectionMode @@ -39,7 +40,7 @@ public bool ImportOnlyRBEIncludingStaticCorrectionMode #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsDeleteOldModal @@ -49,7 +50,7 @@ public bool IsDeleteOldModal #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ModalFilePath @@ -59,7 +60,7 @@ public string ModalFilePath #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NodalFilePath @@ -69,7 +70,7 @@ public string NodalFilePath #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeOfImport diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.ImportMesh.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.ImportMesh.md index 1e93a0b6e1..832476097a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.ImportMesh.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.ImportMesh.md @@ -1,4 +1,5 @@ -# Class ImportMesh +# Class ImportMesh + Namespace: [VM.Managed.DAFUL.FE.Operation](VM.Managed.DAFUL.FE.Operation.md) Assembly: VMOpMesh.dll @@ -11,7 +12,7 @@ public class ImportMesh : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ImportMesh](VM.Managed.DAFUL.FE.Operation.ImportMesh.md) @@ -97,7 +98,7 @@ public ImportMesh(Document doc, string strMeshFile) `doc` Document -`strMeshFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMeshFile` string ### ImportMesh\(Document, MeshImportData\) @@ -131,7 +132,7 @@ public static bool IsExistMeshData { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Mesh @@ -153,7 +154,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -173,7 +174,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter ### UpdateUI\(IUIUpdate, Document\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.ReplaceFEBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.ReplaceFEBody.md index 191cc910e2..8a5bd93806 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.ReplaceFEBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.ReplaceFEBody.md @@ -1,4 +1,5 @@ -# Class ReplaceFEBody +# Class ReplaceFEBody + Namespace: [VM.Managed.DAFUL.FE.Operation](VM.Managed.DAFUL.FE.Operation.md) Assembly: VMOpMesh.dll @@ -11,9 +12,9 @@ public class ReplaceFEBody : Create, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -Create ← +[Create](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs) ← [ReplaceFEBody](VM.Managed.DAFUL.FE.Operation.ReplaceFEBody.md) #### Implements @@ -22,13 +23,13 @@ IOperation #### Inherited Members -Create.m\_strInitializerXml, -Create.Execute\(\), -Create.PostExecute\(\), -Create.ExecutePickOperation\(XmlDocument, string\[\], string\[\], int, int\), -Create.Name, -Create.IsHistoryMerge, -Create.UseMacro, +[Create.m\_strInitializerXml](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.PostExecute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.ExecutePickOperation\(XmlDocument, string\[\], string\[\], int, int\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.IsHistoryMerge](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.UseMacro](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -103,7 +104,7 @@ public ReplaceFEBody(string strInitializerXml) #### Parameters -`strInitializerXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInitializerXml` string The STR initializer XML. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.ReplaceVerification.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.ReplaceVerification.md index 19f12b0f60..b0cc34f027 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.ReplaceVerification.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.ReplaceVerification.md @@ -1,4 +1,5 @@ -# Class ReplaceVerification +# Class ReplaceVerification + Namespace: [VM.Managed.DAFUL.FE.Operation](VM.Managed.DAFUL.FE.Operation.md) Assembly: VMOpMesh.dll @@ -11,7 +12,7 @@ public class ReplaceVerification : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ReplaceVerification](VM.Managed.DAFUL.FE.Operation.ReplaceVerification.md) @@ -88,7 +89,7 @@ public ReplaceVerification(Dictionary> values) #### Parameters -`values` [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [SortedSet](https://learn.microsoft.com/dotnet/api/system.collections.generic.sortedset\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\>\> +`values` Dictionary\> ## Properties @@ -100,7 +101,7 @@ public bool Continue { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -112,7 +113,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.ShellToSolid.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.ShellToSolid.md index 29d8887d1b..2172bc3135 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.ShellToSolid.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.ShellToSolid.md @@ -1,4 +1,5 @@ -# Class ShellToSolid +# Class ShellToSolid + Namespace: [VM.Managed.DAFUL.FE.Operation](VM.Managed.DAFUL.FE.Operation.md) Assembly: VMOpMesh.dll @@ -11,9 +12,9 @@ public class ShellToSolid : Create, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -Create ← +[Create](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs) ← [ShellToSolid](VM.Managed.DAFUL.FE.Operation.ShellToSolid.md) #### Implements @@ -22,13 +23,13 @@ IOperation #### Inherited Members -Create.m\_strInitializerXml, -Create.Execute\(\), -Create.PostExecute\(\), -Create.ExecutePickOperation\(XmlDocument, string\[\], string\[\], int, int\), -Create.Name, -Create.IsHistoryMerge, -Create.UseMacro, +[Create.m\_strInitializerXml](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.PostExecute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.ExecutePickOperation\(XmlDocument, string\[\], string\[\], int, int\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.IsHistoryMerge](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.UseMacro](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -103,7 +104,7 @@ public ShellToSolid(string strInitializerXml) #### Parameters -`strInitializerXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInitializerXml` string The STR initializer XML. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.md index 6ee376ccc8..8c93a174ee 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Operation.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.FE.Operation +# Namespace VM.Managed.DAFUL.FE.Operation + ### Classes @@ -6,6 +7,8 @@ The design point add operation + [CalculateNewFEMass](VM.Managed.DAFUL.FE.Operation.CalculateNewFEMass.md) + [ChangeNodalModalOperation](VM.Managed.DAFUL.FE.Operation.ChangeNodalModalOperation.md) This class is to represent change nodal and modal opeartion. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Patch.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Patch.md index 3fb8bbc404..66ae44e53f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Patch.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Patch.md @@ -1,4 +1,5 @@ -# Struct Patch +# Struct Patch + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -21,7 +22,7 @@ public uint m_nNode1 #### Field Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### m\_nNode2 @@ -33,7 +34,7 @@ public uint m_nNode2 #### Field Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### m\_nNode3 @@ -45,7 +46,7 @@ public uint m_nNode3 #### Field Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### m\_nNode4 @@ -57,5 +58,5 @@ public uint m_nNode4 #### Field Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.PointMass.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.PointMass.md index 54bc56a4da..ee3a8bcffd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.PointMass.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.PointMass.md @@ -1,4 +1,5 @@ -# Class PointMass +# Class PointMass + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,12 +12,12 @@ public class PointMass : FMassBase, IObservableObject, IDisposableObject, ILinka #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [FESubEntity](VM.Managed.DAFUL.FE.FESubEntity.md) ← [FMassBase](VM.Managed.DAFUL.FE.FMassBase.md) ← [PointMass](VM.Managed.DAFUL.FE.PointMass.md) @@ -28,7 +29,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -64,17 +65,17 @@ IReferencable [FESubEntity.GetNodalBodyForSubsystem\(SubSystem, Mesh\)](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_GetNodalBodyForSubsystem\_VM\_Managed\_DAFUL\_SubSystem\_VM\_Managed\_DAFUL\_FE\_Mesh\_), [FESubEntity.FEID](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_FEID), [FESubEntity.OwnerMesh](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_OwnerMesh), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -167,7 +168,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -198,7 +199,7 @@ public PointMass(string strName, FRBE frbe) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the point mass. @@ -216,11 +217,11 @@ public PointMass(string strName, uint nNodeIndex) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the point mass. -`nNodeIndex` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNodeIndex` uint Node Index of the point mass. @@ -234,7 +235,7 @@ public PointMass(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the point mass. @@ -270,7 +271,7 @@ public ExpressionValueVariable Mass { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MomentOfInertia @@ -282,7 +283,7 @@ public ExpressionValueVariable[] MomentOfInertia { get; set; } #### Property Value - ExpressionValueVariable\[\] + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\[\] ### NodeIndex @@ -294,7 +295,7 @@ public uint NodeIndex { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ## Methods @@ -308,7 +309,7 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -322,21 +323,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [b has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.PointOnNode.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.PointOnNode.md index 23e7b4ac77..7623830f32 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.PointOnNode.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.PointOnNode.md @@ -1,4 +1,5 @@ -# Class PointOnNode +# Class PointOnNode + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -6,14 +7,14 @@ Assembly: VMFE.dll This class is to represent the point on node. ```csharp -public class PointOnNode : PointBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable +public class PointOnNode : PointBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← PointBase ← [PointOnNode](VM.Managed.DAFUL.FE.PointOnNode.md) @@ -29,7 +30,8 @@ IOwned, IHasID, IEventProvider, ILinkContainerEvent, -IVerifiable +IVerifiable, +IHasReplaceableEntity #### Inherited Members @@ -38,6 +40,8 @@ PointBase.IsParametric\(string\), PointBase.ReadXml\(XmlReader\), PointBase.WriteXml\(XmlWriter\), PointBase.GetSchema\(\), +PointBase.HasReplaceableEntity\(IObjectBase\), +PointBase.ReplaceEntity\(IObjectBase, IObjectBase\), PointBase.IsParameterized, PointBase.Z, PointBase.Y, @@ -86,7 +90,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -117,11 +121,11 @@ public PointOnNode(UIntPtr ptrOwnerKey, int nNodeIndex) #### Parameters -`ptrOwnerKey` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`ptrOwnerKey` UIntPtr The owner key. -`nNodeIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNodeIndex` int The node index. @@ -139,7 +143,7 @@ public PointOnNode(Mesh mesh, int nNodeIndex) The mesh. -`nNodeIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNodeIndex` int The node index. @@ -163,7 +167,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### NodeIndex @@ -175,7 +179,7 @@ public int NodeIndex { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Value @@ -199,7 +203,7 @@ public override double X { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y @@ -211,7 +215,7 @@ public override double Y { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Z @@ -223,7 +227,7 @@ public override double Z { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -237,7 +241,7 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -257,7 +261,7 @@ Point picking type. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool If set to true is parametric; otherwise, false is none parametric. @@ -271,7 +275,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -285,7 +289,7 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The stream from which the object is deserialized. @@ -299,7 +303,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.Beam.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.Beam.md index ed37ea4210..6e4f5e374d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.Beam.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.Beam.md @@ -1,4 +1,5 @@ -# Class Beam +# Class Beam + Namespace: [VM.Managed.DAFUL.FE.Property](VM.Managed.DAFUL.FE.Property.md) Assembly: VMFE.dll @@ -11,12 +12,12 @@ public class Beam : PropertyBase, IObservableObject, IDisposableObject, ILinkabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [FESubEntity](VM.Managed.DAFUL.FE.FESubEntity.md) ← [PropertyBase](VM.Managed.DAFUL.FE.Property.PropertyBase.md) ← [Beam](VM.Managed.DAFUL.FE.Property.Beam.md) @@ -32,7 +33,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -62,17 +63,17 @@ IHasMaterial [FESubEntity.GetNodalBodyForSubsystem\(SubSystem, Mesh\)](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_GetNodalBodyForSubsystem\_VM\_Managed\_DAFUL\_SubSystem\_VM\_Managed\_DAFUL\_FE\_Mesh\_), [FESubEntity.FEID](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_FEID), [FESubEntity.OwnerMesh](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_OwnerMesh), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -165,7 +166,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -196,7 +197,7 @@ public Beam(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the property beam. @@ -350,7 +351,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.BeamL.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.BeamL.md index c0e5884c42..b7fe861772 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.BeamL.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.BeamL.md @@ -1,4 +1,5 @@ -# Class BeamL +# Class BeamL + Namespace: [VM.Managed.DAFUL.FE.Property](VM.Managed.DAFUL.FE.Property.md) Assembly: VMFE.dll @@ -11,12 +12,12 @@ public class BeamL : Beam, IObservableObject, IDisposableObject, ILinkable, ILin #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [FESubEntity](VM.Managed.DAFUL.FE.FESubEntity.md) ← [PropertyBase](VM.Managed.DAFUL.FE.Property.PropertyBase.md) ← [Beam](VM.Managed.DAFUL.FE.Property.Beam.md) ← @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -71,17 +72,17 @@ IHasMaterial [FESubEntity.GetNodalBodyForSubsystem\(SubSystem, Mesh\)](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_GetNodalBodyForSubsystem\_VM\_Managed\_DAFUL\_SubSystem\_VM\_Managed\_DAFUL\_FE\_Mesh\_), [FESubEntity.FEID](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_FEID), [FESubEntity.OwnerMesh](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_OwnerMesh), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -174,7 +175,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -205,7 +206,7 @@ public BeamL(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the property BeamL. @@ -229,7 +230,7 @@ public CrossSectionType CrossSectionType { get; set; } #### Property Value - CrossSectionType + [CrossSectionType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.FE.BeamCrossSection/BeamCrossSection.cs) ### GeomInfoList @@ -253,7 +254,7 @@ public double PoissonRatio { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SyncWithGeom @@ -265,7 +266,7 @@ public bool SyncWithGeom { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### YDirection @@ -311,7 +312,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -329,7 +330,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.Properties.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.Properties.md index fcacd86d38..db702805be 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.Properties.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.Properties.md @@ -1,4 +1,5 @@ -# Class Properties +# Class Properties + Namespace: [VM.Managed.DAFUL.FE.Property](VM.Managed.DAFUL.FE.Property.md) Assembly: VMFE.dll @@ -11,9 +12,9 @@ public class Properties : Container, IObservableObject, IDisposableObject, ILink #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← [Properties](VM.Managed.DAFUL.FE.Property.Properties.md) @@ -83,7 +84,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -124,7 +125,7 @@ public NamedObjectDictionary BeamLs { get; } #### Property Value - NamedObjectDictionary<[BeamL](VM.Managed.DAFUL.FE.Property.BeamL.md)\> + [NamedObjectDictionary](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/NamedObjectDictionary.cs)<[BeamL](VM.Managed.DAFUL.FE.Property.BeamL.md)\> ### Beams @@ -136,7 +137,7 @@ public NamedObjectDictionary Beams { get; } #### Property Value - NamedObjectDictionary<[Beam](VM.Managed.DAFUL.FE.Property.Beam.md)\> + [NamedObjectDictionary](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/NamedObjectDictionary.cs)<[Beam](VM.Managed.DAFUL.FE.Property.Beam.md)\> ### Shells @@ -148,7 +149,7 @@ public NamedObjectDictionary Shells { get; } #### Property Value - NamedObjectDictionary<[Shell](VM.Managed.DAFUL.FE.Property.Shell.md)\> + [NamedObjectDictionary](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/NamedObjectDictionary.cs)<[Shell](VM.Managed.DAFUL.FE.Property.Shell.md)\> ### Solids @@ -160,7 +161,7 @@ public NamedObjectDictionary Solids { get; } #### Property Value - NamedObjectDictionary<[Solid](VM.Managed.DAFUL.FE.Property.Solid.md)\> + [NamedObjectDictionary](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/NamedObjectDictionary.cs)<[Solid](VM.Managed.DAFUL.FE.Property.Solid.md)\> ## Methods @@ -174,7 +175,7 @@ public void Add(object ob) #### Parameters -`ob` [object](https://learn.microsoft.com/dotnet/api/system.object) +`ob` object The property. @@ -188,7 +189,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -208,7 +209,7 @@ public virtual XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -230,7 +231,7 @@ public override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -244,7 +245,7 @@ public virtual void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The stream from which the object is deserialized. @@ -258,7 +259,7 @@ public void Remove(object ob) #### Parameters -`ob` [object](https://learn.microsoft.com/dotnet/api/system.object) +`ob` object The property. @@ -272,7 +273,7 @@ public virtual void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.PropertyBase.PropertyType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.PropertyBase.PropertyType.md index b544017ad7..35e7eb02e8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.PropertyBase.PropertyType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.PropertyBase.PropertyType.md @@ -1,4 +1,5 @@ -# Enum PropertyBase.PropertyType +# Enum PropertyBase.PropertyType + Namespace: [VM.Managed.DAFUL.FE.Property](VM.Managed.DAFUL.FE.Property.md) Assembly: VMFE.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.PropertyBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.PropertyBase.md index 57e62ce23d..1220149f9c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.PropertyBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.PropertyBase.md @@ -1,4 +1,5 @@ -# Class PropertyBase +# Class PropertyBase + Namespace: [VM.Managed.DAFUL.FE.Property](VM.Managed.DAFUL.FE.Property.md) Assembly: VMFE.dll @@ -11,12 +12,12 @@ public abstract class PropertyBase : FESubEntity, IObservableObject, IDisposable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [FESubEntity](VM.Managed.DAFUL.FE.FESubEntity.md) ← [PropertyBase](VM.Managed.DAFUL.FE.Property.PropertyBase.md) @@ -32,7 +33,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -57,17 +58,17 @@ IHasMaterial [FESubEntity.GetNodalBodyForSubsystem\(SubSystem, Mesh\)](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_GetNodalBodyForSubsystem\_VM\_Managed\_DAFUL\_SubSystem\_VM\_Managed\_DAFUL\_FE\_Mesh\_), [FESubEntity.FEID](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_FEID), [FESubEntity.OwnerMesh](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_OwnerMesh), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -160,7 +161,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -191,7 +192,7 @@ public PropertyBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the property base. @@ -253,7 +254,7 @@ protected override void LinkAddedToDocumentCore(IOwned owner, bool bBackup) `owner` IOwned -`bBackup` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bBackup` bool ### LinkRequestUpdate\(object, LinkEventArgs\) @@ -265,7 +266,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.PropertyHasOrientation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.PropertyHasOrientation.md index d056930ab5..bba44f5676 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.PropertyHasOrientation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.PropertyHasOrientation.md @@ -1,4 +1,5 @@ -# Class PropertyHasOrientation +# Class PropertyHasOrientation + Namespace: [VM.Managed.DAFUL.FE.Property](VM.Managed.DAFUL.FE.Property.md) Assembly: VMFE.dll @@ -11,12 +12,12 @@ public abstract class PropertyHasOrientation : PropertyBase, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [FESubEntity](VM.Managed.DAFUL.FE.FESubEntity.md) ← [PropertyBase](VM.Managed.DAFUL.FE.Property.PropertyBase.md) ← [PropertyHasOrientation](VM.Managed.DAFUL.FE.Property.PropertyHasOrientation.md) @@ -33,7 +34,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -64,17 +65,17 @@ IPostDeserialized [FESubEntity.GetNodalBodyForSubsystem\(SubSystem, Mesh\)](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_GetNodalBodyForSubsystem\_VM\_Managed\_DAFUL\_SubSystem\_VM\_Managed\_DAFUL\_FE\_Mesh\_), [FESubEntity.FEID](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_FEID), [FESubEntity.OwnerMesh](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_OwnerMesh), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -167,7 +168,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -198,7 +199,7 @@ public PropertyHasOrientation(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the property has orientation. @@ -220,7 +221,7 @@ protected uint markerID #### Field Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ## Properties @@ -262,7 +263,7 @@ public override void LinkRequestDestroy(object obNotifier, LinkEventArgs arg) #### Parameters -`obNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obNotifier` object `arg` LinkEventArgs @@ -286,5 +287,5 @@ protected void SetOrientation(double[] ardValue) #### Parameters -`ardValue` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ardValue` double\[\] diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.Shell.PlaneType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.Shell.PlaneType.md index 18d2f66ae8..c165716152 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.Shell.PlaneType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.Shell.PlaneType.md @@ -1,4 +1,5 @@ -# Enum Shell.PlaneType +# Enum Shell.PlaneType + Namespace: [VM.Managed.DAFUL.FE.Property](VM.Managed.DAFUL.FE.Property.md) Assembly: VMFE.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.Shell.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.Shell.md index a4f086c7c6..d6a040bd60 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.Shell.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.Shell.md @@ -1,4 +1,5 @@ -# Class Shell +# Class Shell + Namespace: [VM.Managed.DAFUL.FE.Property](VM.Managed.DAFUL.FE.Property.md) Assembly: VMFE.dll @@ -11,12 +12,12 @@ public class Shell : PropertyHasOrientation, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [FESubEntity](VM.Managed.DAFUL.FE.FESubEntity.md) ← [PropertyBase](VM.Managed.DAFUL.FE.Property.PropertyBase.md) ← [PropertyHasOrientation](VM.Managed.DAFUL.FE.Property.PropertyHasOrientation.md) ← @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -66,17 +67,17 @@ IPostDeserialized [FESubEntity.GetNodalBodyForSubsystem\(SubSystem, Mesh\)](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_GetNodalBodyForSubsystem\_VM\_Managed\_DAFUL\_SubSystem\_VM\_Managed\_DAFUL\_FE\_Mesh\_), [FESubEntity.FEID](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_FEID), [FESubEntity.OwnerMesh](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_OwnerMesh), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -169,7 +170,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -200,7 +201,7 @@ public Shell(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the property shell. @@ -224,7 +225,7 @@ public uint StrainZ { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### Thickness diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.Solid.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.Solid.md index 1b72e32a68..135ee9a01e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.Solid.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.Solid.md @@ -1,4 +1,5 @@ -# Class Solid +# Class Solid + Namespace: [VM.Managed.DAFUL.FE.Property](VM.Managed.DAFUL.FE.Property.md) Assembly: VMFE.dll @@ -11,12 +12,12 @@ public class Solid : PropertyHasOrientation, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [FESubEntity](VM.Managed.DAFUL.FE.FESubEntity.md) ← [PropertyBase](VM.Managed.DAFUL.FE.Property.PropertyBase.md) ← [PropertyHasOrientation](VM.Managed.DAFUL.FE.Property.PropertyHasOrientation.md) ← @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -66,17 +67,17 @@ IPostDeserialized [FESubEntity.GetNodalBodyForSubsystem\(SubSystem, Mesh\)](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_GetNodalBodyForSubsystem\_VM\_Managed\_DAFUL\_SubSystem\_VM\_Managed\_DAFUL\_FE\_Mesh\_), [FESubEntity.FEID](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_FEID), [FESubEntity.OwnerMesh](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_OwnerMesh), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -169,7 +170,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -200,7 +201,7 @@ public Solid(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the property solid. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.md index 8e0a4efa53..1e81b97257 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Property.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.FE.Property +# Namespace VM.Managed.DAFUL.FE.Property + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.PropertyBC.BCConstrainedType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.PropertyBC.BCConstrainedType.md index 6de1c35f5c..4d244fd561 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.PropertyBC.BCConstrainedType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.PropertyBC.BCConstrainedType.md @@ -1,4 +1,5 @@ -# Enum PropertyBC.BCConstrainedType +# Enum PropertyBC.BCConstrainedType + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.PropertyBC.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.PropertyBC.md index 8eeb9400c1..563d0d7115 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.PropertyBC.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.PropertyBC.md @@ -1,4 +1,5 @@ -# Class PropertyBC +# Class PropertyBC + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -12,13 +13,13 @@ public class PropertyBC : FEProperty, IObservableObject, IDisposableObject, ILin #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [FEProperty](VM.Managed.DAFUL.FE.FEProperty.md) ← [PropertyBC](VM.Managed.DAFUL.FE.PropertyBC.md) @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -42,12 +43,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -146,7 +147,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -199,7 +200,7 @@ public bool IsConstrainedRX { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsConstrainedRY @@ -211,7 +212,7 @@ public bool IsConstrainedRY { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsConstrainedRZ @@ -223,7 +224,7 @@ public bool IsConstrainedRZ { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsConstrainedTX @@ -235,7 +236,7 @@ public bool IsConstrainedTX { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsConstrainedTY @@ -247,7 +248,7 @@ public bool IsConstrainedTY { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsConstrainedTZ @@ -259,7 +260,7 @@ public bool IsConstrainedTZ { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.RBEInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.RBEInfo.md index 6e8ecefdb6..5d1ad9cee9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.RBEInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.RBEInfo.md @@ -1,4 +1,5 @@ -# Class RBEInfo +# Class RBEInfo + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,9 +12,9 @@ public class RBEInfo : EigenvalueInfo, IObservableObject, IDisposableObject, ILi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [EigenvalueInfo](VM.Managed.DAFUL.FE.EigenvalueInfo.md) ← [RBEInfo](VM.Managed.DAFUL.FE.RBEInfo.md) @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -107,9 +108,9 @@ public RBEInfo(bool bTreatRBE, bool bUseStaticCorrectionMode, VectorBase vecMast #### Parameters -`bTreatRBE` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bTreatRBE` bool -`bUseStaticCorrectionMode` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseStaticCorrectionMode` bool `vecMasterPoint` VectorBase @@ -121,7 +122,7 @@ public RBEInfo(bool bUseStaticCorrectionMode) #### Parameters -`bUseStaticCorrectionMode` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseStaticCorrectionMode` bool ### RBEInfo\(\) @@ -153,7 +154,7 @@ public bool TreatRBE { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TypeOfRBE diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferenceDistributedMass.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferenceDistributedMass.md index 5a19b3b110..ca4eb26b00 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferenceDistributedMass.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferenceDistributedMass.md @@ -1,4 +1,5 @@ -# Class ReferenceDistributedMass +# Class ReferenceDistributedMass + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,9 +12,9 @@ public class ReferenceDistributedMass : Reference, IObservableObject, IDisposabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Reference ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, INamed, @@ -162,7 +163,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -207,11 +208,11 @@ protected ReferenceDistributedMass(SerializationInfo info, StreamingContext cont #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. @@ -227,17 +228,17 @@ public virtual bool GetGeometryNavigatorInformation(XmlDocument xmlDom, XmlEleme #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument information. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement information. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -251,19 +252,19 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`__unnamed002` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`__unnamed002` bool #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferenceEdgeset.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferenceEdgeset.md index ea3ae8894a..9c79514e33 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferenceEdgeset.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferenceEdgeset.md @@ -1,4 +1,5 @@ -# Class ReferenceEdgeset +# Class ReferenceEdgeset + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,9 +12,9 @@ public class ReferenceEdgeset : Reference, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Reference ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, INamed, @@ -176,7 +177,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -221,11 +222,11 @@ protected ReferenceEdgeset(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. @@ -253,7 +254,7 @@ public override sealed string FullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GeometryFullName @@ -265,7 +266,7 @@ public string GeometryFullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GeometryNameForMultiContact @@ -277,7 +278,7 @@ public string GeometryNameForMultiContact { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### HalfThickness @@ -289,7 +290,7 @@ public virtual ExpressionValueVariable HalfThickness { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MaxPenetration @@ -301,7 +302,7 @@ public virtual ExpressionValueVariable MaxPenetration { get; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ReferenceType @@ -313,7 +314,7 @@ public virtual string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SurfaceSmoothingType @@ -339,7 +340,7 @@ public virtual void GetCenterPositionDirection(uint index, ref VectorBase center #### Parameters -`index` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`index` uint The index. @@ -363,17 +364,17 @@ public virtual bool GetGeometryNavigatorInformation(XmlDocument xmlDom, XmlEleme #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument information. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement information. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -387,19 +388,19 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`__unnamed002` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`__unnamed002` bool #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -413,7 +414,7 @@ public virtual uint GetPatchCount() #### Returns - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint The count of patch. @@ -441,7 +442,7 @@ The reference. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -459,7 +460,7 @@ public override bool IsOwner(Reference owner) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the specified owner; otherwise, false. @@ -473,7 +474,7 @@ protected override void LinkRequestUpdate(object obNotifier, LinkEventArgs arg) #### Parameters -`obNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferenceFRBE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferenceFRBE.md index 7eed7dc107..c402e0fe50 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferenceFRBE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferenceFRBE.md @@ -1,4 +1,5 @@ -# Class ReferenceFRBE +# Class ReferenceFRBE + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,13 +12,13 @@ public class ReferenceFRBE : ReferenceConnectable, IObservableObject, IDisposabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Reference ← -ReferenceConnectable ← +[ReferenceConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ReferenceConnectable.cs) ← [ReferenceFRBE](VM.Managed.DAFUL.FE.ReferenceFRBE.md) #### Implements @@ -34,7 +35,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, INamed, @@ -55,19 +56,19 @@ IChainedSegmentConnector #### Inherited Members -ReferenceConnectable.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -ReferenceConnectable.IsAutoContactable\(\), -ReferenceConnectable.GetContactables\(\), -ReferenceConnectable.GetPointDirection\(ref VectorBase, ref VectorBase, IReferencable\), -ReferenceConnectable.ParentType, -ReferenceConnectable.ReferenceFrameType, -ReferenceConnectable.ConnectableName, -ReferenceConnectable.ConnectablePostfixName, -ReferenceConnectable.ConnectablePosition, -ReferenceConnectable.ConnectableFullName, -ReferenceConnectable.ConnectableBody, -ReferenceConnectable.Body, -ReferenceConnectable.TopologyEntityTypeName, +[ReferenceConnectable.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ReferenceConnectable.cs), +[ReferenceConnectable.IsAutoContactable\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ReferenceConnectable.cs), +[ReferenceConnectable.GetContactables\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ReferenceConnectable.cs), +[ReferenceConnectable.GetPointDirection\(ref VectorBase, ref VectorBase, IReferencable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ReferenceConnectable.cs), +[ReferenceConnectable.ParentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ReferenceConnectable.cs), +[ReferenceConnectable.ReferenceFrameType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ReferenceConnectable.cs), +[ReferenceConnectable.ConnectableName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ReferenceConnectable.cs), +[ReferenceConnectable.ConnectablePostfixName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ReferenceConnectable.cs), +[ReferenceConnectable.ConnectablePosition](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ReferenceConnectable.cs), +[ReferenceConnectable.ConnectableFullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ReferenceConnectable.cs), +[ReferenceConnectable.ConnectableBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ReferenceConnectable.cs), +[ReferenceConnectable.Body](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ReferenceConnectable.cs), +[ReferenceConnectable.TopologyEntityTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ReferenceConnectable.cs), Reference.LinkAddedToDocument\(object, AddToDocEventArgs\), Reference.SetModified\(ModifiedResult.ModifiedType\), Reference.SetModified\(\), @@ -185,7 +186,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -230,11 +231,11 @@ protected ReferenceFRBE(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. @@ -250,7 +251,7 @@ public override string ConnectableFullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ConnectableName @@ -262,7 +263,7 @@ public override string ConnectableName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ConnectablePostfixName @@ -274,7 +275,7 @@ public override string ConnectablePostfixName { set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ParentType @@ -298,13 +299,13 @@ public bool GetGeometryNavigatorInformation(XmlDocument xmlDom, XmlElement xmlEl #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\) @@ -316,19 +317,19 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`__unnamed002` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`__unnamed002` bool #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -342,7 +343,7 @@ protected override void LinkRequestUpdate(object obNotifier, LinkEventArgs arg) #### Parameters -`obNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferenceMarkerOnNode.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferenceMarkerOnNode.md index 6aa6db35e1..b53b348e81 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferenceMarkerOnNode.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferenceMarkerOnNode.md @@ -1,4 +1,5 @@ -# Class ReferenceMarkerOnNode +# Class ReferenceMarkerOnNode + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,14 +12,14 @@ public class ReferenceMarkerOnNode : ReferenceDesignFrame, IObservableObject, ID #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Reference ← -ReferenceDesignSubEntity ← -ReferenceDesignFrame ← +[ReferenceDesignSubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignSubEntity.cs) ← +[ReferenceDesignFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs) ← [ReferenceMarkerOnNode](VM.Managed.DAFUL.FE.ReferenceMarkerOnNode.md) #### Implements @@ -35,7 +36,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, INamed, @@ -55,16 +56,16 @@ IMarker #### Inherited Members -ReferenceDesignFrame.GetDirection\(Coordinate\), -ReferenceDesignFrame.GetFullName\(\), -ReferenceDesignFrame.OriginalPosition, -ReferenceDesignFrame.Value, -ReferenceDesignFrame.X, -ReferenceDesignFrame.Y, -ReferenceDesignFrame.Z, -ReferenceDesignFrame.Position, -ReferenceDesignFrame.Orientation, -ReferenceDesignFrame.TransformationMatrix, +[ReferenceDesignFrame.GetDirection\(Coordinate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs), +[ReferenceDesignFrame.GetFullName\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs), +[ReferenceDesignFrame.OriginalPosition](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs), +[ReferenceDesignFrame.Value](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs), +[ReferenceDesignFrame.X](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs), +[ReferenceDesignFrame.Y](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs), +[ReferenceDesignFrame.Z](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs), +[ReferenceDesignFrame.Position](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs), +[ReferenceDesignFrame.Orientation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs), +[ReferenceDesignFrame.TransformationMatrix](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs), Reference.LinkAddedToDocument\(object, AddToDocEventArgs\), Reference.SetModified\(ModifiedResult.ModifiedType\), Reference.SetModified\(\), @@ -182,7 +183,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -227,11 +228,11 @@ protected ReferenceMarkerOnNode(SerializationInfo info, StreamingContext context #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. @@ -259,7 +260,7 @@ protected override Tuple OriginalPosition { get; } #### Property Value - [Tuple](https://learn.microsoft.com/dotnet/api/system.tuple\-2) + Tuple ### ReferenceType @@ -271,7 +272,7 @@ public virtual string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -285,19 +286,19 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`__unnamed002` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`__unnamed002` bool #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -311,7 +312,7 @@ protected override void LinkRequestUpdate(object obNotifier, LinkEventArgs arg) #### Parameters -`obNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferenceModeInterfacePoint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferenceModeInterfacePoint.md index 2da39f99b7..779ca8f493 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferenceModeInterfacePoint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferenceModeInterfacePoint.md @@ -1,4 +1,5 @@ -# Class ReferenceModeInterfacePoint +# Class ReferenceModeInterfacePoint + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,9 +12,9 @@ public class ReferenceModeInterfacePoint : Reference, IObservableObject, IDispos #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Reference ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, INamed, @@ -162,7 +163,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -207,11 +208,11 @@ protected ReferenceModeInterfacePoint(SerializationInfo info, StreamingContext c #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. @@ -227,17 +228,17 @@ public virtual bool GetGeometryNavigatorInformation(XmlDocument xmlDom, XmlEleme #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument information. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement information. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -251,19 +252,19 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`__unnamed002` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`__unnamed002` bool #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferenceModeMasterPoint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferenceModeMasterPoint.md index bed933d302..b7f3b8e93e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferenceModeMasterPoint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferenceModeMasterPoint.md @@ -1,4 +1,5 @@ -# Class ReferenceModeMasterPoint +# Class ReferenceModeMasterPoint + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,9 +12,9 @@ public class ReferenceModeMasterPoint : Reference, IObservableObject, IDisposabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Reference ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, INamed, @@ -162,7 +163,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -207,11 +208,11 @@ protected ReferenceModeMasterPoint(SerializationInfo info, StreamingContext cont #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. @@ -227,17 +228,17 @@ public virtual bool GetGeometryNavigatorInformation(XmlDocument xmlDom, XmlEleme #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument information. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement information. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -251,19 +252,19 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`__unnamed002` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`__unnamed002` bool #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferenceNodeset.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferenceNodeset.md index f7b4e53d32..67b7e8935f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferenceNodeset.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferenceNodeset.md @@ -1,4 +1,5 @@ -# Class ReferenceNodeset +# Class ReferenceNodeset + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,13 +12,13 @@ public class ReferenceNodeset : ReferenceConnectable, IObservableObject, IDispos #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Reference ← -ReferenceConnectable ← +[ReferenceConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ReferenceConnectable.cs) ← [ReferenceNodeset](VM.Managed.DAFUL.FE.ReferenceNodeset.md) #### Implements @@ -34,7 +35,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, INamed, @@ -63,19 +64,19 @@ IGeometricalComponent #### Inherited Members -ReferenceConnectable.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -ReferenceConnectable.IsAutoContactable\(\), -ReferenceConnectable.GetContactables\(\), -ReferenceConnectable.GetPointDirection\(ref VectorBase, ref VectorBase, IReferencable\), -ReferenceConnectable.ParentType, -ReferenceConnectable.ReferenceFrameType, -ReferenceConnectable.ConnectableName, -ReferenceConnectable.ConnectablePostfixName, -ReferenceConnectable.ConnectablePosition, -ReferenceConnectable.ConnectableFullName, -ReferenceConnectable.ConnectableBody, -ReferenceConnectable.Body, -ReferenceConnectable.TopologyEntityTypeName, +[ReferenceConnectable.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ReferenceConnectable.cs), +[ReferenceConnectable.IsAutoContactable\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ReferenceConnectable.cs), +[ReferenceConnectable.GetContactables\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ReferenceConnectable.cs), +[ReferenceConnectable.GetPointDirection\(ref VectorBase, ref VectorBase, IReferencable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ReferenceConnectable.cs), +[ReferenceConnectable.ParentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ReferenceConnectable.cs), +[ReferenceConnectable.ReferenceFrameType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ReferenceConnectable.cs), +[ReferenceConnectable.ConnectableName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ReferenceConnectable.cs), +[ReferenceConnectable.ConnectablePostfixName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ReferenceConnectable.cs), +[ReferenceConnectable.ConnectablePosition](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ReferenceConnectable.cs), +[ReferenceConnectable.ConnectableFullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ReferenceConnectable.cs), +[ReferenceConnectable.ConnectableBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ReferenceConnectable.cs), +[ReferenceConnectable.Body](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ReferenceConnectable.cs), +[ReferenceConnectable.TopologyEntityTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ReferenceConnectable.cs), Reference.LinkAddedToDocument\(object, AddToDocEventArgs\), Reference.SetModified\(ModifiedResult.ModifiedType\), Reference.SetModified\(\), @@ -193,7 +194,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -238,11 +239,11 @@ protected ReferenceNodeset(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. @@ -270,7 +271,7 @@ public override string ConnectableFullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ConnectableName @@ -282,7 +283,7 @@ public override string ConnectableName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ConnectablePostfixName @@ -294,7 +295,7 @@ public override string ConnectablePostfixName { set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ParentType @@ -318,7 +319,7 @@ public virtual string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -332,17 +333,17 @@ public virtual bool GetGeometryNavigatorInformation(XmlDocument xmlDom, XmlEleme #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument information. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement information. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -356,19 +357,19 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`__unnamed002` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`__unnamed002` bool #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -382,7 +383,7 @@ public virtual uint GetPointCount() #### Returns - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint The count of node point. @@ -408,7 +409,7 @@ The direction. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -422,7 +423,7 @@ public virtual VectorBase GetPointPosition(uint index, IReferencable __unnamed00 #### Parameters -`index` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`index` uint The index. @@ -444,7 +445,7 @@ protected override void LinkRequestUpdate(object obNotifier, LinkEventArgs arg) #### Parameters -`obNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferencePatchset.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferencePatchset.md index 3a7449072a..8482fdd7e7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferencePatchset.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferencePatchset.md @@ -1,4 +1,5 @@ -# Class ReferencePatchset +# Class ReferencePatchset + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,9 +12,9 @@ public class ReferencePatchset : Reference, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Reference ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, INamed, @@ -185,7 +186,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -230,11 +231,11 @@ protected ReferencePatchset(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. @@ -262,7 +263,7 @@ public override sealed string FullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Gap @@ -274,7 +275,7 @@ public virtual ExpressionValueVariable Gap { get; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### GeometryFullName @@ -286,7 +287,7 @@ public string GeometryFullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GeometryNameForMultiContact @@ -298,7 +299,7 @@ public string GeometryNameForMultiContact { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### HalfThickness @@ -310,7 +311,7 @@ public virtual ExpressionValueVariable HalfThickness { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MaxPenetration @@ -322,7 +323,7 @@ public virtual ExpressionValueVariable MaxPenetration { get; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ReferenceType @@ -334,7 +335,7 @@ public virtual string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SurfaceSmoothingType @@ -360,7 +361,7 @@ public virtual void GetCenterPositionDirection(uint index, ref VectorBase center #### Parameters -`index` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`index` uint The index. @@ -384,17 +385,17 @@ public virtual bool GetGeometryNavigatorInformation(XmlDocument xmlDom, XmlEleme #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument information. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement information. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -408,19 +409,19 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`__unnamed002` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`__unnamed002` bool #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -434,7 +435,7 @@ public virtual uint GetPatchCount() #### Returns - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint The count of patch. @@ -462,7 +463,7 @@ The reference. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -480,7 +481,7 @@ public override bool IsOwner(Reference owner) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the specified owner; otherwise, false. @@ -494,7 +495,7 @@ protected override void LinkRequestUpdate(object obNotifier, LinkEventArgs arg) #### Parameters -`obNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obNotifier` object The linked object. @@ -512,7 +513,7 @@ public virtual void SetGap(string strValue) #### Parameters -`strValue` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strValue` string The value diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferencePointMass.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferencePointMass.md index 9242ccaa34..070be5a892 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferencePointMass.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.ReferencePointMass.md @@ -1,4 +1,5 @@ -# Class ReferencePointMass +# Class ReferencePointMass + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,9 +12,9 @@ public class ReferencePointMass : Reference, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Reference ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, INamed, @@ -162,7 +163,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -207,11 +208,11 @@ protected ReferencePointMass(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. @@ -227,17 +228,17 @@ public virtual bool GetGeometryNavigatorInformation(XmlDocument xmlDom, XmlEleme #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument information. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement information. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -251,19 +252,19 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`__unnamed002` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`__unnamed002` bool #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Resource.Resources.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Resource.Resources.md index 94f0b554db..c60413e8d8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Resource.Resources.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Resource.Resources.md @@ -1,4 +1,5 @@ -# Class Resources +# Class Resources + Namespace: [VM.Managed.DAFUL.FE.Resource](VM.Managed.DAFUL.FE.Resource.md) Assembly: VMFE.dll @@ -11,7 +12,7 @@ public class Resources #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Resources](VM.Managed.DAFUL.FE.Resource.Resources.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Resource.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Resource.md index 3654629f10..38c86047f8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Resource.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Resource.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.FE.Resource +# Namespace VM.Managed.DAFUL.FE.Resource + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetBase.md index 9a76bf9f8d..af768652a9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetBase.md @@ -1,4 +1,5 @@ -# Class SetBase +# Class SetBase + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,12 +12,12 @@ public abstract class SetBase : FESubEntity, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [FESubEntity](VM.Managed.DAFUL.FE.FESubEntity.md) ← [SetBase](VM.Managed.DAFUL.FE.SetBase.md) @@ -33,7 +34,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -61,17 +62,17 @@ IPostDeserialized [FESubEntity.GetNodalBodyForSubsystem\(SubSystem, Mesh\)](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_GetNodalBodyForSubsystem\_VM\_Managed\_DAFUL\_SubSystem\_VM\_Managed\_DAFUL\_FE\_Mesh\_), [FESubEntity.FEID](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_FEID), [FESubEntity.OwnerMesh](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_OwnerMesh), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -164,7 +165,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -195,11 +196,11 @@ public SetBase(string strProxyName, string strBuildInfo) #### Parameters -`strProxyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strProxyName` string Name of the proxy. -`strBuildInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBuildInfo` string The build information. @@ -223,7 +224,7 @@ public virtual Color Color { get; set; } #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ## Methods @@ -243,7 +244,7 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -257,7 +258,7 @@ protected override void LinkAddedToDocumentCore(IOwned owner, bool bBackup) `owner` IOwned -`bBackup` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bBackup` bool ### PostOpenDocument\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetEdge.EdgeIndexContainer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetEdge.EdgeIndexContainer.md index c4fedd5d0d..a8d31d22a4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetEdge.EdgeIndexContainer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetEdge.EdgeIndexContainer.md @@ -1,4 +1,5 @@ -# Class SetEdge.EdgeIndexContainer +# Class SetEdge.EdgeIndexContainer + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,9 +12,9 @@ public sealed class SetEdge.EdgeIndexContainer : LinkContainer, IObservableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [SetEdge.EdgeIndexContainer](VM.Managed.DAFUL.FE.SetEdge.EdgeIndexContainer.md) @@ -83,7 +84,7 @@ public uint[] EdgeIndexArray { get; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] + uint\[\] ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetEdge.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetEdge.md index a8d9594aba..8021410118 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetEdge.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetEdge.md @@ -1,4 +1,5 @@ -# Class SetEdge +# Class SetEdge + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,12 +12,12 @@ public class SetEdge : SetPatchBase, IObservableObject, IDisposableObject, ILink #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [FESubEntity](VM.Managed.DAFUL.FE.FESubEntity.md) ← [SetBase](VM.Managed.DAFUL.FE.SetBase.md) ← [SetPatchBase](VM.Managed.DAFUL.FE.SetPatchBase.md) ← @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -78,6 +79,7 @@ IEdgeSetInformation [SetPatchBase.AddPatches\(ICollection\)](VM.Managed.DAFUL.FE.SetPatchBase.md\#VM\_Managed\_DAFUL\_FE\_SetPatchBase\_AddPatches\_System\_Collections\_Generic\_ICollection\_VM\_Managed\_DAFUL\_FE\_Patch\_\_), [SetPatchBase.RemovePatches\(Patch\[\]\)](VM.Managed.DAFUL.FE.SetPatchBase.md\#VM\_Managed\_DAFUL\_FE\_SetPatchBase\_RemovePatches\_VM\_Managed\_DAFUL\_FE\_Patch\_\_\_), [SetPatchBase.RemovePatches\(ICollection\)](VM.Managed.DAFUL.FE.SetPatchBase.md\#VM\_Managed\_DAFUL\_FE\_SetPatchBase\_RemovePatches\_System\_Collections\_Generic\_ICollection\_VM\_Managed\_DAFUL\_FE\_Patch\_\_), +[SetPatchBase.GetAllNodeIndexes\(\)](VM.Managed.DAFUL.FE.SetPatchBase.md\#VM\_Managed\_DAFUL\_FE\_SetPatchBase\_GetAllNodeIndexes), [SetPatchBase.SetGap\(string\)](VM.Managed.DAFUL.FE.SetPatchBase.md\#VM\_Managed\_DAFUL\_FE\_SetPatchBase\_SetGap\_System\_String\_), [SetPatchBase.GetSchema\(\)](VM.Managed.DAFUL.FE.SetPatchBase.md\#VM\_Managed\_DAFUL\_FE\_SetPatchBase\_GetSchema), [SetPatchBase.ReadXml\(XmlReader\)](VM.Managed.DAFUL.FE.SetPatchBase.md\#VM\_Managed\_DAFUL\_FE\_SetPatchBase\_ReadXml\_System\_Xml\_XmlReader\_), @@ -109,17 +111,17 @@ IEdgeSetInformation [FESubEntity.GetNodalBodyForSubsystem\(SubSystem, Mesh\)](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_GetNodalBodyForSubsystem\_VM\_Managed\_DAFUL\_SubSystem\_VM\_Managed\_DAFUL\_FE\_Mesh\_), [FESubEntity.FEID](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_FEID), [FESubEntity.OwnerMesh](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_OwnerMesh), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -212,7 +214,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -253,7 +255,7 @@ public override Color Color { set; } #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### Count @@ -265,7 +267,7 @@ public override uint Count { get; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### EdgeCount @@ -277,7 +279,7 @@ public uint EdgeCount { get; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### EdgeIndexCont @@ -299,7 +301,7 @@ public IEnumerable> Edges { get; } #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Tuple](https://learn.microsoft.com/dotnet/api/system.tuple\-2)<[uint](https://learn.microsoft.com/dotnet/api/system.uint32), [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\>\> + IEnumerable\> ## Methods @@ -311,7 +313,7 @@ public void AddEdges(Tuple[] edges) #### Parameters -`edges` [Tuple](https://learn.microsoft.com/dotnet/api/system.tuple\-2)<[uint](https://learn.microsoft.com/dotnet/api/system.uint32), [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\>\[\] +`edges` Tuple\[\] ### AddEdges\(ICollection\>\) @@ -321,7 +323,7 @@ public void AddEdges(ICollection> edges) #### Parameters -`edges` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[Tuple](https://learn.microsoft.com/dotnet/api/system.tuple\-2)<[uint](https://learn.microsoft.com/dotnet/api/system.uint32), [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\>\> +`edges` ICollection\> ### AddPatches\(ICollection\) @@ -331,7 +333,7 @@ public override void AddPatches(ICollection patches) #### Parameters -`patches` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[Patch](VM.Managed.DAFUL.FE.Patch.md)\> +`patches` ICollection<[Patch](VM.Managed.DAFUL.FE.Patch.md)\> ### ConnectProxy\(\) @@ -347,7 +349,7 @@ protected override void GetCenterPositionDirectionImpl(uint index, ref VectorBas #### Parameters -`index` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`index` uint `center` VectorBase @@ -363,13 +365,13 @@ protected override bool GetDefaultMaxPenetrationImpl(ref double dMaxPenetration, #### Parameters -`dMaxPenetration` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMaxPenetration` double `reference` IReferencable #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetEdgesIncludeMiddleNode\(\) @@ -379,7 +381,7 @@ public IEnumerable> GetEdgesIncludeMiddleNode() #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Tuple](https://learn.microsoft.com/dotnet/api/system.tuple\-2)<[uint](https://learn.microsoft.com/dotnet/api/system.uint32), [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\>\> + IEnumerable\> ### GetNodeIndexFromID\(uint\) @@ -389,11 +391,11 @@ public uint GetNodeIndexFromID(uint nNodeID) #### Parameters -`nNodeID` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNodeID` uint #### Returns - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### GetPatches\(\) @@ -403,7 +405,7 @@ public List GetPatches() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Patch](VM.Managed.DAFUL.FE.Patch.md)\> + List<[Patch](VM.Managed.DAFUL.FE.Patch.md)\> ### GetPointDirectionImpl\(ref VectorBase, ref VectorBase, IReferencable\) @@ -421,7 +423,7 @@ protected override bool GetPointDirectionImpl(ref VectorBase point, ref VectorBa #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Initialize\(ConvertFactor\) @@ -445,7 +447,7 @@ protected override void InstantiateImpl(Reference reference, Canvas canvas) `reference` Reference -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) ### MakeReferenceImpl\(LinkedList\) @@ -455,7 +457,7 @@ protected override void MakeReferenceImpl(LinkedList lstRef) #### Parameters -`lstRef` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) +`lstRef` LinkedList ### OnDeserialization\(object\) @@ -467,7 +469,7 @@ public override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -487,7 +489,7 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -499,9 +501,9 @@ protected override void ReadXmlCore(XmlReader reader, ref bool bNeedUpdate) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader -`bNeedUpdate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bNeedUpdate` bool ### RemoveEdges\(ICollection\>\) @@ -511,7 +513,7 @@ public void RemoveEdges(ICollection> edges) #### Parameters -`edges` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[Tuple](https://learn.microsoft.com/dotnet/api/system.tuple\-2)<[uint](https://learn.microsoft.com/dotnet/api/system.uint32), [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\>\> +`edges` ICollection\> ### SetLayer\(Layer\) @@ -533,7 +535,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetElement.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetElement.md index 54422fa3b8..532714eb18 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetElement.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetElement.md @@ -1,4 +1,5 @@ -# Class SetElement +# Class SetElement + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,12 +12,12 @@ public class SetElement : SetBase, IObservableObject, IDisposableObject, ILinkab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [FESubEntity](VM.Managed.DAFUL.FE.FESubEntity.md) ← [SetBase](VM.Managed.DAFUL.FE.SetBase.md) ← [SetElement](VM.Managed.DAFUL.FE.SetElement.md) @@ -28,7 +29,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -60,17 +61,17 @@ IPostDeserialized [FESubEntity.GetNodalBodyForSubsystem\(SubSystem, Mesh\)](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_GetNodalBodyForSubsystem\_VM\_Managed\_DAFUL\_SubSystem\_VM\_Managed\_DAFUL\_FE\_Mesh\_), [FESubEntity.FEID](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_FEID), [FESubEntity.OwnerMesh](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_OwnerMesh), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -163,7 +164,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -204,7 +205,7 @@ public uint[] GetElementSequences() #### Returns - [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] + uint\[\] ### GetSchema\(\) @@ -219,7 +220,7 @@ public virtual XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -239,7 +240,7 @@ public virtual void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -253,7 +254,7 @@ public virtual void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetNode.NodeIndexContainer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetNode.NodeIndexContainer.md index d34f5d17b8..9d71c43c28 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetNode.NodeIndexContainer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetNode.NodeIndexContainer.md @@ -1,4 +1,5 @@ -# Class SetNode.NodeIndexContainer +# Class SetNode.NodeIndexContainer + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,9 +12,9 @@ public sealed class SetNode.NodeIndexContainer : LinkContainer, IObservableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [SetNode.NodeIndexContainer](VM.Managed.DAFUL.FE.SetNode.NodeIndexContainer.md) @@ -83,7 +84,7 @@ public uint[] NodeIndexArray { get; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] + uint\[\] ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetNode.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetNode.md index 18fe6a7686..5ad719a1d8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetNode.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetNode.md @@ -1,4 +1,5 @@ -# Class SetNode +# Class SetNode + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,12 +12,12 @@ public class SetNode : SetBase, IObservableObject, IDisposableObject, ILinkable, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [FESubEntity](VM.Managed.DAFUL.FE.FESubEntity.md) ← [SetBase](VM.Managed.DAFUL.FE.SetBase.md) ← [SetNode](VM.Managed.DAFUL.FE.SetNode.md) @@ -28,7 +29,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -73,17 +74,17 @@ IPointSetComponent [FESubEntity.GetNodalBodyForSubsystem\(SubSystem, Mesh\)](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_GetNodalBodyForSubsystem\_VM\_Managed\_DAFUL\_SubSystem\_VM\_Managed\_DAFUL\_FE\_Mesh\_), [FESubEntity.FEID](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_FEID), [FESubEntity.OwnerMesh](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_OwnerMesh), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -176,7 +177,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -229,7 +230,7 @@ public override Color Color { set; } #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### Count @@ -241,7 +242,7 @@ public uint Count { get; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### IsVisible @@ -253,7 +254,7 @@ bool IsVisible { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Layer @@ -313,7 +314,7 @@ public virtual string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### this\[uint\] @@ -337,7 +338,7 @@ public void AddNodes(uint[] nodeIndexes) #### Parameters -`nodeIndexes` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`nodeIndexes` uint\[\] The node index array. @@ -349,7 +350,7 @@ public void AddNodes(ICollection nodeIndexes) #### Parameters -`nodeIndexes` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[uint](https://learn.microsoft.com/dotnet/api/system.uint32)\> +`nodeIndexes` ICollection ### AddNodes\(Node\[\]\) @@ -373,7 +374,7 @@ public void AddNodes(ICollection nodes) #### Parameters -`nodes` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[Node](VM.Managed.DAFUL.FE.Node.md)\> +`nodes` ICollection<[Node](VM.Managed.DAFUL.FE.Node.md)\> ### ConnectProxy\(\) @@ -381,6 +382,18 @@ public void AddNodes(ICollection nodes) public override void ConnectProxy() ``` +### GetAllNodeIndexes\(\) + +Gets all node. + +```csharp +public uint[] GetAllNodeIndexes() +``` + +#### Returns + + uint\[\] + ### GetSchema\(\) This method is reserved and should not be used. When implementing the IXmlSerializable interface, @@ -394,7 +407,7 @@ public virtual XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -420,7 +433,7 @@ public override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -440,7 +453,7 @@ public virtual void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -466,7 +479,7 @@ public void RemoveNodes(ICollection nodes) #### Parameters -`nodes` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[Node](VM.Managed.DAFUL.FE.Node.md)\> +`nodes` ICollection<[Node](VM.Managed.DAFUL.FE.Node.md)\> ### RemoveNodes\(uint\[\]\) @@ -478,7 +491,7 @@ public void RemoveNodes(uint[] nodeIndexes) #### Parameters -`nodeIndexes` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`nodeIndexes` uint\[\] The node index array. @@ -490,7 +503,7 @@ public void RemoveNodes(ICollection nodeIndexes) #### Parameters -`nodeIndexes` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[uint](https://learn.microsoft.com/dotnet/api/system.uint32)\> +`nodeIndexes` ICollection ### SetRBEInfo\(\) @@ -508,7 +521,7 @@ public virtual void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetNodePositionsOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetNodePositionsOperation.md index d315baa37e..af6f47ecff 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetNodePositionsOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetNodePositionsOperation.md @@ -1,4 +1,5 @@ -# Class SetNodePositionsOperation +# Class SetNodePositionsOperation + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,7 +12,7 @@ public class SetNodePositionsOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [SetNodePositionsOperation](VM.Managed.DAFUL.FE.SetNodePositionsOperation.md) @@ -91,7 +92,7 @@ public SetNodePositionsOperation(NodalBody nb, string strDFNPath) The nodal body. -`strDFNPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDFNPath` string The dfn path. @@ -107,7 +108,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetPatch.PatchIndexContainer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetPatch.PatchIndexContainer.md index f571d2fc63..40d382de2b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetPatch.PatchIndexContainer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetPatch.PatchIndexContainer.md @@ -1,4 +1,5 @@ -# Class SetPatch.PatchIndexContainer +# Class SetPatch.PatchIndexContainer + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,9 +12,9 @@ public sealed class SetPatch.PatchIndexContainer : LinkContainer, IObservableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [SetPatch.PatchIndexContainer](VM.Managed.DAFUL.FE.SetPatch.PatchIndexContainer.md) @@ -83,7 +84,7 @@ public uint[] PatchIndexArray { get; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] + uint\[\] ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetPatch.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetPatch.md index 3ab608107a..8178f27f9c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetPatch.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetPatch.md @@ -1,4 +1,5 @@ -# Class SetPatch +# Class SetPatch + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,12 +12,12 @@ public class SetPatch : SetPatchBase, IObservableObject, IDisposableObject, ILin #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [FESubEntity](VM.Managed.DAFUL.FE.FESubEntity.md) ← [SetBase](VM.Managed.DAFUL.FE.SetBase.md) ← [SetPatchBase](VM.Managed.DAFUL.FE.SetPatchBase.md) ← @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -81,6 +82,7 @@ IFaceInformation [SetPatchBase.AddPatches\(ICollection\)](VM.Managed.DAFUL.FE.SetPatchBase.md\#VM\_Managed\_DAFUL\_FE\_SetPatchBase\_AddPatches\_System\_Collections\_Generic\_ICollection\_VM\_Managed\_DAFUL\_FE\_Patch\_\_), [SetPatchBase.RemovePatches\(Patch\[\]\)](VM.Managed.DAFUL.FE.SetPatchBase.md\#VM\_Managed\_DAFUL\_FE\_SetPatchBase\_RemovePatches\_VM\_Managed\_DAFUL\_FE\_Patch\_\_\_), [SetPatchBase.RemovePatches\(ICollection\)](VM.Managed.DAFUL.FE.SetPatchBase.md\#VM\_Managed\_DAFUL\_FE\_SetPatchBase\_RemovePatches\_System\_Collections\_Generic\_ICollection\_VM\_Managed\_DAFUL\_FE\_Patch\_\_), +[SetPatchBase.GetAllNodeIndexes\(\)](VM.Managed.DAFUL.FE.SetPatchBase.md\#VM\_Managed\_DAFUL\_FE\_SetPatchBase\_GetAllNodeIndexes), [SetPatchBase.SetGap\(string\)](VM.Managed.DAFUL.FE.SetPatchBase.md\#VM\_Managed\_DAFUL\_FE\_SetPatchBase\_SetGap\_System\_String\_), [SetPatchBase.GetSchema\(\)](VM.Managed.DAFUL.FE.SetPatchBase.md\#VM\_Managed\_DAFUL\_FE\_SetPatchBase\_GetSchema), [SetPatchBase.ReadXml\(XmlReader\)](VM.Managed.DAFUL.FE.SetPatchBase.md\#VM\_Managed\_DAFUL\_FE\_SetPatchBase\_ReadXml\_System\_Xml\_XmlReader\_), @@ -112,17 +114,17 @@ IFaceInformation [FESubEntity.GetNodalBodyForSubsystem\(SubSystem, Mesh\)](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_GetNodalBodyForSubsystem\_VM\_Managed\_DAFUL\_SubSystem\_VM\_Managed\_DAFUL\_FE\_Mesh\_), [FESubEntity.FEID](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_FEID), [FESubEntity.OwnerMesh](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_OwnerMesh), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -215,7 +217,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -256,7 +258,7 @@ public override Color Color { set; } #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### PatchIndexCont @@ -300,7 +302,7 @@ protected override void InstantiateImpl(Reference reference, Canvas canvas) `reference` Reference -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) ### MakeReferenceImpl\(LinkedList\) @@ -310,7 +312,7 @@ protected override void MakeReferenceImpl(LinkedList lstRef) #### Parameters -`lstRef` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) +`lstRef` LinkedList ### OnDeserialization\(object\) @@ -322,7 +324,7 @@ public override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -342,7 +344,7 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -354,9 +356,9 @@ protected override void ReadXmlCore(XmlReader reader, ref bool bNeedUpdate) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader -`bNeedUpdate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bNeedUpdate` bool ### SetLayer\(Layer\) @@ -378,7 +380,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetPatchBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetPatchBase.md index a7d2b24e2d..028194f6c5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetPatchBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.SetPatchBase.md @@ -1,4 +1,5 @@ -# Class SetPatchBase +# Class SetPatchBase + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,12 +12,12 @@ public abstract class SetPatchBase : SetBase, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [FESubEntity](VM.Managed.DAFUL.FE.FESubEntity.md) ← [SetBase](VM.Managed.DAFUL.FE.SetBase.md) ← [SetPatchBase](VM.Managed.DAFUL.FE.SetPatchBase.md) @@ -33,7 +34,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -81,17 +82,17 @@ IGapTarget [FESubEntity.GetNodalBodyForSubsystem\(SubSystem, Mesh\)](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_GetNodalBodyForSubsystem\_VM\_Managed\_DAFUL\_SubSystem\_VM\_Managed\_DAFUL\_FE\_Mesh\_), [FESubEntity.FEID](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_FEID), [FESubEntity.OwnerMesh](VM.Managed.DAFUL.FE.FESubEntity.md\#VM\_Managed\_DAFUL\_FE\_FESubEntity\_OwnerMesh), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -184,7 +185,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -215,11 +216,11 @@ public SetPatchBase(string strProxyName, string strBuildInfo) #### Parameters -`strProxyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strProxyName` string Name of the proxy. -`strBuildInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBuildInfo` string The build information. @@ -241,7 +242,7 @@ protected bool m_bActionGeometry #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_bBaseGeometry @@ -251,7 +252,7 @@ protected bool m_bBaseGeometry #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_bFailedConnectProxy @@ -261,7 +262,7 @@ protected bool m_bFailedConnectProxy #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_lstPatch @@ -271,7 +272,7 @@ protected List m_lstPatch #### Field Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Patch](VM.Managed.DAFUL.FE.Patch.md)\> + List<[Patch](VM.Managed.DAFUL.FE.Patch.md)\> ## Properties @@ -297,7 +298,7 @@ public virtual uint Count { get; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### Gap @@ -309,7 +310,7 @@ public virtual ExpressionValueVariable Gap { get; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### GeometryFullName @@ -321,7 +322,7 @@ public string GeometryFullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GeometryNameForMultiContact @@ -333,7 +334,7 @@ public string GeometryNameForMultiContact { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### HalfThickness @@ -345,7 +346,7 @@ public virtual ExpressionValueVariable HalfThickness { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### IsVisible @@ -357,7 +358,7 @@ bool IsVisible { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Layer @@ -381,7 +382,7 @@ public virtual ExpressionValueVariable MaxPenetration { get; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ReferenceType @@ -393,7 +394,7 @@ public virtual string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SurfaceSmoothingType @@ -441,7 +442,19 @@ public virtual void AddPatches(ICollection patches) #### Parameters -`patches` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[Patch](VM.Managed.DAFUL.FE.Patch.md)\> +`patches` ICollection<[Patch](VM.Managed.DAFUL.FE.Patch.md)\> + +### GetAllNodeIndexes\(\) + +Gets all node. + +```csharp +public uint[] GetAllNodeIndexes() +``` + +#### Returns + + uint\[\] ### GetCenterPositionDirectionImpl\(uint, ref VectorBase, ref VectorBase, IReferencable\) @@ -451,7 +464,7 @@ protected virtual void GetCenterPositionDirectionImpl(uint index, ref VectorBase #### Parameters -`index` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`index` uint `center` VectorBase @@ -467,13 +480,13 @@ protected virtual bool GetDefaultMaxPenetrationImpl(ref double dMaxPenetration, #### Parameters -`dMaxPenetration` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMaxPenetration` double `reference` IReferencable #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetPointDirectionImpl\(ref VectorBase, ref VectorBase, IReferencable\) @@ -491,7 +504,7 @@ protected virtual bool GetPointDirectionImpl(ref VectorBase point, ref VectorBas #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetSchema\(\) @@ -506,7 +519,7 @@ public virtual XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -520,7 +533,7 @@ protected virtual void InstantiateImpl(Reference reference, Canvas canvas) `reference` Reference -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) ### MakeReferenceImpl\(LinkedList\) @@ -530,7 +543,7 @@ protected virtual void MakeReferenceImpl(LinkedList lstRef) #### Parameters -`lstRef` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) +`lstRef` LinkedList ### ReadXml\(XmlReader\) @@ -542,7 +555,7 @@ public virtual void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -554,9 +567,9 @@ protected virtual void ReadXmlCore(XmlReader reader, ref bool bNeedUpdate) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader -`bNeedUpdate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bNeedUpdate` bool ### RemovePatches\(Patch\[\]\) @@ -580,7 +593,7 @@ public void RemovePatches(ICollection patches) #### Parameters -`patches` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[Patch](VM.Managed.DAFUL.FE.Patch.md)\> +`patches` ICollection<[Patch](VM.Managed.DAFUL.FE.Patch.md)\> ### SetGap\(string\) @@ -592,7 +605,7 @@ public virtual void SetGap(string strValue) #### Parameters -`strValue` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strValue` string The value @@ -616,7 +629,7 @@ public virtual void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Sets.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Sets.md index d1c23c5f6b..327863315f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Sets.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.Sets.md @@ -1,4 +1,5 @@ -# Class Sets +# Class Sets + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,9 +12,9 @@ public class Sets : Container, IObservableObject, IDisposableObject, ILinkable, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← [Sets](VM.Managed.DAFUL.FE.Sets.md) @@ -83,7 +84,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -124,7 +125,7 @@ public NamedObjectDictionary EdgeSets { get; } #### Property Value - NamedObjectDictionary<[SetEdge](VM.Managed.DAFUL.FE.SetEdge.md)\> + [NamedObjectDictionary](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/NamedObjectDictionary.cs)<[SetEdge](VM.Managed.DAFUL.FE.SetEdge.md)\> ### ElementSets @@ -136,7 +137,7 @@ public NamedObjectDictionary ElementSets { get; } #### Property Value - NamedObjectDictionary<[SetElement](VM.Managed.DAFUL.FE.SetElement.md)\> + [NamedObjectDictionary](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/NamedObjectDictionary.cs)<[SetElement](VM.Managed.DAFUL.FE.SetElement.md)\> ### NodeSets @@ -148,7 +149,7 @@ public NamedObjectDictionary NodeSets { get; } #### Property Value - NamedObjectDictionary<[SetNode](VM.Managed.DAFUL.FE.SetNode.md)\> + [NamedObjectDictionary](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/NamedObjectDictionary.cs)<[SetNode](VM.Managed.DAFUL.FE.SetNode.md)\> ### PatchSets @@ -160,7 +161,7 @@ public NamedObjectDictionary PatchSets { get; } #### Property Value - NamedObjectDictionary<[SetPatch](VM.Managed.DAFUL.FE.SetPatch.md)\> + [NamedObjectDictionary](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/NamedObjectDictionary.cs)<[SetPatch](VM.Managed.DAFUL.FE.SetPatch.md)\> ## Methods @@ -174,7 +175,7 @@ public void Add(object ob) #### Parameters -`ob` [object](https://learn.microsoft.com/dotnet/api/system.object) +`ob` object The set. @@ -188,7 +189,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -208,7 +209,7 @@ public virtual XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -228,7 +229,7 @@ public void MakeReference(LinkedList lstRef) #### Parameters -`lstRef` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) +`lstRef` LinkedList ### OnDeserialization\(object\) @@ -240,7 +241,7 @@ public override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -254,7 +255,7 @@ public virtual void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The stream from which the object is deserialized. @@ -268,7 +269,7 @@ public void Remove(object ob) #### Parameters -`ob` [object](https://learn.microsoft.com/dotnet/api/system.object) +`ob` object The set. @@ -282,7 +283,7 @@ public virtual void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.WrapperNodalMass.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.WrapperNodalMass.md index aaf7bea467..c8dfe8a125 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.WrapperNodalMass.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.WrapperNodalMass.md @@ -1,4 +1,5 @@ -# Class WrapperNodalMass +# Class WrapperNodalMass + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -11,7 +12,7 @@ public class WrapperNodalMass #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [WrapperNodalMass](VM.Managed.DAFUL.FE.WrapperNodalMass.md) #### Extension Methods @@ -42,7 +43,7 @@ public _VM_VECTOR* GetGaussPoints(ElementType type) #### Returns - [\_VM\_VECTOR](\_VM\_VECTOR.md)\* + \_VM\_VECTOR\* ### GetJacobian\(ElementType, double, double, double, double\*, double\*\) @@ -54,15 +55,15 @@ public void GetJacobian(ElementType type, double dR, double dS, double dT, doubl `type` [ElementType](VM.Managed.DAFUL.FE.ElementType.md) -`dR` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dR` double -`dS` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dS` double -`dT` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dT` double -`arJacobian` [double](https://learn.microsoft.com/dotnet/api/system.double)\* +`arJacobian` double\* -`dDeterminent` [double](https://learn.microsoft.com/dotnet/api/system.double)\* +`dDeterminent` double\* ### GetJacobian\(ElementType, double, double, double\*, double\*\) @@ -74,13 +75,13 @@ public void GetJacobian(ElementType type, double dR, double dS, double* arJacobi `type` [ElementType](VM.Managed.DAFUL.FE.ElementType.md) -`dR` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dR` double -`dS` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dS` double -`arJacobian` [double](https://learn.microsoft.com/dotnet/api/system.double)\* +`arJacobian` double\* -`dDeterminent` [double](https://learn.microsoft.com/dotnet/api/system.double)\* +`dDeterminent` double\* ### GetNumberOfGaussPoints\(ElementType\) @@ -94,7 +95,7 @@ public int GetNumberOfGaussPoints(ElementType type) #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetShapeFn\(ElementType, double, double, double, double\*\) @@ -106,13 +107,13 @@ public void GetShapeFn(ElementType type, double dR, double dS, double dT, double `type` [ElementType](VM.Managed.DAFUL.FE.ElementType.md) -`dR` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dR` double -`dS` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dS` double -`dT` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dT` double -`arShape` [double](https://learn.microsoft.com/dotnet/api/system.double)\* +`arShape` double\* ### GetShapeFn\(ElementType, double, double, double\*\) @@ -124,11 +125,11 @@ public void GetShapeFn(ElementType type, double dR, double dS, double* arShape) `type` [ElementType](VM.Managed.DAFUL.FE.ElementType.md) -`dR` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dR` double -`dS` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dS` double -`arShape` [double](https://learn.microsoft.com/dotnet/api/system.double)\* +`arShape` double\* ### GetWeights\(ElementType\) @@ -142,5 +143,5 @@ public _VM_VECTOR* GetWeights(ElementType type) #### Returns - [\_VM\_VECTOR](\_VM\_VECTOR.md)\* + \_VM\_VECTOR\* diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE._MomentOfInertia.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE._MomentOfInertia.md index 0281d2f8cc..f8429809c7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE._MomentOfInertia.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE._MomentOfInertia.md @@ -1,4 +1,5 @@ -# Struct \_MomentOfInertia +# Struct \_MomentOfInertia + Namespace: [VM.Managed.DAFUL.FE](VM.Managed.DAFUL.FE.md) Assembly: VMFE.dll @@ -21,7 +22,7 @@ public _MomentOfInertia(double dInitialValue) #### Parameters -`dInitialValue` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dInitialValue` double The initial value. @@ -37,7 +38,7 @@ public double Ixx #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Ixy @@ -49,7 +50,7 @@ public double Ixy #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Ixz @@ -61,7 +62,7 @@ public double Ixz #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Iyy @@ -73,7 +74,7 @@ public double Iyy #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Iyz @@ -85,7 +86,7 @@ public double Iyz #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Izz @@ -97,5 +98,5 @@ public double Izz #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.md index f3baa63ed7..a54c3ab67e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FE.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.FE +# Namespace VM.Managed.DAFUL.FE + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FEFilm.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FEFilm.md index 112c51fabf..19586b5fd1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FEFilm.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FEFilm.md @@ -1,4 +1,5 @@ -# Class FEFilm +# Class FEFilm + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFEFilm.dll @@ -9,14 +10,14 @@ public class FEFilm : Entity, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [FEFilm](VM.Managed.DAFUL.FEFilm.md) #### Implements @@ -26,7 +27,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -53,34 +54,34 @@ IHasComment #### Inherited Members -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -179,7 +180,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -214,7 +215,7 @@ public FEFilm(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string ## Properties @@ -226,7 +227,7 @@ public ExpressionValueVariable EndAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### FEBody @@ -278,7 +279,7 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Length @@ -288,7 +289,7 @@ public ExpressionValueVariable Length { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MaxLengthPerElement @@ -298,7 +299,7 @@ public ExpressionValueVariable MaxLengthPerElement { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### NumberOfElement @@ -308,7 +309,7 @@ public int NumberOfElement { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfElementLongitudinal @@ -319,7 +320,7 @@ public int NumberOfElementLongitudinal { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfElementWidth @@ -330,7 +331,7 @@ public int NumberOfElementWidth { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfElementsLateral @@ -340,7 +341,7 @@ public int NumberOfElementsLateral { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfEndRevolution @@ -350,7 +351,7 @@ public int NumberOfEndRevolution { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfNode @@ -360,7 +361,7 @@ public int NumberOfNode { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfStartRevolution @@ -370,7 +371,7 @@ public int NumberOfStartRevolution { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### ReferenceFrame @@ -390,7 +391,7 @@ public string RotationAxis { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### StartAngle @@ -400,7 +401,7 @@ public ExpressionValueVariable StartAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TabShape @@ -420,7 +421,7 @@ public ExpressionValueVariable Thickness { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### UseNumberOfEndRevolution @@ -430,7 +431,7 @@ public bool UseNumberOfEndRevolution { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseNumberOfStartRevolution @@ -440,7 +441,7 @@ public bool UseNumberOfStartRevolution { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseTabShape @@ -450,7 +451,7 @@ public bool UseTabShape { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Width @@ -460,7 +461,7 @@ public ExpressionValueVariable Width { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### \_ReferenceFrame @@ -486,7 +487,7 @@ public void AddFE_Path(ObjectBase designSubEntity, WindingDirection windingDirec `windingDirection` WindingDirection -`radius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`radius` double ### AddFE\_Path\(ObjectBase\) @@ -506,9 +507,9 @@ public void Add_ElementsProperty(double width, double thickness) #### Parameters -`width` [double](https://learn.microsoft.com/dotnet/api/system.double) +`width` double -`thickness` [double](https://learn.microsoft.com/dotnet/api/system.double) +`thickness` double ### ClearFE\_Path\(\) @@ -522,6 +523,24 @@ public void ClearFE_Path() public void Clear_ElementsProperty() ``` +### CollectionHowToMakeFEProperty\(int, List, ref int, ref List, ref Dictionary\) + +```csharp +public static void CollectionHowToMakeFEProperty(int type, List lstThickness, ref int noOfProperty, ref List lstPropertyID, ref Dictionary mapThickness) +``` + +#### Parameters + +`type` int + +`lstThickness` List + +`noOfProperty` int + +`lstPropertyID` List + +`mapThickness` Dictionary + ### Initialize\(ConvertFactor\) Initializes member through unit convert factor. @@ -546,7 +565,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -564,13 +583,13 @@ public void UpdateVariablesFilmBody(string width, string length, int noofnodes, #### Parameters -`width` [string](https://learn.microsoft.com/dotnet/api/system.string) +`width` string -`length` [string](https://learn.microsoft.com/dotnet/api/system.string) +`length` string -`noofnodes` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`noofnodes` int -`noofelements` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`noofelements` int ### UpdateVariablesForTabShape\(string, string, string, string, string, string, string, string, int, int, int, int\) @@ -580,27 +599,135 @@ public void UpdateVariablesForTabShape(string tablocation, string width, string #### Parameters -`tablocation` [string](https://learn.microsoft.com/dotnet/api/system.string) +`tablocation` string + +`width` string + +`length` string + +`chamfer_w` string + +`chamfer_L` string + +`interval` string + +`thickness` string + +`maxwidth` string + +`noofnodes` int + +`noofelements` int + +`noofnodesperpole` int + +`noofelementsperpole` int + +### WriteFEFilmFile\(string, int, \(double, double, double\), \(int, double, int, int\), List, List<\(double, double, int\)\>, \(int, double, int, int, double, int\), \(int, double, double, double, double, double, double\), List<\(string, int, int, int, double, Vector, OMatrix\)\>, int, \(int, int, int, double, double, double, double, double, \(double, double, double, double\), \(double, double, double, double\)\)\) + +```csharp +public static bool WriteFEFilmFile(string inputPath, int analysisType, (double, double, double) scale, (int, double, int, int) geometryInfo, List thickness, List<(double, double, int)> layer, (int, double, int, int, double, int) windingConfig, (int, double, double, double, double, double, double) refInfo, List<(string, int, int, int, double, Vector, OMatrix)> paths, int usePole, (int, int, int, double, double, double, double, double, (double, double, double, double), (double, double, double, double)) poleInfo) +``` + +#### Parameters + +`inputPath` string -`width` [string](https://learn.microsoft.com/dotnet/api/system.string) +`analysisType` int -`length` [string](https://learn.microsoft.com/dotnet/api/system.string) +`scale` \(double, double, double\) -`chamfer_w` [string](https://learn.microsoft.com/dotnet/api/system.string) +`geometryInfo` \(int, double, int, int\) -`chamfer_L` [string](https://learn.microsoft.com/dotnet/api/system.string) +`thickness` List -`interval` [string](https://learn.microsoft.com/dotnet/api/system.string) +`layer` List<\(double, double, int\)\> -`thickness` [string](https://learn.microsoft.com/dotnet/api/system.string) +`windingConfig` \(int, double, int, int, double, int\) -`maxwidth` [string](https://learn.microsoft.com/dotnet/api/system.string) +`refInfo` \(int, double, double, double, double, double, double\) + +`paths` List<\(string, int, int, int, double, Vector, OMatrix\)\> + +`usePole` int + +`poleInfo` \(int, int, int, double, double, double, double, double, \(double, double, double, double\), \(double, double, double, double\)\) + +#### Returns + + bool + +### WriteFEFilmFile\(string, FEFilm\) + +```csharp +public static bool WriteFEFilmFile(string inputPath, FEFilm feFilm) +``` + +#### Parameters + +`inputPath` string + +`feFilm` [FEFilm](VM.Managed.DAFUL.FEFilm.md) + +#### Returns + + bool + +### WriteNGons\(int, double, double, double, double, double, double, double\) + +```csharp +public static (int, int) WriteNGons(int locationTabShape, double lengthPole, double chamferOfLength, double widthPole, double chamferOfWidth, double chamferOfLengthBottom, double widthPoleBottom, double chamferOfWidthBottom) +``` + +#### Parameters + +`locationTabShape` int + +`lengthPole` double + +`chamferOfLength` double + +`widthPole` double + +`chamferOfWidth` double + +`chamferOfLengthBottom` double + +`widthPoleBottom` double + +`chamferOfWidthBottom` double + +#### Returns + + \(int, int\) + +### WritePath\(ObjectBase\) + +```csharp +public static (int, Vector, OMatrix) WritePath(ObjectBase path) +``` + +#### Parameters + +`path` ObjectBase + +#### Returns + + \(int, Vector, OMatrix\) + +### WriteReferenceFrame\(string, OMatrix\) + +```csharp +public static (Vector, Vector) WriteReferenceFrame(string strAxis, OMatrix oMatrix) +``` + +#### Parameters -`noofnodes` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`strAxis` string -`noofelements` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`oMatrix` OMatrix -`noofnodesperpole` [int](https://learn.microsoft.com/dotnet/api/system.int32) +#### Returns -`noofelementsperpole` [int](https://learn.microsoft.com/dotnet/api/system.int32) + \(Vector, Vector\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FEFilm_ElementProperty.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FEFilm_ElementProperty.md index 62cd1cf6f3..9f60fec2b4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FEFilm_ElementProperty.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FEFilm_ElementProperty.md @@ -1,4 +1,5 @@ -# Class FEFilm\_ElementProperty +# Class FEFilm\_ElementProperty + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFEFilm.dll @@ -9,9 +10,9 @@ public abstract class FEFilm_ElementProperty : LinkContainer, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [FEFilm\_ElementProperty](VM.Managed.DAFUL.FEFilm\_ElementProperty.md) @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -115,7 +116,7 @@ public ExpressionValueVariable ThicknessPerElement { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### WidthPerElement @@ -125,7 +126,7 @@ public ExpressionValueVariable WidthPerElement { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FEFilm_Multi_Lateral.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FEFilm_Multi_Lateral.md index f324277193..4e1a9798a7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FEFilm_Multi_Lateral.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FEFilm_Multi_Lateral.md @@ -1,4 +1,5 @@ -# Class FEFilm\_Multi\_Lateral +# Class FEFilm\_Multi\_Lateral + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFEFilm.dll @@ -9,9 +10,9 @@ public class FEFilm_Multi_Lateral : FEFilm_ElementProperty, IObservableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [FEFilm\_ElementProperty](VM.Managed.DAFUL.FEFilm\_ElementProperty.md) ← [FEFilm\_Multi\_Lateral](VM.Managed.DAFUL.FEFilm\_Multi\_Lateral.md) @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FEFilm_Multi_Longitudinal.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FEFilm_Multi_Longitudinal.md index 65cce1d1d4..92f3fe8711 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FEFilm_Multi_Longitudinal.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FEFilm_Multi_Longitudinal.md @@ -1,4 +1,5 @@ -# Class FEFilm\_Multi\_Longitudinal +# Class FEFilm\_Multi\_Longitudinal + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFEFilm.dll @@ -9,9 +10,9 @@ public class FEFilm_Multi_Longitudinal : FEFilm_ElementProperty, IObservableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [FEFilm\_ElementProperty](VM.Managed.DAFUL.FEFilm\_ElementProperty.md) ← [FEFilm\_Multi\_Longitudinal](VM.Managed.DAFUL.FEFilm\_Multi\_Longitudinal.md) @@ -77,7 +78,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -114,7 +115,7 @@ public ExpressionValueVariable LengthPerPattern { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FEFilm_Paths.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FEFilm_Paths.md index 982a4f123d..8503b014c1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FEFilm_Paths.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FEFilm_Paths.md @@ -1,4 +1,5 @@ -# Class FEFilm\_Paths +# Class FEFilm\_Paths + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFEFilm.dll @@ -9,9 +10,9 @@ public class FEFilm_Paths : LinkContainer, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [FEFilm\_Paths](VM.Managed.DAFUL.FEFilm\_Paths.md) @@ -74,7 +75,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -139,7 +140,7 @@ public ExpressionValueVariable Radius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### WindingDirection diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FEFilm_Pole.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FEFilm_Pole.md index 277e281bd2..e629d428ad 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FEFilm_Pole.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FEFilm_Pole.md @@ -1,4 +1,5 @@ -# Class FEFilm\_Pole +# Class FEFilm\_Pole + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFEFilm.dll @@ -9,9 +10,9 @@ public class FEFilm_Pole : LinkContainer, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [FEFilm\_Pole](VM.Managed.DAFUL.FEFilm\_Pole.md) @@ -74,7 +75,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -111,7 +112,7 @@ public ExpressionValueVariable ChamferOfLength { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ChamferOfLength\_Bottom @@ -121,7 +122,7 @@ public ExpressionValueVariable ChamferOfLength_Bottom { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ChamferOfWidth @@ -131,7 +132,7 @@ public ExpressionValueVariable ChamferOfWidth { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ChamferOfWidth\_Bottom @@ -141,7 +142,7 @@ public ExpressionValueVariable ChamferOfWidth_Bottom { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### EndOffset @@ -151,7 +152,7 @@ public ExpressionValueVariable EndOffset { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### IntervalPole @@ -161,7 +162,7 @@ public ExpressionValueVariable IntervalPole { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### LengthPole @@ -171,7 +172,7 @@ public ExpressionValueVariable LengthPole { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MaxWidthElementPole @@ -181,7 +182,7 @@ public ExpressionValueVariable MaxWidthElementPole { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### NoOfElements @@ -191,7 +192,7 @@ public int NoOfElements { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NoOfElementsPerPole @@ -201,7 +202,7 @@ public int NoOfElementsPerPole { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NoOfElementsPerPole\_Bottom @@ -211,7 +212,7 @@ public int NoOfElementsPerPole_Bottom { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NoOfNodes @@ -221,7 +222,7 @@ public int NoOfNodes { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NoOfNodesPerPole @@ -231,7 +232,7 @@ public int NoOfNodesPerPole { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NoOfNodesPerPole\_Bottom @@ -241,7 +242,7 @@ public int NoOfNodesPerPole_Bottom { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### StartOffset @@ -251,7 +252,7 @@ public ExpressionValueVariable StartOffset { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TabLocation @@ -271,7 +272,7 @@ public ExpressionValueVariable ThicknessPole { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ThicknessPole\_Bottom @@ -281,7 +282,7 @@ public ExpressionValueVariable ThicknessPole_Bottom { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### WidthPole @@ -291,7 +292,7 @@ public ExpressionValueVariable WidthPole { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### WidthPole\_Bottom @@ -301,7 +302,7 @@ public ExpressionValueVariable WidthPole_Bottom { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -329,7 +330,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.BoundaryCondition.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.BoundaryCondition.md index 7d05006a8f..f19f8bf54c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.BoundaryCondition.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.BoundaryCondition.md @@ -1,4 +1,5 @@ -# Class BoundaryCondition +# Class BoundaryCondition + Namespace: [VM.Managed.DAFUL.Flexible](VM.Managed.DAFUL.Flexible.md) Assembly: VMFlexibleBase.dll @@ -6,12 +7,12 @@ Assembly: VMFlexibleBase.dll

    This class is to represent the boundary condition.

    이 클래스는 경계조건을 나타냅니다.

    - Symmetric Modeling : No - Reference : Yes - Reference Type : VM.Managed.Reference - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : No +Reference : Yes +Reference Type : VM.Managed.Reference +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    ```csharp public class BoundaryCondition : BoundaryConditionBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IDraw, IDrawIcon, IDrawChangeFacet, IEnableForSimulationScenario, IEntityRelation, IGenerable, IReportable, IHasReplaceableEntity @@ -19,14 +20,14 @@ public class BoundaryCondition : BoundaryConditionBase ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [BoundaryConditionBase](VM.Managed.DAFUL.Flexible.BoundaryConditionBase\-1.md) ← [BoundaryCondition](VM.Managed.DAFUL.Flexible.BoundaryCondition.md) @@ -37,7 +38,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -86,34 +87,34 @@ IHasReplaceableEntity [BoundaryConditionBase.HasLayerExplicitly](VM.Managed.DAFUL.Flexible.BoundaryConditionBase\-1.md\#VM\_Managed\_DAFUL\_Flexible\_BoundaryConditionBase\_1\_HasLayerExplicitly), [BoundaryConditionBase.Hide](VM.Managed.DAFUL.Flexible.BoundaryConditionBase\-1.md\#VM\_Managed\_DAFUL\_Flexible\_BoundaryConditionBase\_1\_Hide), [BoundaryConditionBase.GenerableImpl](VM.Managed.DAFUL.Flexible.BoundaryConditionBase\-1.md\#VM\_Managed\_DAFUL\_Flexible\_BoundaryConditionBase\_1\_GenerableImpl), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -212,7 +213,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -236,8 +237,7 @@ ObservableObject.PropertyChanged ### BoundaryCondition\(\)

    Initializes a new instance of the class.

    -

    - 클래스의 새로운 객체를 초기화 해줍니다.

    +

    클래스의 새로운 객체를 초기화 해줍니다.

    ```csharp public BoundaryCondition() @@ -246,8 +246,7 @@ public BoundaryCondition() ### BoundaryCondition\(string\)

    Initializes a new instance of the class.

    -

    - 클래스의 새로운 객체를 초기화 해줍니다.

    +

    클래스의 새로운 객체를 초기화 해줍니다.

    ```csharp public BoundaryCondition(string strName) @@ -255,7 +254,7 @@ public BoundaryCondition(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string

    Name of the STR.

    이름

    @@ -272,21 +271,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true the tie has child. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.BoundaryConditionBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.BoundaryConditionBase-1.md index db804d6adb..087e94c0b6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.BoundaryConditionBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.BoundaryConditionBase-1.md @@ -1,4 +1,5 @@ -# Class BoundaryConditionBase +# Class BoundaryConditionBase + Namespace: [VM.Managed.DAFUL.Flexible](VM.Managed.DAFUL.Flexible.md) Assembly: VMFlexibleBase.dll @@ -6,12 +7,12 @@ Assembly: VMFlexibleBase.dll

    This base class is to represent the boundary condition base.

    이 클래스는 경계조건의 기본을 나타냅니다.

    - Symmetric Modeling : No - Reference : Yes - Reference Type : VM.Managed.Reference - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : No +Reference : Yes +Reference Type : VM.Managed.Reference +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    ```csharp public abstract class BoundaryConditionBase : Entity, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IDraw, IDrawIcon, IDrawChangeFacet, IEnableForSimulationScenario, IEntityRelation, IGenerable, IReportable, IHasReplaceableEntity where TProperty : PropertyBoundaryConditionBase, new() @@ -23,14 +24,14 @@ public abstract class BoundaryConditionBase : Entity, IObs #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [BoundaryConditionBase](VM.Managed.DAFUL.Flexible.BoundaryConditionBase\-1.md) #### Implements @@ -40,7 +41,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -74,34 +75,34 @@ IHasReplaceableEntity #### Inherited Members -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -200,7 +201,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -224,8 +225,7 @@ ObservableObject.PropertyChanged ### BoundaryConditionBase\(\)

    Initializes a new instance of the class.

    -

    - 클래스의 새로운 객체를 초기화 해줍니다.

    +

    클래스의 새로운 객체를 초기화 해줍니다.

    ```csharp public BoundaryConditionBase() @@ -234,8 +234,7 @@ public BoundaryConditionBase() ### BoundaryConditionBase\(string\)

    Initializes a new instance of the class.

    -

    - 클래스의 새로운 객체를 초기화 해줍니다.

    +

    클래스의 새로운 객체를 초기화 해줍니다.

    ```csharp public BoundaryConditionBase(string strName) @@ -243,7 +242,7 @@ public BoundaryConditionBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string

    Name of the STR.

    이름

    @@ -255,23 +254,23 @@ public BoundaryConditionBase(string strName)

    Gets or sets the BC component.

    경계조건을 정의할 엔티티를 가져오거나 넣어줍니다.

    - Type : IGeometricalComponent - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Entity Name - Control Type : Entity Editor - ToolTip : N/A - Error Message : N/A - Category : Bodundary Condition - Category Index : 1 - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : IGeometricalComponent +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Entity Name +Control Type : Entity Editor +ToolTip : N/A +Error Message : N/A +Category : Bodundary Condition +Category Index : 1 +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public IGeometricalComponent BCComponent { get; set; } @@ -292,7 +291,7 @@ protected virtual bool GenerableImpl { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### HasLayerExplicitly @@ -304,24 +303,24 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Hide

    Gets or sets a value indicating whether this instance is hide.

    아이콘을 숨길지 여부를 가져오거나 넣어줍니다.

    - Type : bool - LinkRequestUpdate 시 처리 : - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : false - 변경 시 DFS 재생성 여부 : No - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : bool +LinkRequestUpdate 시 처리 : +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : false +변경 시 DFS 재생성 여부 : No +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public bool Hide { get; set; } @@ -329,24 +328,24 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### NameOfBody

    Gets the name of body referenced BCComponent.

    BC의 타겟요소가 참조하는 바디의 이름을 가져옵니다.

    - Type : string - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : false - 변경 시 DFS 재생성 여부 : No - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : string +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : false +변경 시 DFS 재생성 여부 : No +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public string NameOfBody { get; } @@ -354,30 +353,30 @@ public string NameOfBody { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ReferenceMarker

    Gets or sets the reference marker.

    참조마커를 가져오거나 넣어줍니다.

    - Type : IMarker - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Reference Frame - Control Type : Marker Editor - ToolTip : N/A - Error Message : N/A - Category : Bodundary Condition - Category Index : 2 - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : IMarker +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Reference Frame +Control Type : Marker Editor +ToolTip : N/A +Error Message : N/A +Category : Bodundary Condition +Category Index : 2 +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public IMarker ReferenceMarker { get; set; } @@ -392,23 +391,23 @@ public IMarker ReferenceMarker { get; set; }

    Gets or sets the BC component.

    경계조건을 정의할 엔티티를 가져오거나 넣어줍니다.

    - Type : IGeometricalComponent - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Entity Name - Control Type : Entity Editor - ToolTip : N/A - Error Message : N/A - Category : Bodundary Condition - Category Index : 1 - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : IGeometricalComponent +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Entity Name +Control Type : Entity Editor +ToolTip : N/A +Error Message : N/A +Category : Bodundary Condition +Category Index : 1 +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public Linker _BCComponent { get; set; } @@ -423,23 +422,23 @@ public Linker _BCComponent { get; set; }

    Gets or sets the reference marker.

    참조마커를 가져오거나 넣어줍니다.

    - Type : IMarker - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Reference Frame - Control Type : Marker Editor - ToolTip : N/A - Error Message : N/A - Category : Bodundary Condition - Category Index : 2 - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : IMarker +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Reference Frame +Control Type : Marker Editor +ToolTip : N/A +Error Message : N/A +Category : Bodundary Condition +Category Index : 2 +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public Linker _ReferenceMarker { get; set; } @@ -462,7 +461,7 @@ public void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs)

    The canvas has icon information.

    아이콘 정보를 가지는 캔버스

    @@ -478,7 +477,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string

    The Name that want to find.

    찾고 싶은 엔티티의 이름입니다.

    @@ -498,14 +497,14 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object

    The ob unnamed.

    특정한 이름을 찾고자 하는 오브젝트.

    #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### LinkRequestUpdate\(object, LinkEventArgs\) @@ -518,7 +517,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object

    The linked object.

    참조된 객체입니다.

    @@ -539,7 +538,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object

    The sender.

    Load 관련 객체정보입니다.

    diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Contact.PropertyTie.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Contact.PropertyTie.md index af907589ca..a107b8a208 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Contact.PropertyTie.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Contact.PropertyTie.md @@ -1,4 +1,5 @@ -# Class PropertyTie +# Class PropertyTie + Namespace: [VM.Managed.DAFUL.Flexible.Contact](VM.Managed.DAFUL.Flexible.Contact.md) Assembly: VMFlexibleBase.dll @@ -6,12 +7,12 @@ Assembly: VMFlexibleBase.dll

    This class is to represent the tie properties.

    이 클래스는 경계조건 특성을 나타냅니다.

    - Symmetric Modeling : No - Reference : Yes - Reference Type : VM.Managed.Reference - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : No +Reference : Yes +Reference Type : VM.Managed.Reference +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    ```csharp public class PropertyTie : PropertyTieBase, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, ILinkContainer, IOwned, IHasID @@ -19,13 +20,13 @@ public class PropertyTie : PropertyTieBase, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyTieBase](VM.Managed.DAFUL.Flexible.Contact.PropertyTieBase.md) ← [PropertyTie](VM.Managed.DAFUL.Flexible.Contact.PropertyTie.md) @@ -40,7 +41,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -53,12 +54,12 @@ IHasID [PropertyTieBase.PenaltyScale](VM.Managed.DAFUL.Flexible.Contact.PropertyTieBase.md\#VM\_Managed\_DAFUL\_Flexible\_Contact\_PropertyTieBase\_PenaltyScale), [PropertyTieBase.UseGap](VM.Managed.DAFUL.Flexible.Contact.PropertyTieBase.md\#VM\_Managed\_DAFUL\_Flexible\_Contact\_PropertyTieBase\_UseGap), [PropertyTieBase.UseSlidingTie](VM.Managed.DAFUL.Flexible.Contact.PropertyTieBase.md\#VM\_Managed\_DAFUL\_Flexible\_Contact\_PropertyTieBase\_UseSlidingTie), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -157,7 +158,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -181,8 +182,7 @@ ObservableObject.PropertyChanged ### PropertyTie\(\)

    Initializes a new instance of the class.

    -

    - 클래스의 새로운 객체를 초기화 해줍니다.

    +

    클래스의 새로운 객체를 초기화 해줍니다.

    ```csharp public PropertyTie() diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Contact.PropertyTieBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Contact.PropertyTieBase.md index 5de1f9a318..59d3e9b858 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Contact.PropertyTieBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Contact.PropertyTieBase.md @@ -1,4 +1,5 @@ -# Class PropertyTieBase +# Class PropertyTieBase + Namespace: [VM.Managed.DAFUL.Flexible.Contact](VM.Managed.DAFUL.Flexible.Contact.md) Assembly: VMFlexibleBase.dll @@ -11,13 +12,13 @@ public abstract class PropertyTieBase : Property, IObservableObject, IDisposable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyTieBase](VM.Managed.DAFUL.Flexible.Contact.PropertyTieBase.md) #### Derived @@ -35,7 +36,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -44,12 +45,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -172,8 +173,7 @@ ObservableObject.PropertyChanged ### PropertyTieBase\(\)

    Initializes a new instance of the class.

    -

    - 클래스의 새로운 객체를 초기화 해줍니다.

    +

    클래스의 새로운 객체를 초기화 해줍니다.

    ```csharp public PropertyTieBase() @@ -186,23 +186,23 @@ public PropertyTieBase()

    Gets or sets the penalty scale.

    페날티 스케일을 가져오거나 넣어줍니다.

    - Type : Variable - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Penalty Scale - Control Type : Variable Editor - ToolTip : N/A - Error Message : N/A - Category : Boundary Condition - Category Index : 5 - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : Variable +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Penalty Scale +Control Type : Variable Editor +ToolTip : N/A +Error Message : N/A +Category : Boundary Condition +Category Index : 5 +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public ExpressionValueVariable PenaltyScale { get; set; } @@ -210,30 +210,30 @@ public ExpressionValueVariable PenaltyScale { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### UseGap

    Gets or sets a value indicating whether [use gap].

    갭의 사용여부를 가져오거나 넣어줍니다.

    - ///

    - Type : bool - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Gap - Control Type : N/A - ToolTip : N/A - Error Message : N/A - Category : Tie or Geometry - Category Index : 5 - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +///

    +Type : bool +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Gap +Control Type : N/A +ToolTip : N/A +Error Message : N/A +Category : Tie or Geometry +Category Index : 5 +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public bool UseGap { get; set; } @@ -241,30 +241,30 @@ public bool UseGap { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseSlidingTie

    Gets or sets a value indicating whether [use sliding tie].

    슬라이딩 타이의 사용여부를 가져오거나 넣어줍니다.

    - ///

    - Type : bool - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Gap - Control Type : N/A - ToolTip : N/A - Error Message : N/A - Category : Tie or Geometry - Category Index : 6 - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +///

    +Type : bool +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Gap +Control Type : N/A +ToolTip : N/A +Error Message : N/A +Category : Tie or Geometry +Category Index : 6 +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public bool UseSlidingTie { get; set; } @@ -272,7 +272,7 @@ public bool UseSlidingTie { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Contact.Tie.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Contact.Tie.md index 5d5a35a3ae..89847320a8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Contact.Tie.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Contact.Tie.md @@ -1,4 +1,5 @@ -# Class Tie +# Class Tie + Namespace: [VM.Managed.DAFUL.Flexible.Contact](VM.Managed.DAFUL.Flexible.Contact.md) Assembly: VMFlexibleBase.dll @@ -6,27 +7,27 @@ Assembly: VMFlexibleBase.dll

    This class is to represent the tie.

    이 클래스는 타이를 나타냅니다.

    - Symmetric Modeling : No - Reference : Yes - Reference Type : VM.Managed.Reference - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : No +Reference : Yes +Reference Type : VM.Managed.Reference +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    ```csharp -public class Tie : TieBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IDraw, IDrawIcon, IDrawChangeFacet, IEntityRelation, IGenerable, IReportable, IFlip, IHasReplaceableEntity, IArgument +public class Tie : TieBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IDraw, IDrawIcon, IDrawChangeFacet, IEntityRelation, IGenerable, IReportable, IFlip, IHasReplaceableEntity, IEnableForSimulationScenario, IArgument ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [TieBase](VM.Managed.DAFUL.Flexible.Contact.TieBase\-1.md) ← [Tie](VM.Managed.DAFUL.Flexible.Contact.Tie.md) @@ -37,7 +38,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -68,6 +69,7 @@ IGenerable, IReportable, IFlip, IHasReplaceableEntity, +IEnableForSimulationScenario, IArgument #### Inherited Members @@ -88,34 +90,34 @@ IArgument [TieBase.Hide](VM.Managed.DAFUL.Flexible.Contact.TieBase\-1.md\#VM\_Managed\_DAFUL\_Flexible\_Contact\_TieBase\_1\_Hide), [TieBase.GenerableImpl](VM.Managed.DAFUL.Flexible.Contact.TieBase\-1.md\#VM\_Managed\_DAFUL\_Flexible\_Contact\_TieBase\_1\_GenerableImpl), [TieBase.CanSwitchImpl](VM.Managed.DAFUL.Flexible.Contact.TieBase\-1.md\#VM\_Managed\_DAFUL\_Flexible\_Contact\_TieBase\_1\_CanSwitchImpl), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -214,7 +216,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -238,8 +240,7 @@ ObservableObject.PropertyChanged ### Tie\(\)

    Initializes a new instance of the class.

    -

    - 클래스의 새로운 객체를 초기화 해줍니다.

    +

    클래스의 새로운 객체를 초기화 해줍니다.

    ```csharp public Tie() @@ -248,8 +249,7 @@ public Tie() ### Tie\(string\)

    Initializes a new instance of the class.

    -

    - 클래스의 새로운 객체를 초기화 해줍니다.

    +

    클래스의 새로운 객체를 초기화 해줍니다.

    ```csharp public Tie(string strName) @@ -257,7 +257,7 @@ public Tie(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string

    Name of the STR.

    이름

    @@ -286,7 +286,7 @@ public string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -300,21 +300,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true the tie has child. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Contact.TieBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Contact.TieBase-1.md index c261d59eb0..c2cdfbf32f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Contact.TieBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Contact.TieBase-1.md @@ -1,4 +1,5 @@ -# Class TieBase +# Class TieBase + Namespace: [VM.Managed.DAFUL.Flexible.Contact](VM.Managed.DAFUL.Flexible.Contact.md) Assembly: VMFlexibleBase.dll @@ -6,15 +7,15 @@ Assembly: VMFlexibleBase.dll

    This class is to represent the tie base.

    이 클래스는 타이의 기본을 나타냅니다.

    - Symmetric Modeling : No - Reference : Yes - Reference Type : VM.Managed.Reference - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : No +Reference : Yes +Reference Type : VM.Managed.Reference +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    ```csharp -public abstract class TieBase : Entity, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IDraw, IDrawIcon, IDrawChangeFacet, IEntityRelation, IGenerable, IReportable, IFlip, IHasReplaceableEntity where TProperty : PropertyTieBase, new() +public abstract class TieBase : Entity, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IDraw, IDrawIcon, IDrawChangeFacet, IEntityRelation, IGenerable, IReportable, IFlip, IHasReplaceableEntity, IEnableForSimulationScenario where TProperty : PropertyTieBase, new() ``` #### Type Parameters @@ -26,14 +27,14 @@ public abstract class TieBase : Entity, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [TieBase](VM.Managed.DAFUL.Flexible.Contact.TieBase\-1.md) #### Implements @@ -43,7 +44,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -73,38 +74,39 @@ IEntityRelation, IGenerable, IReportable, IFlip, -IHasReplaceableEntity +IHasReplaceableEntity, +IEnableForSimulationScenario #### Inherited Members -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -203,7 +205,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -227,8 +229,7 @@ ObservableObject.PropertyChanged ### TieBase\(\)

    Initializes a new instance of the class.

    -

    - 클래스의 새로운 객체를 초기화 해줍니다.

    +

    클래스의 새로운 객체를 초기화 해줍니다.

    ```csharp public TieBase() @@ -237,8 +238,7 @@ public TieBase() ### TieBase\(string\)

    Initializes a new instance of the class.

    -

    - 클래스의 새로운 객체를 초기화 해줍니다.

    +

    클래스의 새로운 객체를 초기화 해줍니다.

    ```csharp public TieBase(string strName) @@ -246,7 +246,7 @@ public TieBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string

    Name of the STR.

    이름

    @@ -263,30 +263,30 @@ public ContactGeom3D ActionGeom { get; set; } #### Property Value - ContactGeom3D + [ContactGeom3D](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/ContactGeom3D.cs) ### BaseGeom

    Gets or sets the base 3D contact geometry.

    베이스 3D 접촉 요소를 가져오거나 넣어줍니다.

    - Type : ContactGeom3D - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Entity Name - Control Type : Entity Picker - ToolTip : N/A - Error Message : N/A - Category : Tie - Category Index : 1 - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : ContactGeom3D +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Entity Name +Control Type : Entity Picker +ToolTip : N/A +Error Message : N/A +Category : Tie +Category Index : 1 +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public ContactGeom3D BaseGeom { get; set; } @@ -294,7 +294,7 @@ public ContactGeom3D BaseGeom { get; set; } #### Property Value - ContactGeom3D + [ContactGeom3D](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/ContactGeom3D.cs) ### CanSwitchImpl @@ -304,7 +304,7 @@ protected virtual bool CanSwitchImpl { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GenerableImpl @@ -317,7 +317,7 @@ protected virtual bool GenerableImpl { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### HasLayerExplicitly @@ -329,24 +329,24 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Hide

    Gets or sets a value indicating whether this instance is hide.

    아이콘을 숨길지 여부를 가져오거나 넣어줍니다.

    - Type : bool - LinkRequestUpdate 시 처리 : - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : false - 변경 시 DFS 재생성 여부 : No - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : bool +LinkRequestUpdate 시 처리 : +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : false +변경 시 DFS 재생성 여부 : No +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public bool Hide { get; set; } @@ -354,24 +354,24 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### NameOfActionBody

    Gets the name of body referenced tie action geometry.

    Tie의 Action의 타겟요소가 참조하는 바디의 이름을 가져옵니다.

    - Type : string - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : false - 변경 시 DFS 재생성 여부 : No - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : string +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : false +변경 시 DFS 재생성 여부 : No +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public string NameOfActionBody { get; } @@ -379,24 +379,24 @@ public string NameOfActionBody { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NameOfBaseBody

    Gets the name of body referenced tie base geometry.

    Tie의 Base 타겟요소가 참조하는 바디의 이름을 가져옵니다.

    - Type : string - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : false - 변경 시 DFS 재생성 여부 : No - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : string +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : false +변경 시 DFS 재생성 여부 : No +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public string NameOfBaseBody { get; } @@ -404,7 +404,7 @@ public string NameOfBaseBody { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -419,7 +419,7 @@ public void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs)

    The canvas has icon information.

    아이콘 정보를 가지는 캔버스

    @@ -435,7 +435,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string

    The Name that want to find.

    찾고 싶은 엔티티의 이름입니다.

    @@ -455,14 +455,14 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object

    The ob unnamed.

    특정한 이름을 찾고자 하는 오브젝트.

    #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Initialize\(ConvertFactor\) @@ -491,7 +491,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object

    The linked object.

    참조된 객체입니다.

    @@ -512,7 +512,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object

    The sender.

    Load 관련 객체정보입니다.

    diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Contact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Contact.md index d365fad894..ae7ff71db0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Contact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Contact.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Flexible.Contact +# Namespace VM.Managed.DAFUL.Flexible.Contact + ### Classes @@ -7,12 +8,12 @@

    This class is to represent the tie properties.

    이 클래스는 경계조건 특성을 나타냅니다.

    - Symmetric Modeling : No - Reference : Yes - Reference Type : VM.Managed.Reference - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : No +Reference : Yes +Reference Type : VM.Managed.Reference +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    [PropertyTieBase](VM.Managed.DAFUL.Flexible.Contact.PropertyTieBase.md) @@ -23,22 +24,22 @@ This class is to represent the tie properties.

    This class is to represent the tie.

    이 클래스는 타이를 나타냅니다.

    - Symmetric Modeling : No - Reference : Yes - Reference Type : VM.Managed.Reference - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : No +Reference : Yes +Reference Type : VM.Managed.Reference +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    [TieBase](VM.Managed.DAFUL.Flexible.Contact.TieBase\-1.md)

    This class is to represent the tie base.

    이 클래스는 타이의 기본을 나타냅니다.

    - Symmetric Modeling : No - Reference : Yes - Reference Type : VM.Managed.Reference - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : No +Reference : Yes +Reference Type : VM.Managed.Reference +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.FlexibleBaseHelper.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.FlexibleBaseHelper.md index 733abd891d..78ffa1b10a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.FlexibleBaseHelper.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.FlexibleBaseHelper.md @@ -1,4 +1,5 @@ -# Class FlexibleBaseHelper +# Class FlexibleBaseHelper + Namespace: [VM.Managed.DAFUL.Flexible](VM.Managed.DAFUL.Flexible.md) Assembly: VMFlexibleBase.dll @@ -11,7 +12,7 @@ public static class FlexibleBaseHelper #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [FlexibleBaseHelper](VM.Managed.DAFUL.Flexible.FlexibleBaseHelper.md) #### Extension Methods @@ -34,5 +35,5 @@ public static FacetOption GetFacetOptionFromContainer(IAttributeContainer contai #### Returns - FacetOption + [FacetOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/FacetOption.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ConcentratedLoad.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ConcentratedLoad.md index 744430324d..8441afb6f5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ConcentratedLoad.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ConcentratedLoad.md @@ -1,16 +1,17 @@ -# Class ConcentratedLoad +# Class ConcentratedLoad + Namespace: [VM.Managed.DAFUL.Flexible.Force](VM.Managed.DAFUL.Flexible.Force.md) Assembly: VMFlexibleBase.dll

    This class is to represent the concentrated load.

    - Symmetric Modeling : No - Reference : Yes - Reference Type : VM.Managed.Reference - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : No +Reference : Yes +Reference Type : VM.Managed.Reference +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    ```csharp public class ConcentratedLoad : ConcentratedLoadBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IDraw, IDrawIcon, IArgument, IDrawChangeFacet, IEntityRelation, IGenerable, IReportable @@ -18,14 +19,14 @@ public class ConcentratedLoad : ConcentratedLoadBase, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [ConcentratedLoadBase](VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadBase\-1.md) ← [ConcentratedLoad](VM.Managed.DAFUL.Flexible.Force.ConcentratedLoad.md) @@ -36,7 +37,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -86,34 +87,34 @@ IReportable [ConcentratedLoadBase.ReferenceType](VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadBase\-1.md\#VM\_Managed\_DAFUL\_Flexible\_Force\_ConcentratedLoadBase\_1\_ReferenceType), [ConcentratedLoadBase.ArgumentType](VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadBase\-1.md\#VM\_Managed\_DAFUL\_Flexible\_Force\_ConcentratedLoadBase\_1\_ArgumentType), [ConcentratedLoadBase.GenerableImpl](VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadBase\-1.md\#VM\_Managed\_DAFUL\_Flexible\_Force\_ConcentratedLoadBase\_1\_GenerableImpl), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -212,7 +213,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -236,8 +237,7 @@ ObservableObject.PropertyChanged ### ConcentratedLoad\(\)

    Initializes a new instance of the class.

    -

    - 클래스의 새로운 객체를 초기화 해줍니다.

    +

    클래스의 새로운 객체를 초기화 해줍니다.

    ```csharp public ConcentratedLoad() @@ -246,8 +246,7 @@ public ConcentratedLoad() ### ConcentratedLoad\(string\)

    Initializes a new instance of the class.

    -

    - 클래스의 새로운 객체를 초기화 해줍니다.

    +

    클래스의 새로운 객체를 초기화 해줍니다.

    ```csharp public ConcentratedLoad(string strName) @@ -255,7 +254,7 @@ public ConcentratedLoad(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string

    Name of the STR.

    이름

    @@ -278,7 +277,7 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -292,21 +291,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true the tie has child. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadBase-1.md index 7b77ec899b..1cf48ae991 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadBase-1.md @@ -1,4 +1,5 @@ -# Class ConcentratedLoadBase +# Class ConcentratedLoadBase + Namespace: [VM.Managed.DAFUL.Flexible.Force](VM.Managed.DAFUL.Flexible.Force.md) Assembly: VMFlexibleBase.dll @@ -17,14 +18,14 @@ The type of the property. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [ConcentratedLoadBase](VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadBase\-1.md) #### Implements @@ -34,7 +35,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -67,34 +68,34 @@ IReportable #### Inherited Members -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -193,7 +194,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -217,7 +218,7 @@ ObservableObject.PropertyChanged ### ConcentratedLoadBase\(\)

    Initializes a new instance of the

    class. -

    클래스의 새로운 객체를 초기화 해줍니다.

    +

    클래스의 새로운 객체를 초기화 해줍니다.

    ```csharp public ConcentratedLoadBase() @@ -226,8 +227,7 @@ public ConcentratedLoadBase() ### ConcentratedLoadBase\(string\)

    Initializes a new instance of the class.

    -

    - 클래스의 새로운 객체를 초기화 해줍니다.

    +

    클래스의 새로운 객체를 초기화 해줍니다.

    ```csharp public ConcentratedLoadBase(string strName) @@ -235,7 +235,7 @@ public ConcentratedLoadBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string

    Name of the STR.

    이름

    @@ -253,7 +253,7 @@ public double Area { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ArgumentType @@ -272,23 +272,23 @@ public ArgumentTypes ArgumentType { get; }

    Gets or sets the concentrated load component.

    집중하중 타겟요소를 가져오거나 넣어줍니다.

    - Type : IGeometricalComponent - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Entity Name - Control Type : Entity Picker - ToolTip : N/A - Error Message : N/A - Category : Force or Load - Category Index : 1 - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : IGeometricalComponent +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Entity Name +Control Type : Entity Picker +ToolTip : N/A +Error Message : N/A +Category : Force or Load +Category Index : 1 +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public IGeometricalComponent CLoadComponent { get; set; } @@ -302,24 +302,24 @@ public IGeometricalComponent CLoadComponent { get; set; }

    Gets or sets the C load range component.

    집중하중 범위 타겟요소를 가져오거나 넣어줍니다.

    3 -

    - Type : Range - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Entity Name - Control Type : Entity Picker - ToolTip : N/A - Error Message : N/A - Category : Load - Category Index : 1 - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +

    +Type : Range +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Entity Name +Control Type : Entity Picker +ToolTip : N/A +Error Message : N/A +Category : Load +Category Index : 1 +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public Range CLoadRangeComponent { get; set; } @@ -327,7 +327,7 @@ public Range CLoadRangeComponent { get; set; } #### Property Value - Range + [Range](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Range.cs) ### GenerableImpl @@ -340,7 +340,7 @@ protected virtual bool GenerableImpl { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### HasLayerExplicitly @@ -352,24 +352,24 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Hide

    Gets or sets a value indicating whether this instance is hide.

    아이콘을 숨길지 여부를 가져오거나 넣어줍니다.

    - Type : bool - LinkRequestUpdate 시 처리 : - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : false - 변경 시 DFS 재생성 여부 : No - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : bool +LinkRequestUpdate 시 처리 : +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : false +변경 시 DFS 재생성 여부 : No +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public bool Hide { get; set; } @@ -377,24 +377,24 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### NameOfBody

    Gets the name of body referenced CLoadComponent.

    Concentrated Load의 타겟요소가 참조하는 바디의 이름을 가져옵니다.

    - Type : string - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : false - 변경 시 DFS 재생성 여부 : No - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : string +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : false +변경 시 DFS 재생성 여부 : No +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public string NameOfBody { get; } @@ -402,7 +402,7 @@ public string NameOfBody { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ReferenceType @@ -414,30 +414,30 @@ public virtual string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### \_CLoadComponent

    Gets or sets the concentrated load component.

    집중하중 타겟요소를 가져오거나 넣어줍니다.

    - Type : IGeometricalComponent - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Entity Name - Control Type : Entity Picker - ToolTip : N/A - Error Message : N/A - Category : Force or Load - Category Index : 1 - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : IGeometricalComponent +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Entity Name +Control Type : Entity Picker +ToolTip : N/A +Error Message : N/A +Category : Force or Load +Category Index : 1 +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public Linker _CLoadComponent { get; set; } @@ -460,7 +460,7 @@ public void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs)

    The canvas has icon information.

    아이콘 정보를 가지는 캔버스

    @@ -476,7 +476,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string

    The Name that want to find.

    찾고 싶은 엔티티의 이름입니다.

    @@ -496,14 +496,14 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object

    The object that find to specialize name.

    특정한 이름을 찾고자 하는 오브젝트.

    #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### LinkRequestUpdate\(object, LinkEventArgs\) @@ -516,7 +516,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object

    The linked object.

    참조된 객체입니다.

    @@ -537,7 +537,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object

    The sender.

    Load 관련 객체정보입니다.

    diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadFunction.FunctionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadFunction.FunctionType.md index 76886fa255..3c8e6db567 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadFunction.FunctionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadFunction.FunctionType.md @@ -1,4 +1,5 @@ -# Enum ConcentratedLoadFunction.FunctionType +# Enum ConcentratedLoadFunction.FunctionType + Namespace: [VM.Managed.DAFUL.Flexible.Force](VM.Managed.DAFUL.Flexible.Force.md) Assembly: VMFlexibleBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadFunction.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadFunction.md index b4e62da396..c71e81f098 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadFunction.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadFunction.md @@ -1,4 +1,5 @@ -# Class ConcentratedLoadFunction +# Class ConcentratedLoadFunction + Namespace: [VM.Managed.DAFUL.Flexible.Force](VM.Managed.DAFUL.Flexible.Force.md) Assembly: VMFlexibleBase.dll @@ -6,12 +7,12 @@ Assembly: VMFlexibleBase.dll

    This base class is to represent the characteristic properties of concentrated load.

    이 클래스는 집중하중 함수를 나타냅니다.

    - Symmetric Modeling : No - Reference : No - Reference Type : N/A - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : No +Reference : No +Reference Type : N/A +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    ```csharp public abstract class ConcentratedLoadFunction : LinkContainer, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable @@ -19,9 +20,9 @@ public abstract class ConcentratedLoadFunction : LinkContainer, IObservableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ConcentratedLoadFunction](VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadFunction.md) @@ -88,7 +89,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -112,8 +113,7 @@ ObservableObject.PropertyChanged ### ConcentratedLoadFunction\(\)

    Initializes a new instance of the class.

    -

    - 클래스의 새로운 객체를 초기화 해줍니다.

    +

    클래스의 새로운 객체를 초기화 해줍니다.

    ```csharp protected ConcentratedLoadFunction() @@ -126,23 +126,23 @@ protected ConcentratedLoadFunction()

    Gets or sets the reference marker.

    참조마커를 가져오거나 넣어줍니다.

    - Type : IMarker - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Reference Frame - Control Type : Marker Editor - ToolTip : N/A - Error Message : N/A - Category : Bodundary Condition - Category Index : 2 - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : IMarker +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Reference Frame +Control Type : Marker Editor +ToolTip : N/A +Error Message : N/A +Category : Bodundary Condition +Category Index : 2 +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public IMarker ReferenceMarker { get; set; } @@ -170,23 +170,23 @@ public abstract ConcentratedLoadFunction.FunctionType Type { get; }

    Gets or sets the reference marker.

    참조마커를 가져오거나 넣어줍니다.

    - Type : IMarker - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Reference Frame - Control Type : Marker Editor - ToolTip : N/A - Error Message : N/A - Category : Bodundary Condition - Category Index : 2 - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : IMarker +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Reference Frame +Control Type : Marker Editor +ToolTip : N/A +Error Message : N/A +Category : Bodundary Condition +Category Index : 2 +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public Linker _ReferenceMarker { get; set; } diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadStandard.DirectionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadStandard.DirectionType.md index 1d186bb01e..477e80c651 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadStandard.DirectionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadStandard.DirectionType.md @@ -1,4 +1,5 @@ -# Enum ConcentratedLoadStandard.DirectionType +# Enum ConcentratedLoadStandard.DirectionType + Namespace: [VM.Managed.DAFUL.Flexible.Force](VM.Managed.DAFUL.Flexible.Force.md) Assembly: VMFlexibleBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadStandard.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadStandard.md index 2c58ed1d13..e5ee51f5b6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadStandard.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadStandard.md @@ -1,4 +1,5 @@ -# Class ConcentratedLoadStandard +# Class ConcentratedLoadStandard + Namespace: [VM.Managed.DAFUL.Flexible.Force](VM.Managed.DAFUL.Flexible.Force.md) Assembly: VMFlexibleBase.dll @@ -11,9 +12,9 @@ public sealed class ConcentratedLoadStandard : ConcentratedLoadFunction, IObserv #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ConcentratedLoadFunction](VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadFunction.md) ← [ConcentratedLoadStandard](VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadStandard.md) @@ -81,8 +82,7 @@ ObservableObject.PropertyChanged ### ConcentratedLoadStandard\(\)

    Initializes a new instance of the class.

    -

    - 클래스의 새로운 객체를 초기화 해줍니다.

    +

    클래스의 새로운 객체를 초기화 해줍니다.

    ```csharp public ConcentratedLoadStandard() @@ -95,17 +95,17 @@ public ConcentratedLoadStandard()

    Gets or sets the force function.

    힘 함수를 가져오거나 넣어줍니다.

    - Type : ElementFunction - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : false - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : ElementFunction +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : false +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public ElementFunction ForceFunction { get; set; } @@ -120,23 +120,23 @@ public ElementFunction ForceFunction { get; set; }

    Gets or sets the type of the direction.

    방향의 타입을 가져오거나 넣어줍니다.

    - Type : DirectionType - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Direction Type - Control Type : N/A - ToolTip : N/A - Error Message : N/A - Category : Load - Category Index : 1 - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : DirectionType +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Direction Type +Control Type : N/A +ToolTip : N/A +Error Message : N/A +Category : Load +Category Index : 1 +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public ConcentratedLoadStandard.DirectionType FunctionDirectionType { get; set; } @@ -151,17 +151,17 @@ public ConcentratedLoadStandard.DirectionType FunctionDirectionType { get; set;

    Gets or sets the torque function.

    회전력 함수를 가져오거나 넣어줍니다.

    - Type : ElementFunction - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : false - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : ElementFunction +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : false +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public ElementFunction TorqueFunction { get; set; } @@ -189,17 +189,17 @@ public override ConcentratedLoadFunction.FunctionType Type { get; }

    Gets or sets a value indicating whether this is use.

    사용 여부를 가져오거나 넣어줍니다.

    - Type : bool - LinkRequestUpdate 시 처리 : - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : false - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : bool +LinkRequestUpdate 시 처리 : +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : false +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public bool UseForceFunction { get; set; } @@ -207,24 +207,24 @@ public bool UseForceFunction { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseTorqueFunction

    Gets or sets a value indicating whether this is use.

    사용 여부를 가져오거나 넣어줍니다.

    - Type : bool - LinkRequestUpdate 시 처리 : - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : false - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : bool +LinkRequestUpdate 시 처리 : +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : false +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public bool UseTorqueFunction { get; set; } @@ -232,7 +232,7 @@ public bool UseTorqueFunction { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadUserSubroutine.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadUserSubroutine.md index 5bc84f9308..880a62bfd4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadUserSubroutine.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadUserSubroutine.md @@ -1,4 +1,5 @@ -# Class ConcentratedLoadUserSubroutine +# Class ConcentratedLoadUserSubroutine + Namespace: [VM.Managed.DAFUL.Flexible.Force](VM.Managed.DAFUL.Flexible.Force.md) Assembly: VMFlexibleBase.dll @@ -12,9 +13,9 @@ public sealed class ConcentratedLoadUserSubroutine : ConcentratedLoadFunction, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ConcentratedLoadFunction](VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadFunction.md) ← [ConcentratedLoadUserSubroutine](VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadUserSubroutine.md) @@ -82,8 +83,7 @@ ObservableObject.PropertyChanged ### ConcentratedLoadUserSubroutine\(\)

    Initializes a new instance of the class.

    -

    - 클래스의 새로운 객체를 초기화 해줍니다.

    +

    클래스의 새로운 객체를 초기화 해줍니다.

    ```csharp public ConcentratedLoadUserSubroutine() @@ -109,23 +109,23 @@ public override ConcentratedLoadFunction.FunctionType Type { get; }

    Gets or sets the user subroutine.

    사용자 정의 함수를 가져오거나 넣어줍니다.

    - Type : UserSubroutine - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : User Subroutine - Control Type : User Subroutine Editor - ToolTip : N/A - Error Message : N/A - Category : Load - Category Index : 1 - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : UserSubroutine +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : User Subroutine +Control Type : User Subroutine Editor +ToolTip : N/A +Error Message : N/A +Category : Load +Category Index : 1 +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public UserSubroutine UserSubroutine { get; set; } @@ -133,5 +133,5 @@ public UserSubroutine UserSubroutine { get; set; } #### Property Value - UserSubroutine + [UserSubroutine](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSP/UserSubroutine.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ElementFunction.DisplayNumber.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ElementFunction.DisplayNumber.md index 3f6edd1e41..34a637ba91 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ElementFunction.DisplayNumber.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ElementFunction.DisplayNumber.md @@ -1,4 +1,5 @@ -# Enum ElementFunction.DisplayNumber +# Enum ElementFunction.DisplayNumber + Namespace: [VM.Managed.DAFUL.Flexible.Force](VM.Managed.DAFUL.Flexible.Force.md) Assembly: VMFlexibleBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ElementFunction.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ElementFunction.md index eef6e1b062..af84822808 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ElementFunction.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.ElementFunction.md @@ -1,4 +1,5 @@ -# Class ElementFunction +# Class ElementFunction + Namespace: [VM.Managed.DAFUL.Flexible.Force](VM.Managed.DAFUL.Flexible.Force.md) Assembly: VMFlexibleBase.dll @@ -6,12 +7,12 @@ Assembly: VMFlexibleBase.dll

    This class is to represent the element function.

    이 클래스는 함수에 들어가는 요소를 나타냅니다.

    - Symmetric Modeling : No - Reference : Yes - Reference Type : VM.Managed.Reference - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : No +Reference : Yes +Reference Type : VM.Managed.Reference +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    ```csharp public class ElementFunction : LinkContainer, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable @@ -19,9 +20,9 @@ public class ElementFunction : LinkContainer, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ElementFunction](VM.Managed.DAFUL.Flexible.Force.ElementFunction.md) @@ -83,7 +84,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -107,8 +108,7 @@ ObservableObject.PropertyChanged ### ElementFunction\(\)

    Initializes a new instance of the class.

    -

    - 클래스의 새로운 객체를 초기화 해줍니다.

    +

    클래스의 새로운 객체를 초기화 해줍니다.

    ```csharp public ElementFunction() @@ -117,8 +117,7 @@ public ElementFunction() ### ElementFunction\(string\)

    Initializes a new instance of the class.

    -

    - 클래스의 새로운 객체를 초기화 해줍니다.

    +

    클래스의 새로운 객체를 초기화 해줍니다.

    ```csharp public ElementFunction(string strUniqueName) @@ -126,7 +125,7 @@ public ElementFunction(string strUniqueName) #### Parameters -`strUniqueName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strUniqueName` string ## Properties @@ -154,7 +153,7 @@ public CompositeFieldUsable FunctionX { get; set; } #### Property Value - CompositeFieldUsable + [CompositeFieldUsable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/CompositeField.cs) ### FunctionY @@ -167,7 +166,7 @@ public CompositeFieldUsable FunctionY { get; set; } #### Property Value - CompositeFieldUsable + [CompositeFieldUsable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/CompositeField.cs) ### FunctionZ @@ -180,7 +179,7 @@ public CompositeFieldUsable FunctionZ { get; set; } #### Property Value - CompositeFieldUsable + [CompositeFieldUsable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/CompositeField.cs) ### Orientation diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.IFlexibleFunctionOwner.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.IFlexibleFunctionOwner.md index 50922a2bce..902c21c0e6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.IFlexibleFunctionOwner.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.IFlexibleFunctionOwner.md @@ -1,4 +1,5 @@ -# Interface IFlexibleFunctionOwner +# Interface IFlexibleFunctionOwner + Namespace: [VM.Managed.DAFUL.Flexible.Force](VM.Managed.DAFUL.Flexible.Force.md) Assembly: VMFlexibleBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PressureLoad.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PressureLoad.md index f4aa4e9bc2..b79d433652 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PressureLoad.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PressureLoad.md @@ -1,16 +1,17 @@ -# Class PressureLoad +# Class PressureLoad + Namespace: [VM.Managed.DAFUL.Flexible.Force](VM.Managed.DAFUL.Flexible.Force.md) Assembly: VMFlexibleBase.dll

    This class is to represent the pressure load.

    - Symmetric Modeling : No - Reference : Yes - Reference Type : VM.Managed.Reference - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : No +Reference : Yes +Reference Type : VM.Managed.Reference +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    ```csharp public class PressureLoad : PressureLoadBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IDraw, IDrawIcon, IDrawChangeFacet, IArgument, IEntityRelation, IGenerable, IReportable @@ -18,14 +19,14 @@ public class PressureLoad : PressureLoadBase, IObservableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [PressureLoadBase](VM.Managed.DAFUL.Flexible.Force.PressureLoadBase\-1.md) ← [PressureLoad](VM.Managed.DAFUL.Flexible.Force.PressureLoad.md) @@ -36,7 +37,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -85,34 +86,34 @@ IReportable [PressureLoadBase.ReferenceType](VM.Managed.DAFUL.Flexible.Force.PressureLoadBase\-1.md\#VM\_Managed\_DAFUL\_Flexible\_Force\_PressureLoadBase\_1\_ReferenceType), [PressureLoadBase.ArgumentType](VM.Managed.DAFUL.Flexible.Force.PressureLoadBase\-1.md\#VM\_Managed\_DAFUL\_Flexible\_Force\_PressureLoadBase\_1\_ArgumentType), [PressureLoadBase.GenerableImpl](VM.Managed.DAFUL.Flexible.Force.PressureLoadBase\-1.md\#VM\_Managed\_DAFUL\_Flexible\_Force\_PressureLoadBase\_1\_GenerableImpl), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -211,7 +212,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -235,8 +236,7 @@ ObservableObject.PropertyChanged ### PressureLoad\(\)

    Initializes a new instance of the class.

    -

    - 클래스의 새로운 객체를 초기화 해줍니다.

    +

    클래스의 새로운 객체를 초기화 해줍니다.

    ```csharp public PressureLoad() @@ -245,8 +245,7 @@ public PressureLoad() ### PressureLoad\(string\)

    Initializes a new instance of the class.

    -

    - 클래스의 새로운 객체를 초기화 해줍니다.

    +

    클래스의 새로운 객체를 초기화 해줍니다.

    ```csharp public PressureLoad(string strName) @@ -254,7 +253,7 @@ public PressureLoad(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string

    Name of the STR.

    이름

    @@ -271,21 +270,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true the tie has child. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PressureLoadBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PressureLoadBase-1.md index 2578886ffd..56b303fadc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PressureLoadBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PressureLoadBase-1.md @@ -1,4 +1,5 @@ -# Class PressureLoadBase +# Class PressureLoadBase + Namespace: [VM.Managed.DAFUL.Flexible.Force](VM.Managed.DAFUL.Flexible.Force.md) Assembly: VMFlexibleBase.dll @@ -19,14 +20,14 @@ public abstract class PressureLoadBase : Entity, IObservab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [PressureLoadBase](VM.Managed.DAFUL.Flexible.Force.PressureLoadBase\-1.md) #### Implements @@ -36,7 +37,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -69,34 +70,34 @@ IReportable #### Inherited Members -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -195,7 +196,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -219,7 +220,7 @@ ObservableObject.PropertyChanged ### PressureLoadBase\(\)

    Initializes a new instance of the

    class. -

    클래스의 새로운 객체를 초기화 해줍니다.

    +

    클래스의 새로운 객체를 초기화 해줍니다.

    ```csharp public PressureLoadBase() @@ -228,8 +229,7 @@ public PressureLoadBase() ### PressureLoadBase\(string\)

    Initializes a new instance of the class.

    -

    - 클래스의 새로운 객체를 초기화 해줍니다.

    +

    클래스의 새로운 객체를 초기화 해줍니다.

    ```csharp public PressureLoadBase(string strName) @@ -237,7 +237,7 @@ public PressureLoadBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string

    Name.

    이름

    @@ -255,7 +255,7 @@ public double Area { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ArgumentType @@ -280,7 +280,7 @@ protected virtual bool GenerableImpl { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### HasLayerExplicitly @@ -292,7 +292,7 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Hide @@ -304,24 +304,24 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### NameOfBody

    Gets the name of body referenced PLoadComponent.

    Pressure Load의 타겟요소가 참조하는 바디의 이름을 가져옵니다.

    - Type : string - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : false - 변경 시 DFS 재생성 여부 : No - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : string +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : false +변경 시 DFS 재생성 여부 : No +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public string NameOfBody { get; } @@ -329,30 +329,30 @@ public string NameOfBody { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### PLoadComponent

    Gets or sets the pressure load component.

    압력하중 타겟요소를 가져오거나 넣어줍니다.

    - Type : IGeometricalComponent - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Entity Name - Control Type : Entity Picker - ToolTip : N/A - Error Message : N/A - Category : Force or Load - Category Index : 1 - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : IGeometricalComponent +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Entity Name +Control Type : Entity Picker +ToolTip : N/A +Error Message : N/A +Category : Force or Load +Category Index : 1 +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public IGeometricalComponent PLoadComponent { get; set; } @@ -373,30 +373,30 @@ public virtual string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### \_PLoadComponent

    Gets or sets the pressure load component.

    압력하중 타겟요소를 가져오거나 넣어줍니다.

    - Type : IGeometricalComponent - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Entity Name - Control Type : Entity Picker - ToolTip : N/A - Error Message : N/A - Category : Force or Load - Category Index : 1 - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : IGeometricalComponent +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Entity Name +Control Type : Entity Picker +ToolTip : N/A +Error Message : N/A +Category : Force or Load +Category Index : 1 +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public Linker _PLoadComponent { get; set; } @@ -419,7 +419,7 @@ public void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs)

    The canvas has icon information.

    아이콘 정보를 가지는 캔버스

    @@ -435,7 +435,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string

    The Name that want to find.

    찾고 싶은 엔티티의 이름입니다.

    @@ -455,14 +455,14 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object

    The object that find to specialize name.

    특정한 이름을 찾고자 하는 오브젝트.

    #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### LinkRequestUpdate\(object, LinkEventArgs\) @@ -475,7 +475,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object

    The linked object.

    참조된 객체입니다.

    @@ -496,7 +496,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object

    The sender.

    Load 관련 객체정보입니다.

    diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PressureLoadFunction.FunctionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PressureLoadFunction.FunctionType.md index 85a0791e21..7d2c42b454 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PressureLoadFunction.FunctionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PressureLoadFunction.FunctionType.md @@ -1,4 +1,5 @@ -# Enum PressureLoadFunction.FunctionType +# Enum PressureLoadFunction.FunctionType + Namespace: [VM.Managed.DAFUL.Flexible.Force](VM.Managed.DAFUL.Flexible.Force.md) Assembly: VMFlexibleBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PressureLoadFunction.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PressureLoadFunction.md index 85ff6b364e..75cf3fd08a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PressureLoadFunction.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PressureLoadFunction.md @@ -1,4 +1,5 @@ -# Class PressureLoadFunction +# Class PressureLoadFunction + Namespace: [VM.Managed.DAFUL.Flexible.Force](VM.Managed.DAFUL.Flexible.Force.md) Assembly: VMFlexibleBase.dll @@ -6,12 +7,12 @@ Assembly: VMFlexibleBase.dll

    This base class is to represent the characteristic properties of pressure load.

    이 클래스는 압력하중 함수를 나타냅니다.

    - Symmetric Modeling : No - Reference : No - Reference Type : N/A - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : No +Reference : No +Reference Type : N/A +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    ```csharp public abstract class PressureLoadFunction : LinkContainer, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable @@ -19,9 +20,9 @@ public abstract class PressureLoadFunction : LinkContainer, IObservableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [PressureLoadFunction](VM.Managed.DAFUL.Flexible.Force.PressureLoadFunction.md) @@ -88,7 +89,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -112,8 +113,7 @@ ObservableObject.PropertyChanged ### PressureLoadFunction\(\)

    Initializes a new instance of the class.

    -

    - 클래스의 새로운 객체를 초기화 해줍니다.

    +

    클래스의 새로운 객체를 초기화 해줍니다.

    ```csharp protected PressureLoadFunction() diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PressureLoadStandard.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PressureLoadStandard.md index 578efb33d6..2aebaa32a1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PressureLoadStandard.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PressureLoadStandard.md @@ -1,4 +1,5 @@ -# Class PressureLoadStandard +# Class PressureLoadStandard + Namespace: [VM.Managed.DAFUL.Flexible.Force](VM.Managed.DAFUL.Flexible.Force.md) Assembly: VMFlexibleBase.dll @@ -6,12 +7,12 @@ Assembly: VMFlexibleBase.dll

    This class is to represent the characteristic properties of standard type.

    이 클래스는 기본 함수를 나타냅니다.

    - Symmetric Modeling : No - Reference : No - Reference Type : N/A - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : No +Reference : No +Reference Type : N/A +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    ```csharp public sealed class PressureLoadStandard : PressureLoadFunction, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable, IReserved @@ -19,9 +20,9 @@ public sealed class PressureLoadStandard : PressureLoadFunction, IObservableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [PressureLoadFunction](VM.Managed.DAFUL.Flexible.Force.PressureLoadFunction.md) ← [PressureLoadStandard](VM.Managed.DAFUL.Flexible.Force.PressureLoadStandard.md) @@ -87,8 +88,7 @@ ObservableObject.PropertyChanged ### PressureLoadStandard\(\)

    Initializes a new instance of the class.

    -

    - 클래스의 새로운 객체를 초기화 해줍니다.

    +

    클래스의 새로운 객체를 초기화 해줍니다.

    ```csharp public PressureLoadStandard() @@ -101,23 +101,23 @@ public PressureLoadStandard()

    Gets or sets the normal.

    수직방향 함수를 가져오거나 넣어줍니다.

    - Type : CompositeFieldUsable - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : yes - Label : Normal - Control Type : Function Editor - ToolTip : N/A - Error Message : N/A - Category : Pressure - Category Index : 1 - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : CompositeFieldUsable +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : yes +Label : Normal +Control Type : Function Editor +ToolTip : N/A +Error Message : N/A +Category : Pressure +Category Index : 1 +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public CompositeFieldUsable Normal { get; set; } @@ -125,30 +125,30 @@ public CompositeFieldUsable Normal { get; set; } #### Property Value - CompositeFieldUsable + [CompositeFieldUsable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/CompositeField.cs) ### PrimaryTangential

    Gets or sets the primary tangential.

    주요한 접선방향 함수를 가져오거나 넣어줍니다.

    - Type : CompositeFieldUsable - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : yes - Label : Tangential(Pri) - Control Type : Function Editor - ToolTip : N/A - Error Message : N/A - Category : Pressure - Category Index : 3 - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : CompositeFieldUsable +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : yes +Label : Tangential(Pri) +Control Type : Function Editor +ToolTip : N/A +Error Message : N/A +Category : Pressure +Category Index : 3 +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public CompositeFieldUsable PrimaryTangential { get; set; } @@ -156,30 +156,30 @@ public CompositeFieldUsable PrimaryTangential { get; set; } #### Property Value - CompositeFieldUsable + [CompositeFieldUsable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/CompositeField.cs) ### SecondaryTangential

    Gets or sets the secondary tangential.

    부차적인 접선방향 함수를 가져오거나 넣어줍니다.

    - Type : CompositeFieldUsable - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : yes - Label : Tangential(Sec) - Control Type : Function Editor - ToolTip : N/A - Error Message : N/A - Category : Pressure - Category Index : 4 - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : CompositeFieldUsable +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : yes +Label : Tangential(Sec) +Control Type : Function Editor +ToolTip : N/A +Error Message : N/A +Category : Pressure +Category Index : 4 +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public CompositeFieldUsable SecondaryTangential { get; set; } @@ -187,30 +187,30 @@ public CompositeFieldUsable SecondaryTangential { get; set; } #### Property Value - CompositeFieldUsable + [CompositeFieldUsable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/CompositeField.cs) ### TangentialSecDirection

    Gets or sets the tangential secondary direction.

    부차적인 접선방향을 가져오거나 넣어줍니다.

    - Type : DirectionBase - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : yes - Label : Secondary Tangetial Direction - Control Type : Direction Picker - ToolTip : N/A - Error Message : N/A - Category : Pressure - Category Index : 2 - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : DirectionBase +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : yes +Label : Secondary Tangetial Direction +Control Type : Direction Picker +ToolTip : N/A +Error Message : N/A +Category : Pressure +Category Index : 2 +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public DirectionBase TangentialSecDirection { get; set; } diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PressureLoadUserSubroutine.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PressureLoadUserSubroutine.md index 133861f414..63f9e678dc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PressureLoadUserSubroutine.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PressureLoadUserSubroutine.md @@ -1,4 +1,5 @@ -# Class PressureLoadUserSubroutine +# Class PressureLoadUserSubroutine + Namespace: [VM.Managed.DAFUL.Flexible.Force](VM.Managed.DAFUL.Flexible.Force.md) Assembly: VMFlexibleBase.dll @@ -12,9 +13,9 @@ public sealed class PressureLoadUserSubroutine : PressureLoadFunction, IObservab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [PressureLoadFunction](VM.Managed.DAFUL.Flexible.Force.PressureLoadFunction.md) ← [PressureLoadUserSubroutine](VM.Managed.DAFUL.Flexible.Force.PressureLoadUserSubroutine.md) @@ -80,8 +81,7 @@ ObservableObject.PropertyChanged ### PressureLoadUserSubroutine\(\)

    Initializes a new instance of the class.

    -

    - 클래스의 새로운 객체를 초기화 해줍니다.

    +

    클래스의 새로운 객체를 초기화 해줍니다.

    ```csharp public PressureLoadUserSubroutine() @@ -107,23 +107,23 @@ public override PressureLoadFunction.FunctionType Type { get; }

    Gets or sets the user subroutine.

    사용자 정의 함수를 가져오거나 넣어줍니다.

    - Type : UserSubroutine - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : User Subroutine - Control Type : User Subroutine Editor - ToolTip : N/A - Error Message : N/A - Category : Load - Category Index : 1 - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : UserSubroutine +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : User Subroutine +Control Type : User Subroutine Editor +ToolTip : N/A +Error Message : N/A +Category : Load +Category Index : 1 +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public UserSubroutine UserSubroutine { get; set; } @@ -131,5 +131,5 @@ public UserSubroutine UserSubroutine { get; set; } #### Property Value - UserSubroutine + [UserSubroutine](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSP/UserSubroutine.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PropertyConcentratedLoad.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PropertyConcentratedLoad.md index baa4183405..fe7c5e0688 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PropertyConcentratedLoad.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PropertyConcentratedLoad.md @@ -1,4 +1,5 @@ -# Class PropertyConcentratedLoad +# Class PropertyConcentratedLoad + Namespace: [VM.Managed.DAFUL.Flexible.Force](VM.Managed.DAFUL.Flexible.Force.md) Assembly: VMFlexibleBase.dll @@ -6,12 +7,12 @@ Assembly: VMFlexibleBase.dll

    This class is to represent the concentrated load properties.

    이 클래스는 집중하중 특성을 나타냅니다.

    - Symmetric Modeling : No - Reference : Yes - Reference Type : VM.Managed.Reference - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : No +Reference : Yes +Reference Type : VM.Managed.Reference +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    ```csharp public class PropertyConcentratedLoad : PropertyConcentratedLoadBase, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, ILinkContainer, IOwned, IHasID, IFlexibleFunctionOwner @@ -19,13 +20,13 @@ public class PropertyConcentratedLoad : PropertyConcentratedLoadBase, IObservabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyConcentratedLoadBase](VM.Managed.DAFUL.Flexible.Force.PropertyConcentratedLoadBase.md) ← [PropertyConcentratedLoad](VM.Managed.DAFUL.Flexible.Force.PropertyConcentratedLoad.md) @@ -40,7 +41,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -55,12 +56,12 @@ IHasID, [PropertyConcentratedLoadBase.GetUnnamedObjectName\(object\)](VM.Managed.DAFUL.Flexible.Force.PropertyConcentratedLoadBase.md\#VM\_Managed\_DAFUL\_Flexible\_Force\_PropertyConcentratedLoadBase\_GetUnnamedObjectName\_System\_Object\_), [PropertyConcentratedLoadBase.FunctionDirectionType](VM.Managed.DAFUL.Flexible.Force.PropertyConcentratedLoadBase.md\#VM\_Managed\_DAFUL\_Flexible\_Force\_PropertyConcentratedLoadBase\_FunctionDirectionType), [PropertyConcentratedLoadBase.Function](VM.Managed.DAFUL.Flexible.Force.PropertyConcentratedLoadBase.md\#VM\_Managed\_DAFUL\_Flexible\_Force\_PropertyConcentratedLoadBase\_Function), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -159,7 +160,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -183,8 +184,7 @@ ObservableObject.PropertyChanged ### PropertyConcentratedLoad\(\)

    Initializes a new instance of the class.

    -

    - 클래스의 새로운 객체를 초기화 해줍니다.

    +

    클래스의 새로운 객체를 초기화 해줍니다.

    ```csharp public PropertyConcentratedLoad() diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PropertyConcentratedLoadBase.DirectionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PropertyConcentratedLoadBase.DirectionType.md index a85c98b473..3fb9dde0b4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PropertyConcentratedLoadBase.DirectionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PropertyConcentratedLoadBase.DirectionType.md @@ -1,4 +1,5 @@ -# Enum PropertyConcentratedLoadBase.DirectionType +# Enum PropertyConcentratedLoadBase.DirectionType + Namespace: [VM.Managed.DAFUL.Flexible.Force](VM.Managed.DAFUL.Flexible.Force.md) Assembly: VMFlexibleBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PropertyConcentratedLoadBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PropertyConcentratedLoadBase.md index cb9d0f73c8..a0e09599b4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PropertyConcentratedLoadBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PropertyConcentratedLoadBase.md @@ -1,4 +1,5 @@ -# Class PropertyConcentratedLoadBase +# Class PropertyConcentratedLoadBase + Namespace: [VM.Managed.DAFUL.Flexible.Force](VM.Managed.DAFUL.Flexible.Force.md) Assembly: VMFlexibleBase.dll @@ -11,13 +12,13 @@ public abstract class PropertyConcentratedLoadBase : Property, IObservableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyConcentratedLoadBase](VM.Managed.DAFUL.Flexible.Force.PropertyConcentratedLoadBase.md) #### Derived @@ -35,7 +36,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -45,12 +46,12 @@ IHasID, #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -149,7 +150,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -173,8 +174,7 @@ ObservableObject.PropertyChanged ### PropertyConcentratedLoadBase\(\)

    Initializes a new instance of the class.

    -

    - 클래스의 새로운 객체를 초기화 해줍니다.

    +

    클래스의 새로운 객체를 초기화 해줍니다.

    ```csharp public PropertyConcentratedLoadBase() @@ -187,17 +187,17 @@ public PropertyConcentratedLoadBase()

    Gets or sets the function of concentrated load.

    집중하중의 함수를 가져오거나 넣어줍니다.

    - Type : ConcentratedLoadFunction - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : false - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : ConcentratedLoadFunction +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : false +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public ConcentratedLoadFunction Function { get; set; } @@ -212,23 +212,23 @@ public ConcentratedLoadFunction Function { get; set; }

    Gets or sets the type of the direction.

    방향의 타입을 가져오거나 넣어줍니다.

    - Type : DirectionType - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Direction Type - Control Type : N/A - ToolTip : N/A - Error Message : N/A - Category : Load - Category Index : 1 - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : DirectionType +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Direction Type +Control Type : N/A +ToolTip : N/A +Error Message : N/A +Category : Load +Category Index : 1 +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public PropertyConcentratedLoadBase.DirectionType FunctionDirectionType { get; set; } @@ -251,7 +251,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string

    The Name that want to find.

    찾고 싶은 엔티티의 이름입니다.

    @@ -271,14 +271,14 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object

    The object that find to specialize name.

    특정한 이름을 찾고자 하는 오브젝트.

    #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Initialize\(ConvertFactor\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PropertyPressureLoad.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PropertyPressureLoad.md index 475155047a..9eb5a36394 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PropertyPressureLoad.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PropertyPressureLoad.md @@ -1,4 +1,5 @@ -# Class PropertyPressureLoad +# Class PropertyPressureLoad + Namespace: [VM.Managed.DAFUL.Flexible.Force](VM.Managed.DAFUL.Flexible.Force.md) Assembly: VMFlexibleBase.dll @@ -6,12 +7,12 @@ Assembly: VMFlexibleBase.dll

    This class is to represent the pressure load properties.

    이 클래스는 압력하중 특성을 나타냅니다.

    - Symmetric Modeling : No - Reference : Yes - Reference Type : VM.Managed.Reference - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : No +Reference : Yes +Reference Type : VM.Managed.Reference +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    ```csharp public class PropertyPressureLoad : PropertyPressureLoadBase, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, ILinkContainer, IOwned, IHasID, IFlexibleFunctionOwner @@ -19,13 +20,13 @@ public class PropertyPressureLoad : PropertyPressureLoadBase, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyPressureLoadBase](VM.Managed.DAFUL.Flexible.Force.PropertyPressureLoadBase.md) ← [PropertyPressureLoad](VM.Managed.DAFUL.Flexible.Force.PropertyPressureLoad.md) @@ -40,7 +41,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -55,12 +56,12 @@ IHasID, [PropertyPressureLoadBase.GetUnnamedObjectName\(object\)](VM.Managed.DAFUL.Flexible.Force.PropertyPressureLoadBase.md\#VM\_Managed\_DAFUL\_Flexible\_Force\_PropertyPressureLoadBase\_GetUnnamedObjectName\_System\_Object\_), [PropertyPressureLoadBase.PressureDirection](VM.Managed.DAFUL.Flexible.Force.PropertyPressureLoadBase.md\#VM\_Managed\_DAFUL\_Flexible\_Force\_PropertyPressureLoadBase\_PressureDirection), [PropertyPressureLoadBase.Function](VM.Managed.DAFUL.Flexible.Force.PropertyPressureLoadBase.md\#VM\_Managed\_DAFUL\_Flexible\_Force\_PropertyPressureLoadBase\_Function), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -159,7 +160,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -183,8 +184,7 @@ ObservableObject.PropertyChanged ### PropertyPressureLoad\(\)

    Initializes a new instance of the class.

    -

    - 클래스의 새로운 객체를 초기화 해줍니다.

    +

    클래스의 새로운 객체를 초기화 해줍니다.

    ```csharp public PropertyPressureLoad() diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PropertyPressureLoadBase.DirectionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PropertyPressureLoadBase.DirectionType.md index e0d60e7a1b..030842a885 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PropertyPressureLoadBase.DirectionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PropertyPressureLoadBase.DirectionType.md @@ -1,4 +1,5 @@ -# Enum PropertyPressureLoadBase.DirectionType +# Enum PropertyPressureLoadBase.DirectionType + Namespace: [VM.Managed.DAFUL.Flexible.Force](VM.Managed.DAFUL.Flexible.Force.md) Assembly: VMFlexibleBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PropertyPressureLoadBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PropertyPressureLoadBase.md index 93d39f0b0f..c8ec28e030 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PropertyPressureLoadBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.PropertyPressureLoadBase.md @@ -1,4 +1,5 @@ -# Class PropertyPressureLoadBase +# Class PropertyPressureLoadBase + Namespace: [VM.Managed.DAFUL.Flexible.Force](VM.Managed.DAFUL.Flexible.Force.md) Assembly: VMFlexibleBase.dll @@ -12,13 +13,13 @@ public abstract class PropertyPressureLoadBase : Property, IObservableObject, ID #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyPressureLoadBase](VM.Managed.DAFUL.Flexible.Force.PropertyPressureLoadBase.md) #### Derived @@ -36,7 +37,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -46,12 +47,12 @@ IHasID, #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -150,7 +151,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -174,8 +175,7 @@ ObservableObject.PropertyChanged ### PropertyPressureLoadBase\(\)

    Initializes a new instance of the class.

    -

    - 클래스의 새로운 객체를 초기화 해줍니다.

    +

    클래스의 새로운 객체를 초기화 해줍니다.

    ```csharp public PropertyPressureLoadBase() @@ -188,17 +188,17 @@ public PropertyPressureLoadBase()

    Gets or sets the function of pressure load.

    압력하중의 함수를 가져오거나 넣어줍니다.

    - Type : PressureLoadFunction - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : false - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : PressureLoadFunction +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : false +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public PressureLoadFunction Function { get; set; } @@ -213,23 +213,23 @@ public PressureLoadFunction Function { get; set; }

    Gets or sets the pressure direction.

    압력 방향을 가져오거나 넣어줍니다.

    - Type : DirectionType - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Pressure Direction - Control Type : N/A - ToolTip : N/A - Error Message : N/A - Category : Pressure / Load - Category Index : 1 - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : DirectionType +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Pressure Direction +Control Type : N/A +ToolTip : N/A +Error Message : N/A +Category : Pressure / Load +Category Index : 1 +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public PropertyPressureLoadBase.DirectionType PressureDirection { get; set; } @@ -252,7 +252,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string

    The Name that want to find.

    찾고 싶은 엔티티의 이름입니다.

    @@ -272,14 +272,14 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object

    The object that find to specialize name.

    특정한 이름을 찾고자 하는 오브젝트.

    #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Initialize\(ConvertFactor\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.md index e944744453..785e4fba8d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.Force.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Flexible.Force +# Namespace VM.Managed.DAFUL.Flexible.Force + ### Classes @@ -6,12 +7,12 @@

    This class is to represent the concentrated load.

    - Symmetric Modeling : No - Reference : Yes - Reference Type : VM.Managed.Reference - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : No +Reference : Yes +Reference Type : VM.Managed.Reference +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    [ConcentratedLoadBase](VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadBase\-1.md) @@ -22,12 +23,12 @@ This base class is to represent the concentrated load base.

    This base class is to represent the characteristic properties of concentrated load.

    이 클래스는 집중하중 함수를 나타냅니다.

    - Symmetric Modeling : No - Reference : No - Reference Type : N/A - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : No +Reference : No +Reference Type : N/A +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    [ConcentratedLoadStandard](VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadStandard.md) @@ -43,23 +44,23 @@ This base class is to represent the concentrated load base.

    This class is to represent the element function.

    이 클래스는 함수에 들어가는 요소를 나타냅니다.

    - Symmetric Modeling : No - Reference : Yes - Reference Type : VM.Managed.Reference - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : No +Reference : Yes +Reference Type : VM.Managed.Reference +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    [PressureLoad](VM.Managed.DAFUL.Flexible.Force.PressureLoad.md)

    This class is to represent the pressure load.

    - Symmetric Modeling : No - Reference : Yes - Reference Type : VM.Managed.Reference - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : No +Reference : Yes +Reference Type : VM.Managed.Reference +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    [PressureLoadBase](VM.Managed.DAFUL.Flexible.Force.PressureLoadBase\-1.md) @@ -71,24 +72,24 @@ This base class is to represent the concentrated load base.

    This base class is to represent the characteristic properties of pressure load.

    이 클래스는 압력하중 함수를 나타냅니다.

    - Symmetric Modeling : No - Reference : No - Reference Type : N/A - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : No +Reference : No +Reference Type : N/A +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    [PressureLoadStandard](VM.Managed.DAFUL.Flexible.Force.PressureLoadStandard.md)

    This class is to represent the characteristic properties of standard type.

    이 클래스는 기본 함수를 나타냅니다.

    - Symmetric Modeling : No - Reference : No - Reference Type : N/A - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : No +Reference : No +Reference Type : N/A +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    [PressureLoadUserSubroutine](VM.Managed.DAFUL.Flexible.Force.PressureLoadUserSubroutine.md) @@ -100,12 +101,12 @@ This base class is to represent the concentrated load base.

    This class is to represent the concentrated load properties.

    이 클래스는 집중하중 특성을 나타냅니다.

    - Symmetric Modeling : No - Reference : Yes - Reference Type : VM.Managed.Reference - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : No +Reference : Yes +Reference Type : VM.Managed.Reference +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    [PropertyConcentratedLoadBase](VM.Managed.DAFUL.Flexible.Force.PropertyConcentratedLoadBase.md) @@ -116,12 +117,12 @@ This class is to represent the concentrated load properties.

    This class is to represent the pressure load properties.

    이 클래스는 압력하중 특성을 나타냅니다.

    - Symmetric Modeling : No - Reference : Yes - Reference Type : VM.Managed.Reference - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : No +Reference : Yes +Reference Type : VM.Managed.Reference +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    [PropertyPressureLoadBase](VM.Managed.DAFUL.Flexible.Force.PropertyPressureLoadBase.md) @@ -136,20 +137,20 @@ This base class is to represent the interface for ConConcentratedLoadStandard ow ### Enums - [PropertyPressureLoadBase.DirectionType](VM.Managed.DAFUL.Flexible.Force.PropertyPressureLoadBase.DirectionType.md) + [ConcentratedLoadStandard.DirectionType](VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadStandard.DirectionType.md) -

    Specifies the pressure direction.

    -

    압력 방향을 나열합니다.

    +

    Specifies type for the direction.

    +

    방향 타입을 나열합니다.

    [PropertyConcentratedLoadBase.DirectionType](VM.Managed.DAFUL.Flexible.Force.PropertyConcentratedLoadBase.DirectionType.md)

    Specifies type for the direction.

    방향 타입을 나열합니다.

    - [ConcentratedLoadStandard.DirectionType](VM.Managed.DAFUL.Flexible.Force.ConcentratedLoadStandard.DirectionType.md) + [PropertyPressureLoadBase.DirectionType](VM.Managed.DAFUL.Flexible.Force.PropertyPressureLoadBase.DirectionType.md) -

    Specifies type for the direction.

    -

    방향 타입을 나열합니다.

    +

    Specifies the pressure direction.

    +

    압력 방향을 나열합니다.

    [ElementFunction.DisplayNumber](VM.Managed.DAFUL.Flexible.Force.ElementFunction.DisplayNumber.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.PropertyBoundaryCondition.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.PropertyBoundaryCondition.md index 3cf3d1507e..8b14fa60af 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.PropertyBoundaryCondition.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.PropertyBoundaryCondition.md @@ -1,4 +1,5 @@ -# Class PropertyBoundaryCondition +# Class PropertyBoundaryCondition + Namespace: [VM.Managed.DAFUL.Flexible](VM.Managed.DAFUL.Flexible.md) Assembly: VMFlexibleBase.dll @@ -6,12 +7,12 @@ Assembly: VMFlexibleBase.dll

    This class is to represent the boundary condition properties.

    이 클래스는 경계조건 특성을 나타냅니다.

    - Symmetric Modeling : No - Reference : Yes - Reference Type : VM.Managed.Reference - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : No +Reference : Yes +Reference Type : VM.Managed.Reference +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    ```csharp public class PropertyBoundaryCondition : PropertyBoundaryConditionBase, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, ILinkContainer, IOwned, IHasID @@ -19,13 +20,13 @@ public class PropertyBoundaryCondition : PropertyBoundaryConditionBase, IObserva #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyBoundaryConditionBase](VM.Managed.DAFUL.Flexible.PropertyBoundaryConditionBase.md) ← [PropertyBoundaryCondition](VM.Managed.DAFUL.Flexible.PropertyBoundaryCondition.md) @@ -40,7 +41,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -58,12 +59,12 @@ IHasID [PropertyBoundaryConditionBase.ElementTY](VM.Managed.DAFUL.Flexible.PropertyBoundaryConditionBase.md\#VM\_Managed\_DAFUL\_Flexible\_PropertyBoundaryConditionBase\_ElementTY), [PropertyBoundaryConditionBase.ElementTZ](VM.Managed.DAFUL.Flexible.PropertyBoundaryConditionBase.md\#VM\_Managed\_DAFUL\_Flexible\_PropertyBoundaryConditionBase\_ElementTZ), [PropertyBoundaryConditionBase.PenaltyScale](VM.Managed.DAFUL.Flexible.PropertyBoundaryConditionBase.md\#VM\_Managed\_DAFUL\_Flexible\_PropertyBoundaryConditionBase\_PenaltyScale), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -162,7 +163,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -186,8 +187,7 @@ ObservableObject.PropertyChanged ### PropertyBoundaryCondition\(\)

    Initializes a new instance of the class.

    -

    - 클래스의 새로운 객체를 초기화 해줍니다.

    +

    클래스의 새로운 객체를 초기화 해줍니다.

    ```csharp public PropertyBoundaryCondition() diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.PropertyBoundaryConditionBase.BCConstrainedType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.PropertyBoundaryConditionBase.BCConstrainedType.md index bc1e12e4b9..e290070c88 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.PropertyBoundaryConditionBase.BCConstrainedType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.PropertyBoundaryConditionBase.BCConstrainedType.md @@ -1,4 +1,5 @@ -# Enum PropertyBoundaryConditionBase.BCConstrainedType +# Enum PropertyBoundaryConditionBase.BCConstrainedType + Namespace: [VM.Managed.DAFUL.Flexible](VM.Managed.DAFUL.Flexible.md) Assembly: VMFlexibleBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.PropertyBoundaryConditionBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.PropertyBoundaryConditionBase.md index e9e8eb6096..0a4986fd6e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.PropertyBoundaryConditionBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.PropertyBoundaryConditionBase.md @@ -1,4 +1,5 @@ -# Class PropertyBoundaryConditionBase +# Class PropertyBoundaryConditionBase + Namespace: [VM.Managed.DAFUL.Flexible](VM.Managed.DAFUL.Flexible.md) Assembly: VMFlexibleBase.dll @@ -6,12 +7,12 @@ Assembly: VMFlexibleBase.dll

    This class is to represent the boundary condition properties.

    이 클래스는 경계조건 속성을 나타냅니다.

    - Symmetric Modeling : No - Reference : Yes - Reference Type : VM.Managed.Reference - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : No +Reference : Yes +Reference Type : VM.Managed.Reference +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    ```csharp public abstract class PropertyBoundaryConditionBase : Property, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, ILinkContainer, IOwned, IHasID @@ -19,13 +20,13 @@ public abstract class PropertyBoundaryConditionBase : Property, IObservableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyBoundaryConditionBase](VM.Managed.DAFUL.Flexible.PropertyBoundaryConditionBase.md) #### Derived @@ -43,7 +44,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -52,12 +53,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -156,7 +157,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -180,8 +181,7 @@ ObservableObject.PropertyChanged ### PropertyBoundaryConditionBase\(\)

    Initializes a new instance of the class.

    -

    - 클래스의 새로운 객체를 초기화 해줍니다.

    +

    클래스의 새로운 객체를 초기화 해줍니다.

    ```csharp public PropertyBoundaryConditionBase() @@ -194,23 +194,23 @@ public PropertyBoundaryConditionBase()

    Gets or sets the constrained type.

    경계 조건을 가져오거나 넣어줍니다.

    - Type : BCConstrainedType - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Constrained Type - Control Type : Combo box - ToolTip : N/A - Error Message : N/A - Category : Boundary Condition - Category Index : 1 - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : BCConstrainedType +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Constrained Type +Control Type : Combo box +ToolTip : N/A +Error Message : N/A +Category : Boundary Condition +Category Index : 1 +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public PropertyBoundaryConditionBase.BCConstrainedType ConstrainedType { get; set; } @@ -225,23 +225,23 @@ public PropertyBoundaryConditionBase.BCConstrainedType ConstrainedType { get; se

    Gets or sets the element RX.

    회전 x방향의 값을 가져오거나 넣어줍니다.

    - Type : CompositeFieldUsable - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Rotational X - Control Type : Check box - ToolTip : N/A - Error Message : N/A - Category : Boundary Condition - Category Index : 5 - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : CompositeFieldUsable +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Rotational X +Control Type : Check box +ToolTip : N/A +Error Message : N/A +Category : Boundary Condition +Category Index : 5 +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public CompositeFieldUsable ElementRX { get; set; } @@ -249,30 +249,30 @@ public CompositeFieldUsable ElementRX { get; set; } #### Property Value - CompositeFieldUsable + [CompositeFieldUsable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/CompositeField.cs) ### ElementRY

    Gets or sets the element RY.

    회전 y방향의 값을 가져오거나 넣어줍니다.

    - Type : CompositeFieldUsable - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Rotational Y - Control Type : Check box - ToolTip : N/A - Error Message : N/A - Category : Boundary Condition - Category Index : 6 - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : CompositeFieldUsable +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Rotational Y +Control Type : Check box +ToolTip : N/A +Error Message : N/A +Category : Boundary Condition +Category Index : 6 +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public CompositeFieldUsable ElementRY { get; set; } @@ -280,30 +280,30 @@ public CompositeFieldUsable ElementRY { get; set; } #### Property Value - CompositeFieldUsable + [CompositeFieldUsable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/CompositeField.cs) ### ElementRZ

    Gets or sets the element RZ.

    회전 z방향의 값을 가져오거나 넣어줍니다.

    - Type : CompositeFieldUsable - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Rotational Z - Control Type : Check box - ToolTip : N/A - Error Message : N/A - Category : Boundary Condition - Category Index : 7 - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : CompositeFieldUsable +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Rotational Z +Control Type : Check box +ToolTip : N/A +Error Message : N/A +Category : Boundary Condition +Category Index : 7 +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public CompositeFieldUsable ElementRZ { get; set; } @@ -311,30 +311,30 @@ public CompositeFieldUsable ElementRZ { get; set; } #### Property Value - CompositeFieldUsable + [CompositeFieldUsable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/CompositeField.cs) ### ElementTX

    Gets or sets the element TX.

    병진 x방향의 값을 가져오거나 넣어줍니다.

    - Type : CompositeFieldUsable - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Translational X - Control Type : Check box - ToolTip : N/A - Error Message : N/A - Category : Boundary Condition - Category Index : 2 - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : CompositeFieldUsable +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Translational X +Control Type : Check box +ToolTip : N/A +Error Message : N/A +Category : Boundary Condition +Category Index : 2 +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public CompositeFieldUsable ElementTX { get; set; } @@ -342,30 +342,30 @@ public CompositeFieldUsable ElementTX { get; set; } #### Property Value - CompositeFieldUsable + [CompositeFieldUsable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/CompositeField.cs) ### ElementTY

    Gets or sets the element TY.

    병진 y방향의 값을 가져오거나 넣어줍니다.

    - Type : CompositeFieldUsable - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Translational Y - Control Type : Check box - ToolTip : N/A - Error Message : N/A - Category : Boundary Condition - Category Index : 3 - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : CompositeFieldUsable +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Translational Y +Control Type : Check box +ToolTip : N/A +Error Message : N/A +Category : Boundary Condition +Category Index : 3 +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public CompositeFieldUsable ElementTY { get; set; } @@ -373,30 +373,30 @@ public CompositeFieldUsable ElementTY { get; set; } #### Property Value - CompositeFieldUsable + [CompositeFieldUsable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/CompositeField.cs) ### ElementTZ

    Gets or sets the element TZ.

    병진 z방향의 값을 가져오거나 넣어줍니다.

    - Type : CompositeFieldUsable - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Translational Z - Control Type : Check box - ToolTip : N/A - Error Message : N/A - Category : Boundary Condition - Category Index : 4 - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : CompositeFieldUsable +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Translational Z +Control Type : Check box +ToolTip : N/A +Error Message : N/A +Category : Boundary Condition +Category Index : 4 +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public CompositeFieldUsable ElementTZ { get; set; } @@ -404,30 +404,30 @@ public CompositeFieldUsable ElementTZ { get; set; } #### Property Value - CompositeFieldUsable + [CompositeFieldUsable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/CompositeField.cs) ### PenaltyScale

    Gets or sets the penalty scale.

    페날티 스케일을 가져오거나 넣어줍니다.

    - Type : Variable - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Penalty Scale - Control Type : Variable Editor - ToolTip : N/A - Error Message : N/A - Category : Boundary Condition - Category Index : 8 - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : Variable +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Penalty Scale +Control Type : Variable Editor +ToolTip : N/A +Error Message : N/A +Category : Boundary Condition +Category Index : 8 +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public ExpressionValueVariable PenaltyScale { get; set; } @@ -435,7 +435,7 @@ public ExpressionValueVariable PenaltyScale { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.md index e3e57992a9..dc05193f0e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Flexible.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Flexible +# Namespace VM.Managed.DAFUL.Flexible + ### Namespaces @@ -13,24 +14,24 @@

    This class is to represent the boundary condition.

    이 클래스는 경계조건을 나타냅니다.

    - Symmetric Modeling : No - Reference : Yes - Reference Type : VM.Managed.Reference - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : No +Reference : Yes +Reference Type : VM.Managed.Reference +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    [BoundaryConditionBase](VM.Managed.DAFUL.Flexible.BoundaryConditionBase\-1.md)

    This base class is to represent the boundary condition base.

    이 클래스는 경계조건의 기본을 나타냅니다.

    - Symmetric Modeling : No - Reference : Yes - Reference Type : VM.Managed.Reference - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : No +Reference : Yes +Reference Type : VM.Managed.Reference +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    [FlexibleBaseHelper](VM.Managed.DAFUL.Flexible.FlexibleBaseHelper.md) @@ -41,24 +42,24 @@ This class is to represent the flexibleBase helper.

    This class is to represent the boundary condition properties.

    이 클래스는 경계조건 특성을 나타냅니다.

    - Symmetric Modeling : No - Reference : Yes - Reference Type : VM.Managed.Reference - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : No +Reference : Yes +Reference Type : VM.Managed.Reference +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    [PropertyBoundaryConditionBase](VM.Managed.DAFUL.Flexible.PropertyBoundaryConditionBase.md)

    This class is to represent the boundary condition properties.

    이 클래스는 경계조건 속성을 나타냅니다.

    - Symmetric Modeling : No - Reference : Yes - Reference Type : VM.Managed.Reference - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : No +Reference : Yes +Reference Type : VM.Managed.Reference +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    ### Enums diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.AttributeRotationalBushingForce.UserType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.AttributeRotationalBushingForce.UserType.md index 4e6e63109f..e202d742aa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.AttributeRotationalBushingForce.UserType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.AttributeRotationalBushingForce.UserType.md @@ -1,4 +1,5 @@ -# Enum AttributeRotationalBushingForce.UserType +# Enum AttributeRotationalBushingForce.UserType + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFB.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.AttributeRotationalBushingForce.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.AttributeRotationalBushingForce.md index 0199e4674c..ba2f162177 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.AttributeRotationalBushingForce.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.AttributeRotationalBushingForce.md @@ -1,4 +1,5 @@ -# Class AttributeRotationalBushingForce +# Class AttributeRotationalBushingForce + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFB.dll @@ -11,9 +12,9 @@ public class AttributeRotationalBushingForce : AttributeBase, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeRotationalBushingForce](VM.Managed.DAFUL.Force.AttributeRotationalBushingForce.md) @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -119,7 +120,7 @@ public ExpressionValueVariable LowerAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### LowerArm @@ -131,7 +132,7 @@ public ExpressionValueVariable LowerArm { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TKX @@ -143,7 +144,7 @@ public double TKX { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TKY @@ -155,7 +156,7 @@ public double TKY { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TKZ @@ -167,7 +168,7 @@ public double TKZ { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TypeOfUser @@ -191,7 +192,7 @@ public ExpressionValueVariable UpperAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### UpperArm @@ -203,7 +204,7 @@ public ExpressionValueVariable UpperArm { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -217,13 +218,13 @@ public List GetKX(double dKX) #### Parameters -`dKX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dKX` double The rotational kx. #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List<[SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs).[TwoPoint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs)\> ### GetKY\(double\) @@ -235,13 +236,13 @@ public List GetKY(double dKY) #### Parameters -`dKY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dKY` double The rotational ky. #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List<[SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs).[TwoPoint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs)\> ### GetKZ\(\) @@ -253,7 +254,7 @@ public List GetKZ() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List<[SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs).[TwoPoint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs)\> ### GetKZ\(double\) @@ -266,11 +267,11 @@ public List GetKZ(double dStiffness) #### Parameters -`dStiffness` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dStiffness` double #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List<[SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs).[TwoPoint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs)\> ### Initialize\(ConvertFactor\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.Bush.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.Bush.md index 08aa92c97b..08e5310c6d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.Bush.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.Bush.md @@ -1,4 +1,5 @@ -# Class Bush +# Class Bush + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFB.dll @@ -11,15 +12,15 @@ public class Bush : Force, IObservableObject, IDisposableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← [Force](VM.Managed.DAFUL.Force.Force\-1.md) ← [Bush](VM.Managed.DAFUL.Force.Bush.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -75,65 +76,65 @@ ITemplateObject, [Force.WriteMarker\(XmlWriter, Marker, string\)](VM.Managed.DAFUL.Force.Force\-1.md\#VM\_Managed\_DAFUL\_Force\_Force\_1\_WriteMarker\_System\_Xml\_XmlWriter\_VM\_Managed\_DAFUL\_Marker\_System\_String\_), [Force.ReadMarker\(XmlReader, Marker, string\)](VM.Managed.DAFUL.Force.Force\-1.md\#VM\_Managed\_DAFUL\_Force\_Force\_1\_ReadMarker\_System\_Xml\_XmlReader\_VM\_Managed\_DAFUL\_Marker\_System\_String\_), [Force.UseForSimulationScenario](VM.Managed.DAFUL.Force.Force\-1.md\#VM\_Managed\_DAFUL\_Force\_Force\_1\_UseForSimulationScenario), -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -232,7 +233,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -271,7 +272,7 @@ public Bush(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the bush force. @@ -288,7 +289,7 @@ public double DiameterOfGraphic { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Generable @@ -300,7 +301,7 @@ public override bool Generable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LengthOfGraphic @@ -313,7 +314,7 @@ public double LengthOfGraphic { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ReportTypeImpl @@ -345,7 +346,7 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -373,7 +374,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -387,7 +388,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -401,7 +402,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.BushPropertyXmlSerializer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.BushPropertyXmlSerializer.md index 689b1c68ba..aea6cdccbf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.BushPropertyXmlSerializer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.BushPropertyXmlSerializer.md @@ -1,4 +1,5 @@ -# Class BushPropertyXmlSerializer +# Class BushPropertyXmlSerializer + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFB.dll @@ -11,15 +12,15 @@ public class BushPropertyXmlSerializer : PropertyXmlSerializer #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← AbstractXmlSerializer ← -PropertyXmlSerializer ← +[PropertyXmlSerializer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [BushPropertyXmlSerializer](VM.Managed.DAFUL.Force.BushPropertyXmlSerializer.md) #### Inherited Members -PropertyXmlSerializer.ReadXml\(XmlReader\), -PropertyXmlSerializer.WriteXml\(XmlWriter\) +[PropertyXmlSerializer.ReadXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[PropertyXmlSerializer.WriteXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) #### Extension Methods @@ -63,7 +64,7 @@ public override sealed void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -77,7 +78,7 @@ public override sealed void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.Force-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.Force-1.md index 92e5b4dcff..db407ca8c0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.Force-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.Force-1.md @@ -1,4 +1,5 @@ -# Class Force +# Class Force + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFB.dll @@ -17,15 +18,15 @@ The type of the property. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← [Force](VM.Managed.DAFUL.Force.Force\-1.md) #### Implements @@ -35,7 +36,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -74,65 +75,65 @@ ITorqueReferenceForBearing #### Inherited Members -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -231,7 +232,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -270,7 +271,7 @@ public Force(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the force. @@ -286,7 +287,7 @@ protected virtual bool UseForSimulationScenario { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -314,21 +315,21 @@ protected virtual bool ReadMarker(XmlReader reader, Marker marker, string strNam #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. -`marker` Marker +`marker` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) The marker. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the specified value is change; otherwise, false. @@ -342,19 +343,19 @@ protected virtual bool WriteMarker(XmlWriter writer, Marker marker, string strNa #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. -`marker` Marker +`marker` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) The marker. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.ForceFunction.FunctionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.ForceFunction.FunctionType.md index b214806053..33a47a2d36 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.ForceFunction.FunctionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.ForceFunction.FunctionType.md @@ -1,4 +1,5 @@ -# Enum ForceFunction.FunctionType +# Enum ForceFunction.FunctionType + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFP.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.ForceFunction.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.ForceFunction.md index 269a8e1f2c..d32d7ee6b2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.ForceFunction.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.ForceFunction.md @@ -1,4 +1,5 @@ -# Class ForceFunction +# Class ForceFunction + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFP.dll @@ -11,9 +12,9 @@ public abstract class ForceFunction : LinkContainer, IObservableObject, IDisposa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ForceFunction](VM.Managed.DAFUL.Force.ForceFunction.md) @@ -80,7 +81,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -119,7 +120,7 @@ protected ForceFunction(PropertyForce owner) #### Parameters -`owner` PropertyForce +`owner` [PropertyForce](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) The owner force property. @@ -135,7 +136,7 @@ public bool IsUseApplyAction { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Type @@ -161,7 +162,7 @@ public virtual void ReadTemplate(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -175,7 +176,7 @@ public virtual void WriteTemplate(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.ForcePropertyDocument-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.ForcePropertyDocument-1.md index 84301663fa..2aa482ca51 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.ForcePropertyDocument-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.ForcePropertyDocument-1.md @@ -1,4 +1,5 @@ -# Class ForcePropertyDocument +# Class ForcePropertyDocument + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFB.dll @@ -17,14 +18,14 @@ The type of the prop. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← -PropertyDocumentBase ← -PropertyDocument ← +[PropertyDocumentBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs) ← +[PropertyDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs) ← [ForcePropertyDocument](VM.Managed.DAFUL.Force.ForcePropertyDocument\-1.md) #### Implements @@ -43,7 +44,7 @@ IOwned, IHasID, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IPropertyDocument, IUnitChange, IXMLFormatable, @@ -51,47 +52,47 @@ IForcePropertyDocument #### Inherited Members -PropertyDocument.Save\(TextWriter\), -PropertyDocument.Load\(TextReader\), -PropertyDocument.OnPostMakeDocument\(DocCreateInfo\), -PropertyDocument.Property, -PropertyDocument.UntypedProperty, -PropertyDocument.UntypedPropertyOwner, -PropertyDocument.FilePropertyOwner, -PropertyDocument.PropertyType, -PropertyDocumentBase.Save\(string\), -PropertyDocumentBase.SerializeObj\(XmlWriter, T, string\), -PropertyDocumentBase.DeserializeObj\(XmlReader, string, Type\), -PropertyDocumentBase.Save\(TextWriter\), -PropertyDocumentBase.Save\(Stream\), -PropertyDocumentBase.Load\(string\), -PropertyDocumentBase.Load\(TextReader\), -PropertyDocumentBase.Load\(Stream\), -PropertyDocumentBase.SetUnit\(Unit\), -PropertyDocumentBase.AddReferenceDocument\(Document\), -PropertyDocumentBase.RemoveReferenceDocument\(Document\), -PropertyDocumentBase.FindLocal\(string\), -PropertyDocumentBase.Add\(ObjectBase\), -PropertyDocumentBase.OnPostAdd\(ObjectBase\), -PropertyDocumentBase.AddImpl\(ObjectBase\), -PropertyDocumentBase.IsTypeSupported\(Type\), -PropertyDocumentBase.OnDeserialization\(object\), -PropertyDocumentBase.CreateView\(UIntPtr\), -PropertyDocumentBase.TriggerPostMakeDocument\(PropertyDocCreateInfo\), -PropertyDocumentBase.OnPostMakeDocument\(DocCreateInfo\), -PropertyDocumentBase.GetData\(XmlNode\), -PropertyDocumentBase.SetData\(XmlNode\), -PropertyDocumentBase.Reload, -PropertyDocumentBase.UntypedProperty, -PropertyDocumentBase.PropertyType, -PropertyDocumentBase.Modified, -PropertyDocumentBase.UntypedPropertyOwner, -PropertyDocumentBase.DocumentSessionOverride, -PropertyDocumentBase.SetDocumentSessionOverride, -PropertyDocumentBase.OwnedList, -PropertyDocumentBase.OwnedCollection, -PropertyDocumentBase.CanClose, -PropertyDocumentBase.IsPropertySupport, +[PropertyDocument.Save\(TextWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.Load\(TextReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.UntypedPropertyOwner](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.FilePropertyOwner](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.PropertyType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Save\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.SerializeObj\(XmlWriter, T, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.DeserializeObj\(XmlReader, string, Type\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Save\(TextWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Save\(Stream\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Load\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Load\(TextReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Load\(Stream\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.SetUnit\(Unit\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.AddReferenceDocument\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.RemoveReferenceDocument\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Add\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OnPostAdd\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.AddImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.IsTypeSupported\(Type\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.CreateView\(UIntPtr\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.TriggerPostMakeDocument\(PropertyDocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Reload](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.PropertyType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Modified](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.UntypedPropertyOwner](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OwnedList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OwnedCollection](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.CanClose](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.IsPropertySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), Document.g\_OpenDocuments, Document.m\_unit, Document.m\_unitKernal, @@ -286,7 +287,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -341,7 +342,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -367,7 +368,7 @@ The object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if is enabled [the specified object]; otherwise, false. @@ -381,7 +382,7 @@ public override void IsTypeSupported(Type type) #### Parameters -`type` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`type` Type The type. @@ -413,7 +414,7 @@ protected override void SetEnableImpl(ObjectBase ob, bool bEnable) The object. -`bEnable` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bEnable` bool if set to true enable. @@ -431,7 +432,7 @@ public override void UpdateEnable(ObjectBase obj, bool bEnabled) The object. -`bEnabled` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bEnabled` bool if set to true enabled. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.ForceStandard.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.ForceStandard.md index 7d68218b5d..bdcbb9d6d1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.ForceStandard.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.ForceStandard.md @@ -1,4 +1,5 @@ -# Class ForceStandard +# Class ForceStandard + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFP.dll @@ -11,9 +12,9 @@ public sealed class ForceStandard : ForceFunction, IObservableObject, IDisposabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ForceFunction](VM.Managed.DAFUL.Force.ForceFunction.md) ← [ForceStandard](VM.Managed.DAFUL.Force.ForceStandard.md) @@ -96,7 +97,7 @@ public ForceStandard(PropertyForce owner) #### Parameters -`owner` PropertyForce +`owner` [PropertyForce](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) The owner force property. @@ -112,7 +113,7 @@ public Function Function { get; set; } #### Property Value - Function + [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) ### Type @@ -138,7 +139,7 @@ public override void ReadTemplate(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -152,7 +153,7 @@ public override void WriteTemplate(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.ForceUserSubroutine.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.ForceUserSubroutine.md index 0e7d13d45a..0a677e8f47 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.ForceUserSubroutine.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.ForceUserSubroutine.md @@ -1,4 +1,5 @@ -# Class ForceUserSubroutine +# Class ForceUserSubroutine + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFP.dll @@ -11,9 +12,9 @@ public sealed class ForceUserSubroutine : ForceFunction, IObservableObject, IDis #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ForceFunction](VM.Managed.DAFUL.Force.ForceFunction.md) ← [ForceUserSubroutine](VM.Managed.DAFUL.Force.ForceUserSubroutine.md) @@ -97,7 +98,7 @@ public ForceUserSubroutine(PropertyForce owner) #### Parameters -`owner` PropertyForce +`owner` [PropertyForce](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) The owner force property. @@ -125,7 +126,7 @@ public UserSubroutine UserSubroutine { get; set; } #### Property Value - UserSubroutine + [UserSubroutine](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSP/UserSubroutine.cs) ## Methods @@ -139,7 +140,7 @@ public override void ReadTemplate(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -153,7 +154,7 @@ public override void WriteTemplate(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.IReadableForceMarker.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.IReadableForceMarker.md index d60910c708..9ae7cf39f2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.IReadableForceMarker.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.IReadableForceMarker.md @@ -1,4 +1,5 @@ -# Interface IReadableForceMarker +# Interface IReadableForceMarker + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFB.dll @@ -27,11 +28,11 @@ void ReadableActionMarker(ref bool bReadablePos, ref bool bReadableOri) #### Parameters -`bReadablePos` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReadablePos` bool if set to true [b readable pos]. -`bReadableOri` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReadableOri` bool if set to true [b readable ori]. @@ -45,11 +46,11 @@ void ReadableBaseMarker(ref bool bReadablePos, ref bool bReadableOri) #### Parameters -`bReadablePos` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReadablePos` bool if set to true [b readable pos]. -`bReadableOri` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReadableOri` bool if set to true [b readable ori]. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.IReadableForceMarkerImpl.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.IReadableForceMarkerImpl.md index 13aef39bb4..9e83c20cf9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.IReadableForceMarkerImpl.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.IReadableForceMarkerImpl.md @@ -1,4 +1,5 @@ -# Class IReadableForceMarkerImpl +# Class IReadableForceMarkerImpl + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFB.dll @@ -11,7 +12,7 @@ public class IReadableForceMarkerImpl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [IReadableForceMarkerImpl](VM.Managed.DAFUL.Force.IReadableForceMarkerImpl.md) #### Extension Methods @@ -40,15 +41,15 @@ public static void ReadableActionMarker(Marker actionMarker, ref bool bReadableP #### Parameters -`actionMarker` Marker +`actionMarker` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) The action marker. -`bReadablePos` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReadablePos` bool if set to true [b readable pos]. -`bReadableOri` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReadableOri` bool if set to true [b readable ori]. @@ -62,15 +63,15 @@ public static void ReadableBaseMarker(Marker baseMarker, ref bool bReadablePos, #### Parameters -`baseMarker` Marker +`baseMarker` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) The base marker. -`bReadablePos` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReadablePos` bool if set to true [b readable pos]. -`bReadableOri` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReadableOri` bool if set to true [b readable ori]. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.Matrix.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.Matrix.md index f7fb78d08c..f60c281ef8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.Matrix.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.Matrix.md @@ -1,4 +1,5 @@ -# Class Matrix +# Class Matrix + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFP.dll @@ -11,16 +12,16 @@ public class Matrix : Force, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← -Force ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← +[Force](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [Matrix](VM.Managed.DAFUL.Force.Matrix.md) #### Implements @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -69,69 +70,69 @@ ITorqueReferenceForBearing #### Inherited Members -Force.Initialize\(Unit.ConvertFactor\), -Force.WriteMarker\(XmlWriter, Marker, string\), -Force.ReadMarker\(XmlReader, Marker, string\), -Force.UseForSimulationScenario, -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Force.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.WriteMarker\(XmlWriter, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.ReadMarker\(XmlReader, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.UseForSimulationScenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -230,7 +231,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -269,7 +270,7 @@ public Matrix(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the matrix force. @@ -285,7 +286,7 @@ public override bool Generable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReportTypeImpl @@ -325,7 +326,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.MatrixForceFunction.FunctionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.MatrixForceFunction.FunctionType.md index f95a38864b..0d83df6830 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.MatrixForceFunction.FunctionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.MatrixForceFunction.FunctionType.md @@ -1,4 +1,5 @@ -# Enum MatrixForceFunction.FunctionType +# Enum MatrixForceFunction.FunctionType + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFP.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.MatrixForceFunction.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.MatrixForceFunction.md index aabc31ca9d..2858f558b5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.MatrixForceFunction.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.MatrixForceFunction.md @@ -1,4 +1,5 @@ -# Class MatrixForceFunction +# Class MatrixForceFunction + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFP.dll @@ -11,9 +12,9 @@ public abstract class MatrixForceFunction : LinkContainer, IObservableObject, ID #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MatrixForceFunction](VM.Managed.DAFUL.Force.MatrixForceFunction.md) @@ -80,7 +81,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -135,7 +136,7 @@ public bool IsUseSynchro { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RefAngle @@ -147,7 +148,7 @@ public double[] RefAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### RefLength @@ -159,7 +160,7 @@ public double[] RefLength { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### Type @@ -199,7 +200,7 @@ public virtual void ReadTemplate(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -213,7 +214,7 @@ public virtual void WriteTemplate(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.MatrixForceStandard.ViscousDampingType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.MatrixForceStandard.ViscousDampingType.md index c90ad7c08f..fc0badba4e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.MatrixForceStandard.ViscousDampingType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.MatrixForceStandard.ViscousDampingType.md @@ -1,4 +1,5 @@ -# Enum MatrixForceStandard.ViscousDampingType +# Enum MatrixForceStandard.ViscousDampingType + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFP.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.MatrixForceStandard.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.MatrixForceStandard.md index bf2ffa8f3d..d197bcd0d2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.MatrixForceStandard.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.MatrixForceStandard.md @@ -1,4 +1,5 @@ -# Class MatrixForceStandard +# Class MatrixForceStandard + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFP.dll @@ -11,9 +12,9 @@ public sealed class MatrixForceStandard : MatrixForceFunction, IObservableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MatrixForceFunction](VM.Managed.DAFUL.Force.MatrixForceFunction.md) ← [MatrixForceStandard](VM.Managed.DAFUL.Force.MatrixForceStandard.md) @@ -127,7 +128,7 @@ public double[] MatCRR { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### MatCRT @@ -139,7 +140,7 @@ public double[] MatCRT { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### MatCTR @@ -151,7 +152,7 @@ public double[] MatCTR { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### MatCTT @@ -163,7 +164,7 @@ public double[] MatCTT { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### MatKRR @@ -175,7 +176,7 @@ public double[] MatKRR { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### MatKRT @@ -187,7 +188,7 @@ public double[] MatKRT { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### MatKTR @@ -199,7 +200,7 @@ public double[] MatKTR { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### MatKTT @@ -211,7 +212,7 @@ public double[] MatKTT { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### PreLoad @@ -223,7 +224,7 @@ public double[] PreLoad { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### PreTorque @@ -235,7 +236,7 @@ public double[] PreTorque { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### Ratio @@ -247,7 +248,7 @@ public ExpressionValueVariable Ratio { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Type @@ -287,7 +288,7 @@ public override void ReadTemplate(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -301,7 +302,7 @@ public override void WriteTemplate(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.MatrixForceUserSubroutine.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.MatrixForceUserSubroutine.md index b25a772d49..e789134167 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.MatrixForceUserSubroutine.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.MatrixForceUserSubroutine.md @@ -1,4 +1,5 @@ -# Class MatrixForceUserSubroutine +# Class MatrixForceUserSubroutine + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFP.dll @@ -11,9 +12,9 @@ public sealed class MatrixForceUserSubroutine : MatrixForceFunction, IObservable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MatrixForceFunction](VM.Managed.DAFUL.Force.MatrixForceFunction.md) ← [MatrixForceUserSubroutine](VM.Managed.DAFUL.Force.MatrixForceUserSubroutine.md) @@ -128,7 +129,7 @@ public UserSubroutine UserSubroutine { get; set; } #### Property Value - UserSubroutine + [UserSubroutine](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSP/UserSubroutine.cs) ## Methods @@ -156,7 +157,7 @@ public override void ReadTemplate(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -170,7 +171,7 @@ public override void WriteTemplate(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyBush.InputType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyBush.InputType.md index 9bfff75d52..850e7e6372 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyBush.InputType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyBush.InputType.md @@ -1,4 +1,5 @@ -# Enum PropertyBush.InputType +# Enum PropertyBush.InputType + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFB.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyBush.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyBush.md index cf8efa28f4..6ed47958b4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyBush.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyBush.md @@ -1,4 +1,5 @@ -# Class PropertyBush +# Class PropertyBush + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFB.dll @@ -11,13 +12,13 @@ public class PropertyBush : PropertyForce, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyForce](VM.Managed.DAFUL.Force.PropertyForce.md) ← [PropertyBush](VM.Managed.DAFUL.Force.PropertyBush.md) @@ -36,7 +37,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -48,12 +49,12 @@ IArgument [PropertyForce.ArgumentType](VM.Managed.DAFUL.Force.PropertyForce.md\#VM\_Managed\_DAFUL\_Force\_PropertyForce\_ArgumentType), [PropertyForce.ReferenceType](VM.Managed.DAFUL.Force.PropertyForce.md\#VM\_Managed\_DAFUL\_Force\_PropertyForce\_ReferenceType), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -152,7 +153,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -191,11 +192,11 @@ protected PropertyBush(string strProxyName, string strBuildInfo) #### Parameters -`strProxyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strProxyName` string Name of the proxy. -`strBuildInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBuildInfo` string The build info. @@ -221,7 +222,7 @@ public double GraphicDiameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GraphicLength @@ -231,7 +232,7 @@ public double GraphicLength { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### IsUsePreTorque @@ -243,7 +244,7 @@ public bool IsUsePreTorque { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsUsePreload @@ -255,7 +256,7 @@ public bool IsUsePreload { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsUseStaticBushing @@ -267,7 +268,7 @@ public bool IsUseStaticBushing { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PreTorqueX @@ -279,7 +280,7 @@ public ExpressionValueVariable PreTorqueX { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PreTorqueY @@ -291,7 +292,7 @@ public ExpressionValueVariable PreTorqueY { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PreTorqueZ @@ -303,7 +304,7 @@ public ExpressionValueVariable PreTorqueZ { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PreloadX @@ -315,7 +316,7 @@ public ExpressionValueVariable PreloadX { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PreloadY @@ -327,7 +328,7 @@ public ExpressionValueVariable PreloadY { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PreloadZ @@ -339,7 +340,7 @@ public ExpressionValueVariable PreloadZ { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ReferenceType @@ -351,7 +352,7 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RotCType @@ -376,7 +377,7 @@ public ExpressionValueVariable RotCX { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RotCXSpline @@ -388,7 +389,7 @@ public Spline RotCXSpline { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### RotCY @@ -400,7 +401,7 @@ public ExpressionValueVariable RotCY { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RotCYSpline @@ -412,7 +413,7 @@ public Spline RotCYSpline { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### RotCZ @@ -424,7 +425,7 @@ public ExpressionValueVariable RotCZ { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RotCZSpline @@ -436,7 +437,7 @@ public Spline RotCZSpline { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### RotKType @@ -461,7 +462,7 @@ public ExpressionValueVariable RotKX { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RotKXSpline @@ -473,7 +474,7 @@ public Spline RotKXSpline { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### RotKY @@ -485,7 +486,7 @@ public ExpressionValueVariable RotKY { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RotKYSpline @@ -497,7 +498,7 @@ public Spline RotKYSpline { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### RotKZ @@ -509,7 +510,7 @@ public ExpressionValueVariable RotKZ { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RotKZSpline @@ -521,7 +522,7 @@ public Spline RotKZSpline { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### RotationalOneSideBushingX @@ -533,7 +534,7 @@ public bool RotationalOneSideBushingX { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RotationalOneSideBushingY @@ -545,7 +546,7 @@ public bool RotationalOneSideBushingY { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RotationalOneSideBushingZ @@ -557,7 +558,7 @@ public bool RotationalOneSideBushingZ { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TransCType @@ -582,7 +583,7 @@ public ExpressionValueVariable TransCX { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TransCXSpline @@ -594,7 +595,7 @@ public Spline TransCXSpline { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### TransCY @@ -606,7 +607,7 @@ public ExpressionValueVariable TransCY { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TransCYSpline @@ -618,7 +619,7 @@ public Spline TransCYSpline { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### TransCZ @@ -630,7 +631,7 @@ public ExpressionValueVariable TransCZ { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TransCZSpline @@ -642,7 +643,7 @@ public Spline TransCZSpline { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### TransKType @@ -667,7 +668,7 @@ public ExpressionValueVariable TransKX { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TransKXSpline @@ -679,7 +680,7 @@ public Spline TransKXSpline { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### TransKY @@ -691,7 +692,7 @@ public ExpressionValueVariable TransKY { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TransKYSpline @@ -703,7 +704,7 @@ public Spline TransKYSpline { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### TransKZ @@ -715,7 +716,7 @@ public ExpressionValueVariable TransKZ { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TransKZSpline @@ -727,7 +728,7 @@ public Spline TransKZSpline { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### TranslationalOneSideBushingX @@ -739,7 +740,7 @@ public bool TranslationalOneSideBushingX { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TranslationalOneSideBushingY @@ -751,7 +752,7 @@ public bool TranslationalOneSideBushingY { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TranslationalOneSideBushingZ @@ -763,7 +764,7 @@ public bool TranslationalOneSideBushingZ { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TypeOfRotCX @@ -933,7 +934,7 @@ public override void Draw(Canvas canvas, TMatrix matTBase, TMatrix matTAct, bool #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs)

    The canvas has icon information.

    @@ -945,7 +946,7 @@ public override void Draw(Canvas canvas, TMatrix matTBase, TMatrix matTAct, bool

    The action transformation.

    -`bHide` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHide` bool

    The hide flag.

    @@ -973,7 +974,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -987,7 +988,7 @@ protected override void OnLinkReserved(ILink link, object objNotifier, EventArgs `link` ILink -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object -`args` [EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) +`args` EventArgs diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyBushDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyBushDocument.md index 5a5a672f6c..9366453ff7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyBushDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyBushDocument.md @@ -1,4 +1,5 @@ -# Class PropertyBushDocument +# Class PropertyBushDocument + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFB.dll @@ -11,14 +12,14 @@ public class PropertyBushDocument : ForcePropertyDocument, IOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← -PropertyDocumentBase ← -PropertyDocument ← +[PropertyDocumentBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs) ← +[PropertyDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs) ← [ForcePropertyDocument](VM.Managed.DAFUL.Force.ForcePropertyDocument\-1.md) ← [PropertyBushDocument](VM.Managed.DAFUL.Force.PropertyBushDocument.md) @@ -38,7 +39,7 @@ IOwned, IHasID, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IPropertyDocument, IUnitChange, IXMLFormatable, @@ -53,47 +54,47 @@ IForcePropertyDocument [ForcePropertyDocument.SetEnableImpl\(ObjectBase, bool\)](VM.Managed.DAFUL.Force.ForcePropertyDocument\-1.md\#VM\_Managed\_DAFUL\_Force\_ForcePropertyDocument\_1\_SetEnableImpl\_VM\_Managed\_ObjectBase\_System\_Boolean\_), [ForcePropertyDocument.UpdateEnable\(ObjectBase, bool\)](VM.Managed.DAFUL.Force.ForcePropertyDocument\-1.md\#VM\_Managed\_DAFUL\_Force\_ForcePropertyDocument\_1\_UpdateEnable\_VM\_Managed\_ObjectBase\_System\_Boolean\_), [ForcePropertyDocument.OnPostMakeDocument\(DocCreateInfo\)](VM.Managed.DAFUL.Force.ForcePropertyDocument\-1.md\#VM\_Managed\_DAFUL\_Force\_ForcePropertyDocument\_1\_OnPostMakeDocument\_VM\_Managed\_DocCreateInfo\_), -PropertyDocument.Save\(TextWriter\), -PropertyDocument.Load\(TextReader\), -PropertyDocument.OnPostMakeDocument\(DocCreateInfo\), -PropertyDocument.Property, -PropertyDocument.UntypedProperty, -PropertyDocument.UntypedPropertyOwner, -PropertyDocument.FilePropertyOwner, -PropertyDocument.PropertyType, -PropertyDocumentBase.Save\(string\), -PropertyDocumentBase.SerializeObj\(XmlWriter, T, string\), -PropertyDocumentBase.DeserializeObj\(XmlReader, string, Type\), -PropertyDocumentBase.Save\(TextWriter\), -PropertyDocumentBase.Save\(Stream\), -PropertyDocumentBase.Load\(string\), -PropertyDocumentBase.Load\(TextReader\), -PropertyDocumentBase.Load\(Stream\), -PropertyDocumentBase.SetUnit\(Unit\), -PropertyDocumentBase.AddReferenceDocument\(Document\), -PropertyDocumentBase.RemoveReferenceDocument\(Document\), -PropertyDocumentBase.FindLocal\(string\), -PropertyDocumentBase.Add\(ObjectBase\), -PropertyDocumentBase.OnPostAdd\(ObjectBase\), -PropertyDocumentBase.AddImpl\(ObjectBase\), -PropertyDocumentBase.IsTypeSupported\(Type\), -PropertyDocumentBase.OnDeserialization\(object\), -PropertyDocumentBase.CreateView\(UIntPtr\), -PropertyDocumentBase.TriggerPostMakeDocument\(PropertyDocCreateInfo\), -PropertyDocumentBase.OnPostMakeDocument\(DocCreateInfo\), -PropertyDocumentBase.GetData\(XmlNode\), -PropertyDocumentBase.SetData\(XmlNode\), -PropertyDocumentBase.Reload, -PropertyDocumentBase.UntypedProperty, -PropertyDocumentBase.PropertyType, -PropertyDocumentBase.Modified, -PropertyDocumentBase.UntypedPropertyOwner, -PropertyDocumentBase.DocumentSessionOverride, -PropertyDocumentBase.SetDocumentSessionOverride, -PropertyDocumentBase.OwnedList, -PropertyDocumentBase.OwnedCollection, -PropertyDocumentBase.CanClose, -PropertyDocumentBase.IsPropertySupport, +[PropertyDocument.Save\(TextWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.Load\(TextReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.UntypedPropertyOwner](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.FilePropertyOwner](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.PropertyType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Save\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.SerializeObj\(XmlWriter, T, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.DeserializeObj\(XmlReader, string, Type\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Save\(TextWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Save\(Stream\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Load\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Load\(TextReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Load\(Stream\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.SetUnit\(Unit\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.AddReferenceDocument\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.RemoveReferenceDocument\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Add\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OnPostAdd\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.AddImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.IsTypeSupported\(Type\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.CreateView\(UIntPtr\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.TriggerPostMakeDocument\(PropertyDocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Reload](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.PropertyType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Modified](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.UntypedPropertyOwner](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OwnedList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OwnedCollection](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.CanClose](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.IsPropertySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), Document.g\_OpenDocuments, Document.m\_unit, Document.m\_unitKernal, @@ -288,7 +289,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyBushFile.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyBushFile.md index c43bfcaaec..ef17b39da0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyBushFile.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyBushFile.md @@ -1,4 +1,5 @@ -# Class PropertyBushFile +# Class PropertyBushFile + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFB.dll @@ -11,13 +12,13 @@ public class PropertyBushFile : PropertyBush, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyForce](VM.Managed.DAFUL.Force.PropertyForce.md) ← [PropertyBush](VM.Managed.DAFUL.Force.PropertyBush.md) ← [PropertyBushFile](VM.Managed.DAFUL.Force.PropertyBushFile.md) @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -109,12 +110,12 @@ IFileProperty [PropertyBush.ArgumentType](VM.Managed.DAFUL.Force.PropertyBush.md\#VM\_Managed\_DAFUL\_Force\_PropertyBush\_ArgumentType), [PropertyForce.ArgumentType](VM.Managed.DAFUL.Force.PropertyForce.md\#VM\_Managed\_DAFUL\_Force\_PropertyForce\_ArgumentType), [PropertyForce.ReferenceType](VM.Managed.DAFUL.Force.PropertyForce.md\#VM\_Managed\_DAFUL\_Force\_PropertyForce\_ReferenceType), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -213,7 +214,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyForce.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyForce.md index 2a322aff25..0c8a95a5ba 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyForce.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyForce.md @@ -1,4 +1,5 @@ -# Class PropertyForce +# Class PropertyForce + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFB.dll @@ -11,13 +12,13 @@ public abstract class PropertyForce : Property, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyForce](VM.Managed.DAFUL.Force.PropertyForce.md) #### Derived @@ -37,7 +38,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -47,12 +48,12 @@ IArgument #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -151,7 +152,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -190,11 +191,11 @@ protected PropertyForce(string strProxyName, string strBuildInfo) #### Parameters -`strProxyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strProxyName` string Name of the proxy. -`strBuildInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBuildInfo` string The build info. @@ -222,5 +223,5 @@ public virtual string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyMatrix.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyMatrix.md index 48e3def176..b6e43fed81 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyMatrix.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyMatrix.md @@ -1,4 +1,5 @@ -# Class PropertyMatrix +# Class PropertyMatrix + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFP.dll @@ -11,14 +12,14 @@ public class PropertyMatrix : PropertyForce, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyForce ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyForce](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [PropertyMatrix](VM.Managed.DAFUL.Force.PropertyMatrix.md) #### Implements @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -42,14 +43,14 @@ IArgument #### Inherited Members -PropertyForce.ArgumentType, -PropertyForce.ReferenceType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyForce.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[PropertyForce.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -213,7 +214,7 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyRScalar.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyRScalar.md index 4ad2b71423..3f48c840b9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyRScalar.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyRScalar.md @@ -1,4 +1,5 @@ -# Class PropertyRScalar +# Class PropertyRScalar + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFP.dll @@ -11,14 +12,14 @@ public class PropertyRScalar : PropertyForce, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyForce ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyForce](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [PropertyRScalar](VM.Managed.DAFUL.Force.PropertyRScalar.md) #### Implements @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -42,14 +43,14 @@ IArgument #### Inherited Members -PropertyForce.ArgumentType, -PropertyForce.ReferenceType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyForce.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[PropertyForce.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -213,7 +214,7 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyRSpringDamper.InputType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyRSpringDamper.InputType.md index 4abb78b4d6..ea3b93bd75 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyRSpringDamper.InputType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyRSpringDamper.InputType.md @@ -1,4 +1,5 @@ -# Enum PropertyRSpringDamper.InputType +# Enum PropertyRSpringDamper.InputType + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFB.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyRSpringDamper.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyRSpringDamper.md index acb074014f..feb4a37293 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyRSpringDamper.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyRSpringDamper.md @@ -1,4 +1,5 @@ -# Class PropertyRSpringDamper +# Class PropertyRSpringDamper + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFB.dll @@ -11,13 +12,13 @@ public class PropertyRSpringDamper : PropertyForce, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyForce](VM.Managed.DAFUL.Force.PropertyForce.md) ← [PropertyRSpringDamper](VM.Managed.DAFUL.Force.PropertyRSpringDamper.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -44,12 +45,12 @@ IArgument [PropertyForce.ArgumentType](VM.Managed.DAFUL.Force.PropertyForce.md\#VM\_Managed\_DAFUL\_Force\_PropertyForce\_ArgumentType), [PropertyForce.ReferenceType](VM.Managed.DAFUL.Force.PropertyForce.md\#VM\_Managed\_DAFUL\_Force\_PropertyForce\_ReferenceType), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -201,7 +202,7 @@ public ExpressionValueVariable DampingCoef { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DampingSpline @@ -213,7 +214,7 @@ public Spline DampingSpline { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### DampingType @@ -237,7 +238,7 @@ public bool IsUseSynchro { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PreTorque @@ -249,7 +250,7 @@ public ExpressionValueVariable PreTorque { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ReferenceType @@ -261,7 +262,7 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SpringCoef @@ -273,7 +274,7 @@ public ExpressionValueVariable SpringCoef { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### SpringSpline @@ -285,7 +286,7 @@ public Spline SpringSpline { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### SpringType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyTScalar.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyTScalar.md index 9f0f76db22..0ab0f064b0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyTScalar.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyTScalar.md @@ -1,4 +1,5 @@ -# Class PropertyTScalar +# Class PropertyTScalar + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFP.dll @@ -11,14 +12,14 @@ public class PropertyTScalar : PropertyForce, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyForce ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyForce](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [PropertyTScalar](VM.Managed.DAFUL.Force.PropertyTScalar.md) #### Implements @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -42,14 +43,14 @@ IArgument #### Inherited Members -PropertyForce.ArgumentType, -PropertyForce.ReferenceType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyForce.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[PropertyForce.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -213,7 +214,7 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyTSpringDamper.InputType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyTSpringDamper.InputType.md index 0dbff48a4f..1b27fc7e4e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyTSpringDamper.InputType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyTSpringDamper.InputType.md @@ -1,4 +1,5 @@ -# Enum PropertyTSpringDamper.InputType +# Enum PropertyTSpringDamper.InputType + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFB.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyTSpringDamper.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyTSpringDamper.md index 4fd8cac06d..c003444383 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyTSpringDamper.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyTSpringDamper.md @@ -1,4 +1,5 @@ -# Class PropertyTSpringDamper +# Class PropertyTSpringDamper + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFB.dll @@ -11,13 +12,13 @@ public class PropertyTSpringDamper : PropertyForce, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyForce](VM.Managed.DAFUL.Force.PropertyForce.md) ← [PropertyTSpringDamper](VM.Managed.DAFUL.Force.PropertyTSpringDamper.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -44,12 +45,12 @@ IArgument [PropertyForce.ArgumentType](VM.Managed.DAFUL.Force.PropertyForce.md\#VM\_Managed\_DAFUL\_Force\_PropertyForce\_ArgumentType), [PropertyForce.ReferenceType](VM.Managed.DAFUL.Force.PropertyForce.md\#VM\_Managed\_DAFUL\_Force\_PropertyForce\_ReferenceType), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -201,7 +202,7 @@ public ExpressionValueVariable DampingCoef { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DampingSpline @@ -213,7 +214,7 @@ public Spline DampingSpline { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### DampingType @@ -237,7 +238,7 @@ public bool IsUseSynchro { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PreLoad @@ -249,7 +250,7 @@ public ExpressionValueVariable PreLoad { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ReferenceType @@ -261,7 +262,7 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SpringCoef @@ -273,7 +274,7 @@ public ExpressionValueVariable SpringCoef { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### SpringSpline @@ -285,7 +286,7 @@ public Spline SpringSpline { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### SpringType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyVector.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyVector.md index 3f9ad4a9dd..b44cabdd1e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyVector.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.PropertyVector.md @@ -1,4 +1,5 @@ -# Class PropertyVector +# Class PropertyVector + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFP.dll @@ -11,14 +12,14 @@ public class PropertyVector : PropertyForce, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyForce ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyForce](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [PropertyVector](VM.Managed.DAFUL.Force.PropertyVector.md) #### Implements @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -42,14 +43,14 @@ IArgument #### Inherited Members -PropertyForce.ArgumentType, -PropertyForce.ReferenceType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyForce.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[PropertyForce.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -213,7 +214,7 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.RScalar.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.RScalar.md index df4bd9824f..2a396c3f01 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.RScalar.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.RScalar.md @@ -1,4 +1,5 @@ -# Class RScalar +# Class RScalar + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFP.dll @@ -11,16 +12,16 @@ public class RScalar : Force, IObservableObject, IDisposableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← -Force ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← +[Force](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [RScalar](VM.Managed.DAFUL.Force.RScalar.md) #### Implements @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -69,69 +70,69 @@ ITorqueReferenceForBearing #### Inherited Members -Force.Initialize\(Unit.ConvertFactor\), -Force.WriteMarker\(XmlWriter, Marker, string\), -Force.ReadMarker\(XmlReader, Marker, string\), -Force.UseForSimulationScenario, -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Force.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.WriteMarker\(XmlWriter, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.ReadMarker\(XmlReader, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.UseForSimulationScenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -230,7 +231,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -269,7 +270,7 @@ public RScalar(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the rotation scalar force. @@ -313,7 +314,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.RSpringDamper.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.RSpringDamper.md index cca3bf9ae5..7ba6fc4fe5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.RSpringDamper.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.RSpringDamper.md @@ -1,4 +1,5 @@ -# Class RSpringDamper +# Class RSpringDamper + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFB.dll @@ -11,15 +12,15 @@ public class RSpringDamper : Force, IObservableObject, ID #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← [Force](VM.Managed.DAFUL.Force.Force\-1.md) ← [RSpringDamper](VM.Managed.DAFUL.Force.RSpringDamper.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -73,65 +74,65 @@ ITorqueReferenceForBearing [Force.WriteMarker\(XmlWriter, Marker, string\)](VM.Managed.DAFUL.Force.Force\-1.md\#VM\_Managed\_DAFUL\_Force\_Force\_1\_WriteMarker\_System\_Xml\_XmlWriter\_VM\_Managed\_DAFUL\_Marker\_System\_String\_), [Force.ReadMarker\(XmlReader, Marker, string\)](VM.Managed.DAFUL.Force.Force\-1.md\#VM\_Managed\_DAFUL\_Force\_Force\_1\_ReadMarker\_System\_Xml\_XmlReader\_VM\_Managed\_DAFUL\_Marker\_System\_String\_), [Force.UseForSimulationScenario](VM.Managed.DAFUL.Force.Force\-1.md\#VM\_Managed\_DAFUL\_Force\_Force\_1\_UseForSimulationScenario), -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -230,7 +231,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -269,7 +270,7 @@ public RSpringDamper(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the rotational spring damper. @@ -285,7 +286,7 @@ public ExpressionValueVariable FreeAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ReportTypeImpl @@ -319,13 +320,13 @@ The base orientation matrix. The action orientation matrix. -`angle` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`angle` double\[\] The angle. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CalculationTwoMarkerZAngle\(OMatrix, OMatrix\) @@ -347,7 +348,7 @@ The action O mat. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Draw\(Canvas\) @@ -359,7 +360,7 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -387,7 +388,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -405,7 +406,7 @@ public static void MessageForPositionChanging(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.TScalar.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.TScalar.md index 1d5ec1619c..fed836e592 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.TScalar.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.TScalar.md @@ -1,4 +1,5 @@ -# Class TScalar +# Class TScalar + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFP.dll @@ -11,16 +12,16 @@ public class TScalar : Force, IObservableObject, IDisposableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← -Force ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← +[Force](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [TScalar](VM.Managed.DAFUL.Force.TScalar.md) #### Implements @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -69,69 +70,69 @@ ITorqueReferenceForBearing #### Inherited Members -Force.Initialize\(Unit.ConvertFactor\), -Force.WriteMarker\(XmlWriter, Marker, string\), -Force.ReadMarker\(XmlReader, Marker, string\), -Force.UseForSimulationScenario, -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Force.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.WriteMarker\(XmlWriter, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.ReadMarker\(XmlReader, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.UseForSimulationScenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -230,7 +231,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -269,7 +270,7 @@ public TScalar(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the translational scalar force. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.TSpringDamper.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.TSpringDamper.md index 8d4ab61234..f21e4f1639 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.TSpringDamper.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.TSpringDamper.md @@ -1,4 +1,5 @@ -# Class TSpringDamper +# Class TSpringDamper + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFB.dll @@ -11,15 +12,15 @@ public class TSpringDamper : Force, IObservableObject, ID #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← [Force](VM.Managed.DAFUL.Force.Force\-1.md) ← [TSpringDamper](VM.Managed.DAFUL.Force.TSpringDamper.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -73,65 +74,65 @@ ITorqueReferenceForBearing [Force.WriteMarker\(XmlWriter, Marker, string\)](VM.Managed.DAFUL.Force.Force\-1.md\#VM\_Managed\_DAFUL\_Force\_Force\_1\_WriteMarker\_System\_Xml\_XmlWriter\_VM\_Managed\_DAFUL\_Marker\_System\_String\_), [Force.ReadMarker\(XmlReader, Marker, string\)](VM.Managed.DAFUL.Force.Force\-1.md\#VM\_Managed\_DAFUL\_Force\_Force\_1\_ReadMarker\_System\_Xml\_XmlReader\_VM\_Managed\_DAFUL\_Marker\_System\_String\_), [Force.UseForSimulationScenario](VM.Managed.DAFUL.Force.Force\-1.md\#VM\_Managed\_DAFUL\_Force\_Force\_1\_UseForSimulationScenario), -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -230,7 +231,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -269,7 +270,7 @@ public TSpringDamper(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the spring damper force. @@ -285,7 +286,7 @@ public ExpressionValueVariable FreeLength { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ReportTypeImpl @@ -309,7 +310,7 @@ public int SpringCoilCount { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### SpringCoilLength1 @@ -321,7 +322,7 @@ public double SpringCoilLength1 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SpringCoilLength2 @@ -333,7 +334,7 @@ public double SpringCoilLength2 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SpringDiameter @@ -345,7 +346,7 @@ public double SpringDiameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -359,7 +360,7 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -387,7 +388,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.Vector.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.Vector.md index 4a9702af19..3b5d205841 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.Vector.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.Vector.md @@ -1,4 +1,5 @@ -# Class Vector +# Class Vector + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFP.dll @@ -11,16 +12,16 @@ public class Vector : Force, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← -Force ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← +[Force](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [Vector](VM.Managed.DAFUL.Force.Vector.md) #### Implements @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -69,69 +70,69 @@ ITorqueReferenceForBearing #### Inherited Members -Force.Initialize\(Unit.ConvertFactor\), -Force.WriteMarker\(XmlWriter, Marker, string\), -Force.ReadMarker\(XmlReader, Marker, string\), -Force.UseForSimulationScenario, -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Force.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.WriteMarker\(XmlWriter, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.ReadMarker\(XmlReader, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.UseForSimulationScenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -230,7 +231,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -269,7 +270,7 @@ public Vector(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the vector force. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.VectorForceFunction.FunctionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.VectorForceFunction.FunctionType.md index b73e362e2c..34a2f2e5a2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.VectorForceFunction.FunctionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.VectorForceFunction.FunctionType.md @@ -1,4 +1,5 @@ -# Enum VectorForceFunction.FunctionType +# Enum VectorForceFunction.FunctionType + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFP.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.VectorForceFunction.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.VectorForceFunction.md index fe191b4b2c..0846c5c896 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.VectorForceFunction.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.VectorForceFunction.md @@ -1,4 +1,5 @@ -# Class VectorForceFunction +# Class VectorForceFunction + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFP.dll @@ -11,9 +12,9 @@ public abstract class VectorForceFunction : LinkContainer, IObservableObject, ID #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [VectorForceFunction](VM.Managed.DAFUL.Force.VectorForceFunction.md) @@ -80,7 +81,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -135,7 +136,7 @@ public bool IsUseRM { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReferenceMarker @@ -185,7 +186,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -199,9 +200,9 @@ protected override void OnLinkReserved(ILink link, object objNotifier, EventArgs `link` ILink -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object -`args` [EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) +`args` EventArgs ### ReadTemplate\(XmlReader\) @@ -213,7 +214,7 @@ public virtual void ReadTemplate(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -227,7 +228,7 @@ public virtual void WriteTemplate(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.VectorForceStandard.VectorFunction.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.VectorForceStandard.VectorFunction.md index c9a07ab4c1..d298d767d1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.VectorForceStandard.VectorFunction.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.VectorForceStandard.VectorFunction.md @@ -1,4 +1,5 @@ -# Class VectorForceStandard.VectorFunction +# Class VectorForceStandard.VectorFunction + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFP.dll @@ -11,9 +12,9 @@ public class VectorForceStandard.VectorFunction : LinkContainer, IObservableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [VectorForceStandard.VectorFunction](VM.Managed.DAFUL.Force.VectorForceStandard.VectorFunction.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -120,7 +121,7 @@ public VectorFunction(Function func, VectorForceStandard owner) #### Parameters -`func` Function +`func` [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) The func. @@ -140,7 +141,7 @@ public Function Function { get; set; } #### Property Value - Function + [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) ## Methods @@ -154,7 +155,7 @@ public void ReadTemplate(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -168,7 +169,7 @@ public void WriteTemplate(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.VectorForceStandard.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.VectorForceStandard.md index d3072e4210..ba283590f8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.VectorForceStandard.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.VectorForceStandard.md @@ -1,4 +1,5 @@ -# Class VectorForceStandard +# Class VectorForceStandard + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFP.dll @@ -11,9 +12,9 @@ public sealed class VectorForceStandard : VectorForceFunction, IObservableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [VectorForceFunction](VM.Managed.DAFUL.Force.VectorForceFunction.md) ← [VectorForceStandard](VM.Managed.DAFUL.Force.VectorForceStandard.md) @@ -200,7 +201,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -214,7 +215,7 @@ public override void ReadTemplate(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -228,7 +229,7 @@ public override void WriteTemplate(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.VectorForceUserSubroutine.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.VectorForceUserSubroutine.md index b3f8318754..9742399c0c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.VectorForceUserSubroutine.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.VectorForceUserSubroutine.md @@ -1,4 +1,5 @@ -# Class VectorForceUserSubroutine +# Class VectorForceUserSubroutine + Namespace: [VM.Managed.DAFUL.Force](VM.Managed.DAFUL.Force.md) Assembly: VMDFP.dll @@ -11,9 +12,9 @@ public sealed class VectorForceUserSubroutine : VectorForceFunction, IObservable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [VectorForceFunction](VM.Managed.DAFUL.Force.VectorForceFunction.md) ← [VectorForceUserSubroutine](VM.Managed.DAFUL.Force.VectorForceUserSubroutine.md) @@ -127,7 +128,7 @@ public UserSubroutine UserSubroutine { get; set; } #### Property Value - UserSubroutine + [UserSubroutine](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSP/UserSubroutine.cs) ## Methods @@ -141,7 +142,7 @@ public override void ReadTemplate(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -155,7 +156,7 @@ public override void WriteTemplate(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.md index b6fc1ea168..5ead0d67c6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Force.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Force +# Namespace VM.Managed.DAFUL.Force + ### Classes @@ -150,15 +151,15 @@ Indicates whether this is a standard type or a user sub-routine type. Indicates whether this is a standard type or a user sub-routine type. - [PropertyBush.InputType](VM.Managed.DAFUL.Force.PropertyBush.InputType.md) + [PropertyTSpringDamper.InputType](VM.Managed.DAFUL.Force.PropertyTSpringDamper.InputType.md) Indicates whether this is a coefficient type or a spline type. - [PropertyRSpringDamper.InputType](VM.Managed.DAFUL.Force.PropertyRSpringDamper.InputType.md) + [PropertyBush.InputType](VM.Managed.DAFUL.Force.PropertyBush.InputType.md) Indicates whether this is a coefficient type or a spline type. - [PropertyTSpringDamper.InputType](VM.Managed.DAFUL.Force.PropertyTSpringDamper.InputType.md) + [PropertyRSpringDamper.InputType](VM.Managed.DAFUL.Force.PropertyRSpringDamper.InputType.md) Indicates whether this is a coefficient type or a spline type. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Function.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Function.md index 6071ea7a65..edfc575c59 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Function.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Function.md @@ -1,4 +1,5 @@ -# Class Function +# Class Function + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSB.dll @@ -11,12 +12,12 @@ public class Function : SubEntity, IObservableObject, IDisposableObject, ILinkab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [Function](VM.Managed.DAFUL.Function.md) #### Implements @@ -26,7 +27,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -51,17 +52,17 @@ IPostDeserialized #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -154,7 +155,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -209,7 +210,7 @@ public Function(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the function. @@ -223,7 +224,7 @@ public Function(string strName, ExpressionTypes expressionTypes) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the function. @@ -267,7 +268,7 @@ public string Expression { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### FunctionExpressionType @@ -289,7 +290,7 @@ public bool IsInterface { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsPerformanceIndex @@ -301,7 +302,7 @@ public bool IsPerformanceIndex { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PredefinedKeywords @@ -311,7 +312,7 @@ public static IEnumerable PredefinedKeywords { get; } #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + IEnumerable ### PythonInterpreterPath @@ -323,7 +324,7 @@ public static string PythonInterpreterPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ReferenceType @@ -335,7 +336,7 @@ public string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SolverModulePath @@ -347,7 +348,7 @@ public static string SolverModulePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -361,7 +362,7 @@ public bool ContainsReservedArgument() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if [contains] [the reserved arg]; otherwise, false. @@ -373,7 +374,7 @@ public static Function CreateSimplePythonFunction(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string #### Returns @@ -403,7 +404,7 @@ protected override void LinkAddedToDocumentCore(IOwned owner, bool bBackup) `owner` IOwned -`bBackup` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bBackup` bool ### LinkRequestUpdate\(object, LinkEventArgs\) @@ -415,7 +416,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -433,7 +434,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -455,13 +456,13 @@ public bool VerifyExpression(string strPathPythonExe = null, string strPathSolve #### Parameters -`strPathPythonExe` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPathPythonExe` string -`strPathSolverDir` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPathSolverDir` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### WriteTemplateImpl\(XmlWriter\) @@ -473,7 +474,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FunctionUnitBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FunctionUnitBase.md index be8281dd29..4e531b1144 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FunctionUnitBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.FunctionUnitBase.md @@ -1,4 +1,5 @@ -# Class FunctionUnitBase +# Class FunctionUnitBase + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,7 +12,7 @@ public abstract class FunctionUnitBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [FunctionUnitBase](VM.Managed.DAFUL.FunctionUnitBase.md) #### Extension Methods @@ -40,7 +41,7 @@ public virtual string Factor { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Scale @@ -52,7 +53,7 @@ public virtual double Scale { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Shift @@ -64,5 +65,5 @@ public virtual double Shift { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ApplyAssemblyOperation.ApplyCallback.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ApplyAssemblyOperation.ApplyCallback.md index d2d27f8732..89322d4569 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ApplyAssemblyOperation.ApplyCallback.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ApplyAssemblyOperation.ApplyCallback.md @@ -1,4 +1,5 @@ -# Delegate ApplyAssemblyOperation.ApplyCallback +# Delegate ApplyAssemblyOperation.ApplyCallback + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,7 +12,7 @@ public delegate bool ApplyAssemblyOperation.ApplyCallback() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ApplyAssemblyOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ApplyAssemblyOperation.md index ac2d7ee35e..25c591571c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ApplyAssemblyOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ApplyAssemblyOperation.md @@ -1,4 +1,5 @@ -# Class ApplyAssemblyOperation +# Class ApplyAssemblyOperation + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,7 +12,7 @@ public class ApplyAssemblyOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ApplyAssemblyOperation](VM.Managed.DAFUL.GearTrain.ApplyAssemblyOperation.md) @@ -111,7 +112,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Success @@ -123,7 +124,7 @@ public bool Success { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AssemblyManager.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AssemblyManager.md index 6078695e7d..f56966fa42 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AssemblyManager.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AssemblyManager.md @@ -1,4 +1,5 @@ -# Class AssemblyManager +# Class AssemblyManager + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,12 +12,12 @@ public class AssemblyManager : SubEntity, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [AssemblyManager](VM.Managed.DAFUL.GearTrain.AssemblyManager.md) #### Implements @@ -26,7 +27,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -46,17 +47,17 @@ IHasID #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -149,7 +150,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -188,7 +189,7 @@ public AssemblyManager(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The name. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeBodyToAttachedDT.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeBodyToAttachedDT.md index cf31c4d898..df7795e0a5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeBodyToAttachedDT.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeBodyToAttachedDT.md @@ -1,4 +1,5 @@ -# Class AttributeBodyToAttachedDT +# Class AttributeBodyToAttachedDT + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public abstract class AttributeBodyToAttachedDT : AttributeBodyToDT, IObservable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeBodyToDT](VM.Managed.DAFUL.GearTrain.AttributeBodyToDT.md) ← @@ -90,7 +91,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeBodyToDT.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeBodyToDT.md index 2ced636107..4aaa1d0662 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeBodyToDT.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeBodyToDT.md @@ -1,4 +1,5 @@ -# Class AttributeBodyToDT +# Class AttributeBodyToDT + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public abstract class AttributeBodyToDT : AttributeBase, IObservableObject, IDis #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeBodyToDT](VM.Managed.DAFUL.GearTrain.AttributeBodyToDT.md) @@ -83,7 +84,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -170,7 +171,7 @@ The connectable entity #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LinkRequestDestroying\(object, LinkEventArgs\) @@ -182,7 +183,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -200,7 +201,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeBodyToDTBearing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeBodyToDTBearing.md index 1f8ac85484..92fee59734 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeBodyToDTBearing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeBodyToDTBearing.md @@ -1,4 +1,5 @@ -# Class AttributeBodyToDTBearing +# Class AttributeBodyToDTBearing + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class AttributeBodyToDTBearing : AttributeBodyToAttachedDT, IObservableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeBodyToDT](VM.Managed.DAFUL.GearTrain.AttributeBodyToDT.md) ← @@ -87,7 +88,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeBodyToDTClutch.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeBodyToDTClutch.md index a53287ec59..35c10ef4ef 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeBodyToDTClutch.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeBodyToDTClutch.md @@ -1,4 +1,5 @@ -# Class AttributeBodyToDTClutch +# Class AttributeBodyToDTClutch + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class AttributeBodyToDTClutch : AttributeBase, IObservableObject, IDispos #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeBodyToDTClutch](VM.Managed.DAFUL.GearTrain.AttributeBodyToDTClutch.md) @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -119,7 +120,7 @@ public string ClutchName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### DampingCoefficient @@ -131,7 +132,7 @@ public ExpressionValueVariable DampingCoefficient { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Direction @@ -155,7 +156,7 @@ public ExpressionValueVariable DisengageDuration { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DisengageSplineValue @@ -167,7 +168,7 @@ public SplineValue DisengageSplineValue { get; set; } #### Property Value - SplineValue + [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### EngageDuration @@ -179,7 +180,7 @@ public ExpressionValueVariable EngageDuration { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### EngageSplineValue @@ -191,7 +192,7 @@ public SplineValue EngageSplineValue { get; set; } #### Property Value - SplineValue + [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### Position @@ -215,7 +216,7 @@ public ExpressionValueVariable Stiffness { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -233,7 +234,7 @@ public static double GetStiffnessDefaultValue(Unit.ConvertFactor factor) #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Initialize\(ConvertFactor\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeBodyToDTDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeBodyToDTDocument.md index 85daa42c2d..1878159cb3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeBodyToDTDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeBodyToDTDocument.md @@ -1,4 +1,5 @@ -# Class AttributeBodyToDTDocument +# Class AttributeBodyToDTDocument + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class AttributeBodyToDTDocument : AttributeBase, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeBodyToDTDocument](VM.Managed.DAFUL.GearTrain.AttributeBodyToDTDocument.md) @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -119,7 +120,7 @@ public ExpressionValueVariable Tolerance { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeBodyToDTGearSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeBodyToDTGearSet.md index f7ae502ffe..e66ff5f05b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeBodyToDTGearSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeBodyToDTGearSet.md @@ -1,4 +1,5 @@ -# Class AttributeBodyToDTGearSet +# Class AttributeBodyToDTGearSet + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class AttributeBodyToDTGearSet : AttributeBodyToAttachedDT, IObservableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeBodyToDT](VM.Managed.DAFUL.GearTrain.AttributeBodyToDT.md) ← @@ -87,7 +88,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeBodyToDTShaftSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeBodyToDTShaftSet.md index 4339e32d8e..1230c61593 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeBodyToDTShaftSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeBodyToDTShaftSet.md @@ -1,4 +1,5 @@ -# Class AttributeBodyToDTShaftSet +# Class AttributeBodyToDTShaftSet + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class AttributeBodyToDTShaftSet : AttributeBodyToDT, IObservableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeBodyToDT](VM.Managed.DAFUL.GearTrain.AttributeBodyToDT.md) ← @@ -85,7 +86,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -138,7 +139,7 @@ public ExpressionValueVariable PowerLoadOffset { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PowerLoadType @@ -162,7 +163,7 @@ public ExpressionValueVariable PowerLoadWidth { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### UsePowerLoad @@ -174,5 +175,5 @@ public bool UsePowerLoad { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeMotorAssembly.MountInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeMotorAssembly.MountInfo.md index 897958673f..05e1339475 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeMotorAssembly.MountInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeMotorAssembly.MountInfo.md @@ -1,4 +1,5 @@ -# Class AttributeMotorAssembly.MountInfo +# Class AttributeMotorAssembly.MountInfo + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -9,9 +10,9 @@ public class AttributeMotorAssembly.MountInfo : LinkContainer, IObservableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [AttributeMotorAssembly.MountInfo](VM.Managed.DAFUL.GearTrain.AttributeMotorAssembly.MountInfo.md) @@ -73,7 +74,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeMotorAssembly.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeMotorAssembly.md index 2abca755bc..d30839adab 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeMotorAssembly.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeMotorAssembly.md @@ -1,4 +1,5 @@ -# Class AttributeMotorAssembly +# Class AttributeMotorAssembly + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class AttributeMotorAssembly : AttributeBase, IObservableObject, IDisposa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeMotorAssembly](VM.Managed.DAFUL.GearTrain.AttributeMotorAssembly.md) @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -131,7 +132,7 @@ public ExpressionValueVariable EndRPM { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### FrontBearingSet @@ -191,7 +192,7 @@ public ExpressionValueVariable StartRPM { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### StatorMountSet @@ -223,7 +224,7 @@ The housing section #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetRearBearingOffset\(HousingSection\) @@ -241,7 +242,7 @@ The housing section #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Initialize\(ConvertFactor\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeNoFaceset.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeNoFaceset.md index 9a3102d21e..200a339474 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeNoFaceset.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeNoFaceset.md @@ -1,4 +1,5 @@ -# Class AttributeNoFaceset +# Class AttributeNoFaceset + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class AttributeNoFaceset : AttributeBase, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeNoFaceset](VM.Managed.DAFUL.GearTrain.AttributeNoFaceset.md) @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeRVBearing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeRVBearing.md index f90585328e..dcb1fc77ed 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeRVBearing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeRVBearing.md @@ -1,4 +1,5 @@ -# Class AttributeRVBearing +# Class AttributeRVBearing + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class AttributeRVBearing : AttributeBase, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeRVBearing](VM.Managed.DAFUL.GearTrain.AttributeRVBearing.md) @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeUnchangableName.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeUnchangableName.md index 8e95ae0435..e105e718f4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeUnchangableName.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeUnchangableName.md @@ -1,4 +1,5 @@ -# Class AttributeUnchangableName +# Class AttributeUnchangableName + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class AttributeUnchangableName : AttributeBase, IObservableObject, IDispo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeUnchangableName](VM.Managed.DAFUL.GearTrain.AttributeUnchangableName.md) @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeUnit.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeUnit.md index ff4fe98158..612f113e72 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeUnit.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeUnit.md @@ -1,4 +1,5 @@ -# Class AttributeUnit +# Class AttributeUnit + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class AttributeUnit : AttributeBase, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeUnit](VM.Managed.DAFUL.GearTrain.AttributeUnit.md) @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -117,35 +118,35 @@ public AttributeUnit(double dLengthFactor, double dMassFactor, double dTimeFacto #### Parameters -`dLengthFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLengthFactor` double The length factor -`dMassFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMassFactor` double The mass factor -`dTimeFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTimeFactor` double The time factor -`dForceFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dForceFactor` double The force factor -`dAngleFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngleFactor` double The angle factor -`dTemperatureFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTemperatureFactor` double The temperature factor -`dPowerFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dPowerFactor` double The power factor -`dWorkFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dWorkFactor` double The work factor @@ -161,7 +162,7 @@ public double AngleFactor { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ForceFactor @@ -173,7 +174,7 @@ public double ForceFactor { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### LengthFactor @@ -185,7 +186,7 @@ public double LengthFactor { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MassFactor @@ -197,7 +198,7 @@ public double MassFactor { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### PowerFactor @@ -209,7 +210,7 @@ public double PowerFactor { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TemperatureFactor @@ -221,7 +222,7 @@ public double TemperatureFactor { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TimeFactor @@ -233,7 +234,7 @@ public double TimeFactor { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### WorkFactor @@ -245,5 +246,5 @@ public double WorkFactor { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeUnuseProperty.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeUnuseProperty.md index a1b2f0069d..aecfbf12ac 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeUnuseProperty.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.AttributeUnuseProperty.md @@ -1,4 +1,5 @@ -# Class AttributeUnuseProperty +# Class AttributeUnuseProperty + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class AttributeUnuseProperty : AttributeBase, IObservableObject, IDisposa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeUnuseProperty](VM.Managed.DAFUL.GearTrain.AttributeUnuseProperty.md) @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Backlash.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Backlash.md index 908eccaa62..556ec2c54e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Backlash.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Backlash.md @@ -1,4 +1,5 @@ -# Class Backlash +# Class Backlash + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class Backlash : LinkContainer, IObservableObject, IDisposableObject, ILi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Backlash](VM.Managed.DAFUL.GearTrain.Backlash.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -154,7 +155,7 @@ public void InitChild(int nNum, Unit.ConvertFactor factor) #### Parameters -`nNum` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNum` int The n number. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BacklashFormulationType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BacklashFormulationType.md index 839bf27f5e..2039107373 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BacklashFormulationType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BacklashFormulationType.md @@ -1,4 +1,5 @@ -# Enum BacklashFormulationType +# Enum BacklashFormulationType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BallAndPinDiameter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BallAndPinDiameter.md index f7a0e757ce..041a2e3f59 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BallAndPinDiameter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BallAndPinDiameter.md @@ -1,4 +1,5 @@ -# Class BallAndPinDiameter +# Class BallAndPinDiameter + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class BallAndPinDiameter : LinkContainer, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [BallAndPinDiameter](VM.Managed.DAFUL.GearTrain.BallAndPinDiameter.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -140,7 +141,7 @@ public bool[] PairFixState { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean)\[\] + bool\[\] ### PairLowerMeasurement @@ -178,7 +179,7 @@ public void InitChild(int nNum, Unit.ConvertFactor factor) #### Parameters -`nNum` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNum` int The n number. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BallAndPinDiameterFormulationType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BallAndPinDiameterFormulationType.md index ee928d9a39..fc0c3c7745 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BallAndPinDiameterFormulationType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BallAndPinDiameterFormulationType.md @@ -1,4 +1,5 @@ -# Enum BallAndPinDiameterFormulationType +# Enum BallAndPinDiameterFormulationType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Ball_Bearing_Data.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Ball_Bearing_Data.md index bff785d246..79af47c44e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Ball_Bearing_Data.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Ball_Bearing_Data.md @@ -1,4 +1,5 @@ -# Class Ball\_Bearing\_Data +# Class Ball\_Bearing\_Data + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -9,7 +10,7 @@ public class Ball_Bearing_Data #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Ball\_Bearing\_Data](VM.Managed.DAFUL.GearTrain.Ball\_Bearing\_Data.md) #### Extension Methods @@ -36,7 +37,7 @@ public double D #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Ki @@ -46,7 +47,7 @@ public double Ki #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Kn @@ -56,7 +57,7 @@ public double Kn #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Ko @@ -66,7 +67,7 @@ public double Ko #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Ri @@ -76,7 +77,7 @@ public double Ri #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Z @@ -86,7 +87,7 @@ public int Z #### Field Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### d\_i @@ -96,7 +97,7 @@ public double d_i #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### d\_o @@ -106,7 +107,7 @@ public double d_o #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ri @@ -116,7 +117,7 @@ public double ri #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ro @@ -126,7 +127,7 @@ public double ro #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BaseTangentLength.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BaseTangentLength.md index c450cc5ac7..0305fbaaba 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BaseTangentLength.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BaseTangentLength.md @@ -1,4 +1,5 @@ -# Class BaseTangentLength +# Class BaseTangentLength + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class BaseTangentLength : LinkContainer, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [BaseTangentLength](VM.Managed.DAFUL.GearTrain.BaseTangentLength.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,7 +117,7 @@ public bool[] PairFixState { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean)\[\] + bool\[\] ### PairLowerLengthOfSpan @@ -166,7 +167,7 @@ public void InitChild(int nNum, Unit.ConvertFactor factor) #### Parameters -`nNum` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNum` int The n number. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BasicInvolute.GearType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BasicInvolute.GearType.md index 6d4c26f1d5..bf6f46543a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BasicInvolute.GearType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BasicInvolute.GearType.md @@ -1,4 +1,5 @@ -# Enum BasicInvolute.GearType +# Enum BasicInvolute.GearType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BasicInvolute.HelicalAngleType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BasicInvolute.HelicalAngleType.md index b9f8349aeb..389453f41e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BasicInvolute.HelicalAngleType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BasicInvolute.HelicalAngleType.md @@ -1,4 +1,5 @@ -# Enum BasicInvolute.HelicalAngleType +# Enum BasicInvolute.HelicalAngleType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BasicInvolute.ProfilMethodType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BasicInvolute.ProfilMethodType.md index 0bcee3e3de..f256b4d6b2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BasicInvolute.ProfilMethodType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BasicInvolute.ProfilMethodType.md @@ -1,4 +1,5 @@ -# Enum BasicInvolute.ProfilMethodType +# Enum BasicInvolute.ProfilMethodType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BasicInvolute.ToothThicknessInToleranceFieldType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BasicInvolute.ToothThicknessInToleranceFieldType.md index 9ee6793188..176065421a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BasicInvolute.ToothThicknessInToleranceFieldType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BasicInvolute.ToothThicknessInToleranceFieldType.md @@ -1,4 +1,5 @@ -# Enum BasicInvolute.ToothThicknessInToleranceFieldType +# Enum BasicInvolute.ToothThicknessInToleranceFieldType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BasicInvolute.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BasicInvolute.md index b7beb0b1e9..e63db1a43b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BasicInvolute.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BasicInvolute.md @@ -1,4 +1,5 @@ -# Class BasicInvolute +# Class BasicInvolute + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class BasicInvolute : GearPropertyBase, IObservableObject, IDisposableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [GearPropertyBase](VM.Managed.DAFUL.GearTrain.GearPropertyBase.md) ← [BasicInvolute](VM.Managed.DAFUL.GearTrain.BasicInvolute.md) @@ -77,7 +78,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -122,7 +123,7 @@ public Variable[] CenterDistances { get; set; } #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Variable list is null. or @@ -140,7 +141,7 @@ public ExpressionValueVariable ForceForToothStiffness { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### HelixAngle @@ -152,7 +153,7 @@ public ExpressionValueVariable HelixAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### InputProfilMethod @@ -200,7 +201,7 @@ public bool IsUseModule { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Module @@ -212,7 +213,7 @@ public ExpressionValueVariable Module { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### NumOfInvolutePoint @@ -224,7 +225,7 @@ public int NumOfInvolutePoint { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumOfTrochoidPoint @@ -236,7 +237,7 @@ public int NumOfTrochoidPoint { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfThinSlice @@ -248,7 +249,7 @@ public ExpressionValueVariable NumberOfThinSlice { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### OBD @@ -260,7 +261,7 @@ public ExpressionValueVariable OBD { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### OverBallRadius @@ -272,7 +273,7 @@ public ExpressionValueVariable OverBallRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PairFaceWidth @@ -308,7 +309,7 @@ public ExpressionValueVariable PasternAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PitchDiameter @@ -320,7 +321,7 @@ public ExpressionValueVariable PitchDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PressureAngle @@ -332,7 +333,7 @@ public ExpressionValueVariable PressureAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Quality @@ -370,7 +371,7 @@ public override void InitChild(int nNum) #### Parameters -`nNum` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNum` int The n number. @@ -384,7 +385,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Bearing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Bearing.md index 3b1a963ef6..21bec62857 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Bearing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Bearing.md @@ -1,4 +1,5 @@ -# Class Bearing +# Class Bearing + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -6,19 +7,19 @@ Assembly: VMDGearTrain.dll Bearing ```csharp -public class Bearing : OpenDesignerBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IOpenDesignerForGearTrain, IOpenDesigner, IReferencable, ITransparentable, IHasGeometryInfo, IBearing, IConnectable, IMarkerParent, IEntityRelation, IHasBody, IHasBuilder, IReportable +public class Bearing : OpenDesignerBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IOpenDesignerForGearTrain, IOpenDesigner, IReferencable, ITransparentable, IHasGeometryInfo, IBearing, IConnectable, IMarkerParent, IEntityRelation, IHasBody, IHasBuilder, IReportable, IMassProp ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [OpenDesignerBase](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md) ← [Bearing](VM.Managed.DAFUL.GearTrain.Bearing.md) @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -63,7 +64,8 @@ IMarkerParent, IEntityRelation, IHasBody, IHasBuilder, -IReportable +IReportable, +IMassProp #### Inherited Members @@ -85,34 +87,34 @@ IReportable [OpenDesignerBase.HasLayerExplicitly](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_HasLayerExplicitly), [OpenDesignerBase.Referencable](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Referencable), [OpenDesignerBase.Visible](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Visible), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -211,7 +213,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -250,7 +252,7 @@ public Bearing(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -270,7 +272,7 @@ public GeometryBase[] BearingBodies { get; set; } #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception BearingBody list is null. or @@ -288,7 +290,7 @@ protected override string Extension { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Layer @@ -324,7 +326,7 @@ public override string TypeFileName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeOfParent @@ -368,25 +370,25 @@ public bool FillBearingData(Document doc, string InnerColor, string OuterColor, The document -`InnerColor` [string](https://learn.microsoft.com/dotnet/api/system.string) +`InnerColor` string The inner color -`OuterColor` [string](https://learn.microsoft.com/dotnet/api/system.string) +`OuterColor` string The outer color -`strPropertyFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPropertyFilePath` string The property file path -`InputArray` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`InputArray` string\[\] The input array #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### FindBearingBody\(GeometryInfoBase\) @@ -434,7 +436,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -466,13 +468,13 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The ob unnamed. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The unnamed object name. @@ -486,7 +488,7 @@ protected override void MakeReferenceImpl(LinkedList lstRef) #### Parameters -`lstRef` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) +`lstRef` LinkedList The container. @@ -500,7 +502,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -554,7 +556,7 @@ public void RemoveRelatedGear(RacewayGeometryInfo rInfo, HiddenDocument docHidde The r information. -`docHidden` HiddenDocument +`docHidden` [HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) The document hidden. @@ -576,7 +578,7 @@ public override Document SetDataToDesignDoc(bool bRecord) #### Parameters -`bRecord` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bRecord` bool #### Returns diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDB.AngularContactBall.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDB.AngularContactBall.md index ae5fcab452..48e5952129 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDB.AngularContactBall.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDB.AngularContactBall.md @@ -1,4 +1,5 @@ -# Class AngularContactBall +# Class AngularContactBall + Namespace: [VM.Managed.DAFUL.GearTrain.BearingDB](VM.Managed.DAFUL.GearTrain.BearingDB.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class AngularContactBall : DBRecordForBearing #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Record ← -DBRecord ← +object ← +[Record](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VMManagedUtil/DBF/DBRecord.cs) ← +[DBRecord](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VMManagedUtil/DBF/DBRecord.cs) ← [DBRecordForBearing](VM.Managed.DAFUL.GearTrain.BearingDB.DBRecordForBearing.md) ← [AngularContactBall](VM.Managed.DAFUL.GearTrain.BearingDB.AngularContactBall.md) @@ -26,7 +27,7 @@ DBRecord ← [DBRecordForBearing.Bore](VM.Managed.DAFUL.GearTrain.BearingDB.DBRecordForBearing.md\#VM\_Managed\_DAFUL\_GearTrain\_BearingDB\_DBRecordForBearing\_Bore), [DBRecordForBearing.OutDia](VM.Managed.DAFUL.GearTrain.BearingDB.DBRecordForBearing.md\#VM\_Managed\_DAFUL\_GearTrain\_BearingDB\_DBRecordForBearing\_OutDia), [DBRecordForBearing.Width](VM.Managed.DAFUL.GearTrain.BearingDB.DBRecordForBearing.md\#VM\_Managed\_DAFUL\_GearTrain\_BearingDB\_DBRecordForBearing\_Width), -Record.RecordNo +[Record.RecordNo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VMManagedUtil/DBF/DBRecord.cs) #### Extension Methods @@ -55,7 +56,7 @@ public double? ActionP #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### BallDia @@ -68,7 +69,7 @@ public double? BallDia #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### BallPDia @@ -81,7 +82,7 @@ public double? BallPDia #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### C0r @@ -94,7 +95,7 @@ public double? C0r #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### Cr @@ -107,7 +108,7 @@ public double? Cr #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### IRSDia @@ -120,7 +121,7 @@ public double? IRSDia #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### IRSDia2 @@ -133,7 +134,7 @@ public double? IRSDia2 #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### Mass @@ -146,7 +147,7 @@ public double? Mass #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### ORSBore @@ -159,7 +160,7 @@ public double? ORSBore #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### ORSBore2 @@ -172,7 +173,7 @@ public double? ORSBore2 #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### RoundR @@ -185,7 +186,7 @@ public double? RoundR #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### f0 @@ -198,7 +199,7 @@ public double? f0 #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### nBall @@ -211,7 +212,7 @@ public int? nBall #### Field Value - [int](https://learn.microsoft.com/dotnet/api/system.int32)? + int? ### ra @@ -224,7 +225,7 @@ public double? ra #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ## Methods @@ -280,15 +281,15 @@ public void UnitConvert(ref AngularContactBall br, double dLengthFactor, double The target bearing. -`dLengthFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLengthFactor` double The length factor. -`dForceFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dForceFactor` double The force factor. -`dMassFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMassFactor` double The mass factor. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDB.CylindricalRoller.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDB.CylindricalRoller.md index fc7bb811e6..ad07560f65 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDB.CylindricalRoller.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDB.CylindricalRoller.md @@ -1,4 +1,5 @@ -# Class CylindricalRoller +# Class CylindricalRoller + Namespace: [VM.Managed.DAFUL.GearTrain.BearingDB](VM.Managed.DAFUL.GearTrain.BearingDB.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class CylindricalRoller : DBRecordForBearing #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Record ← -DBRecord ← +object ← +[Record](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VMManagedUtil/DBF/DBRecord.cs) ← +[DBRecord](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VMManagedUtil/DBF/DBRecord.cs) ← [DBRecordForBearing](VM.Managed.DAFUL.GearTrain.BearingDB.DBRecordForBearing.md) ← [CylindricalRoller](VM.Managed.DAFUL.GearTrain.BearingDB.CylindricalRoller.md) @@ -26,7 +27,7 @@ DBRecord ← [DBRecordForBearing.Bore](VM.Managed.DAFUL.GearTrain.BearingDB.DBRecordForBearing.md\#VM\_Managed\_DAFUL\_GearTrain\_BearingDB\_DBRecordForBearing\_Bore), [DBRecordForBearing.OutDia](VM.Managed.DAFUL.GearTrain.BearingDB.DBRecordForBearing.md\#VM\_Managed\_DAFUL\_GearTrain\_BearingDB\_DBRecordForBearing\_OutDia), [DBRecordForBearing.Width](VM.Managed.DAFUL.GearTrain.BearingDB.DBRecordForBearing.md\#VM\_Managed\_DAFUL\_GearTrain\_BearingDB\_DBRecordForBearing\_Width), -Record.RecordNo +[Record.RecordNo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VMManagedUtil/DBF/DBRecord.cs) #### Extension Methods @@ -55,7 +56,7 @@ public double? C0r #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### Cr @@ -68,7 +69,7 @@ public double? Cr #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### IRSDia @@ -81,7 +82,7 @@ public double? IRSDia #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### LS @@ -94,7 +95,7 @@ public double? LS #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### Mass @@ -107,7 +108,7 @@ public double? Mass #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### ORSBore @@ -120,7 +121,7 @@ public double? ORSBore #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### Pu @@ -133,7 +134,7 @@ public double? Pu #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### RS @@ -146,7 +147,7 @@ public double? RS #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### RolDia @@ -159,7 +160,7 @@ public double? RolDia #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### RolLen @@ -172,7 +173,7 @@ public double? RolLen #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### RolPDia @@ -185,7 +186,7 @@ public double? RolPDia #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### RoundR @@ -198,7 +199,7 @@ public double? RoundR #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### nRoller @@ -211,7 +212,7 @@ public int? nRoller #### Field Value - [int](https://learn.microsoft.com/dotnet/api/system.int32)? + int? ## Methods @@ -267,15 +268,15 @@ public void UnitConvert(ref CylindricalRoller br, double dLengthFactor, double d The target bearing. -`dLengthFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLengthFactor` double The length factor. -`dForceFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dForceFactor` double The force factor. -`dMassFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMassFactor` double The mass factor. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDB.DBRecordForBearing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDB.DBRecordForBearing.md index fb8ed16b11..2ebfcd203d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDB.DBRecordForBearing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDB.DBRecordForBearing.md @@ -1,4 +1,5 @@ -# Class DBRecordForBearing +# Class DBRecordForBearing + Namespace: [VM.Managed.DAFUL.GearTrain.BearingDB](VM.Managed.DAFUL.GearTrain.BearingDB.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class DBRecordForBearing : DBRecord #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Record ← -DBRecord ← +object ← +[Record](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VMManagedUtil/DBF/DBRecord.cs) ← +[DBRecord](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VMManagedUtil/DBF/DBRecord.cs) ← [DBRecordForBearing](VM.Managed.DAFUL.GearTrain.BearingDB.DBRecordForBearing.md) #### Derived @@ -25,7 +26,7 @@ DBRecord ← #### Inherited Members -Record.RecordNo +[Record.RecordNo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VMManagedUtil/DBF/DBRecord.cs) #### Extension Methods @@ -54,7 +55,7 @@ public double? Bore #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### Company @@ -67,7 +68,7 @@ public string Company #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Designation @@ -80,7 +81,7 @@ public string Designation #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### OutDia @@ -93,7 +94,7 @@ public double? OutDia #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### Type @@ -106,7 +107,7 @@ public string Type #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Width @@ -119,7 +120,7 @@ public double? Width #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### nRows @@ -132,5 +133,5 @@ public int? nRows #### Field Value - [int](https://learn.microsoft.com/dotnet/api/system.int32)? + int? diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDB.RadialBall.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDB.RadialBall.md index f6bc31c6c4..1f127e3072 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDB.RadialBall.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDB.RadialBall.md @@ -1,4 +1,5 @@ -# Class RadialBall +# Class RadialBall + Namespace: [VM.Managed.DAFUL.GearTrain.BearingDB](VM.Managed.DAFUL.GearTrain.BearingDB.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class RadialBall : DBRecordForBearing #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Record ← -DBRecord ← +object ← +[Record](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VMManagedUtil/DBF/DBRecord.cs) ← +[DBRecord](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VMManagedUtil/DBF/DBRecord.cs) ← [DBRecordForBearing](VM.Managed.DAFUL.GearTrain.BearingDB.DBRecordForBearing.md) ← [RadialBall](VM.Managed.DAFUL.GearTrain.BearingDB.RadialBall.md) @@ -26,7 +27,7 @@ DBRecord ← [DBRecordForBearing.Bore](VM.Managed.DAFUL.GearTrain.BearingDB.DBRecordForBearing.md\#VM\_Managed\_DAFUL\_GearTrain\_BearingDB\_DBRecordForBearing\_Bore), [DBRecordForBearing.OutDia](VM.Managed.DAFUL.GearTrain.BearingDB.DBRecordForBearing.md\#VM\_Managed\_DAFUL\_GearTrain\_BearingDB\_DBRecordForBearing\_OutDia), [DBRecordForBearing.Width](VM.Managed.DAFUL.GearTrain.BearingDB.DBRecordForBearing.md\#VM\_Managed\_DAFUL\_GearTrain\_BearingDB\_DBRecordForBearing\_Width), -Record.RecordNo +[Record.RecordNo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VMManagedUtil/DBF/DBRecord.cs) #### Extension Methods @@ -55,7 +56,7 @@ public double? BallDia #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### BallPDia @@ -68,7 +69,7 @@ public double? BallPDia #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### C0r @@ -81,7 +82,7 @@ public double? C0r #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### Cr @@ -94,7 +95,7 @@ public double? Cr #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### IRSDia @@ -107,7 +108,7 @@ public double? IRSDia #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### Mass @@ -120,7 +121,7 @@ public double? Mass #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### ORSBore @@ -133,7 +134,7 @@ public double? ORSBore #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### RoundR @@ -146,7 +147,7 @@ public double? RoundR #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### f0 @@ -159,7 +160,7 @@ public double? f0 #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### nBall @@ -172,7 +173,7 @@ public int? nBall #### Field Value - [int](https://learn.microsoft.com/dotnet/api/system.int32)? + int? ### ra @@ -185,7 +186,7 @@ public double? ra #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ## Methods @@ -241,15 +242,15 @@ public void UnitConvert(ref RadialBall br, double dLengthFactor, double dForceFa The target bearing. -`dLengthFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLengthFactor` double The length factor. -`dForceFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dForceFactor` double The force factor. -`dMassFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMassFactor` double The mass factor. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDB.TaperedRoller.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDB.TaperedRoller.md index e6b710e225..66a1a2233a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDB.TaperedRoller.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDB.TaperedRoller.md @@ -1,4 +1,5 @@ -# Class TaperedRoller +# Class TaperedRoller + Namespace: [VM.Managed.DAFUL.GearTrain.BearingDB](VM.Managed.DAFUL.GearTrain.BearingDB.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class TaperedRoller : DBRecordForBearing #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Record ← -DBRecord ← +object ← +[Record](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VMManagedUtil/DBF/DBRecord.cs) ← +[DBRecord](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VMManagedUtil/DBF/DBRecord.cs) ← [DBRecordForBearing](VM.Managed.DAFUL.GearTrain.BearingDB.DBRecordForBearing.md) ← [TaperedRoller](VM.Managed.DAFUL.GearTrain.BearingDB.TaperedRoller.md) @@ -26,7 +27,7 @@ DBRecord ← [DBRecordForBearing.Bore](VM.Managed.DAFUL.GearTrain.BearingDB.DBRecordForBearing.md\#VM\_Managed\_DAFUL\_GearTrain\_BearingDB\_DBRecordForBearing\_Bore), [DBRecordForBearing.OutDia](VM.Managed.DAFUL.GearTrain.BearingDB.DBRecordForBearing.md\#VM\_Managed\_DAFUL\_GearTrain\_BearingDB\_DBRecordForBearing\_OutDia), [DBRecordForBearing.Width](VM.Managed.DAFUL.GearTrain.BearingDB.DBRecordForBearing.md\#VM\_Managed\_DAFUL\_GearTrain\_BearingDB\_DBRecordForBearing\_Width), -Record.RecordNo +[Record.RecordNo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VMManagedUtil/DBF/DBRecord.cs) #### Extension Methods @@ -55,7 +56,7 @@ public double? ActionP #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### Alpha @@ -68,7 +69,7 @@ public double? Alpha #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### Beta @@ -81,7 +82,7 @@ public double? Beta #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### C0r @@ -94,7 +95,7 @@ public double? C0r #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### ConeW @@ -107,7 +108,7 @@ public double? ConeW #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### Cr @@ -120,7 +121,7 @@ public double? Cr #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### CupW @@ -133,7 +134,7 @@ public double? CupW #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### Mass @@ -146,7 +147,7 @@ public double? Mass #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### RolCP @@ -159,7 +160,7 @@ public double? RolCP #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### RolDia @@ -172,7 +173,7 @@ public double? RolDia #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### RolLen @@ -185,7 +186,7 @@ public double? RolLen #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### RolPR @@ -198,7 +199,7 @@ public double? RolPR #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### RoundR1 @@ -211,7 +212,7 @@ public double? RoundR1 #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### RoundR2 @@ -224,7 +225,7 @@ public double? RoundR2 #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### Y @@ -237,7 +238,7 @@ public double? Y #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### Y0 @@ -250,7 +251,7 @@ public double? Y0 #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### d1 @@ -263,7 +264,7 @@ public double? d1 #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### e @@ -276,7 +277,7 @@ public double? e #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### nRoller @@ -289,7 +290,7 @@ public int? nRoller #### Field Value - [int](https://learn.microsoft.com/dotnet/api/system.int32)? + int? ## Methods @@ -345,15 +346,15 @@ public void UnitConvert(ref TaperedRoller br, double dLengthFactor, double dForc The target bearing. -`dLengthFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLengthFactor` double The length factor. -`dForceFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dForceFactor` double The force factor. -`dMassFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMassFactor` double The mass factor. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDB.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDB.md index 7e30ee490c..ee93a7eaa3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDB.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDB.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.GearTrain.BearingDB +# Namespace VM.Managed.DAFUL.GearTrain.BearingDB + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDimensionAngularContactBall.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDimensionAngularContactBall.md index 28ba4f839e..aa464cef57 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDimensionAngularContactBall.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDimensionAngularContactBall.md @@ -1,4 +1,5 @@ -# Class BearingDimensionAngularContactBall +# Class BearingDimensionAngularContactBall + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class BearingDimensionAngularContactBall : BearingDimensionRadialBall, IO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [BearingDimensionBase](VM.Managed.DAFUL.GearTrain.BearingDimensionBase.md) ← [BearingDimensionRadialBall](VM.Managed.DAFUL.GearTrain.BearingDimensionRadialBall.md) ← @@ -100,7 +101,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -141,7 +142,7 @@ public ExpressionValueVariable ActionPoint { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### InnerRacewayShoulderDiameter2 @@ -153,7 +154,7 @@ public ExpressionValueVariable InnerRacewayShoulderDiameter2 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### OuterRacewayShoulderBore2 @@ -165,7 +166,7 @@ public ExpressionValueVariable OuterRacewayShoulderBore2 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -191,11 +192,11 @@ The raceway type. The transformation. -`bTruncated` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bTruncated` bool The truncated falg. -`bReverse` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReverse` bool The reverse direction falg. @@ -213,7 +214,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDimensionBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDimensionBase.md index 04aac06498..0447e80212 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDimensionBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDimensionBase.md @@ -1,4 +1,5 @@ -# Class BearingDimensionBase +# Class BearingDimensionBase + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public abstract class BearingDimensionBase : LinkContainer, IObservableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [BearingDimensionBase](VM.Managed.DAFUL.GearTrain.BearingDimensionBase.md) @@ -81,7 +82,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -122,7 +123,7 @@ public ExpressionValueVariable Bore { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### EstimateDetails @@ -134,7 +135,7 @@ public bool EstimateDetails { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OuterDiameter @@ -146,7 +147,7 @@ public ExpressionValueVariable OuterDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Width @@ -158,7 +159,7 @@ public ExpressionValueVariable Width { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -184,11 +185,11 @@ The raceway type. The transformation. -`bTruncated` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bTruncated` bool The truncated falg. -`bReverse` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReverse` bool The reverse direction falg. @@ -206,7 +207,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDimensionCylindricalRoller.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDimensionCylindricalRoller.md index 1cadaa15ca..b135cc5c09 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDimensionCylindricalRoller.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDimensionCylindricalRoller.md @@ -1,4 +1,5 @@ -# Class BearingDimensionCylindricalRoller +# Class BearingDimensionCylindricalRoller + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class BearingDimensionCylindricalRoller : BearingDimensionBase, IObservab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [BearingDimensionBase](VM.Managed.DAFUL.GearTrain.BearingDimensionBase.md) ← [BearingDimensionCylindricalRoller](VM.Managed.DAFUL.GearTrain.BearingDimensionCylindricalRoller.md) @@ -82,7 +83,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -123,7 +124,7 @@ public ExpressionValueVariable InnerRacewayShoulderDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### NumberOfRoller @@ -135,7 +136,7 @@ public ExpressionValueVariable NumberOfRoller { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### OuterRacewayShoulderBore @@ -147,7 +148,7 @@ public ExpressionValueVariable OuterRacewayShoulderBore { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RollerDiameter @@ -159,7 +160,7 @@ public ExpressionValueVariable RollerDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RollerLength @@ -171,7 +172,7 @@ public ExpressionValueVariable RollerLength { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RollerPitchDiameter @@ -183,7 +184,7 @@ public ExpressionValueVariable RollerPitchDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RoundingRadius @@ -195,7 +196,7 @@ public ExpressionValueVariable RoundingRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -221,11 +222,11 @@ The raceway type. The transformation. -`bTruncated` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bTruncated` bool The truncated falg. -`bReverse` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReverse` bool The reverse direction falg. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDimensionRadialBall.enRadialInternalClearanceType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDimensionRadialBall.enRadialInternalClearanceType.md index b8488f64c8..daa30757da 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDimensionRadialBall.enRadialInternalClearanceType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDimensionRadialBall.enRadialInternalClearanceType.md @@ -1,4 +1,5 @@ -# Enum BearingDimensionRadialBall.enRadialInternalClearanceType +# Enum BearingDimensionRadialBall.enRadialInternalClearanceType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDimensionRadialBall.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDimensionRadialBall.md index 101e8e0708..fc1fa5e31e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDimensionRadialBall.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDimensionRadialBall.md @@ -1,4 +1,5 @@ -# Class BearingDimensionRadialBall +# Class BearingDimensionRadialBall + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class BearingDimensionRadialBall : BearingDimensionBase, IObservableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [BearingDimensionBase](VM.Managed.DAFUL.GearTrain.BearingDimensionBase.md) ← [BearingDimensionRadialBall](VM.Managed.DAFUL.GearTrain.BearingDimensionRadialBall.md) @@ -86,7 +87,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -127,7 +128,7 @@ public ExpressionValueVariable BallDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### BallPitchDiameter @@ -139,7 +140,7 @@ public ExpressionValueVariable BallPitchDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### InnerRacewayGrooveRadius @@ -151,7 +152,7 @@ public ExpressionValueVariable InnerRacewayGrooveRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### InnerRacewayShoulderDiameter @@ -163,7 +164,7 @@ public ExpressionValueVariable InnerRacewayShoulderDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### NumberOfBall @@ -175,7 +176,7 @@ public ExpressionValueVariable NumberOfBall { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### OuterRacewayGrooveRadius @@ -187,7 +188,7 @@ public ExpressionValueVariable OuterRacewayGrooveRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### OuterRacewayShoulderBore @@ -199,7 +200,7 @@ public ExpressionValueVariable OuterRacewayShoulderBore { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RadialInternalClearanceC2 @@ -211,7 +212,7 @@ public double RadialInternalClearanceC2 { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RadialInternalClearanceC3 @@ -223,7 +224,7 @@ public double RadialInternalClearanceC3 { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RadialInternalClearanceC4 @@ -235,7 +236,7 @@ public double RadialInternalClearanceC4 { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RadialInternalClearanceC5 @@ -247,7 +248,7 @@ public double RadialInternalClearanceC5 { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RadialInternalClearanceCN @@ -259,7 +260,7 @@ public double RadialInternalClearanceCN { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RadialInternalClearanceType @@ -283,7 +284,7 @@ public ExpressionValueVariable RadialInternalClearanceUser { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RoundingRadius @@ -295,7 +296,7 @@ public ExpressionValueVariable RoundingRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -321,11 +322,11 @@ The raceway type. The transformation. -`bTruncated` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bTruncated` bool The truncated falg. -`bReverse` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReverse` bool The reverse direction falg. @@ -343,7 +344,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDimensionTaperedRoller.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDimensionTaperedRoller.md index adc1c0db2f..9e4f4ab177 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDimensionTaperedRoller.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingDimensionTaperedRoller.md @@ -1,4 +1,5 @@ -# Class BearingDimensionTaperedRoller +# Class BearingDimensionTaperedRoller + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class BearingDimensionTaperedRoller : BearingDimensionBase, IObservableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [BearingDimensionBase](VM.Managed.DAFUL.GearTrain.BearingDimensionBase.md) ← [BearingDimensionTaperedRoller](VM.Managed.DAFUL.GearTrain.BearingDimensionTaperedRoller.md) @@ -82,7 +83,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -123,7 +124,7 @@ public ExpressionValueVariable ActionPoint { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ConeRoundingRadius @@ -135,7 +136,7 @@ public ExpressionValueVariable ConeRoundingRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ConeShoulderDiameter @@ -147,7 +148,7 @@ public ExpressionValueVariable ConeShoulderDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ConeWidth @@ -159,7 +160,7 @@ public ExpressionValueVariable ConeWidth { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ContactAngle @@ -171,7 +172,7 @@ public ExpressionValueVariable ContactAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### CupRoundingRadius @@ -183,7 +184,7 @@ public ExpressionValueVariable CupRoundingRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### CupWidth @@ -195,7 +196,7 @@ public ExpressionValueVariable CupWidth { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### NumberOfRoller @@ -207,7 +208,7 @@ public ExpressionValueVariable NumberOfRoller { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RollerCenterPoint @@ -219,7 +220,7 @@ public ExpressionValueVariable RollerCenterPoint { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RollerDiameter @@ -231,7 +232,7 @@ public ExpressionValueVariable RollerDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RollerLength @@ -243,7 +244,7 @@ public ExpressionValueVariable RollerLength { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RollerPitchDiameter @@ -255,7 +256,7 @@ public ExpressionValueVariable RollerPitchDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RollerTaperedAngle @@ -267,7 +268,7 @@ public ExpressionValueVariable RollerTaperedAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -293,11 +294,11 @@ The raceway type. The transformation. -`bTruncated` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bTruncated` bool The truncated falg. -`bReverse` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReverse` bool The reverse direction falg. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingInfoForAssembly.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingInfoForAssembly.md index f1329f39f4..38c6095d21 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingInfoForAssembly.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingInfoForAssembly.md @@ -1,4 +1,5 @@ -# Class BearingInfoForAssembly +# Class BearingInfoForAssembly + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class BearingInfoForAssembly : LinkContainer, IObservableObject, IDisposa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [BearingInfoForAssembly](VM.Managed.DAFUL.GearTrain.BearingInfoForAssembly.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -166,7 +167,7 @@ public bool UseReferenceBody { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### \_ParentBody diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingStiffness.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingStiffness.md index 824dfe6677..fe14e4c835 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingStiffness.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingStiffness.md @@ -1,4 +1,5 @@ -# Class BearingStiffness +# Class BearingStiffness + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,12 +12,12 @@ public class BearingStiffness : SubEntity, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [BearingStiffness](VM.Managed.DAFUL.GearTrain.BearingStiffness.md) #### Implements @@ -26,7 +27,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -45,17 +46,17 @@ INavigatorItem #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -189,7 +190,7 @@ public ExpressionValueVariable AmountOfDataForPlotResult { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### AmountOfDataForPlotResultInitialValue @@ -201,7 +202,7 @@ public static int AmountOfDataForPlotResultInitialValue { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### AxialStiffnessSplineValue @@ -213,7 +214,7 @@ public SplineValue AxialStiffnessSplineValue { get; set; } #### Property Value - SplineValue + [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### DeformationX @@ -225,7 +226,7 @@ public ExpressionValueVariable DeformationX { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DeformationXInitialValue @@ -237,7 +238,7 @@ public static double DeformationXInitialValue { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DeformationY @@ -249,7 +250,7 @@ public ExpressionValueVariable DeformationY { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DeformationYInitialValue @@ -261,7 +262,7 @@ public static double DeformationYInitialValue { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DeformationZ @@ -273,7 +274,7 @@ public ExpressionValueVariable DeformationZ { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DeformationZInitialValue @@ -285,7 +286,7 @@ public static double DeformationZInitialValue { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MaxAxialStiffnessValue @@ -297,7 +298,7 @@ public ExpressionValueVariable MaxAxialStiffnessValue { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MaxDeformationForAxialDirection @@ -309,7 +310,7 @@ public ExpressionValueVariable MaxDeformationForAxialDirection { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MaxDeformationForAxialDirectionInitialValue @@ -321,7 +322,7 @@ public static double MaxDeformationForAxialDirectionInitialValue { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MaxDeformationForRadialDirection @@ -333,7 +334,7 @@ public ExpressionValueVariable MaxDeformationForRadialDirection { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MaxDeformationForRadialDirectionInitialValue @@ -345,7 +346,7 @@ public static double MaxDeformationForRadialDirectionInitialValue { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MaxDeformationForTilting @@ -357,7 +358,7 @@ public ExpressionValueVariable MaxDeformationForTilting { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MaxDeformationForTiltingInitialValue @@ -369,7 +370,7 @@ public static double MaxDeformationForTiltingInitialValue { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MaxRadialStiffnessValue @@ -381,7 +382,7 @@ public ExpressionValueVariable MaxRadialStiffnessValue { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MaxTiltStiffnessValue @@ -393,7 +394,7 @@ public ExpressionValueVariable MaxTiltStiffnessValue { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RadialStiffnessSplineValue @@ -405,7 +406,7 @@ public SplineValue RadialStiffnessSplineValue { get; set; } #### Property Value - SplineValue + [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### ShowAdvancedParameter @@ -417,7 +418,7 @@ public bool ShowAdvancedParameter { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### StiffnessMatrix @@ -429,7 +430,7 @@ public VariableMatrix StiffnessMatrix { get; set; } #### Property Value - VariableMatrix + [VariableMatrix](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/VariableMatrix.cs) ### TiltStiffnessSplineValue @@ -441,7 +442,7 @@ public SplineValue TiltStiffnessSplineValue { get; set; } #### Property Value - SplineValue + [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### TiltX @@ -453,7 +454,7 @@ public ExpressionValueVariable TiltX { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TiltXInitialValue @@ -465,7 +466,7 @@ public static double TiltXInitialValue { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TiltY @@ -477,7 +478,7 @@ public ExpressionValueVariable TiltY { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TiltYInitialValue @@ -489,7 +490,7 @@ public static double TiltYInitialValue { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -517,7 +518,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingStrength.enCleanlinessGreaseType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingStrength.enCleanlinessGreaseType.md index 00b3073d32..cd76660c84 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingStrength.enCleanlinessGreaseType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingStrength.enCleanlinessGreaseType.md @@ -1,4 +1,5 @@ -# Enum BearingStrength.enCleanlinessGreaseType +# Enum BearingStrength.enCleanlinessGreaseType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingStrength.enCleanlinessISONoFilterType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingStrength.enCleanlinessISONoFilterType.md index e2213a8a05..cf04f19ae9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingStrength.enCleanlinessISONoFilterType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingStrength.enCleanlinessISONoFilterType.md @@ -1,4 +1,5 @@ -# Enum BearingStrength.enCleanlinessISONoFilterType +# Enum BearingStrength.enCleanlinessISONoFilterType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingStrength.enCleanlinessISOType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingStrength.enCleanlinessISOType.md index 31497d88d6..a05dfc08ae 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingStrength.enCleanlinessISOType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingStrength.enCleanlinessISOType.md @@ -1,4 +1,5 @@ -# Enum BearingStrength.enCleanlinessISOType +# Enum BearingStrength.enCleanlinessISOType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingStrength.enLubricantType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingStrength.enLubricantType.md index a87f40b887..fd6832f748 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingStrength.enLubricantType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingStrength.enLubricantType.md @@ -1,4 +1,5 @@ -# Enum BearingStrength.enLubricantType +# Enum BearingStrength.enLubricantType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingStrength.ena1Type.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingStrength.ena1Type.md index 4db9b8dfa7..4c925824f0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingStrength.ena1Type.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingStrength.ena1Type.md @@ -1,4 +1,5 @@ -# Enum BearingStrength.ena1Type +# Enum BearingStrength.ena1Type + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingStrength.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingStrength.md index 05b2025496..f45a52e0ca 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingStrength.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.BearingStrength.md @@ -1,4 +1,5 @@ -# Class BearingStrength +# Class BearingStrength + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,12 +12,12 @@ public class BearingStrength : SubEntity, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [BearingStrength](VM.Managed.DAFUL.GearTrain.BearingStrength.md) #### Implements @@ -26,7 +27,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -45,17 +46,17 @@ INavigatorItem #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -189,7 +190,7 @@ public ExpressionValueVariable AxialForce { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### C0r @@ -201,7 +202,7 @@ public ExpressionValueVariable C0r { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### C0r\_Lib @@ -213,7 +214,7 @@ public ExpressionValueVariable C0r_Lib { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Cleanliness @@ -261,7 +262,7 @@ public ExpressionValueVariable ContactAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ContactAngle\_Lib @@ -273,7 +274,7 @@ public ExpressionValueVariable ContactAngle_Lib { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Cr @@ -285,7 +286,7 @@ public ExpressionValueVariable Cr { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Cr\_Lib @@ -297,7 +298,7 @@ public ExpressionValueVariable Cr_Lib { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### L10 @@ -309,7 +310,7 @@ public ExpressionValueVariable L10 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Lnm @@ -321,7 +322,7 @@ public ExpressionValueVariable Lnm { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Lubricant @@ -345,7 +346,7 @@ public ExpressionValueVariable Pr { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RadialForce @@ -357,7 +358,7 @@ public ExpressionValueVariable RadialForce { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Speed @@ -369,7 +370,7 @@ public ExpressionValueVariable Speed { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Temperature @@ -381,7 +382,7 @@ public ExpressionValueVariable Temperature { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TireRadius @@ -393,7 +394,7 @@ public ExpressionValueVariable TireRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### UseLibrary @@ -405,7 +406,7 @@ public bool UseLibrary { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseUserInput @@ -417,7 +418,7 @@ public bool UseUserInput { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Y @@ -429,7 +430,7 @@ public ExpressionValueVariable Y { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Y\_Lib @@ -441,7 +442,7 @@ public ExpressionValueVariable Y_Lib { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### a1 @@ -465,7 +466,7 @@ public ExpressionValueVariable e { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### e\_Lib @@ -477,7 +478,7 @@ public ExpressionValueVariable e_Lib { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### f0 @@ -489,7 +490,7 @@ public ExpressionValueVariable f0 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### f0\_Lib @@ -501,7 +502,7 @@ public ExpressionValueVariable f0_Lib { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -515,7 +516,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedGearBuilder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedGearBuilder.md index 64952d9723..91a0579757 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedGearBuilder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedGearBuilder.md @@ -1,4 +1,5 @@ -# Class AddedGearBuilder +# Class AddedGearBuilder + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll The added gear builder ```csharp -public class AddedGearBuilder : GearBuilder, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder, IGearBuilder, IGTBuilder, IAddOnBearing, IAddedBuilder +public class AddedGearBuilder : GearBuilder, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder, IGearBuilder, IGTBuilder, IAddOnBearing, IAddedBuilder ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -36,8 +37,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md), [IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md), [IGTBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGTBuilder.md), @@ -102,6 +104,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -205,7 +209,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -260,7 +264,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. @@ -278,7 +282,7 @@ protected override void LinkRequestUpdating(object objNotifier, LinkEventArgs ar #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedGearBuilderForRBEInFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedGearBuilderForRBEInFE.md index 6de268ce32..7d9abec301 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedGearBuilderForRBEInFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedGearBuilderForRBEInFE.md @@ -1,4 +1,5 @@ -# Class AddedGearBuilderForRBEInFE +# Class AddedGearBuilderForRBEInFE + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll The added gear builder for rbe in fe ```csharp -public class AddedGearBuilderForRBEInFE : GearBuilderForRBEInFE, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder, IGearBuilder, IGTBuilder, IAddOnBearing, IAddedBuilder +public class AddedGearBuilderForRBEInFE : GearBuilderForRBEInFE, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder, IGearBuilder, IGTBuilder, IAddOnBearing, IAddedBuilder ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -36,8 +37,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md), [IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md), [IGTBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGTBuilder.md), @@ -104,6 +106,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -207,7 +211,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -262,7 +266,7 @@ protected override void LinkRequestUpdating(object objNotifier, LinkEventArgs ar #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedGearBuilderForRBEInMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedGearBuilderForRBEInMeshFree.md index 7c3c3b1588..e63f9a3327 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedGearBuilderForRBEInMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedGearBuilderForRBEInMeshFree.md @@ -1,4 +1,5 @@ -# Class AddedGearBuilderForRBEInMeshFree +# Class AddedGearBuilderForRBEInMeshFree + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll The added gear builder for rbe in meshfree ```csharp -public class AddedGearBuilderForRBEInMeshFree : GearBuilderForRBEInMeshFree, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder, IGearBuilder, IGTBuilder, IAddOnBearing, IAddedBuilder +public class AddedGearBuilderForRBEInMeshFree : GearBuilderForRBEInMeshFree, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder, IGearBuilder, IGTBuilder, IAddOnBearing, IAddedBuilder ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -37,8 +38,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md), [IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md), [IGTBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGTBuilder.md), @@ -105,6 +107,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -208,7 +212,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -263,7 +267,7 @@ protected override void LinkRequestUpdating(object objNotifier, LinkEventArgs ar #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedHDBearingBuilder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedHDBearingBuilder.md index e50dc806d2..e44bdb2bf0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedHDBearingBuilder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedHDBearingBuilder.md @@ -1,4 +1,5 @@ -# Class AddedHDBearingBuilder +# Class AddedHDBearingBuilder + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll Added Hydro Dynamic Bearing Builder ```csharp -public class AddedHDBearingBuilder : HDBearingBuilder, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder, IAddedBuilderForBearing, IAddedBuilder +public class AddedHDBearingBuilder : HDBearingBuilder, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder, IAddedBuilderForBearing, IAddedBuilder ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -41,8 +42,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md), [IAddedBuilderForBearing](VM.Managed.DAFUL.GearTrain.CAD.IAddedBuilderForBearing.md), [IAddedBuilder](VM.Managed.DAFUL.GearTrain.CAD.IAddedBuilder.md) @@ -73,6 +75,8 @@ BuilderMulti.GetUnnamedObjectName\(object\), BuilderMulti.FindLocal\(string\), BuilderMulti.Contains\(Type\), BuilderMulti.CopyFilePathWhenImportBuilder\(Builder\), +BuilderMulti.HasReplaceableEntity\(IObjectBase\), +BuilderMulti.ReplaceEntity\(IObjectBase, IObjectBase\), BuilderMulti.FillParameter\(BuilderParamBase\), BuilderMulti.OnDeserializationImpl\(ref List\>\), BuilderMulti.ReadXmlImpl\(XmlReader\), @@ -109,6 +113,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -212,7 +218,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedHDBearingBuilderForRBEInFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedHDBearingBuilderForRBEInFE.md index bef9dc5839..e1216ecf16 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedHDBearingBuilderForRBEInFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedHDBearingBuilderForRBEInFE.md @@ -1,4 +1,5 @@ -# Class AddedHDBearingBuilderForRBEInFE +# Class AddedHDBearingBuilderForRBEInFE + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll Added Hydro Dynamic Bearing Builder For RBE In FE ```csharp -public class AddedHDBearingBuilderForRBEInFE : HDBearingBuilderForRBEInFE, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder, IAddedBuilderForBearing, IAddedBuilder +public class AddedHDBearingBuilderForRBEInFE : HDBearingBuilderForRBEInFE, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder, IAddedBuilderForBearing, IAddedBuilder ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -41,8 +42,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md), [IAddedBuilderForBearing](VM.Managed.DAFUL.GearTrain.CAD.IAddedBuilderForBearing.md), [IAddedBuilder](VM.Managed.DAFUL.GearTrain.CAD.IAddedBuilder.md) @@ -76,6 +78,8 @@ BuilderMulti.GetUnnamedObjectName\(object\), BuilderMulti.FindLocal\(string\), BuilderMulti.Contains\(Type\), BuilderMulti.CopyFilePathWhenImportBuilder\(Builder\), +BuilderMulti.HasReplaceableEntity\(IObjectBase\), +BuilderMulti.ReplaceEntity\(IObjectBase, IObjectBase\), BuilderMulti.FillParameter\(BuilderParamBase\), BuilderMulti.OnDeserializationImpl\(ref List\>\), BuilderMulti.ReadXmlImpl\(XmlReader\), @@ -112,6 +116,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -215,7 +221,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedHDBearingBuilderForRBEInMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedHDBearingBuilderForRBEInMeshFree.md index 42c6a176cc..f9bf7781dc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedHDBearingBuilderForRBEInMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedHDBearingBuilderForRBEInMeshFree.md @@ -1,4 +1,5 @@ -# Class AddedHDBearingBuilderForRBEInMeshFree +# Class AddedHDBearingBuilderForRBEInMeshFree + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll Added Hydro Dynamic Bearing Builder For RBE In Mesh Free ```csharp -public class AddedHDBearingBuilderForRBEInMeshFree : HDBearingBuilderForRBEInMeshFree, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder, IAddedBuilderForBearing, IAddedBuilder +public class AddedHDBearingBuilderForRBEInMeshFree : HDBearingBuilderForRBEInMeshFree, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder, IAddedBuilderForBearing, IAddedBuilder ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -42,8 +43,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md), [IAddedBuilderForBearing](VM.Managed.DAFUL.GearTrain.CAD.IAddedBuilderForBearing.md), [IAddedBuilder](VM.Managed.DAFUL.GearTrain.CAD.IAddedBuilder.md) @@ -77,6 +79,8 @@ BuilderMulti.GetUnnamedObjectName\(object\), BuilderMulti.FindLocal\(string\), BuilderMulti.Contains\(Type\), BuilderMulti.CopyFilePathWhenImportBuilder\(Builder\), +BuilderMulti.HasReplaceableEntity\(IObjectBase\), +BuilderMulti.ReplaceEntity\(IObjectBase, IObjectBase\), BuilderMulti.FillParameter\(BuilderParamBase\), BuilderMulti.OnDeserializationImpl\(ref List\>\), BuilderMulti.ReadXmlImpl\(XmlReader\), @@ -113,6 +117,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -216,7 +222,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedRacewayBuilder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedRacewayBuilder.md index b31f8e7c1a..c2e848278a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedRacewayBuilder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedRacewayBuilder.md @@ -1,4 +1,5 @@ -# Class AddedRacewayBuilder +# Class AddedRacewayBuilder + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll Added Bearing Builder ```csharp -public class AddedRacewayBuilder : RacewayBuilder, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder, IRacewayBuilder, IGTBuilder, IAddedBuilderForBearing, IAddedBuilder +public class AddedRacewayBuilder : RacewayBuilder, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder, IRacewayBuilder, IGTBuilder, IAddedBuilderForBearing, IAddedBuilder ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -41,8 +42,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md), [IRacewayBuilder](VM.Managed.DAFUL.GearTrain.CAD.IRacewayBuilder.md), [IGTBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGTBuilder.md), @@ -86,6 +88,8 @@ BuilderMulti.GetUnnamedObjectName\(object\), BuilderMulti.FindLocal\(string\), BuilderMulti.Contains\(Type\), BuilderMulti.CopyFilePathWhenImportBuilder\(Builder\), +BuilderMulti.HasReplaceableEntity\(IObjectBase\), +BuilderMulti.ReplaceEntity\(IObjectBase, IObjectBase\), BuilderMulti.FillParameter\(BuilderParamBase\), BuilderMulti.OnDeserializationImpl\(ref List\>\), BuilderMulti.ReadXmlImpl\(XmlReader\), @@ -122,6 +126,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -225,7 +231,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -304,7 +310,7 @@ public TMatrix GetTransformImpl(bool bSimulate) #### Parameters -`bSimulate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bSimulate` bool The simulate. @@ -322,7 +328,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedRacewayBuilderForRBEInFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedRacewayBuilderForRBEInFE.md index 5ed0d98c17..eb88a22b6c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedRacewayBuilderForRBEInFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedRacewayBuilderForRBEInFE.md @@ -1,4 +1,5 @@ -# Class AddedRacewayBuilderForRBEInFE +# Class AddedRacewayBuilderForRBEInFE + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll The added raceway builder for rbe in fe ```csharp -public class AddedRacewayBuilderForRBEInFE : RacewayBuilderForRBEInFE, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder, IRacewayBuilder, IGTBuilder, IAddedBuilderForBearing, IAddedBuilder +public class AddedRacewayBuilderForRBEInFE : RacewayBuilderForRBEInFE, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder, IRacewayBuilder, IGTBuilder, IAddedBuilderForBearing, IAddedBuilder ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -41,8 +42,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md), [IRacewayBuilder](VM.Managed.DAFUL.GearTrain.CAD.IRacewayBuilder.md), [IGTBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGTBuilder.md), @@ -86,6 +88,8 @@ BuilderMulti.GetUnnamedObjectName\(object\), BuilderMulti.FindLocal\(string\), BuilderMulti.Contains\(Type\), BuilderMulti.CopyFilePathWhenImportBuilder\(Builder\), +BuilderMulti.HasReplaceableEntity\(IObjectBase\), +BuilderMulti.ReplaceEntity\(IObjectBase, IObjectBase\), BuilderMulti.FillParameter\(BuilderParamBase\), BuilderMulti.OnDeserializationImpl\(ref List\>\), BuilderMulti.ReadXmlImpl\(XmlReader\), @@ -122,6 +126,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -225,7 +231,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -294,7 +300,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedRacewayBuilderForRBEInMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedRacewayBuilderForRBEInMeshFree.md index 56e189d889..d65152744a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedRacewayBuilderForRBEInMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedRacewayBuilderForRBEInMeshFree.md @@ -1,4 +1,5 @@ -# Class AddedRacewayBuilderForRBEInMeshFree +# Class AddedRacewayBuilderForRBEInMeshFree + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll The added raceway builder for rbe in meshfree ```csharp -public class AddedRacewayBuilderForRBEInMeshFree : RacewayBuilderForRBEInMeshFree, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder, IRacewayBuilder, IGTBuilder, IAddedBuilderForBearing, IAddedBuilder +public class AddedRacewayBuilderForRBEInMeshFree : RacewayBuilderForRBEInMeshFree, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder, IRacewayBuilder, IGTBuilder, IAddedBuilderForBearing, IAddedBuilder ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -42,8 +43,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md), [IRacewayBuilder](VM.Managed.DAFUL.GearTrain.CAD.IRacewayBuilder.md), [IGTBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGTBuilder.md), @@ -87,6 +89,8 @@ BuilderMulti.GetUnnamedObjectName\(object\), BuilderMulti.FindLocal\(string\), BuilderMulti.Contains\(Type\), BuilderMulti.CopyFilePathWhenImportBuilder\(Builder\), +BuilderMulti.HasReplaceableEntity\(IObjectBase\), +BuilderMulti.ReplaceEntity\(IObjectBase, IObjectBase\), BuilderMulti.FillParameter\(BuilderParamBase\), BuilderMulti.OnDeserializationImpl\(ref List\>\), BuilderMulti.ReadXmlImpl\(XmlReader\), @@ -123,6 +127,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -226,7 +232,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -295,7 +301,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedRackBuilderForRBEInFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedRackBuilderForRBEInFE.md index 30f62a1278..d2dd555d46 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedRackBuilderForRBEInFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedRackBuilderForRBEInFE.md @@ -1,4 +1,5 @@ -# Class AddedRackBuilderForRBEInFE +# Class AddedRackBuilderForRBEInFE + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll The added rack builder for rbe in fe ```csharp -public class AddedRackBuilderForRBEInFE : RackBuilderForRBEInFE, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder, IGearBuilder, IGTBuilder, IAddOnBearing, IAddedBuilder +public class AddedRackBuilderForRBEInFE : RackBuilderForRBEInFE, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder, IGearBuilder, IGTBuilder, IAddOnBearing, IAddedBuilder ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -37,8 +38,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md), [IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md), [IGTBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGTBuilder.md), @@ -112,6 +114,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -215,7 +219,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -270,7 +274,7 @@ protected override void LinkRequestUpdating(object objNotifier, LinkEventArgs ar #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedRackBuilderForRBEInMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedRackBuilderForRBEInMeshFree.md index 8862785549..c0c5ef34d9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedRackBuilderForRBEInMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedRackBuilderForRBEInMeshFree.md @@ -1,4 +1,5 @@ -# Class AddedRackBuilderForRBEInMeshFree +# Class AddedRackBuilderForRBEInMeshFree + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll The added rack builder for rbe in meshfree ```csharp -public class AddedRackBuilderForRBEInMeshFree : RackBuilderForRBEInMeshFree, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder, IGearBuilder, IGTBuilder, IAddOnBearing, IAddedBuilder +public class AddedRackBuilderForRBEInMeshFree : RackBuilderForRBEInMeshFree, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder, IGearBuilder, IGTBuilder, IAddOnBearing, IAddedBuilder ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -38,8 +39,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md), [IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md), [IGTBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGTBuilder.md), @@ -113,6 +115,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -216,7 +220,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -271,7 +275,7 @@ protected override void LinkRequestUpdating(object objNotifier, LinkEventArgs ar #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedSlidingBearingBuilder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedSlidingBearingBuilder.md index 898481717d..ed2a510438 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedSlidingBearingBuilder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedSlidingBearingBuilder.md @@ -1,4 +1,5 @@ -# Class AddedSlidingBearingBuilder +# Class AddedSlidingBearingBuilder + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll Added Sliding Bearing Builder ```csharp -public class AddedSlidingBearingBuilder : SlidingBearingBuilder, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder, IPostDeserialized, ISlidingBuilder, IGTBuilder, IAddedBuilder +public class AddedSlidingBearingBuilder : SlidingBearingBuilder, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder, IPostDeserialized, ISlidingBuilder, IGTBuilder, IAddedBuilder ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -41,8 +42,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md), IPostDeserialized, [ISlidingBuilder](VM.Managed.DAFUL.GearTrain.CAD.ISlidingBuilder.md), @@ -61,6 +63,7 @@ IPostDeserialized, [SlidingBearingBuilder.ReferencePoint](VM.Managed.DAFUL.GearTrain.CAD.SlidingBearingBuilder.md\#VM\_Managed\_DAFUL\_GearTrain\_CAD\_SlidingBearingBuilder\_ReferencePoint), [SlidingBearingBuilder.StartAngle](VM.Managed.DAFUL.GearTrain.CAD.SlidingBearingBuilder.md\#VM\_Managed\_DAFUL\_GearTrain\_CAD\_SlidingBearingBuilder\_StartAngle), [SlidingBearingBuilder.ReferenceOffset](VM.Managed.DAFUL.GearTrain.CAD.SlidingBearingBuilder.md\#VM\_Managed\_DAFUL\_GearTrain\_CAD\_SlidingBearingBuilder\_ReferenceOffset), +[SlidingBearingBuilder.IsOpenDesigner](VM.Managed.DAFUL.GearTrain.CAD.SlidingBearingBuilder.md\#VM\_Managed\_DAFUL\_GearTrain\_CAD\_SlidingBearingBuilder\_IsOpenDesigner), [SlidingBearingBuilder.ConnectableEntity](VM.Managed.DAFUL.GearTrain.CAD.SlidingBearingBuilder.md\#VM\_Managed\_DAFUL\_GearTrain\_CAD\_SlidingBearingBuilder\_ConnectableEntity), [SlidingBearingBuilder.OffsetToAxisDirection](VM.Managed.DAFUL.GearTrain.CAD.SlidingBearingBuilder.md\#VM\_Managed\_DAFUL\_GearTrain\_CAD\_SlidingBearingBuilder\_OffsetToAxisDirection), [SlidingBearingBuilder.Rotation](VM.Managed.DAFUL.GearTrain.CAD.SlidingBearingBuilder.md\#VM\_Managed\_DAFUL\_GearTrain\_CAD\_SlidingBearingBuilder\_Rotation), @@ -96,6 +99,8 @@ BuilderMulti.GetUnnamedObjectName\(object\), BuilderMulti.FindLocal\(string\), BuilderMulti.Contains\(Type\), BuilderMulti.CopyFilePathWhenImportBuilder\(Builder\), +BuilderMulti.HasReplaceableEntity\(IObjectBase\), +BuilderMulti.ReplaceEntity\(IObjectBase, IObjectBase\), BuilderMulti.FillParameter\(BuilderParamBase\), BuilderMulti.OnDeserializationImpl\(ref List\>\), BuilderMulti.ReadXmlImpl\(XmlReader\), @@ -132,6 +137,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -235,7 +242,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -318,7 +325,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedSlidingBearingBuilderForRBEInFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedSlidingBearingBuilderForRBEInFE.md index 189cc47938..2e687e3a25 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedSlidingBearingBuilderForRBEInFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedSlidingBearingBuilderForRBEInFE.md @@ -1,4 +1,5 @@ -# Class AddedSlidingBearingBuilderForRBEInFE +# Class AddedSlidingBearingBuilderForRBEInFE + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll Added Sliding Bearing Builder For RBE In FE ```csharp -public class AddedSlidingBearingBuilderForRBEInFE : SlidingBearingBuilderForRBEInFE, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder, IPostDeserialized, ISlidingBuilder, IGTBuilder, IAddedBuilder +public class AddedSlidingBearingBuilderForRBEInFE : SlidingBearingBuilderForRBEInFE, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder, IPostDeserialized, ISlidingBuilder, IGTBuilder, IAddedBuilder ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -41,8 +42,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md), IPostDeserialized, [ISlidingBuilder](VM.Managed.DAFUL.GearTrain.CAD.ISlidingBuilder.md), @@ -94,6 +96,8 @@ BuilderMulti.GetUnnamedObjectName\(object\), BuilderMulti.FindLocal\(string\), BuilderMulti.Contains\(Type\), BuilderMulti.CopyFilePathWhenImportBuilder\(Builder\), +BuilderMulti.HasReplaceableEntity\(IObjectBase\), +BuilderMulti.ReplaceEntity\(IObjectBase, IObjectBase\), BuilderMulti.FillParameter\(BuilderParamBase\), BuilderMulti.OnDeserializationImpl\(ref List\>\), BuilderMulti.ReadXmlImpl\(XmlReader\), @@ -130,6 +134,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -233,7 +239,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -304,7 +310,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedSlidingBearingBuilderForRBEInMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedSlidingBearingBuilderForRBEInMeshFree.md index a635806201..a459d67dc5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedSlidingBearingBuilderForRBEInMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedSlidingBearingBuilderForRBEInMeshFree.md @@ -1,4 +1,5 @@ -# Class AddedSlidingBearingBuilderForRBEInMeshFree +# Class AddedSlidingBearingBuilderForRBEInMeshFree + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll Added Sliding Bearing Builder For RBE In Mesh Free ```csharp -public class AddedSlidingBearingBuilderForRBEInMeshFree : SlidingBearingBuilderForRBEInMeshFree, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder, IPostDeserialized, ISlidingBuilder, IGTBuilder, IAddedBuilder +public class AddedSlidingBearingBuilderForRBEInMeshFree : SlidingBearingBuilderForRBEInMeshFree, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder, IPostDeserialized, ISlidingBuilder, IGTBuilder, IAddedBuilder ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -42,8 +43,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md), IPostDeserialized, [ISlidingBuilder](VM.Managed.DAFUL.GearTrain.CAD.ISlidingBuilder.md), @@ -96,6 +98,8 @@ BuilderMulti.GetUnnamedObjectName\(object\), BuilderMulti.FindLocal\(string\), BuilderMulti.Contains\(Type\), BuilderMulti.CopyFilePathWhenImportBuilder\(Builder\), +BuilderMulti.HasReplaceableEntity\(IObjectBase\), +BuilderMulti.ReplaceEntity\(IObjectBase, IObjectBase\), BuilderMulti.FillParameter\(BuilderParamBase\), BuilderMulti.OnDeserializationImpl\(ref List\>\), BuilderMulti.ReadXmlImpl\(XmlReader\), @@ -132,6 +136,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -235,7 +241,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -306,7 +312,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedWebBuilder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedWebBuilder.md index c7cbdbec12..924926c0e2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedWebBuilder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.AddedWebBuilder.md @@ -1,4 +1,5 @@ -# Class AddedWebBuilder +# Class AddedWebBuilder + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll Added Web Builder ```csharp -public class AddedWebBuilder : BuilderMultiUniteSimple, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder +public class AddedWebBuilder : BuilderMultiUniteSimple, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -39,8 +40,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md) #### Inherited Members @@ -61,6 +63,8 @@ BuilderMulti.GetUnnamedObjectName\(object\), BuilderMulti.FindLocal\(string\), BuilderMulti.Contains\(Type\), BuilderMulti.CopyFilePathWhenImportBuilder\(Builder\), +BuilderMulti.HasReplaceableEntity\(IObjectBase\), +BuilderMulti.ReplaceEntity\(IObjectBase, IObjectBase\), BuilderMulti.FillParameter\(BuilderParamBase\), BuilderMulti.OnDeserializationImpl\(ref List\>\), BuilderMulti.ReadXmlImpl\(XmlReader\), @@ -97,6 +101,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -200,7 +206,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -269,7 +275,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. @@ -287,7 +293,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GearBuilder.ParentType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GearBuilder.ParentType.md index 572c04e403..b3a3a41c73 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GearBuilder.ParentType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GearBuilder.ParentType.md @@ -1,4 +1,5 @@ -# Enum GearBuilder.ParentType +# Enum GearBuilder.ParentType + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GearBuilder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GearBuilder.md index 909e81730e..5db1993ec7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GearBuilder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GearBuilder.md @@ -1,4 +1,5 @@ -# Class GearBuilder +# Class GearBuilder + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll The gear builder ```csharp -public class GearBuilder : BuilderColorGeom, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder, IGearBuilder, IGTBuilder, IAddOnBearing +public class GearBuilder : BuilderColorGeom, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder, IGearBuilder, IGTBuilder, IAddOnBearing ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -40,8 +41,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md), [IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md), [IGTBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGTBuilder.md), @@ -78,6 +80,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -181,7 +185,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -259,7 +263,7 @@ public bool IsDesigner { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MateAngle @@ -272,7 +276,7 @@ public double MateAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### OffsetToAxisDirection @@ -284,7 +288,7 @@ public double OffsetToAxisDirection { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Position @@ -309,7 +313,7 @@ public double ReferenceOffset { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ReferencePoint @@ -372,7 +376,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamBase\) @@ -382,7 +386,7 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### GetLengthAndHeight\(ref double, ref double\) @@ -394,11 +398,11 @@ public void GetLengthAndHeight(ref double dLength, ref double dHeight) #### Parameters -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double Length of the d. -`dHeight` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHeight` double Height of the d. @@ -448,7 +452,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -466,7 +470,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. @@ -484,7 +488,7 @@ public void SetDesigner(bool bFlag) #### Parameters -`bFlag` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bFlag` bool The designer flag. @@ -498,7 +502,7 @@ public void SetMateAngle(double dMateAngle) #### Parameters -`dMateAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMateAngle` double The mate angle. @@ -512,7 +516,7 @@ public void SetReferenceOffset(double dOffset) #### Parameters -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double The reference offset. @@ -572,13 +576,13 @@ public bool UpdateGearGeometry(Section secFind, bool bDesigner) The sec find. -`bDesigner` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDesigner` bool The designer flag. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UpdateGeometry\(HiddenDocument, ParentType, double, ReferencePointType, Vector\) @@ -590,7 +594,7 @@ public void UpdateGeometry(HiddenDocument hiddenDoc, GearBuilder.ParentType type #### Parameters -`hiddenDoc` HiddenDocument +`hiddenDoc` [HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) The hidden document. @@ -598,7 +602,7 @@ The hidden document. The type p. -`dReferenceOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dReferenceOffset` double The d reference offset. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GearBuilderForRBEInFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GearBuilderForRBEInFE.md index b419ad20a3..75cd30bc62 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GearBuilderForRBEInFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GearBuilderForRBEInFE.md @@ -1,4 +1,5 @@ -# Class GearBuilderForRBEInFE +# Class GearBuilderForRBEInFE + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll The gear builder for rbe in fe ```csharp -public class GearBuilderForRBEInFE : BuilderColorGeom, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder, IGearBuilder, IGTBuilder, IAddOnBearing +public class GearBuilderForRBEInFE : BuilderColorGeom, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder, IGearBuilder, IGTBuilder, IAddOnBearing ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -41,8 +42,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md), [IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md), [IGTBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGTBuilder.md), @@ -79,6 +81,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -182,7 +186,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -260,7 +264,7 @@ public bool IsDesigner { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MateAngle @@ -273,7 +277,7 @@ public double MateAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### OffsetToAxisDirection @@ -285,7 +289,7 @@ public double OffsetToAxisDirection { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ParentConnectable @@ -322,7 +326,7 @@ public double ReferenceOffset { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ReferencePoint @@ -409,7 +413,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamBase\) @@ -419,7 +423,7 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### GetLengthAndHeight\(ref double, ref double\) @@ -431,11 +435,11 @@ public void GetLengthAndHeight(ref double dLength, ref double dHeight) #### Parameters -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double Length of the d. -`dHeight` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHeight` double Height of the d. @@ -463,7 +467,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -481,7 +485,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. @@ -499,7 +503,7 @@ public void SetDesigner(bool bFlag) #### Parameters -`bFlag` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bFlag` bool The designer flag. @@ -513,7 +517,7 @@ public void SetMateAngle(double dMateAngle) #### Parameters -`dMateAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMateAngle` double The mate angle. @@ -527,7 +531,7 @@ public void SetReferenceOffset(double dOffset) #### Parameters -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double The reference offset. @@ -591,7 +595,7 @@ public void UpdateGeometry(HiddenDocument hiddenDoc, GearBuilder.ParentType type #### Parameters -`hiddenDoc` HiddenDocument +`hiddenDoc` [HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) The hidden document. @@ -599,11 +603,11 @@ The hidden document. The type p. -`strRBE` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRBE` string The string rbe. -`dReferenceOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dReferenceOffset` double The d reference offset. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GearBuilderForRBEInMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GearBuilderForRBEInMeshFree.md index 3d4d634066..1dad5d8bd9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GearBuilderForRBEInMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GearBuilderForRBEInMeshFree.md @@ -1,4 +1,5 @@ -# Class GearBuilderForRBEInMeshFree +# Class GearBuilderForRBEInMeshFree + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll The gear builder for rbe in meshfree ```csharp -public class GearBuilderForRBEInMeshFree : GearBuilderForRBEInFE, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder, IGearBuilder, IGTBuilder, IAddOnBearing +public class GearBuilderForRBEInMeshFree : GearBuilderForRBEInFE, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder, IGearBuilder, IGTBuilder, IAddOnBearing ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -40,8 +41,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md), [IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md), [IGTBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGTBuilder.md), @@ -107,6 +109,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -210,7 +214,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GearBuilderForSolidBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GearBuilderForSolidBody.md index a52f5f4377..a48a4b8646 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GearBuilderForSolidBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GearBuilderForSolidBody.md @@ -1,4 +1,5 @@ -# Class GearBuilderForSolidBody +# Class GearBuilderForSolidBody + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll The gear builder ```csharp -public class GearBuilderForSolidBody : GearBuilder, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder, IGearBuilder, IGTBuilder, IAddOnBearing +public class GearBuilderForSolidBody : GearBuilder, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder, IGearBuilder, IGTBuilder, IAddOnBearing ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -36,8 +37,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md), [IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md), [IGTBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGTBuilder.md), @@ -101,6 +103,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -204,7 +208,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GearGeometry.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GearGeometry.md index c86f468155..3e75e72022 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GearGeometry.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GearGeometry.md @@ -1,4 +1,5 @@ -# Class GearGeometry +# Class GearGeometry + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class GearGeometry : GeometryBase, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Body ← @@ -35,7 +36,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, ITransformable, @@ -279,7 +280,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -346,7 +347,7 @@ The document. The type rp. -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double The d offset. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GearGeometryForRBEInFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GearGeometryForRBEInFE.md index bee2cba692..dd774f5acd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GearGeometryForRBEInFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GearGeometryForRBEInFE.md @@ -1,4 +1,5 @@ -# Class GearGeometryForRBEInFE +# Class GearGeometryForRBEInFE + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class GearGeometryForRBEInFE : GeometryBase, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Body ← @@ -35,7 +36,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, ITransformable, @@ -279,7 +280,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -356,7 +357,7 @@ The type parent. The type rp. -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double The d offset. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GearGeometryForRBEInMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GearGeometryForRBEInMeshFree.md index b959d046a7..a6d67503eb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GearGeometryForRBEInMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GearGeometryForRBEInMeshFree.md @@ -1,4 +1,5 @@ -# Class GearGeometryForRBEInMeshFree +# Class GearGeometryForRBEInMeshFree + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class GearGeometryForRBEInMeshFree : GeometryBase, IObservableObject, IDi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Body ← @@ -35,7 +36,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, ITransformable, @@ -279,7 +280,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -358,7 +359,7 @@ The type parent. The type rp. -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double The d offset. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GeometryBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GeometryBase.md index 9724114f49..afbafe6f5d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GeometryBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.GeometryBase.md @@ -1,4 +1,5 @@ -# Class GeometryBase +# Class GeometryBase + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public abstract class GeometryBase : Body, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Body ← @@ -45,7 +46,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, ITransformable, @@ -285,7 +286,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -340,7 +341,7 @@ protected string m_strNameWhenDelete #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -354,7 +355,7 @@ protected virtual string GetNameWhenDelete() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### LinkRequestDestroy\(object, LinkEventArgs\) @@ -366,7 +367,7 @@ protected override void LinkRequestDestroy(object obNotifier, LinkEventArgs arg) #### Parameters -`obNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obNotifier` object The ob notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.HDBearingBuilder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.HDBearingBuilder.md index c8beb04ba0..0defa935e0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.HDBearingBuilder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.HDBearingBuilder.md @@ -1,4 +1,5 @@ -# Class HDBearingBuilder +# Class HDBearingBuilder + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll Hydro Dynamic Bearing Builder ```csharp -public class HDBearingBuilder : HDBearingBuilderBase, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder +public class HDBearingBuilder : HDBearingBuilderBase, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -44,8 +45,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md) #### Inherited Members @@ -69,6 +71,8 @@ BuilderMulti.GetUnnamedObjectName\(object\), BuilderMulti.FindLocal\(string\), BuilderMulti.Contains\(Type\), BuilderMulti.CopyFilePathWhenImportBuilder\(Builder\), +BuilderMulti.HasReplaceableEntity\(IObjectBase\), +BuilderMulti.ReplaceEntity\(IObjectBase, IObjectBase\), BuilderMulti.FillParameter\(BuilderParamBase\), BuilderMulti.OnDeserializationImpl\(ref List\>\), BuilderMulti.ReadXmlImpl\(XmlReader\), @@ -105,6 +109,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -208,7 +214,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -250,7 +256,7 @@ public bool IsReverse { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReferenceOffset @@ -263,7 +269,7 @@ public double ReferenceOffset { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ReferencePoint diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.HDBearingBuilderBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.HDBearingBuilderBase.md index 45c088f520..d371134d25 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.HDBearingBuilderBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.HDBearingBuilderBase.md @@ -1,4 +1,5 @@ -# Class HDBearingBuilderBase +# Class HDBearingBuilderBase + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll Hydro Dynamic Bearing Builder Base ```csharp -public class HDBearingBuilderBase : BuilderMultiUniteSimple, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder +public class HDBearingBuilderBase : BuilderMultiUniteSimple, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -44,8 +45,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md) #### Inherited Members @@ -66,6 +68,8 @@ BuilderMulti.GetUnnamedObjectName\(object\), BuilderMulti.FindLocal\(string\), BuilderMulti.Contains\(Type\), BuilderMulti.CopyFilePathWhenImportBuilder\(Builder\), +BuilderMulti.HasReplaceableEntity\(IObjectBase\), +BuilderMulti.ReplaceEntity\(IObjectBase, IObjectBase\), BuilderMulti.FillParameter\(BuilderParamBase\), BuilderMulti.OnDeserializationImpl\(ref List\>\), BuilderMulti.ReadXmlImpl\(XmlReader\), @@ -102,6 +106,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -205,7 +211,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -258,7 +264,7 @@ public virtual double OffsetToAxisDirection { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.HDBearingBuilderForRBEInFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.HDBearingBuilderForRBEInFE.md index 71635da7ba..df533919ca 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.HDBearingBuilderForRBEInFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.HDBearingBuilderForRBEInFE.md @@ -1,4 +1,5 @@ -# Class HDBearingBuilderForRBEInFE +# Class HDBearingBuilderForRBEInFE + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll Hydro Dynamic Bearing Builder For RBE In FE ```csharp -public class HDBearingBuilderForRBEInFE : HDBearingBuilderBase, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder +public class HDBearingBuilderForRBEInFE : HDBearingBuilderBase, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -45,8 +46,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md) #### Inherited Members @@ -70,6 +72,8 @@ BuilderMulti.GetUnnamedObjectName\(object\), BuilderMulti.FindLocal\(string\), BuilderMulti.Contains\(Type\), BuilderMulti.CopyFilePathWhenImportBuilder\(Builder\), +BuilderMulti.HasReplaceableEntity\(IObjectBase\), +BuilderMulti.ReplaceEntity\(IObjectBase, IObjectBase\), BuilderMulti.FillParameter\(BuilderParamBase\), BuilderMulti.OnDeserializationImpl\(ref List\>\), BuilderMulti.ReadXmlImpl\(XmlReader\), @@ -106,6 +110,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -209,7 +215,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -250,7 +256,7 @@ public double MatedAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ParentConnectable @@ -310,7 +316,7 @@ public bool UseDesigner { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ZAxis diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.HDBearingBuilderForRBEInMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.HDBearingBuilderForRBEInMeshFree.md index 9d2d185582..e162b64637 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.HDBearingBuilderForRBEInMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.HDBearingBuilderForRBEInMeshFree.md @@ -1,4 +1,5 @@ -# Class HDBearingBuilderForRBEInMeshFree +# Class HDBearingBuilderForRBEInMeshFree + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll Hydro Dynamic Bearing Builder For RBE In FE ```csharp -public class HDBearingBuilderForRBEInMeshFree : HDBearingBuilderForRBEInFE, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder +public class HDBearingBuilderForRBEInMeshFree : HDBearingBuilderForRBEInFE, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -45,8 +46,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md) #### Inherited Members @@ -78,6 +80,8 @@ BuilderMulti.GetUnnamedObjectName\(object\), BuilderMulti.FindLocal\(string\), BuilderMulti.Contains\(Type\), BuilderMulti.CopyFilePathWhenImportBuilder\(Builder\), +BuilderMulti.HasReplaceableEntity\(IObjectBase\), +BuilderMulti.ReplaceEntity\(IObjectBase, IObjectBase\), BuilderMulti.FillParameter\(BuilderParamBase\), BuilderMulti.OnDeserializationImpl\(ref List\>\), BuilderMulti.ReadXmlImpl\(XmlReader\), @@ -114,6 +118,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -217,7 +223,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.HDBearingGeom.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.HDBearingGeom.md index 4f76be1744..04e8a3e923 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.HDBearingGeom.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.HDBearingGeom.md @@ -1,4 +1,5 @@ -# Class HDBearingGeom +# Class HDBearingGeom + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class HDBearingGeom : GeometryBase, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Body ← @@ -31,7 +32,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, ITransformable, @@ -275,7 +276,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -330,11 +331,11 @@ public void GetLengthAndHeight(ref double dLength, ref double dHeight) #### Parameters -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double Length of the d. -`dHeight` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHeight` double Height of the d. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.HDBearingGeometryForRBEInFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.HDBearingGeometryForRBEInFE.md index 1622ddd610..9bb63ed3bc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.HDBearingGeometryForRBEInFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.HDBearingGeometryForRBEInFE.md @@ -1,4 +1,5 @@ -# Class HDBearingGeometryForRBEInFE +# Class HDBearingGeometryForRBEInFE + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class HDBearingGeometryForRBEInFE : GeometryBase, IObservableObject, IDis #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Body ← @@ -31,7 +32,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, ITransformable, @@ -275,7 +276,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.HDBearingGeometryForRBEInMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.HDBearingGeometryForRBEInMeshFree.md index 7ed72fd432..46e6bfedfa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.HDBearingGeometryForRBEInMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.HDBearingGeometryForRBEInMeshFree.md @@ -1,4 +1,5 @@ -# Class HDBearingGeometryForRBEInMeshFree +# Class HDBearingGeometryForRBEInMeshFree + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class HDBearingGeometryForRBEInMeshFree : GeometryBase, IObservableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Body ← @@ -36,7 +37,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, ITransformable, @@ -280,7 +281,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.IAddOnBearing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.IAddOnBearing.md index a8e2b086a5..a4f12d61c7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.IAddOnBearing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.IAddOnBearing.md @@ -1,4 +1,5 @@ -# Interface IAddOnBearing +# Interface IAddOnBearing + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -39,7 +40,7 @@ double ReferenceOffset { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ReferencePoint diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.IAddedBuilder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.IAddedBuilder.md index 0bff23a1b8..5ff4501d30 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.IAddedBuilder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.IAddedBuilder.md @@ -1,4 +1,5 @@ -# Interface IAddedBuilder +# Interface IAddedBuilder + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.IAddedBuilderForBearing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.IAddedBuilderForBearing.md index 2444570f4c..6274a76c9a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.IAddedBuilderForBearing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.IAddedBuilderForBearing.md @@ -1,4 +1,5 @@ -# Interface IAddedBuilderForBearing +# Interface IAddedBuilderForBearing + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.IGTBuilder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.IGTBuilder.md index 3fa03969c8..5efc541baf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.IGTBuilder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.IGTBuilder.md @@ -1,4 +1,5 @@ -# Interface IGTBuilder +# Interface IGTBuilder + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -51,7 +52,7 @@ double OffsetToAxisDirection { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Rotation diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md index 8bca230f0a..1327d3c0c9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md @@ -1,4 +1,5 @@ -# Interface IGearBuilder +# Interface IGearBuilder + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -31,7 +32,7 @@ double MateAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Position diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md index 7e48e7d3e6..3649583ae7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md @@ -1,4 +1,5 @@ -# Interface IGeometryBuilder +# Interface IGeometryBuilder + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.IRacewayBuilder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.IRacewayBuilder.md index ed1caf3f42..2bd17a88f3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.IRacewayBuilder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.IRacewayBuilder.md @@ -1,4 +1,5 @@ -# Interface IRacewayBuilder +# Interface IRacewayBuilder + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.ISlidingBuilder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.ISlidingBuilder.md index e6da829222..58280021f1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.ISlidingBuilder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.ISlidingBuilder.md @@ -1,4 +1,5 @@ -# Interface ISlidingBuilder +# Interface ISlidingBuilder + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.InnerHDBearingGeometryForRBEInMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.InnerHDBearingGeometryForRBEInMeshFree.md index e605f9bdab..b78549174f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.InnerHDBearingGeometryForRBEInMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.InnerHDBearingGeometryForRBEInMeshFree.md @@ -1,4 +1,5 @@ -# Class InnerHDBearingGeometryForRBEInMeshFree +# Class InnerHDBearingGeometryForRBEInMeshFree + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class InnerHDBearingGeometryForRBEInMeshFree : HDBearingGeometryForRBEInM #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Body ← @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, ITransformable, @@ -276,7 +277,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.InnerRacewayGeometry.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.InnerRacewayGeometry.md index c06c09a6da..df7f2bd208 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.InnerRacewayGeometry.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.InnerRacewayGeometry.md @@ -1,4 +1,5 @@ -# Class InnerRacewayGeometry +# Class InnerRacewayGeometry + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class InnerRacewayGeometry : RacewayGeometry, IObservableObject, IDisposa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Body ← @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, ITransformable, @@ -280,7 +281,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.InnerRacewayGeometryForRBEInFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.InnerRacewayGeometryForRBEInFE.md index aaf4726727..674a0e5eb9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.InnerRacewayGeometryForRBEInFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.InnerRacewayGeometryForRBEInFE.md @@ -1,4 +1,5 @@ -# Class InnerRacewayGeometryForRBEInFE +# Class InnerRacewayGeometryForRBEInFE + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class InnerRacewayGeometryForRBEInFE : RacewayGeometryForRBEInFE, IObserv #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Body ← @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, ITransformable, @@ -277,7 +278,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.InnerRacewayGeometryForRBEInMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.InnerRacewayGeometryForRBEInMeshFree.md index 27e3cc078d..f6ce2f4c04 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.InnerRacewayGeometryForRBEInMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.InnerRacewayGeometryForRBEInMeshFree.md @@ -1,4 +1,5 @@ -# Class InnerRacewayGeometryForRBEInMeshFree +# Class InnerRacewayGeometryForRBEInMeshFree + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class InnerRacewayGeometryForRBEInMeshFree : RacewayGeometryForRBEInMeshF #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Body ← @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, ITransformable, @@ -277,7 +278,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.OuterHDBearingGeometryForRBEInMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.OuterHDBearingGeometryForRBEInMeshFree.md index 7dfa68f788..4bc57542f0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.OuterHDBearingGeometryForRBEInMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.OuterHDBearingGeometryForRBEInMeshFree.md @@ -1,4 +1,5 @@ -# Class OuterHDBearingGeometryForRBEInMeshFree +# Class OuterHDBearingGeometryForRBEInMeshFree + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class OuterHDBearingGeometryForRBEInMeshFree : HDBearingGeometryForRBEInM #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Body ← @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, ITransformable, @@ -276,7 +277,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.OuterRacewayGeometry.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.OuterRacewayGeometry.md index 3878cd9237..00cc234706 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.OuterRacewayGeometry.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.OuterRacewayGeometry.md @@ -1,4 +1,5 @@ -# Class OuterRacewayGeometry +# Class OuterRacewayGeometry + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class OuterRacewayGeometry : RacewayGeometry, IObservableObject, IDisposa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Body ← @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, ITransformable, @@ -280,7 +281,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.OuterRacewayGeometryForRBEInFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.OuterRacewayGeometryForRBEInFE.md index a06efa7ee1..46ed26b016 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.OuterRacewayGeometryForRBEInFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.OuterRacewayGeometryForRBEInFE.md @@ -1,4 +1,5 @@ -# Class OuterRacewayGeometryForRBEInFE +# Class OuterRacewayGeometryForRBEInFE + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class OuterRacewayGeometryForRBEInFE : RacewayGeometryForRBEInFE, IObserv #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Body ← @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, ITransformable, @@ -277,7 +278,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.OuterRacewayGeometryForRBEInMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.OuterRacewayGeometryForRBEInMeshFree.md index 2a3878be8c..ed16940829 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.OuterRacewayGeometryForRBEInMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.OuterRacewayGeometryForRBEInMeshFree.md @@ -1,4 +1,5 @@ -# Class OuterRacewayGeometryForRBEInMeshFree +# Class OuterRacewayGeometryForRBEInMeshFree + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class OuterRacewayGeometryForRBEInMeshFree : RacewayGeometryForRBEInMeshF #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Body ← @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, ITransformable, @@ -277,7 +278,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.PinionGeometry.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.PinionGeometry.md index 7477584daa..276bf3e8bd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.PinionGeometry.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.PinionGeometry.md @@ -1,4 +1,5 @@ -# Class PinionGeometry +# Class PinionGeometry + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class PinionGeometry : GearGeometry, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Body ← @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, ITransformable, @@ -277,7 +278,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.PinionGeometryForRBEInFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.PinionGeometryForRBEInFE.md index 2ad8bbac02..e6a5b68eda 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.PinionGeometryForRBEInFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.PinionGeometryForRBEInFE.md @@ -1,4 +1,5 @@ -# Class PinionGeometryForRBEInFE +# Class PinionGeometryForRBEInFE + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class PinionGeometryForRBEInFE : GearGeometryForRBEInFE, IObservableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Body ← @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, ITransformable, @@ -277,7 +278,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.PinionGeometryForRBEInMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.PinionGeometryForRBEInMeshFree.md index a1716c34ca..6332af99d8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.PinionGeometryForRBEInMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.PinionGeometryForRBEInMeshFree.md @@ -1,4 +1,5 @@ -# Class PinionGeometryForRBEInMeshFree +# Class PinionGeometryForRBEInMeshFree + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class PinionGeometryForRBEInMeshFree : GearGeometryForRBEInMeshFree, IObs #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Body ← @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, ITransformable, @@ -277,7 +278,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.PseudoBearingStiffness.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.PseudoBearingStiffness.md index dc32788cb5..57fad45d6c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.PseudoBearingStiffness.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.PseudoBearingStiffness.md @@ -1,4 +1,5 @@ -# Class PseudoBearingStiffness +# Class PseudoBearingStiffness + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -11,12 +12,12 @@ public class PseudoBearingStiffness : SubEntity, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [PseudoBearingStiffness](VM.Managed.DAFUL.GearTrain.CAD.PseudoBearingStiffness.md) #### Implements @@ -26,7 +27,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -45,17 +46,17 @@ INavigatorItem #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -189,7 +190,7 @@ public override string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Stiffness diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.PseudoGearContactAnalysis.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.PseudoGearContactAnalysis.md index d0b39b14ce..2615e367fd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.PseudoGearContactAnalysis.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.PseudoGearContactAnalysis.md @@ -1,4 +1,5 @@ -# Class PseudoGearContactAnalysis +# Class PseudoGearContactAnalysis + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -11,12 +12,12 @@ public class PseudoGearContactAnalysis : SubEntity, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [PseudoGearContactAnalysis](VM.Managed.DAFUL.GearTrain.CAD.PseudoGearContactAnalysis.md) #### Implements @@ -26,7 +27,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -45,17 +46,17 @@ INavigatorItem #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -189,7 +190,7 @@ public override string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TransmissionError diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.PseudoGearGeometry.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.PseudoGearGeometry.md index d1c05ea701..1cb883421d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.PseudoGearGeometry.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.PseudoGearGeometry.md @@ -1,4 +1,5 @@ -# Class PseudoGearGeometry +# Class PseudoGearGeometry + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -11,12 +12,12 @@ public class PseudoGearGeometry : SubEntity, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [PseudoGearGeometry](VM.Managed.DAFUL.GearTrain.CAD.PseudoGearGeometry.md) #### Implements @@ -26,7 +27,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -45,17 +46,17 @@ INavigatorItem #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -187,7 +188,7 @@ public PseudoGearGeometry(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the sub entity. @@ -215,7 +216,7 @@ public bool ModifiedToothStiffnessParameter { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -227,7 +228,7 @@ public override string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -241,7 +242,7 @@ public int GetIndexOfGearBody() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\) @@ -253,21 +254,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RacewayBuilder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RacewayBuilder.md index 0ef0bf92c7..94082ed4d9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RacewayBuilder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RacewayBuilder.md @@ -1,4 +1,5 @@ -# Class RacewayBuilder +# Class RacewayBuilder + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll Bearing Builder ```csharp -public class RacewayBuilder : RacewayBuilderBase, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder, IRacewayBuilder, IGTBuilder +public class RacewayBuilder : RacewayBuilderBase, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder, IRacewayBuilder, IGTBuilder ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -44,8 +45,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md), [IRacewayBuilder](VM.Managed.DAFUL.GearTrain.CAD.IRacewayBuilder.md), [IGTBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGTBuilder.md) @@ -71,6 +73,8 @@ BuilderMulti.GetUnnamedObjectName\(object\), BuilderMulti.FindLocal\(string\), BuilderMulti.Contains\(Type\), BuilderMulti.CopyFilePathWhenImportBuilder\(Builder\), +BuilderMulti.HasReplaceableEntity\(IObjectBase\), +BuilderMulti.ReplaceEntity\(IObjectBase, IObjectBase\), BuilderMulti.FillParameter\(BuilderParamBase\), BuilderMulti.OnDeserializationImpl\(ref List\>\), BuilderMulti.ReadXmlImpl\(XmlReader\), @@ -107,6 +111,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -210,7 +216,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -264,7 +270,7 @@ public bool IsReverse { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OffsetToAxisDirection @@ -276,7 +282,7 @@ public override double OffsetToAxisDirection { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ReferenceOffset @@ -289,7 +295,7 @@ public double ReferenceOffset { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ReferencePoint @@ -367,7 +373,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -385,7 +391,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. @@ -403,7 +409,7 @@ public void SetReferenceOffset(double dOffset) #### Parameters -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double The reference offset. @@ -431,7 +437,7 @@ public void SetReverse(bool bReverse) #### Parameters -`bReverse` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReverse` bool The reverse flag. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RacewayBuilderBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RacewayBuilderBase.md index 5531609c8e..17a36416e3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RacewayBuilderBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RacewayBuilderBase.md @@ -1,4 +1,5 @@ -# Class RacewayBuilderBase +# Class RacewayBuilderBase + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll Bearing Builder ```csharp -public class RacewayBuilderBase : BuilderMultiSubtractSimple, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder +public class RacewayBuilderBase : BuilderMultiSubtractSimple, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -44,8 +45,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md) #### Inherited Members @@ -66,6 +68,8 @@ BuilderMulti.GetUnnamedObjectName\(object\), BuilderMulti.FindLocal\(string\), BuilderMulti.Contains\(Type\), BuilderMulti.CopyFilePathWhenImportBuilder\(Builder\), +BuilderMulti.HasReplaceableEntity\(IObjectBase\), +BuilderMulti.ReplaceEntity\(IObjectBase, IObjectBase\), BuilderMulti.FillParameter\(BuilderParamBase\), BuilderMulti.OnDeserializationImpl\(ref List\>\), BuilderMulti.ReadXmlImpl\(XmlReader\), @@ -102,6 +106,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -205,7 +211,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -246,7 +252,7 @@ public virtual double OffsetToAxisDirection { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RacewayGeomInfo diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RacewayBuilderForRBEInFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RacewayBuilderForRBEInFE.md index e298b0d2cf..a911eb348f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RacewayBuilderForRBEInFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RacewayBuilderForRBEInFE.md @@ -1,4 +1,5 @@ -# Class RacewayBuilderForRBEInFE +# Class RacewayBuilderForRBEInFE + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll The raceway builder for rbe in fe ```csharp -public class RacewayBuilderForRBEInFE : RacewayBuilderBase, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder, IRacewayBuilder, IGTBuilder +public class RacewayBuilderForRBEInFE : RacewayBuilderBase, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder, IRacewayBuilder, IGTBuilder ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -45,8 +46,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md), [IRacewayBuilder](VM.Managed.DAFUL.GearTrain.CAD.IRacewayBuilder.md), [IGTBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGTBuilder.md) @@ -72,6 +74,8 @@ BuilderMulti.GetUnnamedObjectName\(object\), BuilderMulti.FindLocal\(string\), BuilderMulti.Contains\(Type\), BuilderMulti.CopyFilePathWhenImportBuilder\(Builder\), +BuilderMulti.HasReplaceableEntity\(IObjectBase\), +BuilderMulti.ReplaceEntity\(IObjectBase, IObjectBase\), BuilderMulti.FillParameter\(BuilderParamBase\), BuilderMulti.OnDeserializationImpl\(ref List\>\), BuilderMulti.ReadXmlImpl\(XmlReader\), @@ -108,6 +112,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -211,7 +217,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -264,7 +270,7 @@ public double MatedAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### OffsetToAxisDirection @@ -276,7 +282,7 @@ public override double OffsetToAxisDirection { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ParentConnectable @@ -336,7 +342,7 @@ public bool UseDesigner { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ZAxis @@ -414,7 +420,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -432,7 +438,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RacewayBuilderForRBEInMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RacewayBuilderForRBEInMeshFree.md index 0921ba4d15..90cc849daa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RacewayBuilderForRBEInMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RacewayBuilderForRBEInMeshFree.md @@ -1,4 +1,5 @@ -# Class RacewayBuilderForRBEInMeshFree +# Class RacewayBuilderForRBEInMeshFree + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll The raceway builder for rbe in meshfree ```csharp -public class RacewayBuilderForRBEInMeshFree : RacewayBuilderForRBEInFE, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder, IRacewayBuilder, IGTBuilder +public class RacewayBuilderForRBEInMeshFree : RacewayBuilderForRBEInFE, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder, IRacewayBuilder, IGTBuilder ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -45,8 +46,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md), [IRacewayBuilder](VM.Managed.DAFUL.GearTrain.CAD.IRacewayBuilder.md), [IGTBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGTBuilder.md) @@ -88,6 +90,8 @@ BuilderMulti.GetUnnamedObjectName\(object\), BuilderMulti.FindLocal\(string\), BuilderMulti.Contains\(Type\), BuilderMulti.CopyFilePathWhenImportBuilder\(Builder\), +BuilderMulti.HasReplaceableEntity\(IObjectBase\), +BuilderMulti.ReplaceEntity\(IObjectBase, IObjectBase\), BuilderMulti.FillParameter\(BuilderParamBase\), BuilderMulti.OnDeserializationImpl\(ref List\>\), BuilderMulti.ReadXmlImpl\(XmlReader\), @@ -124,6 +128,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -227,7 +233,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RacewayGeometry.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RacewayGeometry.md index 5724e8b9ce..bb5b61beac 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RacewayGeometry.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RacewayGeometry.md @@ -1,4 +1,5 @@ -# Class RacewayGeometry +# Class RacewayGeometry + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class RacewayGeometry : GeometryBase, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Body ← @@ -36,7 +37,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, ITransformable, @@ -280,7 +281,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -335,11 +336,11 @@ public void GetLengthAndHeight(ref double dLength, ref double dHeight) #### Parameters -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double Length of the d. -`dHeight` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHeight` double Height of the d. @@ -353,7 +354,7 @@ protected override string GetNameWhenDelete() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TemperaryRacewayGeometry\(RacewayGeometryInfo, HiddenShaftSetDocument, double, ReferencePointType, bool\) @@ -373,7 +374,7 @@ The information. The document. -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double The d offset. @@ -381,7 +382,7 @@ The d offset. The rp_type. -`bReverse` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReverse` bool The flag of reverse direction. @@ -403,7 +404,7 @@ public static RacewayGeometry TemperaryRacewayGeometry(RacewayGeometryInfo info, The information. -`doc` DocumentAnalysis +`doc` [DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) The document. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RacewayGeometryForRBEInFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RacewayGeometryForRBEInFE.md index a949306090..2ac69a94f1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RacewayGeometryForRBEInFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RacewayGeometryForRBEInFE.md @@ -1,4 +1,5 @@ -# Class RacewayGeometryForRBEInFE +# Class RacewayGeometryForRBEInFE + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class RacewayGeometryForRBEInFE : GeometryBase, IObservableObject, IDispo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Body ← @@ -36,7 +37,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, ITransformable, @@ -280,7 +281,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -355,7 +356,7 @@ The dir z. The mat o. -`bAddDoc` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bAddDoc` bool The flag for adding to document. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RacewayGeometryForRBEInMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RacewayGeometryForRBEInMeshFree.md index 82483c0328..0ca240b79d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RacewayGeometryForRBEInMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RacewayGeometryForRBEInMeshFree.md @@ -1,4 +1,5 @@ -# Class RacewayGeometryForRBEInMeshFree +# Class RacewayGeometryForRBEInMeshFree + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class RacewayGeometryForRBEInMeshFree : GeometryBase, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Body ← @@ -36,7 +37,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, ITransformable, @@ -280,7 +281,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -355,7 +356,7 @@ The dir z. The mat o. -`bAddDoc` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bAddDoc` bool The flag for adding to document. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RackBuilder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RackBuilder.md index d54baa96f8..50279405bf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RackBuilder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RackBuilder.md @@ -1,4 +1,5 @@ -# Class RackBuilder +# Class RackBuilder + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll The rack builder ```csharp -public class RackBuilder : BuilderColorGeom, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder, IGearBuilder, IGTBuilder +public class RackBuilder : BuilderColorGeom, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder, IGearBuilder, IGTBuilder ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -35,8 +36,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md), [IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md), [IGTBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGTBuilder.md) @@ -72,6 +74,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -175,7 +179,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -255,7 +259,7 @@ public double InitialAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MateAngle @@ -268,7 +272,7 @@ public double MateAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Offset @@ -281,7 +285,7 @@ public double Offset { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### OffsetToAxisDirection @@ -293,7 +297,7 @@ public double OffsetToAxisDirection { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Position @@ -367,7 +371,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamBase\) @@ -377,7 +381,7 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### GetLengthAndHeight\(ref double, ref double\) @@ -389,11 +393,11 @@ public void GetLengthAndHeight(ref double dLength, ref double dHeight) #### Parameters -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double Length of the d. -`dHeight` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHeight` double Height of the d. @@ -421,7 +425,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. @@ -439,7 +443,7 @@ public void SetInitAngle(double dInitAngle) #### Parameters -`dInitAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dInitAngle` double The init angle. @@ -453,7 +457,7 @@ public void SetMateAngle(double dMateAngle) #### Parameters -`dMateAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMateAngle` double The mate angle. @@ -467,7 +471,7 @@ public void SetOffset(double dOffset) #### Parameters -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double The offset. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RackBuilderForRBEInFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RackBuilderForRBEInFE.md index 3bc6e7b3bc..ad36529a8f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RackBuilderForRBEInFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RackBuilderForRBEInFE.md @@ -1,4 +1,5 @@ -# Class RackBuilderForRBEInFE +# Class RackBuilderForRBEInFE + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll The rack builder for rbe in fe ```csharp -public class RackBuilderForRBEInFE : GearBuilderForRBEInFE, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder, IGearBuilder, IGTBuilder, IAddOnBearing +public class RackBuilderForRBEInFE : GearBuilderForRBEInFE, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder, IGearBuilder, IGTBuilder, IAddOnBearing ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -41,8 +42,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md), [IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md), [IGTBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGTBuilder.md), @@ -108,6 +110,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -211,7 +215,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -276,7 +280,7 @@ public double InitialAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UseEndParentConnectable @@ -288,7 +292,7 @@ public bool UseEndParentConnectable { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseStartParentConnectable @@ -300,7 +304,7 @@ public bool UseStartParentConnectable { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### \_EndParentConnectable @@ -326,23 +330,23 @@ public void UpdateGeometry(HiddenDocument hiddenDoc, string strStartRBE, string #### Parameters -`hiddenDoc` HiddenDocument +`hiddenDoc` [HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) The hidden document. -`strStartRBE` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strStartRBE` string The string start rbe. -`strEndRBE` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strEndRBE` string The string end rbe. -`bStart` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bStart` bool if set to true [b start]. -`bEnd` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bEnd` bool if set to true [b end]. @@ -350,7 +354,7 @@ if set to true [b end]. The vec z axis. -`dInitAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dInitAngle` double The initial angle. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RackBuilderForRBEInMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RackBuilderForRBEInMeshFree.md index 0cf1051fdc..0724f21d77 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RackBuilderForRBEInMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RackBuilderForRBEInMeshFree.md @@ -1,4 +1,5 @@ -# Class RackBuilderForRBEInMeshFree +# Class RackBuilderForRBEInMeshFree + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll The rack builder for rbe in meshfree ```csharp -public class RackBuilderForRBEInMeshFree : RackBuilderForRBEInFE, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder, IGearBuilder, IGTBuilder, IAddOnBearing +public class RackBuilderForRBEInMeshFree : RackBuilderForRBEInFE, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder, IGearBuilder, IGTBuilder, IAddOnBearing ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -41,8 +42,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md), [IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md), [IGTBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGTBuilder.md), @@ -115,6 +117,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -218,7 +222,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RackGeometryForRBEInFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RackGeometryForRBEInFE.md index 89081958b2..8c6c72bfd1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RackGeometryForRBEInFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RackGeometryForRBEInFE.md @@ -1,4 +1,5 @@ -# Class RackGeometryForRBEInFE +# Class RackGeometryForRBEInFE + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class RackGeometryForRBEInFE : GeometryBase, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Body ← @@ -31,7 +32,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, ITransformable, @@ -275,7 +276,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RackGeometryForRBEInMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RackGeometryForRBEInMeshFree.md index 450ff258f2..958de4cd47 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RackGeometryForRBEInMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RackGeometryForRBEInMeshFree.md @@ -1,4 +1,5 @@ -# Class RackGeometryForRBEInMeshFree +# Class RackGeometryForRBEInMeshFree + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class RackGeometryForRBEInMeshFree : GeometryBase, IObservableObject, IDi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Body ← @@ -31,7 +32,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, ITransformable, @@ -275,7 +276,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RackSection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RackSection.md index c35ed4d508..2f8d3c585e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RackSection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RackSection.md @@ -1,4 +1,5 @@ -# Class RackSection +# Class RackSection + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class RackSection : Section, IObservableObject, IDisposableObject, ILinka #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Body ← @@ -31,7 +32,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, ITransformable, @@ -276,7 +277,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -331,11 +332,11 @@ public override string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ## Methods @@ -349,7 +350,7 @@ protected override void LinkRequestDestroy(object obNotifier, LinkEventArgs arg) #### Parameters -`obNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obNotifier` object The ob notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RackSectionGeometry.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RackSectionGeometry.md index 63e6baa62f..576dfa2c6a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RackSectionGeometry.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.RackSectionGeometry.md @@ -1,4 +1,5 @@ -# Class RackSectionGeometry +# Class RackSectionGeometry + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class RackSectionGeometry : SectionGeometryBase, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [SectionGeometryBase](VM.Managed.DAFUL.GearTrain.SectionGeometryBase.md) ← [RackSectionGeometry](VM.Managed.DAFUL.GearTrain.CAD.RackSectionGeometry.md) @@ -96,7 +97,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -197,7 +198,7 @@ public override double[] GetGeomInfo() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GetLengthAndHeight\(ref double, ref double\) @@ -209,11 +210,11 @@ public override void GetLengthAndHeight(ref double dLength, ref double dHeight) #### Parameters -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double Length of the d. -`dHeight` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHeight` double Height of the d. @@ -225,7 +226,7 @@ protected override BuilderParamBase InnerCreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### InnerFillParameter\(BuilderParamBase, BuilderColor, VectorBase\) @@ -235,7 +236,7 @@ protected override void InnerFillParameter(BuilderParamBase parameter, BuilderCo #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) `color` BuilderColor @@ -251,7 +252,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -269,7 +270,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. @@ -291,11 +292,11 @@ public override SectionInfo[] SplitSectionInfo(HiddenShaftSetDocument hiddenDoc, The hidden document. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. -`nNumber` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNumber` int The n number. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.ReferencePointType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.ReferencePointType.md index 6cef450e0f..e999255aee 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.ReferencePointType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.ReferencePointType.md @@ -1,4 +1,5 @@ -# Enum ReferencePointType +# Enum ReferencePointType + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.Section.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.Section.md index a2374e6366..6c4de3659b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.Section.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.Section.md @@ -1,4 +1,5 @@ -# Class Section +# Class Section + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class Section : Body, IObservableObject, IDisposableObject, ILinkable, IO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Body ← @@ -34,7 +35,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, ITransformable, @@ -275,7 +276,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -330,7 +331,7 @@ public virtual string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NeedToUpdate @@ -340,7 +341,7 @@ public bool NeedToUpdate { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -354,21 +355,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XML DOM. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XML ele. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [b has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LinkRequestDestroy\(object, LinkEventArgs\) @@ -380,7 +381,7 @@ protected override void LinkRequestDestroy(object obNotifier, LinkEventArgs arg) #### Parameters -`obNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obNotifier` object The ob notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.SectionBuilder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.SectionBuilder.md index 3788fcacdc..a4a557d291 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.SectionBuilder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.SectionBuilder.md @@ -1,4 +1,5 @@ -# Class SectionBuilder +# Class SectionBuilder + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll The section builder ```csharp -public class SectionBuilder : BuilderColorGeom, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public class SectionBuilder : BuilderColorGeom, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -35,8 +36,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, -IAttributeContainer +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +IAttributeContainer, +IHasReplaceableEntity #### Inherited Members @@ -69,6 +71,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -172,7 +176,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -225,7 +229,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamBase\) @@ -235,7 +239,7 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### GetLengthAndHeight\(ref double, ref double\) @@ -247,11 +251,11 @@ public void GetLengthAndHeight(ref double dLength, ref double dHeight) #### Parameters -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double Length of the d. -`dHeight` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHeight` double Height of the d. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.SlidingBearingBuilder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.SlidingBearingBuilder.md index 1082595e59..ff8e4e7c3e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.SlidingBearingBuilder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.SlidingBearingBuilder.md @@ -1,4 +1,5 @@ -# Class SlidingBearingBuilder +# Class SlidingBearingBuilder + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll Sliding Bearing Builder ```csharp -public class SlidingBearingBuilder : SlidingBearingBuilderBase, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder, IPostDeserialized, ISlidingBuilder, IGTBuilder +public class SlidingBearingBuilder : SlidingBearingBuilderBase, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder, IPostDeserialized, ISlidingBuilder, IGTBuilder ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -44,8 +45,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md), IPostDeserialized, [ISlidingBuilder](VM.Managed.DAFUL.GearTrain.CAD.ISlidingBuilder.md), @@ -84,6 +86,8 @@ BuilderMulti.GetUnnamedObjectName\(object\), BuilderMulti.FindLocal\(string\), BuilderMulti.Contains\(Type\), BuilderMulti.CopyFilePathWhenImportBuilder\(Builder\), +BuilderMulti.HasReplaceableEntity\(IObjectBase\), +BuilderMulti.ReplaceEntity\(IObjectBase, IObjectBase\), BuilderMulti.FillParameter\(BuilderParamBase\), BuilderMulti.OnDeserializationImpl\(ref List\>\), BuilderMulti.ReadXmlImpl\(XmlReader\), @@ -120,6 +124,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -223,7 +229,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -280,6 +286,18 @@ public IConnectable ConnectableEntity { get; } IConnectable +### IsOpenDesigner + +Gets or sets the open designer flag. + +```csharp +public bool IsOpenDesigner { get; set; } +``` + +#### Property Value + + bool + ### OffsetToAxisDirection Gets the offset to axis direction. @@ -290,7 +308,7 @@ public override double OffsetToAxisDirection { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ReferenceOffset @@ -303,7 +321,7 @@ public double ReferenceOffset { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ReferencePoint @@ -341,7 +359,7 @@ public double StartAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StartPoint @@ -375,7 +393,7 @@ The position. The direction. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The angle. @@ -393,7 +411,7 @@ public static SlidingBearingGeom CreateGeometryInHiddenDoc(HiddenDocument doc, S #### Parameters -`doc` HiddenDocument +`doc` [HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) The hidden document. @@ -401,7 +419,7 @@ The hidden document. The sliding bearing information. -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double The offset. @@ -409,7 +427,7 @@ The offset. The reference point type. -`dStartAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dStartAngle` double The start angle. @@ -455,7 +473,7 @@ public void SetReferenceOffset(double dOffset) #### Parameters -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double The reference offset. @@ -483,7 +501,7 @@ public void SetStartAngle(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The angle. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.SlidingBearingBuilderBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.SlidingBearingBuilderBase.md index c97723bba8..6d50717987 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.SlidingBearingBuilderBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.SlidingBearingBuilderBase.md @@ -1,4 +1,5 @@ -# Class SlidingBearingBuilderBase +# Class SlidingBearingBuilderBase + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll Sliding Bearing Builder Base ```csharp -public class SlidingBearingBuilderBase : BuilderMultiSubtractSimple, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder, IPostDeserialized +public class SlidingBearingBuilderBase : BuilderMultiSubtractSimple, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder, IPostDeserialized ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -44,8 +45,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md), IPostDeserialized @@ -67,6 +69,8 @@ BuilderMulti.GetUnnamedObjectName\(object\), BuilderMulti.FindLocal\(string\), BuilderMulti.Contains\(Type\), BuilderMulti.CopyFilePathWhenImportBuilder\(Builder\), +BuilderMulti.HasReplaceableEntity\(IObjectBase\), +BuilderMulti.ReplaceEntity\(IObjectBase, IObjectBase\), BuilderMulti.FillParameter\(BuilderParamBase\), BuilderMulti.OnDeserializationImpl\(ref List\>\), BuilderMulti.ReadXmlImpl\(XmlReader\), @@ -103,6 +107,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -206,7 +212,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -273,7 +279,7 @@ public virtual double OffsetToAxisDirection { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Radius @@ -285,7 +291,7 @@ protected double Radius { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -297,11 +303,11 @@ protected virtual bool DeleteCondition(object objNotifier) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### FillParameter\(BuilderParamBase\) @@ -311,7 +317,7 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### GetCenterPosition\(\) @@ -349,7 +355,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -367,7 +373,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -401,7 +407,7 @@ The builder. The geom info. -`dRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadius` double The radius. @@ -427,11 +433,11 @@ The builder. The geom info. -`dRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadius` double The radius. -`bUseDSDL` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseDSDL` bool The DSDL use flag. @@ -475,7 +481,7 @@ The Transform Matrix. The geom info. -`dRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadius` double The radius. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.SlidingBearingBuilderForRBEInFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.SlidingBearingBuilderForRBEInFE.md index f2c558ef03..2097fec2a9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.SlidingBearingBuilderForRBEInFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.SlidingBearingBuilderForRBEInFE.md @@ -1,4 +1,5 @@ -# Class SlidingBearingBuilderForRBEInFE +# Class SlidingBearingBuilderForRBEInFE + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll Sliding Bearing Builder For RBE In FE ```csharp -public class SlidingBearingBuilderForRBEInFE : SlidingBearingBuilderBase, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder, IPostDeserialized, ISlidingBuilder, IGTBuilder +public class SlidingBearingBuilderForRBEInFE : SlidingBearingBuilderBase, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder, IPostDeserialized, ISlidingBuilder, IGTBuilder ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -45,8 +46,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md), IPostDeserialized, [ISlidingBuilder](VM.Managed.DAFUL.GearTrain.CAD.ISlidingBuilder.md), @@ -85,6 +87,8 @@ BuilderMulti.GetUnnamedObjectName\(object\), BuilderMulti.FindLocal\(string\), BuilderMulti.Contains\(Type\), BuilderMulti.CopyFilePathWhenImportBuilder\(Builder\), +BuilderMulti.HasReplaceableEntity\(IObjectBase\), +BuilderMulti.ReplaceEntity\(IObjectBase, IObjectBase\), BuilderMulti.FillParameter\(BuilderParamBase\), BuilderMulti.OnDeserializationImpl\(ref List\>\), BuilderMulti.ReadXmlImpl\(XmlReader\), @@ -121,6 +125,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -224,7 +230,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -291,7 +297,7 @@ public override double OffsetToAxisDirection { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ParentConnectable @@ -366,7 +372,7 @@ public static SlidingBearingGeom CreateGeometryInFE(HiddenDocument doc, SBGeomet #### Parameters -`doc` HiddenDocument +`doc` [HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) The hidden document. @@ -378,7 +384,7 @@ The sliding bearing information. The RBE. -`bAddDoc` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bAddDoc` bool The flag for adding to document. @@ -396,11 +402,11 @@ protected override bool DeleteCondition(object objNotifier) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetCenterPosition\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.SlidingBearingBuilderForRBEInMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.SlidingBearingBuilderForRBEInMeshFree.md index dd70877fa6..d03d13a2aa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.SlidingBearingBuilderForRBEInMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.SlidingBearingBuilderForRBEInMeshFree.md @@ -1,4 +1,5 @@ -# Class SlidingBearingBuilderForRBEInMeshFree +# Class SlidingBearingBuilderForRBEInMeshFree + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll Sliding Bearing Builder For RBE In FE ```csharp -public class SlidingBearingBuilderForRBEInMeshFree : SlidingBearingBuilderForRBEInFE, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IGeometryBuilder, IPostDeserialized, ISlidingBuilder, IGTBuilder +public class SlidingBearingBuilderForRBEInMeshFree : SlidingBearingBuilderForRBEInFE, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity, IGeometryBuilder, IPostDeserialized, ISlidingBuilder, IGTBuilder ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -45,8 +46,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, +IHasReplaceableEntity, [IGeometryBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGeometryBuilder.md), IPostDeserialized, [ISlidingBuilder](VM.Managed.DAFUL.GearTrain.CAD.ISlidingBuilder.md), @@ -97,6 +99,8 @@ BuilderMulti.GetUnnamedObjectName\(object\), BuilderMulti.FindLocal\(string\), BuilderMulti.Contains\(Type\), BuilderMulti.CopyFilePathWhenImportBuilder\(Builder\), +BuilderMulti.HasReplaceableEntity\(IObjectBase\), +BuilderMulti.ReplaceEntity\(IObjectBase, IObjectBase\), BuilderMulti.FillParameter\(BuilderParamBase\), BuilderMulti.OnDeserializationImpl\(ref List\>\), BuilderMulti.ReadXmlImpl\(XmlReader\), @@ -133,6 +137,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -236,7 +242,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -291,7 +297,7 @@ public static SlidingBearingGeom CreateGeometryInMeshFree(HiddenDocument doc, SB #### Parameters -`doc` HiddenDocument +`doc` [HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) The hidden document. @@ -303,7 +309,7 @@ The sliding bearing information. The RBE. -`bAddDoc` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bAddDoc` bool The flag for adding to document. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.SlidingBearingGeom.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.SlidingBearingGeom.md index 98af5dd9ed..7dbba35de8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.SlidingBearingGeom.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.SlidingBearingGeom.md @@ -1,4 +1,5 @@ -# Class SlidingBearingGeom +# Class SlidingBearingGeom + Namespace: [VM.Managed.DAFUL.GearTrain.CAD](VM.Managed.DAFUL.GearTrain.CAD.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class SlidingBearingGeom : GeometryBase, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Body ← @@ -31,7 +32,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, ITransformable, @@ -275,7 +276,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -330,11 +331,11 @@ public void GetLengthAndHeight(ref double dLength, ref double dHeight) #### Parameters -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double Length of the d. -`dHeight` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHeight` double Height of the d. @@ -348,7 +349,7 @@ protected override string GetNameWhenDelete() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### LinkRequestDestroy\(object, LinkEventArgs\) @@ -360,7 +361,7 @@ protected override void LinkRequestDestroy(object objNotifier, LinkEventArgs arg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.md index d28bf6b353..caf97f9a15 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CAD.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.GearTrain.CAD +# Namespace VM.Managed.DAFUL.GearTrain.CAD + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CalculatePowerFlow.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CalculatePowerFlow.md index 7e71e236c6..45b5dc8cee 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CalculatePowerFlow.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CalculatePowerFlow.md @@ -1,4 +1,5 @@ -# Class CalculatePowerFlow +# Class CalculatePowerFlow + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,7 +12,7 @@ public class CalculatePowerFlow #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CalculatePowerFlow](VM.Managed.DAFUL.GearTrain.CalculatePowerFlow.md) #### Extension Methods @@ -44,21 +45,21 @@ public static double[] CalculateInputPower(PowerFlow.SimulationType type, double The type. -`arRPM` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arRPM` double\[\] The ar RPM. -`dPower` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dPower` double The d power. -`strPowerPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPowerPath` string The string power path. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### CalculateOutputSpeed\(double\[\], double\) @@ -70,17 +71,17 @@ public static double[] CalculateOutputSpeed(double[] arInputSpeed, double dReduc #### Parameters -`arInputSpeed` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arInputSpeed` double\[\] The ar input speed. -`dReductionRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dReductionRatio` double The d reduction ratio. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### CalculateRPM\(SimulationType, double, double, double, double, string, double, double, ref double\[\], ref double\[\]\) @@ -96,45 +97,45 @@ public static bool CalculateRPM(PowerFlow.SimulationType type, double dInterpol, The type. -`dInterpol` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dInterpol` double The d interpol. -`dSign` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dSign` double The d sign. -`dStartSpeed` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dStartSpeed` double The d start speed. -`dEndSpeed` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dEndSpeed` double The d end speed. -`strUIInputSpeedPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strUIInputSpeedPath` string The string UI input speed path. -`dDuration` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDuration` double Duration of the d. -`dEndTime` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dEndTime` double The d end time. -`arRPM` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arRPM` double\[\] The ar RPM. -`arTime` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arTime` double\[\] The ar time. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CalculateReductionRatio\(IHasPowerLoad, IHasPowerLoad, GearPair\[\], ref double, ref bool\) @@ -158,17 +159,17 @@ The output ss. The ar gear pair. -`dSign` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dSign` double The d sign. -`ContainsPlanetary` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`ContainsPlanetary` bool ContainsPlanetary #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### CalculateTorque\(double, double, double, double\[\], double\[\], double\[\], double, double\) @@ -180,41 +181,41 @@ public static List CalculateTorque(double dSplit, double dEfficiency, #### Parameters -`dSplit` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dSplit` double The d split. -`dEfficiency` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dEfficiency` double The d efficiency. -`dSign` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dSign` double The d sign. -`arInputSpeed` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arInputSpeed` double\[\] The ar output speed. -`arInputPower` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arInputPower` double\[\] The ar input power. -`arTime` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arTime` double\[\] The ar time. -`dReductionRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dReductionRatio` double The reduction ratio. -`dMaxTorque` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMaxTorque` double The Max Torque. #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\[\]\> + List ### CalculateTorqueForUserInput\(string, double\) @@ -226,17 +227,17 @@ public static List CalculateTorqueForUserInput(string strTorquePath, d #### Parameters -`strTorquePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strTorquePath` string The string torque path. -`dSign` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dSign` double The d sign. #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\[\]\> + List ### IsNumeric\(string\[\]\) @@ -248,13 +249,13 @@ protected static bool IsNumeric(string[] numStr) #### Parameters -`numStr` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`numStr` string\[\] The number string. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsNumeric\(string\) @@ -266,17 +267,17 @@ protected static bool IsNumeric(string numStr) #### Parameters -`numStr` [string](https://learn.microsoft.com/dotnet/api/system.string) +`numStr` string The number string. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception ### LoadPointDataFile\(string\) @@ -288,11 +289,11 @@ public static List LoadPointDataFile(string strFilePath) #### Parameters -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string The string file path. #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\[\]\> + List diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ClearanceInfo.AxialType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ClearanceInfo.AxialType.md index 83d6fb324b..b356ebccad 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ClearanceInfo.AxialType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ClearanceInfo.AxialType.md @@ -1,4 +1,5 @@ -# Enum ClearanceInfo.AxialType +# Enum ClearanceInfo.AxialType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ClearanceInfo.RadialType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ClearanceInfo.RadialType.md index 2164cdb2ea..9033e683b4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ClearanceInfo.RadialType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ClearanceInfo.RadialType.md @@ -1,4 +1,5 @@ -# Enum ClearanceInfo.RadialType +# Enum ClearanceInfo.RadialType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ClearanceInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ClearanceInfo.md index d1ef3acd7d..afea7e511f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ClearanceInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ClearanceInfo.md @@ -1,4 +1,5 @@ -# Class ClearanceInfo +# Class ClearanceInfo + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class ClearanceInfo : LinkContainer, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ClearanceInfo](VM.Managed.DAFUL.GearTrain.ClearanceInfo.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -130,7 +131,7 @@ public ExpressionValueVariable AxialLeft { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### AxialPreload @@ -142,7 +143,7 @@ public ExpressionValueVariable AxialPreload { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### AxialRight @@ -154,7 +155,7 @@ public ExpressionValueVariable AxialRight { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DampingRatio @@ -166,7 +167,7 @@ public ExpressionValueVariable DampingRatio { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### InputTypeOfAxial @@ -202,7 +203,7 @@ public ExpressionValueVariable Penalty { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Radial @@ -214,7 +215,7 @@ public ExpressionValueVariable Radial { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RadialPreload @@ -226,7 +227,7 @@ public ExpressionValueVariable RadialPreload { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ComponentAnalysis.AnalysisType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ComponentAnalysis.AnalysisType.md index 565115b4ef..13e2838c1a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ComponentAnalysis.AnalysisType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ComponentAnalysis.AnalysisType.md @@ -1,4 +1,5 @@ -# Enum ComponentAnalysis.AnalysisType +# Enum ComponentAnalysis.AnalysisType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ComponentAnalysis.BoundaryCondition.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ComponentAnalysis.BoundaryCondition.md index 82628b8896..17dbbceda8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ComponentAnalysis.BoundaryCondition.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ComponentAnalysis.BoundaryCondition.md @@ -1,4 +1,5 @@ -# Class ComponentAnalysis.BoundaryCondition +# Class ComponentAnalysis.BoundaryCondition + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,7 +12,7 @@ public class ComponentAnalysis.BoundaryCondition #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ComponentAnalysis.BoundaryCondition](VM.Managed.DAFUL.GearTrain.ComponentAnalysis.BoundaryCondition.md) #### Extension Methods @@ -40,7 +41,7 @@ public bool RX { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RY @@ -52,7 +53,7 @@ public bool RY { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RZ @@ -64,7 +65,7 @@ public bool RZ { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### X @@ -76,7 +77,7 @@ public bool X { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Y @@ -88,7 +89,7 @@ public bool Y { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Z @@ -100,5 +101,5 @@ public bool Z { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ComponentAnalysis.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ComponentAnalysis.md index f6adfad856..79526e3c37 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ComponentAnalysis.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ComponentAnalysis.md @@ -1,4 +1,5 @@ -# Class ComponentAnalysis +# Class ComponentAnalysis + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class ComponentAnalysis : LinkContainer, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ComponentAnalysis](VM.Managed.DAFUL.GearTrain.ComponentAnalysis.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -152,7 +153,7 @@ public ExpressionValueVariable MaximumNumberOfNode { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ResultFilePath @@ -164,7 +165,7 @@ public string ResultFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RotationalPenalty @@ -176,7 +177,7 @@ public ExpressionValueVariable RotationalPenalty { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### StartConnectable @@ -212,7 +213,7 @@ public ExpressionValueVariable TranslationalPenalty { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### \_EndConnectable diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ConstantWeb.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ConstantWeb.md index 3fa2157fcf..054db60049 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ConstantWeb.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ConstantWeb.md @@ -1,4 +1,5 @@ -# Class ConstantWeb +# Class ConstantWeb + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class ConstantWeb : LinkContainer, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ConstantWeb](VM.Managed.DAFUL.GearTrain.ConstantWeb.md) @@ -79,7 +80,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -120,7 +121,7 @@ public ExpressionValueVariable DampingRatio { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### WebStiffness diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ContactAnalysis.AlignType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ContactAnalysis.AlignType.md index 56ff90a62e..8bac649e9e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ContactAnalysis.AlignType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ContactAnalysis.AlignType.md @@ -1,4 +1,5 @@ -# Enum ContactAnalysis.AlignType +# Enum ContactAnalysis.AlignType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ContactAnalysis.AnalysisType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ContactAnalysis.AnalysisType.md index 9b931a7000..19506b5751 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ContactAnalysis.AnalysisType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ContactAnalysis.AnalysisType.md @@ -1,4 +1,5 @@ -# Enum ContactAnalysis.AnalysisType +# Enum ContactAnalysis.AnalysisType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ContactAnalysis.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ContactAnalysis.md index b51926cb90..6469afe9da 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ContactAnalysis.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ContactAnalysis.md @@ -1,4 +1,5 @@ -# Class ContactAnalysis +# Class ContactAnalysis + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class ContactAnalysis : GearPropertyBase, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [GearPropertyBase](VM.Managed.DAFUL.GearTrain.GearPropertyBase.md) ← [ContactAnalysis](VM.Managed.DAFUL.GearTrain.ContactAnalysis.md) @@ -77,7 +78,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -118,7 +119,7 @@ public bool IsUsePower { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Power @@ -130,7 +131,7 @@ public ExpressionValueVariable Power { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RatingAnalysis @@ -154,7 +155,7 @@ public string ResultFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SamplingFrequency @@ -166,7 +167,7 @@ public ExpressionValueVariable SamplingFrequency { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Speed @@ -178,7 +179,7 @@ public ExpressionValueVariable Speed { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TransmissionErrors @@ -194,7 +195,7 @@ public TransmissionError[] TransmissionErrors { get; set; } #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception SplineValue list is null. or @@ -236,7 +237,7 @@ public bool[] UseGearPairs { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean)\[\] + bool\[\] ## Methods @@ -250,7 +251,7 @@ public override void InitChild(int nNum) #### Parameters -`nNum` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNum` int The n number. @@ -264,7 +265,7 @@ public void InitChildForPair(int nNum) #### Parameters -`nNum` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNum` int The n number. @@ -278,7 +279,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -292,7 +293,7 @@ public void RemoveSplineValue(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -306,7 +307,7 @@ public void ReplaceSplineValue(int nIdx, TransmissionError te) #### Parameters -`nIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIdx` int Index of the n. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CreateType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CreateType.md index 6a5f64ac0b..ef935a44ea 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CreateType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CreateType.md @@ -1,4 +1,5 @@ -# Enum CreateType +# Enum CreateType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CycloidPinInfoForAssembly.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CycloidPinInfoForAssembly.md index 5578fa74dc..b2dc28972a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CycloidPinInfoForAssembly.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.CycloidPinInfoForAssembly.md @@ -1,4 +1,5 @@ -# Class CycloidPinInfoForAssembly +# Class CycloidPinInfoForAssembly + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class CycloidPinInfoForAssembly : LinkContainer, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [CycloidPinInfoForAssembly](VM.Managed.DAFUL.GearTrain.CycloidPinInfoForAssembly.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -190,7 +191,7 @@ public bool UseReferenceBody { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### \_Housing @@ -236,7 +237,7 @@ public double GetEccentricValue() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetShearingValue\(VectorBase, VectorBase\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.DesignDimensionBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.DesignDimensionBase.md index 343607b929..d0d65c45b6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.DesignDimensionBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.DesignDimensionBase.md @@ -1,4 +1,5 @@ -# Class DesignDimensionBase +# Class DesignDimensionBase + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,13 +12,13 @@ public abstract class DesignDimensionBase : DesignSubEntity, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← -DesignSubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← +[DesignSubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs) ← [DesignDimensionBase](VM.Managed.DAFUL.GearTrain.DesignDimensionBase.md) #### Derived @@ -32,7 +33,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, INamed, INavigatorItem, @@ -57,23 +58,23 @@ IDrawIcon #### Inherited Members -DesignSubEntity.m\_bSkipToUpdateSymmetric, -DesignSubEntity.g\_dicUpdatedDesignSubEntity, -DesignSubEntity.FixUp\(ObjectBase\), -DesignSubEntity.CheckCircularReference\(\), -DesignSubEntity.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\), -DesignSubEntity.IsInterface, -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[DesignSubEntity.m\_bSkipToUpdateSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.g\_dicUpdatedDesignSubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.CheckCircularReference\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.IsInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -166,7 +167,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -205,7 +206,7 @@ public DesignDimensionBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the design subentity. @@ -221,7 +222,7 @@ public Color Color { get; set; } #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### EndPoint @@ -245,7 +246,7 @@ public double Gap { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Hide @@ -257,7 +258,7 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsExternable @@ -269,7 +270,7 @@ public override bool IsExternable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### StartPoint @@ -295,7 +296,7 @@ public virtual void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -315,7 +316,7 @@ The sec body. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReDraw\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.DesignDimensionMulti.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.DesignDimensionMulti.md index 2a9d90e768..92c30595a9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.DesignDimensionMulti.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.DesignDimensionMulti.md @@ -1,4 +1,5 @@ -# Class DesignDimensionMulti +# Class DesignDimensionMulti + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,13 +12,13 @@ public abstract class DesignDimensionMulti : DesignDimensionBase, IObservableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← -DesignSubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← +[DesignSubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs) ← [DesignDimensionBase](VM.Managed.DAFUL.GearTrain.DesignDimensionBase.md) ← [DesignDimensionMulti](VM.Managed.DAFUL.GearTrain.DesignDimensionMulti.md) @@ -33,7 +34,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, INamed, INavigatorItem, @@ -67,23 +68,23 @@ IDrawIcon [DesignDimensionBase.EndPoint](VM.Managed.DAFUL.GearTrain.DesignDimensionBase.md\#VM\_Managed\_DAFUL\_GearTrain\_DesignDimensionBase\_EndPoint), [DesignDimensionBase.Color](VM.Managed.DAFUL.GearTrain.DesignDimensionBase.md\#VM\_Managed\_DAFUL\_GearTrain\_DesignDimensionBase\_Color), [DesignDimensionBase.Hide](VM.Managed.DAFUL.GearTrain.DesignDimensionBase.md\#VM\_Managed\_DAFUL\_GearTrain\_DesignDimensionBase\_Hide), -DesignSubEntity.m\_bSkipToUpdateSymmetric, -DesignSubEntity.g\_dicUpdatedDesignSubEntity, -DesignSubEntity.FixUp\(ObjectBase\), -DesignSubEntity.CheckCircularReference\(\), -DesignSubEntity.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\), -DesignSubEntity.IsInterface, -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[DesignSubEntity.m\_bSkipToUpdateSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.g\_dicUpdatedDesignSubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.CheckCircularReference\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.IsInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -176,7 +177,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -215,7 +216,7 @@ public DesignDimensionMulti(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the design subentity. @@ -231,7 +232,7 @@ public string[] TargetObjectNames { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### TargetObjects @@ -277,7 +278,7 @@ The sec body. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OnDeserialization\(object\) @@ -289,7 +290,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.DesignDimensionMultiHorizontal.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.DesignDimensionMultiHorizontal.md index 7be36d1f04..3854e1cac9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.DesignDimensionMultiHorizontal.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.DesignDimensionMultiHorizontal.md @@ -1,4 +1,5 @@ -# Class DesignDimensionMultiHorizontal +# Class DesignDimensionMultiHorizontal + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,13 +12,13 @@ public class DesignDimensionMultiHorizontal : DesignDimensionMulti, IObservableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← -DesignSubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← +[DesignSubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs) ← [DesignDimensionBase](VM.Managed.DAFUL.GearTrain.DesignDimensionBase.md) ← [DesignDimensionMulti](VM.Managed.DAFUL.GearTrain.DesignDimensionMulti.md) ← [DesignDimensionMultiHorizontal](VM.Managed.DAFUL.GearTrain.DesignDimensionMultiHorizontal.md) @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, INamed, INavigatorItem, @@ -68,23 +69,23 @@ IDrawIcon [DesignDimensionBase.EndPoint](VM.Managed.DAFUL.GearTrain.DesignDimensionBase.md\#VM\_Managed\_DAFUL\_GearTrain\_DesignDimensionBase\_EndPoint), [DesignDimensionBase.Color](VM.Managed.DAFUL.GearTrain.DesignDimensionBase.md\#VM\_Managed\_DAFUL\_GearTrain\_DesignDimensionBase\_Color), [DesignDimensionBase.Hide](VM.Managed.DAFUL.GearTrain.DesignDimensionBase.md\#VM\_Managed\_DAFUL\_GearTrain\_DesignDimensionBase\_Hide), -DesignSubEntity.m\_bSkipToUpdateSymmetric, -DesignSubEntity.g\_dicUpdatedDesignSubEntity, -DesignSubEntity.FixUp\(ObjectBase\), -DesignSubEntity.CheckCircularReference\(\), -DesignSubEntity.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\), -DesignSubEntity.IsInterface, -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[DesignSubEntity.m\_bSkipToUpdateSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.g\_dicUpdatedDesignSubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.CheckCircularReference\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.IsInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -177,7 +178,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -216,7 +217,7 @@ public DesignDimensionMultiHorizontal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the design subentity. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.DesignDimensionMultiVertical.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.DesignDimensionMultiVertical.md index acb233826c..f8fa0ecafc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.DesignDimensionMultiVertical.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.DesignDimensionMultiVertical.md @@ -1,4 +1,5 @@ -# Class DesignDimensionMultiVertical +# Class DesignDimensionMultiVertical + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,13 +12,13 @@ public class DesignDimensionMultiVertical : DesignDimensionMulti, IObservableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← -DesignSubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← +[DesignSubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs) ← [DesignDimensionBase](VM.Managed.DAFUL.GearTrain.DesignDimensionBase.md) ← [DesignDimensionMulti](VM.Managed.DAFUL.GearTrain.DesignDimensionMulti.md) ← [DesignDimensionMultiVertical](VM.Managed.DAFUL.GearTrain.DesignDimensionMultiVertical.md) @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, INamed, INavigatorItem, @@ -68,23 +69,23 @@ IDrawIcon [DesignDimensionBase.EndPoint](VM.Managed.DAFUL.GearTrain.DesignDimensionBase.md\#VM\_Managed\_DAFUL\_GearTrain\_DesignDimensionBase\_EndPoint), [DesignDimensionBase.Color](VM.Managed.DAFUL.GearTrain.DesignDimensionBase.md\#VM\_Managed\_DAFUL\_GearTrain\_DesignDimensionBase\_Color), [DesignDimensionBase.Hide](VM.Managed.DAFUL.GearTrain.DesignDimensionBase.md\#VM\_Managed\_DAFUL\_GearTrain\_DesignDimensionBase\_Hide), -DesignSubEntity.m\_bSkipToUpdateSymmetric, -DesignSubEntity.g\_dicUpdatedDesignSubEntity, -DesignSubEntity.FixUp\(ObjectBase\), -DesignSubEntity.CheckCircularReference\(\), -DesignSubEntity.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\), -DesignSubEntity.IsInterface, -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[DesignSubEntity.m\_bSkipToUpdateSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.g\_dicUpdatedDesignSubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.CheckCircularReference\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.IsInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -177,7 +178,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -216,7 +217,7 @@ public DesignDimensionMultiVertical(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the design subentity. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.DesignDimensionSingle.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.DesignDimensionSingle.md index b9e76c454b..739ed6d4f8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.DesignDimensionSingle.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.DesignDimensionSingle.md @@ -1,4 +1,5 @@ -# Class DesignDimensionSingle +# Class DesignDimensionSingle + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,13 +12,13 @@ public abstract class DesignDimensionSingle : DesignDimensionBase, IObservableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← -DesignSubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← +[DesignSubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs) ← [DesignDimensionBase](VM.Managed.DAFUL.GearTrain.DesignDimensionBase.md) ← [DesignDimensionSingle](VM.Managed.DAFUL.GearTrain.DesignDimensionSingle.md) @@ -33,7 +34,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, INamed, INavigatorItem, @@ -67,23 +68,23 @@ IDrawIcon [DesignDimensionBase.EndPoint](VM.Managed.DAFUL.GearTrain.DesignDimensionBase.md\#VM\_Managed\_DAFUL\_GearTrain\_DesignDimensionBase\_EndPoint), [DesignDimensionBase.Color](VM.Managed.DAFUL.GearTrain.DesignDimensionBase.md\#VM\_Managed\_DAFUL\_GearTrain\_DesignDimensionBase\_Color), [DesignDimensionBase.Hide](VM.Managed.DAFUL.GearTrain.DesignDimensionBase.md\#VM\_Managed\_DAFUL\_GearTrain\_DesignDimensionBase\_Hide), -DesignSubEntity.m\_bSkipToUpdateSymmetric, -DesignSubEntity.g\_dicUpdatedDesignSubEntity, -DesignSubEntity.FixUp\(ObjectBase\), -DesignSubEntity.CheckCircularReference\(\), -DesignSubEntity.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\), -DesignSubEntity.IsInterface, -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[DesignSubEntity.m\_bSkipToUpdateSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.g\_dicUpdatedDesignSubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.CheckCircularReference\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.IsInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -176,7 +177,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -215,7 +216,7 @@ public DesignDimensionSingle(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the design subentity. @@ -263,5 +264,5 @@ The sec body. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.DesignDimensionSingleHorizontal.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.DesignDimensionSingleHorizontal.md index 6a78acfcac..02d25ef91e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.DesignDimensionSingleHorizontal.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.DesignDimensionSingleHorizontal.md @@ -1,4 +1,5 @@ -# Class DesignDimensionSingleHorizontal +# Class DesignDimensionSingleHorizontal + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,13 +12,13 @@ public class DesignDimensionSingleHorizontal : DesignDimensionSingle, IObservabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← -DesignSubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← +[DesignSubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs) ← [DesignDimensionBase](VM.Managed.DAFUL.GearTrain.DesignDimensionBase.md) ← [DesignDimensionSingle](VM.Managed.DAFUL.GearTrain.DesignDimensionSingle.md) ← [DesignDimensionSingleHorizontal](VM.Managed.DAFUL.GearTrain.DesignDimensionSingleHorizontal.md) @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, INamed, INavigatorItem, @@ -66,23 +67,23 @@ IDrawIcon [DesignDimensionBase.EndPoint](VM.Managed.DAFUL.GearTrain.DesignDimensionBase.md\#VM\_Managed\_DAFUL\_GearTrain\_DesignDimensionBase\_EndPoint), [DesignDimensionBase.Color](VM.Managed.DAFUL.GearTrain.DesignDimensionBase.md\#VM\_Managed\_DAFUL\_GearTrain\_DesignDimensionBase\_Color), [DesignDimensionBase.Hide](VM.Managed.DAFUL.GearTrain.DesignDimensionBase.md\#VM\_Managed\_DAFUL\_GearTrain\_DesignDimensionBase\_Hide), -DesignSubEntity.m\_bSkipToUpdateSymmetric, -DesignSubEntity.g\_dicUpdatedDesignSubEntity, -DesignSubEntity.FixUp\(ObjectBase\), -DesignSubEntity.CheckCircularReference\(\), -DesignSubEntity.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\), -DesignSubEntity.IsInterface, -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[DesignSubEntity.m\_bSkipToUpdateSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.g\_dicUpdatedDesignSubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.CheckCircularReference\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.IsInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -175,7 +176,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -214,7 +215,7 @@ public DesignDimensionSingleHorizontal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the design subentity. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.DesignDimensionSingleVertical.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.DesignDimensionSingleVertical.md index a4627997df..6d6dce591c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.DesignDimensionSingleVertical.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.DesignDimensionSingleVertical.md @@ -1,4 +1,5 @@ -# Class DesignDimensionSingleVertical +# Class DesignDimensionSingleVertical + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,13 +12,13 @@ public class DesignDimensionSingleVertical : DesignDimensionSingle, IObservableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← -DesignSubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← +[DesignSubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs) ← [DesignDimensionBase](VM.Managed.DAFUL.GearTrain.DesignDimensionBase.md) ← [DesignDimensionSingle](VM.Managed.DAFUL.GearTrain.DesignDimensionSingle.md) ← [DesignDimensionSingleVertical](VM.Managed.DAFUL.GearTrain.DesignDimensionSingleVertical.md) @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, INamed, INavigatorItem, @@ -66,23 +67,23 @@ IDrawIcon [DesignDimensionBase.EndPoint](VM.Managed.DAFUL.GearTrain.DesignDimensionBase.md\#VM\_Managed\_DAFUL\_GearTrain\_DesignDimensionBase\_EndPoint), [DesignDimensionBase.Color](VM.Managed.DAFUL.GearTrain.DesignDimensionBase.md\#VM\_Managed\_DAFUL\_GearTrain\_DesignDimensionBase\_Color), [DesignDimensionBase.Hide](VM.Managed.DAFUL.GearTrain.DesignDimensionBase.md\#VM\_Managed\_DAFUL\_GearTrain\_DesignDimensionBase\_Hide), -DesignSubEntity.m\_bSkipToUpdateSymmetric, -DesignSubEntity.g\_dicUpdatedDesignSubEntity, -DesignSubEntity.FixUp\(ObjectBase\), -DesignSubEntity.CheckCircularReference\(\), -DesignSubEntity.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\), -DesignSubEntity.IsInterface, -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[DesignSubEntity.m\_bSkipToUpdateSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.g\_dicUpdatedDesignSubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.CheckCircularReference\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.IsInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -175,7 +176,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -214,7 +215,7 @@ public DesignDimensionSingleVertical(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the design subentity. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.DocCreateGearTrainInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.DocCreateGearTrainInfo.md index 580c2daace..3ae739940f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.DocCreateGearTrainInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.DocCreateGearTrainInfo.md @@ -1,4 +1,5 @@ -# Class DocCreateGearTrainInfo +# Class DocCreateGearTrainInfo + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,19 +12,19 @@ public class DocCreateGearTrainInfo : DocCreateAnalysisInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← DocCreateInfo ← DocCreate3DInfo ← -DocCreateAnalysisInfo ← +[DocCreateAnalysisInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DocCreate3DInfo.cs) ← [DocCreateGearTrainInfo](VM.Managed.DAFUL.GearTrain.DocCreateGearTrainInfo.md) #### Inherited Members -DocCreateAnalysisInfo.GravityX, -DocCreateAnalysisInfo.GravityY, -DocCreateAnalysisInfo.GravityZ, -DocCreateAnalysisInfo.IncrementTime, -DocCreateAnalysisInfo.UseIncrementTime, +[DocCreateAnalysisInfo.GravityX](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DocCreate3DInfo.cs), +[DocCreateAnalysisInfo.GravityY](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DocCreate3DInfo.cs), +[DocCreateAnalysisInfo.GravityZ](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DocCreate3DInfo.cs), +[DocCreateAnalysisInfo.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DocCreate3DInfo.cs), +[DocCreateAnalysisInfo.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DocCreate3DInfo.cs), DocCreate3DInfo.IconSize, DocCreate3DInfo.IsAdvancedMode, DocCreate3DInfo.UseSymmetric, @@ -60,7 +61,7 @@ public double ShaftDirX { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ShaftDirY @@ -72,7 +73,7 @@ public double ShaftDirY { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ShaftDirZ @@ -84,5 +85,5 @@ public double ShaftDirZ { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.MoterEM.Scale.ScaleTypes.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.MoterEM.Scale.ScaleTypes.md index 1589e3c7b9..435678c51e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.MoterEM.Scale.ScaleTypes.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.MoterEM.Scale.ScaleTypes.md @@ -1,4 +1,5 @@ -# Enum Scale.ScaleTypes +# Enum Scale.ScaleTypes + Namespace: [VM.Managed.DAFUL.GearTrain.Force.MoterEM](VM.Managed.DAFUL.GearTrain.Force.MoterEM.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.MoterEM.Scale.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.MoterEM.Scale.md index 6a2cb36c65..e29585954a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.MoterEM.Scale.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.MoterEM.Scale.md @@ -1,4 +1,5 @@ -# Class Scale +# Class Scale + Namespace: [VM.Managed.DAFUL.GearTrain.Force.MoterEM](VM.Managed.DAFUL.GearTrain.Force.MoterEM.md) Assembly: VMDGearTrain.dll @@ -9,9 +10,9 @@ public class Scale : LinkContainer, IObservableObject, IDisposableObject, ILinka #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Scale](VM.Managed.DAFUL.GearTrain.Force.MoterEM.Scale.md) @@ -73,7 +74,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -114,7 +115,7 @@ public ExpressionValueVariable RadialFactor { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RadialFactorFileName @@ -126,7 +127,7 @@ public string RadialFactorFileName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RadialFactorSpline @@ -138,7 +139,7 @@ public SplineValue RadialFactorSpline { get; set; } #### Property Value - SplineValue + [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### ScaleType @@ -162,7 +163,7 @@ public ExpressionValueVariable TangentialFactor { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TangentialFactorFileName @@ -174,7 +175,7 @@ public string TangentialFactorFileName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TangentialFactorSpline @@ -186,7 +187,7 @@ public SplineValue TangentialFactorSpline { get; set; } #### Property Value - SplineValue + [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.MoterEM.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.MoterEM.md index 07af332a5d..8050f41ebe 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.MoterEM.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.MoterEM.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.GearTrain.Force.MoterEM +# Namespace VM.Managed.DAFUL.GearTrain.Force.MoterEM + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.MotorEMForce.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.MotorEMForce.md index 2d31753c8e..35a9feab9f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.MotorEMForce.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.MotorEMForce.md @@ -1,4 +1,5 @@ -# Class MotorEMForce +# Class MotorEMForce + Namespace: [VM.Managed.DAFUL.GearTrain.Force](VM.Managed.DAFUL.GearTrain.Force.md) Assembly: VMDGearTrain.dll @@ -11,14 +12,14 @@ public class MotorEMForce : Entity, IObservableObject, IDi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [MotorEMForce](VM.Managed.DAFUL.GearTrain.Force.MotorEMForce.md) #### Implements @@ -28,7 +29,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -60,34 +61,34 @@ IReferencable #### Inherited Members -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -186,7 +187,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -225,7 +226,7 @@ public MotorEMForce(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -241,7 +242,7 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Hide @@ -253,7 +254,7 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RotorBody @@ -291,7 +292,7 @@ public virtual void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -305,21 +306,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.DivisionArray.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.DivisionArray.md index c571805579..a4c4be95ca 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.DivisionArray.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.DivisionArray.md @@ -1,4 +1,5 @@ -# Class PropertyMotorEMForce.DivisionArray +# Class PropertyMotorEMForce.DivisionArray + Namespace: [VM.Managed.DAFUL.GearTrain.Force](VM.Managed.DAFUL.GearTrain.Force.md) Assembly: VMDGearTrain.dll @@ -9,7 +10,7 @@ public class PropertyMotorEMForce.DivisionArray #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PropertyMotorEMForce.DivisionArray](VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.DivisionArray.md) #### Extension Methods @@ -36,5 +37,5 @@ public LinkedList Divisions #### Field Value - [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1)<[PropertyMotorEMForce](VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.md).[PositionArray](VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.PositionArray.md)\> + LinkedList<[PropertyMotorEMForce](VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.md).[PositionArray](VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.PositionArray.md)\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.ExcitationType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.ExcitationType.md index edfe92eb32..e5db3d4d14 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.ExcitationType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.ExcitationType.md @@ -1,4 +1,5 @@ -# Enum PropertyMotorEMForce.ExcitationType +# Enum PropertyMotorEMForce.ExcitationType + Namespace: [VM.Managed.DAFUL.GearTrain.Force](VM.Managed.DAFUL.GearTrain.Force.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.FileFormatType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.FileFormatType.md index 8ef9025360..77913807ee 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.FileFormatType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.FileFormatType.md @@ -1,4 +1,5 @@ -# Enum PropertyMotorEMForce.FileFormatType +# Enum PropertyMotorEMForce.FileFormatType + Namespace: [VM.Managed.DAFUL.GearTrain.Force](VM.Managed.DAFUL.GearTrain.Force.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.MaxwellModelType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.MaxwellModelType.md index 5edf3c997e..236d838e14 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.MaxwellModelType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.MaxwellModelType.md @@ -1,4 +1,5 @@ -# Enum PropertyMotorEMForce.MaxwellModelType +# Enum PropertyMotorEMForce.MaxwellModelType + Namespace: [VM.Managed.DAFUL.GearTrain.Force](VM.Managed.DAFUL.GearTrain.Force.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.MaxwellResultInformation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.MaxwellResultInformation.md index 5068e5da21..514f0f4915 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.MaxwellResultInformation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.MaxwellResultInformation.md @@ -1,4 +1,5 @@ -# Class PropertyMotorEMForce.MaxwellResultInformation +# Class PropertyMotorEMForce.MaxwellResultInformation + Namespace: [VM.Managed.DAFUL.GearTrain.Force](VM.Managed.DAFUL.GearTrain.Force.md) Assembly: VMDGearTrain.dll @@ -9,7 +10,7 @@ public class PropertyMotorEMForce.MaxwellResultInformation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PropertyMotorEMForce.MaxwellResultInformation](VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.MaxwellResultInformation.md) #### Extension Methods @@ -86,7 +87,7 @@ public string RPMRange { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RotorForce diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.MaxwellResultType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.MaxwellResultType.md index e80a2cd4b1..5d67a222f8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.MaxwellResultType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.MaxwellResultType.md @@ -1,4 +1,5 @@ -# Enum PropertyMotorEMForce.MaxwellResultType +# Enum PropertyMotorEMForce.MaxwellResultType + Namespace: [VM.Managed.DAFUL.GearTrain.Force](VM.Managed.DAFUL.GearTrain.Force.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.MaxwellSkewModelType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.MaxwellSkewModelType.md index e0b0325fcb..04293e07f1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.MaxwellSkewModelType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.MaxwellSkewModelType.md @@ -1,4 +1,5 @@ -# Enum PropertyMotorEMForce.MaxwellSkewModelType +# Enum PropertyMotorEMForce.MaxwellSkewModelType + Namespace: [VM.Managed.DAFUL.GearTrain.Force](VM.Managed.DAFUL.GearTrain.Force.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.PositionArray.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.PositionArray.md index d56dfd1646..999a3eb744 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.PositionArray.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.PositionArray.md @@ -1,4 +1,5 @@ -# Class PropertyMotorEMForce.PositionArray +# Class PropertyMotorEMForce.PositionArray + Namespace: [VM.Managed.DAFUL.GearTrain.Force](VM.Managed.DAFUL.GearTrain.Force.md) Assembly: VMDGearTrain.dll @@ -9,7 +10,7 @@ public class PropertyMotorEMForce.PositionArray #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PropertyMotorEMForce.PositionArray](VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.PositionArray.md) #### Extension Methods @@ -36,5 +37,5 @@ public LinkedList Positions #### Field Value - [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) + LinkedList diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.UNVFile.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.UNVFile.md index 1f42e8e1d5..ea329a4d98 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.UNVFile.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.UNVFile.md @@ -1,4 +1,5 @@ -# Class PropertyMotorEMForce.UNVFile +# Class PropertyMotorEMForce.UNVFile + Namespace: [VM.Managed.DAFUL.GearTrain.Force](VM.Managed.DAFUL.GearTrain.Force.md) Assembly: VMDGearTrain.dll @@ -11,7 +12,7 @@ public class PropertyMotorEMForce.UNVFile #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PropertyMotorEMForce.UNVFile](VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.UNVFile.md) #### Derived @@ -44,11 +45,11 @@ public UNVFile(string strStatorPath, string strRotorPath) #### Parameters -`strStatorPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strStatorPath` string The stator path. -`strRotorPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRotorPath` string The rotor path. @@ -64,7 +65,7 @@ public string RotorPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### StatorPath @@ -76,5 +77,5 @@ public string StatorPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.UNVFileWithRPM.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.UNVFileWithRPM.md index e2903ff1bb..3ffed53e0d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.UNVFileWithRPM.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.UNVFileWithRPM.md @@ -1,4 +1,5 @@ -# Class PropertyMotorEMForce.UNVFileWithRPM +# Class PropertyMotorEMForce.UNVFileWithRPM + Namespace: [VM.Managed.DAFUL.GearTrain.Force](VM.Managed.DAFUL.GearTrain.Force.md) Assembly: VMDGearTrain.dll @@ -11,7 +12,7 @@ public class PropertyMotorEMForce.UNVFileWithRPM : PropertyMotorEMForce.UNVFile #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PropertyMotorEMForce.UNVFile](VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.UNVFile.md) ← [PropertyMotorEMForce.UNVFileWithRPM](VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.UNVFileWithRPM.md) @@ -46,15 +47,15 @@ public UNVFileWithRPM(double dRPM, string strStatorPath, string strRotorPath) #### Parameters -`dRPM` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRPM` double The RPM. -`strStatorPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strStatorPath` string The stator path. -`strRotorPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRotorPath` string The rotor path. @@ -70,5 +71,5 @@ public double RPM { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.md index 7c5c4f4f1e..dde2079060 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.md @@ -1,4 +1,5 @@ -# Class PropertyMotorEMForce +# Class PropertyMotorEMForce + Namespace: [VM.Managed.DAFUL.GearTrain.Force](VM.Managed.DAFUL.GearTrain.Force.md) Assembly: VMDGearTrain.dll @@ -11,13 +12,13 @@ public class PropertyMotorEMForce : Property, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyMotorEMForce](VM.Managed.DAFUL.GearTrain.Force.PropertyMotorEMForce.md) #### Implements @@ -31,7 +32,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -40,12 +41,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -144,7 +145,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -185,11 +186,11 @@ public ExpressionValueVariable Depth { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Depth is null. @@ -239,11 +240,11 @@ public ExpressionValueVariable InitialPositionAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Initial position angle is null. @@ -257,7 +258,7 @@ public string MaxwellForceFile { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### MaxwellGeometryFile @@ -269,7 +270,7 @@ public string MaxwellGeometryFile { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NumberOfLayer @@ -281,11 +282,11 @@ public ExpressionValueVariable NumberOfLayer { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Number of layer is null. @@ -323,7 +324,7 @@ public string ResultFile { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Scale @@ -349,9 +350,9 @@ public static void CheckAMGeometryAndForceFile(Document doc, string strGeometryA `doc` Document -`strGeometryAMFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGeometryAMFilePath` string -`strForceAMFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strForceAMFilePath` string `transform` TMatrix @@ -365,11 +366,11 @@ public static bool CheckResultAMFile(string strResultAMFilePath) #### Parameters -`strResultAMFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strResultAMFilePath` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CheckUNVFiles\(Document, IEnumerable, TMatrix\) @@ -385,7 +386,7 @@ public static void CheckUNVFiles(Document document, IEnumerable filesPat The document. -`filesPath` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`filesPath` IEnumerable The force UNV files. @@ -407,11 +408,11 @@ public static void CheckUNVFiles(Document doc, string strGeometryUNVFilePath, st The document. -`strGeometryUNVFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGeometryUNVFilePath` string The geometry UNV file. -`arForceUNVFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arForceUNVFilePath` string\[\] The force UNV files. @@ -451,15 +452,15 @@ public static Tuple GetNodeCountFromAMFile(Document doc, string strGeo `doc` Document -`strGeometryAMFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGeometryAMFilePath` string -`strForceAMFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strForceAMFilePath` string `transform` TMatrix #### Returns - [Tuple](https://learn.microsoft.com/dotnet/api/system.tuple\-2)<[int](https://learn.microsoft.com/dotnet/api/system.int32), [int](https://learn.microsoft.com/dotnet/api/system.int32)\> + Tuple ### GetNodeCountFromUNVFile\(Document, string, TMatrix\) @@ -475,7 +476,7 @@ public static int GetNodeCountFromUNVFile(Document document, string forceUNVFile The document. -`forceUNVFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`forceUNVFilePath` string The force UNV file. @@ -485,7 +486,7 @@ The transform. #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetNodeCountFromUNVFile\(Document, string, string, TMatrix\) @@ -501,11 +502,11 @@ public static int GetNodeCountFromUNVFile(Document doc, string strGeometryUNVFil The document. -`strGeometryUNVFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGeometryUNVFilePath` string The geometry UNV file. -`strForceUNVFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strForceUNVFilePath` string The force UNV file. @@ -515,7 +516,7 @@ The transform. #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetRotorPosition\(Document, string, int, int\) @@ -531,15 +532,15 @@ public Vector GetRotorPosition(Document doc, string strResultFile, int nIndexRot The document -`strResultFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strResultFile` string The result file -`nIndexRotor` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIndexRotor` int The rotor index -`nTotalRotor` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nTotalRotor` int The total rotor number @@ -561,7 +562,7 @@ public static Vector GetRotorPosition(Document doc, string strResultFile, TMatri The document -`strResultFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strResultFile` string The result file @@ -569,11 +570,11 @@ The result file The reference matrix -`nIndexRotor` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIndexRotor` int The rotor index -`nTotalRotor` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nTotalRotor` int The total rotor number @@ -605,7 +606,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -623,11 +624,11 @@ public static void ReadAMGeometryAndForceFile(Document doc, string strGeometryAM The document. -`strGeometryAMFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGeometryAMFilePath` string The AM geometry file path -`strForceAMFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strForceAMFilePath` string The AM force file path @@ -635,11 +636,11 @@ The AM force file path The transform -`startToEndPointStator` [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2) +`startToEndPointStator` Dictionary The stator start and end point container. -`startToEndPointRotor` [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2) +`startToEndPointRotor` Dictionary The rotor start and end point container. @@ -657,7 +658,7 @@ public static void ReadResultAMFile(Document doc, string strResultAMFilePath, ou The document. -`strResultAMFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strResultAMFilePath` string The force file path. @@ -679,7 +680,7 @@ public static IEnumerable> ReadUNVFile(Docume The document. -`filesPath` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`filesPath` IEnumerable The force UNV files. @@ -689,7 +690,7 @@ The transform. #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)\> + IEnumerable\> ### ReadUNVFile\(Document, string, string\[\], TMatrix, out Dictionary\[\]\) @@ -705,11 +706,11 @@ public static void ReadUNVFile(Document doc, string strGeometryUNVFilePath, stri The document. -`strGeometryUNVFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGeometryUNVFilePath` string The geometry UNV file. -`arForceUNVFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arForceUNVFilePath` string\[\] The force UNV files. @@ -717,7 +718,7 @@ The force UNV files. The transform. -`startToEndPoint` [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)\[\] +`startToEndPoint` Dictionary\[\] The start and end point container. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.ReferenceMotorEMForce.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.ReferenceMotorEMForce.md index 46ef8b25ae..cabb1a94b0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.ReferenceMotorEMForce.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.ReferenceMotorEMForce.md @@ -1,4 +1,5 @@ -# Class ReferenceMotorEMForce +# Class ReferenceMotorEMForce + Namespace: [VM.Managed.DAFUL.GearTrain.Force](VM.Managed.DAFUL.GearTrain.Force.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class ReferenceMotorEMForce : Reference, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Reference ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, INamed, @@ -162,7 +163,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -193,11 +194,11 @@ protected ReferenceMotorEMForce(SerializationInfo info, StreamingContext context #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.md index 800b1b7dc2..438f5b3370 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Force.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.GearTrain.Force +# Namespace VM.Managed.DAFUL.GearTrain.Force + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GTAssembly.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GTAssembly.md index 12a57ded9a..6c3719477c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GTAssembly.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GTAssembly.md @@ -1,4 +1,5 @@ -# Class GTAssembly +# Class GTAssembly + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class GTAssembly : LinkContainer, IObservableObject, IDisposableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [GTAssembly](VM.Managed.DAFUL.GearTrain.GTAssembly.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -142,7 +143,7 @@ public PropertyBush ConnectorProp { get; set; } #### Property Value - PropertyBush + [PropertyBush](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Bush.cs) ### CycloidPinInformation @@ -178,7 +179,7 @@ public IList InputShaftSetList { get; } #### Property Value - [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[GTAssemblyInfo](VM.Managed.DAFUL.GearTrain.GTAssemblyInfo.md)\> + IList<[GTAssemblyInfo](VM.Managed.DAFUL.GearTrain.GTAssemblyInfo.md)\> ### OutputShaftSetInfos @@ -202,7 +203,7 @@ public IList OutputShaftSetList { get; } #### Property Value - [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[GTAssemblyInfo](VM.Managed.DAFUL.GearTrain.GTAssemblyInfo.md)\> + IList<[GTAssemblyInfo](VM.Managed.DAFUL.GearTrain.GTAssemblyInfo.md)\> ### ReferenceBody @@ -238,7 +239,7 @@ public PropertyRevolute RevoluteProperty { get; set; } #### Property Value - PropertyRevolute + [PropertyRevolute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Revolute.cs) ### \_ReferenceBody @@ -292,13 +293,13 @@ protected override bool CanBeDestroy(object objNotifier) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The destroy object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ClearBearingInfo\(\) @@ -402,7 +403,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -436,7 +437,7 @@ The information. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Remove\(BearingInfoForAssembly\) @@ -454,7 +455,7 @@ The information. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Remove\(CycloidPinInfoForAssembly\) @@ -472,7 +473,7 @@ The information. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Remove\(RacewayGeometryInfo\) @@ -490,7 +491,7 @@ The race_info. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Remove\(GearGeometryInfo\) @@ -508,7 +509,7 @@ The gear information. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### initChild\(ConvertFactor\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GTAssemblyInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GTAssemblyInfo.md index 816b7a57f3..a240da201d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GTAssemblyInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GTAssemblyInfo.md @@ -1,4 +1,5 @@ -# Class GTAssemblyInfo +# Class GTAssemblyInfo + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class GTAssemblyInfo : LinkContainer, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [GTAssemblyInfo](VM.Managed.DAFUL.GearTrain.GTAssemblyInfo.md) @@ -76,7 +77,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -179,7 +180,7 @@ public bool User { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### \_ActionBody diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearFEGeneratorException.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearFEGeneratorException.md index 521ad25999..73142b8b59 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearFEGeneratorException.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearFEGeneratorException.md @@ -1,4 +1,5 @@ -# Class GearFEGeneratorException +# Class GearFEGeneratorException + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -9,8 +10,8 @@ public class GearFEGeneratorException : Exception #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Exception](https://learn.microsoft.com/dotnet/api/system.exception) ← +object ← +Exception ← [GearFEGeneratorException](VM.Managed.DAFUL.GearTrain.GearFEGeneratorException.md) #### Extension Methods @@ -29,5 +30,5 @@ public GearFEGeneratorException(string strMessage) #### Parameters -`strMessage` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMessage` string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearGeometryInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearGeometryInfo.md index 779b228acf..a9d8fe77b3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearGeometryInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearGeometryInfo.md @@ -1,4 +1,5 @@ -# Class GearGeometryInfo +# Class GearGeometryInfo + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,12 +12,12 @@ public class GearGeometryInfo : GeometryInfoBase, IObservableObject, IDisposable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [GeometryInfoBase](VM.Managed.DAFUL.GearTrain.GeometryInfoBase.md) ← [GearGeometryInfo](VM.Managed.DAFUL.GearTrain.GearGeometryInfo.md) @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -50,17 +51,17 @@ INavigatorItem [GeometryInfoBase.GeometryDepth](VM.Managed.DAFUL.GearTrain.GeometryInfoBase.md\#VM\_Managed\_DAFUL\_GearTrain\_GeometryInfoBase\_GeometryDepth), [GeometryInfoBase.ClearanceInformation](VM.Managed.DAFUL.GearTrain.GeometryInfoBase.md\#VM\_Managed\_DAFUL\_GearTrain\_GeometryInfoBase\_ClearanceInformation), [GeometryInfoBase.TypeOfGeometry](VM.Managed.DAFUL.GearTrain.GeometryInfoBase.md\#VM\_Managed\_DAFUL\_GearTrain\_GeometryInfoBase\_TypeOfGeometry), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -153,7 +154,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -192,7 +193,7 @@ public GearGeometryInfo(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the sub entity. @@ -220,7 +221,7 @@ public override double GeometryDepth { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### IsInternal @@ -233,7 +234,7 @@ public bool IsInternal { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ModifiedParam @@ -245,7 +246,7 @@ public bool ModifiedParam { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PredefinedPIs @@ -301,11 +302,11 @@ public void GetLengthAndHeight(ref double dLength, ref double dHeight) #### Parameters -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double Length of the d. -`dHeight` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHeight` double Height of the d. @@ -333,7 +334,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -351,7 +352,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -365,7 +366,7 @@ public void SetInternal(bool bFlag) #### Parameters -`bFlag` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bFlag` bool The internal flag. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearPair.Summary.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearPair.Summary.md index bcb6b5a67e..2ee93b81dd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearPair.Summary.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearPair.Summary.md @@ -1,4 +1,5 @@ -# Class GearPair.Summary +# Class GearPair.Summary + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,7 +12,7 @@ public class GearPair.Summary #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [GearPair.Summary](VM.Managed.DAFUL.GearTrain.GearPair.Summary.md) #### Extension Methods @@ -40,7 +41,7 @@ public double CenterDIstance { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### CenterDIstanceIdeal @@ -52,7 +53,7 @@ public double CenterDIstanceIdeal { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### LengthOfContact @@ -64,7 +65,7 @@ public double LengthOfContact { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### LengthOfContactIdeal @@ -76,7 +77,7 @@ public double LengthOfContactIdeal { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NormalContactRatio @@ -88,7 +89,7 @@ public double NormalContactRatio { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NormalContactRatioIdeal @@ -100,7 +101,7 @@ public double NormalContactRatioIdeal { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### OverlapContactRatio @@ -112,7 +113,7 @@ public double OverlapContactRatio { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### OverlapContactRatioIdeal @@ -124,7 +125,7 @@ public double OverlapContactRatioIdeal { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ToothSequence @@ -136,7 +137,7 @@ public int ToothSequence { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### WholeContactRatio @@ -148,7 +149,7 @@ public double WholeContactRatio { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### WholeContactRatioIdeal @@ -160,7 +161,7 @@ public double WholeContactRatioIdeal { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### WorkingPressureAngle @@ -172,7 +173,7 @@ public double WorkingPressureAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### WorkingPressureAngleIdeal @@ -184,5 +185,5 @@ public double WorkingPressureAngleIdeal { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearPair.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearPair.md index 677bb80aba..2996f680e7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearPair.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearPair.md @@ -1,4 +1,5 @@ -# Class GearPair +# Class GearPair + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,12 +12,12 @@ public class GearPair : SubEntity, IObservableObject, IDisposableObject, ILinkab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [GearPair](VM.Managed.DAFUL.GearTrain.GearPair.md) #### Implements @@ -26,7 +27,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -45,17 +46,17 @@ INavigatorItem #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -187,7 +188,7 @@ public GearPair(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the sub entity. @@ -260,7 +261,7 @@ The information. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetGearPair\(GearGeometryInfo\) @@ -304,7 +305,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -318,7 +319,7 @@ public void SetResultSummary(XmlNode node) #### Parameters -`node` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`node` XmlNode The node. @@ -332,7 +333,7 @@ public void SetResultSummary(double dCenterDIstance) #### Parameters -`dCenterDIstance` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dCenterDIstance` double The center distance. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearPairInfoForSubsystem.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearPairInfoForSubsystem.md index 702fbc0a60..87e100b3e9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearPairInfoForSubsystem.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearPairInfoForSubsystem.md @@ -1,4 +1,5 @@ -# Class GearPairInfoForSubsystem +# Class GearPairInfoForSubsystem + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class GearPairInfoForSubsystem : LinkContainer, IObservableObject, IDispo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [GearPairInfoForSubsystem](VM.Managed.DAFUL.GearTrain.GearPairInfoForSubsystem.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -140,5 +141,5 @@ public int PairSequence { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearPairLeftRightValue.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearPairLeftRightValue.md index 33f66edc6c..981fb5f456 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearPairLeftRightValue.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearPairLeftRightValue.md @@ -1,4 +1,5 @@ -# Class GearPairLeftRightValue +# Class GearPairLeftRightValue + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class GearPairLeftRightValue : LinkContainer, IObservableObject, IDisposa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [GearPairLeftRightValue](VM.Managed.DAFUL.GearTrain.GearPairLeftRightValue.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -120,7 +121,7 @@ public LeftRightValue[] LeftRightValues { get; set; } #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception LeftRightValue list is null. or @@ -140,7 +141,7 @@ public void InitChild(int nNum) #### Parameters -`nNum` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNum` int The n number. @@ -154,7 +155,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearPairValue.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearPairValue.md index c5f4489d61..7dacecb01a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearPairValue.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearPairValue.md @@ -1,4 +1,5 @@ -# Class GearPairValue +# Class GearPairValue + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class GearPairValue : LinkContainer, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [GearPairValue](VM.Managed.DAFUL.GearTrain.GearPairValue.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -120,7 +121,7 @@ public Variable[] Variables { get; set; } #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Variable list is null. or @@ -152,7 +153,7 @@ public void InitChild(int nNum) #### Parameters -`nNum` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNum` int The n number. @@ -166,7 +167,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearPropertyBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearPropertyBase.md index 168e0cee35..c4e505b430 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearPropertyBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearPropertyBase.md @@ -1,4 +1,5 @@ -# Class GearPropertyBase +# Class GearPropertyBase + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public abstract class GearPropertyBase : LinkContainer, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [GearPropertyBase](VM.Managed.DAFUL.GearTrain.GearPropertyBase.md) @@ -87,7 +88,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -128,7 +129,7 @@ public virtual void InitChild(int nNum) #### Parameters -`nNum` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNum` int The n number. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSet.md index ea1716dd60..b6b27a4882 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSet.md @@ -1,4 +1,5 @@ -# Class GearSet +# Class GearSet + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -6,19 +7,19 @@ Assembly: VMDGearTrain.dll Gear set for external ```csharp -public class GearSet : GearSetBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IOpenDesignerForGearTrain, IOpenDesigner, IReferencable, IGearSet, IHasGeometryInfo, ITransparentable, IHasBuilder, IReportable +public class GearSet : GearSetBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IOpenDesignerForGearTrain, IOpenDesigner, IReferencable, IGearSet, IHasGeometryInfo, ITransparentable, IHasBuilder, IReportable, IMassProp ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [OpenDesignerBase](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md) ← [GearSetBase](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md) ← [GearSet](VM.Managed.DAFUL.GearTrain.GearSet.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -60,7 +61,8 @@ IReferencable, [IHasGeometryInfo](VM.Managed.DAFUL.GearTrain.IHasGeometryInfo.md), ITransparentable, IHasBuilder, -IReportable +IReportable, +IMassProp #### Inherited Members @@ -89,6 +91,7 @@ IReportable [GearSetBase.OnDeserialization\(object\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_OnDeserialization\_System\_Object\_), [GearSetBase.MakeReferenceImpl\(LinkedList\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_MakeReferenceImpl\_System\_Collections\_Generic\_LinkedList\_VM\_Managed\_Reference\_\_), [GearSetBase.GeometryInfoBasesImpl\(\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_GeometryInfoBasesImpl), +[GearSetBase.GetMassPropImpl\(ref double, VectorBase, OMatrix, double\[\], bool\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_GetMassPropImpl\_System\_Double\_\_VM\_Managed\_VectorBase\_VM\_Managed\_OMatrix\_System\_Double\_\_\_System\_Boolean\_), [GearSetBase.Extension](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_Extension), [GearSetBase.TargetBody](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_TargetBody), [GearSetBase.TypeOfParent](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_TypeOfParent), @@ -117,34 +120,34 @@ IReportable [OpenDesignerBase.HasLayerExplicitly](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_HasLayerExplicitly), [OpenDesignerBase.Referencable](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Referencable), [OpenDesignerBase.Visible](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Visible), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -243,7 +246,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -282,7 +285,7 @@ public GearSet(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -298,7 +301,7 @@ public override string TypeFileName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -312,15 +315,15 @@ protected override void MeshingCore(int nRes, double dInitialAngle, ref List +`lstOrder` List<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> The builder list @@ -342,7 +345,7 @@ The gearset property The document -`InputArray` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`InputArray` string\[\] The input array diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetBase-1.md index 0a71fb18fe..88dea08c3b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetBase-1.md @@ -1,4 +1,5 @@ -# Class GearSetBase +# Class GearSetBase + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -6,7 +7,7 @@ Assembly: VMDGearTrain.dll Gear set base ```csharp -public abstract class GearSetBase : OpenDesignerBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IOpenDesignerForGearTrain, IOpenDesigner, IReferencable, IGearSet, IHasGeometryInfo, ITransparentable, IHasBuilder, IReportable where TProperty : PropertyGearSetBase, new() +public abstract class GearSetBase : OpenDesignerBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IOpenDesignerForGearTrain, IOpenDesigner, IReferencable, IGearSet, IHasGeometryInfo, ITransparentable, IHasBuilder, IReportable, IMassProp where TProperty : PropertyGearSetBase, new() ``` #### Type Parameters @@ -17,14 +18,14 @@ The type of the property. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [OpenDesignerBase](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md) ← [GearSetBase](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md) @@ -35,7 +36,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -65,7 +66,8 @@ IReferencable, [IHasGeometryInfo](VM.Managed.DAFUL.GearTrain.IHasGeometryInfo.md), ITransparentable, IHasBuilder, -IReportable +IReportable, +IMassProp #### Inherited Members @@ -87,34 +89,34 @@ IReportable [OpenDesignerBase.HasLayerExplicitly](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_HasLayerExplicitly), [OpenDesignerBase.Referencable](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Referencable), [OpenDesignerBase.Visible](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Visible), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -213,7 +215,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -252,7 +254,7 @@ public GearSetBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -268,7 +270,7 @@ public virtual bool AddToShaft { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Extension @@ -280,7 +282,7 @@ protected override string Extension { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GearBodies @@ -296,7 +298,7 @@ public Body[] GearBodies { get; set; } #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception GearBody list is null. or @@ -318,7 +320,7 @@ public Body[] GearBodiesExceptWeb { get; } #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception GearBody list is null. @@ -360,7 +362,7 @@ public GearPairInfoForSubsystem[] PairInfos { get; set; } #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception PairInfo list is null. or @@ -402,7 +404,7 @@ public virtual bool UseMeshing { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -452,7 +454,7 @@ protected virtual void AppendExtraRotateAngle(List lstOrder) #### Parameters -`lstOrder` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> +`lstOrder` List<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> gear builder list @@ -466,7 +468,7 @@ protected void CalculateWebMass(PropertyGearSetBase propGearSet, int nIdx) `propGearSet` [PropertyGearSetBase](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md) -`nIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIdx` int ### CheckPowerFlow\(List\) @@ -478,7 +480,7 @@ protected void CheckPowerFlow(List lstGB) #### Parameters -`lstGB` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> +`lstGB` List<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> The gear builder list. @@ -492,11 +494,11 @@ protected virtual void CreateGearGeometry(string strGearType, int nNGear, GearSh #### Parameters -`strGearType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGearType` string THe gear type -`nNGear` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNGear` int The No. of gear @@ -514,15 +516,15 @@ protected void ExternalMeshing(int nRes, double dInitialAngle, ref List +`lstOrder` List<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> The builder list @@ -540,25 +542,25 @@ public bool FillGearData(Document doc, bool bUseKissSoftInterface, bool bUseAdva The document -`bUseKissSoftInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseKissSoftInterface` bool The kiss soft interface flag -`bUseAdvanced` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseAdvanced` bool The advanced flag -`Color` [string](https://learn.microsoft.com/dotnet/api/system.string) +`Color` string The color -`InputArray` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`InputArray` string\[\] The input array for create #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### FillGearData\(Document, int, string, string\[\], string\[\], string\[\], string\[\], bool, bool, string, string\[\]\) @@ -574,49 +576,49 @@ public virtual bool FillGearData(Document doc, int nNGear, string strName, strin The document -`nNGear` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNGear` int The No. of gear -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The gear name -`CenterDistance` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`CenterDistance` string\[\] The gear center distance -`NumberOfTeeth` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`NumberOfTeeth` string\[\] The No. of teeth -`ProfileShift` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`ProfileShift` string\[\] The profile shift -`FaceWidth` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`FaceWidth` string\[\] The face width -`bUseKissSoftInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseKissSoftInterface` bool The kiss soft interface flag -`bUseAdvanced` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseAdvanced` bool The advanced flag -`Color` [string](https://learn.microsoft.com/dotnet/api/system.string) +`Color` string The color -`InputArray` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`InputArray` string\[\] The input array for create #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Find\(string\) @@ -628,7 +630,7 @@ public override IObjectBase Find(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -682,6 +684,24 @@ public ObjectBase[] GetBuilder() The builders. +### GetMassPropImpl\(ref double, VectorBase, OMatrix, double\[\], bool\) + +```csharp +protected virtual void GetMassPropImpl(ref double dMass, VectorBase vecCenterPosition, OMatrix vecOrientation, double[] arTensor, bool bGlobal) +``` + +#### Parameters + +`dMass` double + +`vecCenterPosition` VectorBase + +`vecOrientation` OMatrix + +`arTensor` double\[\] + +`bGlobal` bool + ### GetPositionsForMeshing\(List, int, ref VectorBase, ref VectorBase\) Get positions for meshing. @@ -692,11 +712,11 @@ protected virtual void GetPositionsForMeshing(List lstOrder, int i #### Parameters -`lstOrder` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> +`lstOrder` List<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> The builder list -`i` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`i` int The gear index @@ -718,13 +738,13 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The ob unnamed. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The unnamed object name. @@ -738,15 +758,15 @@ protected void InternalMeshing(int nRes, double dInitialAngle, ref List +`lstOrder` List<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> The builder list @@ -760,7 +780,7 @@ protected override void MakeReferenceImpl(LinkedList lstRef) #### Parameters -`lstRef` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) +`lstRef` LinkedList The container. @@ -774,13 +794,13 @@ public virtual bool Meshing(List lstGB) #### Parameters -`lstGB` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> +`lstGB` List<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> The gear builder list. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MeshingCore\(int, double, ref List\) @@ -792,15 +812,15 @@ protected virtual void MeshingCore(int nRes, double dInitialAngle, ref List +`lstOrder` List<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> The builder list @@ -814,7 +834,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -844,7 +864,7 @@ The gearset property The document -`InputArray` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`InputArray` string\[\] The input array @@ -866,7 +886,7 @@ The gearset property The document -`InputArray` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`InputArray` string\[\] The input array @@ -894,7 +914,7 @@ public override Document SetDataToDesignDoc(bool bRecord) #### Parameters -`bRecord` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bRecord` bool #### Returns diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetCrossHelical.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetCrossHelical.md index b5892305f5..80f1d3c0ce 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetCrossHelical.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetCrossHelical.md @@ -1,4 +1,5 @@ -# Class GearSetCrossHelical +# Class GearSetCrossHelical + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -6,19 +7,19 @@ Assembly: VMDGearTrain.dll Gear set for cross helical ```csharp -public class GearSetCrossHelical : GearSetBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IOpenDesignerForGearTrain, IOpenDesigner, IReferencable, IGearSet, IHasGeometryInfo, ITransparentable, IHasBuilder, IReportable +public class GearSetCrossHelical : GearSetBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IOpenDesignerForGearTrain, IOpenDesigner, IReferencable, IGearSet, IHasGeometryInfo, ITransparentable, IHasBuilder, IReportable, IMassProp ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [OpenDesignerBase](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md) ← [GearSetBase](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md) ← [GearSetCrossHelical](VM.Managed.DAFUL.GearTrain.GearSetCrossHelical.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -60,7 +61,8 @@ IReferencable, [IHasGeometryInfo](VM.Managed.DAFUL.GearTrain.IHasGeometryInfo.md), ITransparentable, IHasBuilder, -IReportable +IReportable, +IMassProp #### Inherited Members @@ -89,6 +91,7 @@ IReportable [GearSetBase.OnDeserialization\(object\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_OnDeserialization\_System\_Object\_), [GearSetBase.MakeReferenceImpl\(LinkedList\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_MakeReferenceImpl\_System\_Collections\_Generic\_LinkedList\_VM\_Managed\_Reference\_\_), [GearSetBase.GeometryInfoBasesImpl\(\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_GeometryInfoBasesImpl), +[GearSetBase.GetMassPropImpl\(ref double, VectorBase, OMatrix, double\[\], bool\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_GetMassPropImpl\_System\_Double\_\_VM\_Managed\_VectorBase\_VM\_Managed\_OMatrix\_System\_Double\_\_\_System\_Boolean\_), [GearSetBase.Extension](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_Extension), [GearSetBase.TargetBody](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_TargetBody), [GearSetBase.TypeOfParent](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_TypeOfParent), @@ -117,34 +120,34 @@ IReportable [OpenDesignerBase.HasLayerExplicitly](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_HasLayerExplicitly), [OpenDesignerBase.Referencable](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Referencable), [OpenDesignerBase.Visible](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Visible), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -243,7 +246,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -282,7 +285,7 @@ public GearSetCrossHelical(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -298,7 +301,7 @@ protected override string Extension { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeFileName @@ -310,7 +313,7 @@ public override string TypeFileName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -324,7 +327,7 @@ protected override void AppendExtraRotateAngle(List lstOrder) #### Parameters -`lstOrder` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> +`lstOrder` List<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> gear builder list @@ -338,11 +341,11 @@ protected override void CreateGearGeometry(string strGearType, int nNGear, GearS #### Parameters -`strGearType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGearType` string THe gear type -`nNGear` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNGear` int The No. of gear @@ -360,11 +363,11 @@ protected override void GetPositionsForMeshing(List lstOrder, int #### Parameters -`lstOrder` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> +`lstOrder` List<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> The builder list -`i` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`i` int The gear index @@ -386,7 +389,7 @@ public static TMatrix GetRotateMatrix(double dAngle, VectorBase vecPos, VectorBa #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The angle @@ -412,15 +415,15 @@ protected override void MeshingCore(int nRes, double dInitialAngle, ref List +`lstOrder` List<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> The builder list @@ -434,7 +437,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -456,7 +459,7 @@ The gearset property The document -`InputArray` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`InputArray` string\[\] The input array diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetCustom.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetCustom.md index f1acde35c5..603426e384 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetCustom.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetCustom.md @@ -1,4 +1,5 @@ -# Class GearSetCustom +# Class GearSetCustom + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -6,19 +7,19 @@ Assembly: VMDGearTrain.dll Gear set for custom ```csharp -public class GearSetCustom : GearSetBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IOpenDesignerForGearTrain, IOpenDesigner, IReferencable, IGearSet, IHasGeometryInfo, ITransparentable, IHasBuilder, IReportable +public class GearSetCustom : GearSetBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IOpenDesignerForGearTrain, IOpenDesigner, IReferencable, IGearSet, IHasGeometryInfo, ITransparentable, IHasBuilder, IReportable, IMassProp ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [OpenDesignerBase](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md) ← [GearSetBase](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md) ← [GearSetCustom](VM.Managed.DAFUL.GearTrain.GearSetCustom.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -60,7 +61,8 @@ IReferencable, [IHasGeometryInfo](VM.Managed.DAFUL.GearTrain.IHasGeometryInfo.md), ITransparentable, IHasBuilder, -IReportable +IReportable, +IMassProp #### Inherited Members @@ -89,6 +91,7 @@ IReportable [GearSetBase.OnDeserialization\(object\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_OnDeserialization\_System\_Object\_), [GearSetBase.MakeReferenceImpl\(LinkedList\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_MakeReferenceImpl\_System\_Collections\_Generic\_LinkedList\_VM\_Managed\_Reference\_\_), [GearSetBase.GeometryInfoBasesImpl\(\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_GeometryInfoBasesImpl), +[GearSetBase.GetMassPropImpl\(ref double, VectorBase, OMatrix, double\[\], bool\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_GetMassPropImpl\_System\_Double\_\_VM\_Managed\_VectorBase\_VM\_Managed\_OMatrix\_System\_Double\_\_\_System\_Boolean\_), [GearSetBase.Extension](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_Extension), [GearSetBase.TargetBody](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_TargetBody), [GearSetBase.TypeOfParent](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_TypeOfParent), @@ -117,34 +120,34 @@ IReportable [OpenDesignerBase.HasLayerExplicitly](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_HasLayerExplicitly), [OpenDesignerBase.Referencable](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Referencable), [OpenDesignerBase.Visible](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Visible), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -243,7 +246,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -282,7 +285,7 @@ public GearSetCustom(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -298,7 +301,7 @@ protected override string Extension { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeFileName @@ -310,7 +313,7 @@ public override string TypeFileName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -324,11 +327,11 @@ protected override void CreateGearGeometry(string strGearType, int nNGear, GearS #### Parameters -`strGearType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGearType` string THe gear type -`nNGear` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNGear` int The No. of gear @@ -346,15 +349,15 @@ protected override void MeshingCore(int nRes, double dInitialAngle, ref List +`lstOrder` List<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> The builder list @@ -376,7 +379,7 @@ The gearset property The document -`InputArray` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`InputArray` string\[\] The input array diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetCycloidPin.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetCycloidPin.md index d22eff495c..0091c8b48e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetCycloidPin.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetCycloidPin.md @@ -1,4 +1,5 @@ -# Class GearSetCycloidPin +# Class GearSetCycloidPin + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -6,19 +7,19 @@ Assembly: VMDGearTrain.dll Gear set for cycloid pin ```csharp -public class GearSetCycloidPin : GearSetBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IOpenDesignerForGearTrain, IOpenDesigner, IReferencable, IGearSet, IHasGeometryInfo, ITransparentable, IHasBuilder, IReportable +public class GearSetCycloidPin : GearSetBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IOpenDesignerForGearTrain, IOpenDesigner, IReferencable, IGearSet, IHasGeometryInfo, ITransparentable, IHasBuilder, IReportable, IMassProp ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [OpenDesignerBase](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md) ← [GearSetBase](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md) ← [GearSetCycloidPin](VM.Managed.DAFUL.GearTrain.GearSetCycloidPin.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -60,7 +61,8 @@ IReferencable, [IHasGeometryInfo](VM.Managed.DAFUL.GearTrain.IHasGeometryInfo.md), ITransparentable, IHasBuilder, -IReportable +IReportable, +IMassProp #### Inherited Members @@ -89,6 +91,7 @@ IReportable [GearSetBase.OnDeserialization\(object\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_OnDeserialization\_System\_Object\_), [GearSetBase.MakeReferenceImpl\(LinkedList\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_MakeReferenceImpl\_System\_Collections\_Generic\_LinkedList\_VM\_Managed\_Reference\_\_), [GearSetBase.GeometryInfoBasesImpl\(\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_GeometryInfoBasesImpl), +[GearSetBase.GetMassPropImpl\(ref double, VectorBase, OMatrix, double\[\], bool\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_GetMassPropImpl\_System\_Double\_\_VM\_Managed\_VectorBase\_VM\_Managed\_OMatrix\_System\_Double\_\_\_System\_Boolean\_), [GearSetBase.Extension](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_Extension), [GearSetBase.TargetBody](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_TargetBody), [GearSetBase.TypeOfParent](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_TypeOfParent), @@ -117,34 +120,34 @@ IReportable [OpenDesignerBase.HasLayerExplicitly](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_HasLayerExplicitly), [OpenDesignerBase.Referencable](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Referencable), [OpenDesignerBase.Visible](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Visible), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -243,7 +246,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -282,7 +285,7 @@ public GearSetCycloidPin(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -298,7 +301,7 @@ protected override string Extension { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeFileName @@ -310,7 +313,7 @@ public override string TypeFileName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UseMeshing @@ -322,7 +325,7 @@ public override bool UseMeshing { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -336,11 +339,11 @@ protected override void CreateGearGeometry(string strGearType, int nNGear, GearS #### Parameters -`strGearType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGearType` string THe gear type -`nNGear` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNGear` int The No. of gear @@ -348,6 +351,24 @@ The No. of gear The gear shape geometry +### GetMassPropImpl\(ref double, VectorBase, OMatrix, double\[\], bool\) + +```csharp +protected override void GetMassPropImpl(ref double dMass, VectorBase vecCenterPosition, OMatrix vecOrientation, double[] arTensor, bool bGlobal) +``` + +#### Parameters + +`dMass` double + +`vecCenterPosition` VectorBase + +`vecOrientation` OMatrix + +`arTensor` double\[\] + +`bGlobal` bool + ### LinkRequestDestroying\(object, LinkEventArgs\) Links the request destroying. @@ -358,7 +379,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. @@ -376,7 +397,7 @@ protected override void MakeReferenceImpl(LinkedList lstRef) #### Parameters -`lstRef` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) +`lstRef` LinkedList The container. @@ -410,13 +431,13 @@ The shaft axis The center of pin -`bMakePin` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bMakePin` bool The pin making flag #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MeshingCore\(int, double, ref List\) @@ -428,15 +449,15 @@ protected override void MeshingCore(int nRes, double dInitialAngle, ref List +`lstOrder` List<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> The builder list @@ -458,7 +479,7 @@ The gearset property The document -`InputArray` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`InputArray` string\[\] The input array diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetInternal.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetInternal.md index ae8301156d..ce9ee4648a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetInternal.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetInternal.md @@ -1,4 +1,5 @@ -# Class GearSetInternal +# Class GearSetInternal + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -6,19 +7,19 @@ Assembly: VMDGearTrain.dll Gear set for internal ```csharp -public class GearSetInternal : GearSetBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IOpenDesignerForGearTrain, IOpenDesigner, IReferencable, IGearSet, IHasGeometryInfo, ITransparentable, IHasBuilder, IReportable +public class GearSetInternal : GearSetBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IOpenDesignerForGearTrain, IOpenDesigner, IReferencable, IGearSet, IHasGeometryInfo, ITransparentable, IHasBuilder, IReportable, IMassProp ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [OpenDesignerBase](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md) ← [GearSetBase](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md) ← [GearSetInternal](VM.Managed.DAFUL.GearTrain.GearSetInternal.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -60,7 +61,8 @@ IReferencable, [IHasGeometryInfo](VM.Managed.DAFUL.GearTrain.IHasGeometryInfo.md), ITransparentable, IHasBuilder, -IReportable +IReportable, +IMassProp #### Inherited Members @@ -89,6 +91,7 @@ IReportable [GearSetBase.OnDeserialization\(object\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_OnDeserialization\_System\_Object\_), [GearSetBase.MakeReferenceImpl\(LinkedList\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_MakeReferenceImpl\_System\_Collections\_Generic\_LinkedList\_VM\_Managed\_Reference\_\_), [GearSetBase.GeometryInfoBasesImpl\(\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_GeometryInfoBasesImpl), +[GearSetBase.GetMassPropImpl\(ref double, VectorBase, OMatrix, double\[\], bool\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_GetMassPropImpl\_System\_Double\_\_VM\_Managed\_VectorBase\_VM\_Managed\_OMatrix\_System\_Double\_\_\_System\_Boolean\_), [GearSetBase.Extension](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_Extension), [GearSetBase.TargetBody](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_TargetBody), [GearSetBase.TypeOfParent](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_TypeOfParent), @@ -117,34 +120,34 @@ IReportable [OpenDesignerBase.HasLayerExplicitly](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_HasLayerExplicitly), [OpenDesignerBase.Referencable](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Referencable), [OpenDesignerBase.Visible](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Visible), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -243,7 +246,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -282,7 +285,7 @@ public GearSetInternal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -298,7 +301,7 @@ protected override string Extension { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeFileName @@ -310,7 +313,7 @@ public override string TypeFileName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -328,49 +331,49 @@ public override bool FillGearData(Document doc, int nNGear, string strName, stri The document -`nNGear` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNGear` int The No. of gear -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The gear name -`CenterDistance` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`CenterDistance` string\[\] The gear center distance -`NumberOfTeeth` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`NumberOfTeeth` string\[\] The No. of teeth -`ProfileShift` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`ProfileShift` string\[\] The profile shift -`FaceWidth` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`FaceWidth` string\[\] The face width -`bUseKissSoftInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseKissSoftInterface` bool The kiss soft interface flag -`bUseAdvanced` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseAdvanced` bool The advanced flag -`Color` [string](https://learn.microsoft.com/dotnet/api/system.string) +`Color` string The color -`InputArray` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`InputArray` string\[\] The input array for create #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MeshingCore\(int, double, ref List\) @@ -382,15 +385,15 @@ protected override void MeshingCore(int nRes, double dInitialAngle, ref List +`lstOrder` List<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> The builder list @@ -412,7 +415,7 @@ The gearset property The document -`InputArray` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`InputArray` string\[\] The input array @@ -434,7 +437,7 @@ The gearset property The document -`InputArray` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`InputArray` string\[\] The input array diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetPlanetary.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetPlanetary.md index b074fb56fb..bb50473c90 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetPlanetary.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetPlanetary.md @@ -1,4 +1,5 @@ -# Class GearSetPlanetary +# Class GearSetPlanetary + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -6,19 +7,19 @@ Assembly: VMDGearTrain.dll Gear set for planetary ```csharp -public class GearSetPlanetary : GearSetBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IOpenDesignerForGearTrain, IOpenDesigner, IReferencable, IGearSet, IHasGeometryInfo, ITransparentable, IHasBuilder, IReportable +public class GearSetPlanetary : GearSetBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IOpenDesignerForGearTrain, IOpenDesigner, IReferencable, IGearSet, IHasGeometryInfo, ITransparentable, IHasBuilder, IReportable, IMassProp ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [OpenDesignerBase](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md) ← [GearSetBase](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md) ← [GearSetPlanetary](VM.Managed.DAFUL.GearTrain.GearSetPlanetary.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -60,7 +61,8 @@ IReferencable, [IHasGeometryInfo](VM.Managed.DAFUL.GearTrain.IHasGeometryInfo.md), ITransparentable, IHasBuilder, -IReportable +IReportable, +IMassProp #### Inherited Members @@ -89,6 +91,7 @@ IReportable [GearSetBase.OnDeserialization\(object\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_OnDeserialization\_System\_Object\_), [GearSetBase.MakeReferenceImpl\(LinkedList\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_MakeReferenceImpl\_System\_Collections\_Generic\_LinkedList\_VM\_Managed\_Reference\_\_), [GearSetBase.GeometryInfoBasesImpl\(\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_GeometryInfoBasesImpl), +[GearSetBase.GetMassPropImpl\(ref double, VectorBase, OMatrix, double\[\], bool\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_GetMassPropImpl\_System\_Double\_\_VM\_Managed\_VectorBase\_VM\_Managed\_OMatrix\_System\_Double\_\_\_System\_Boolean\_), [GearSetBase.Extension](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_Extension), [GearSetBase.TargetBody](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_TargetBody), [GearSetBase.TypeOfParent](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_TypeOfParent), @@ -117,34 +120,34 @@ IReportable [OpenDesignerBase.HasLayerExplicitly](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_HasLayerExplicitly), [OpenDesignerBase.Referencable](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Referencable), [OpenDesignerBase.Visible](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Visible), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -243,7 +246,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -282,7 +285,7 @@ public GearSetPlanetary(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -298,7 +301,7 @@ protected override string Extension { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeFileName @@ -310,7 +313,7 @@ public override string TypeFileName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -328,49 +331,49 @@ public override bool FillGearData(Document doc, int nNGear, string strName, stri The document -`nNGear` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNGear` int The No. of gear -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The gear name -`CenterDistance` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`CenterDistance` string\[\] The gear center distance -`NumberOfTeeth` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`NumberOfTeeth` string\[\] The No. of teeth -`ProfileShift` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`ProfileShift` string\[\] The profile shift -`FaceWidth` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`FaceWidth` string\[\] The face width -`bUseKissSoftInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseKissSoftInterface` bool The kiss soft interface flag -`bUseAdvanced` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseAdvanced` bool The advanced flag -`Color` [string](https://learn.microsoft.com/dotnet/api/system.string) +`Color` string The color -`InputArray` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`InputArray` string\[\] The input array for create #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Meshing\(List\) @@ -382,13 +385,13 @@ public override bool Meshing(List lstGB) #### Parameters -`lstGB` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> +`lstGB` List<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> The gear builder list. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OnPostBuildSpecial\(PropertyGearSetBase, Document, string\[\]\) @@ -408,7 +411,7 @@ The gearset property The document -`InputArray` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`InputArray` string\[\] The input array @@ -430,7 +433,7 @@ The gearset property The document -`InputArray` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`InputArray` string\[\] The input array diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetPlanetaryDP.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetPlanetaryDP.md index 2e0c72ce62..442b6dd12d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetPlanetaryDP.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetPlanetaryDP.md @@ -1,4 +1,5 @@ -# Class GearSetPlanetaryDP +# Class GearSetPlanetaryDP + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -6,19 +7,19 @@ Assembly: VMDGearTrain.dll Gear set for double-pinion planetary ```csharp -public class GearSetPlanetaryDP : GearSetBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IOpenDesignerForGearTrain, IOpenDesigner, IReferencable, IGearSet, IHasGeometryInfo, ITransparentable, IHasBuilder, IReportable +public class GearSetPlanetaryDP : GearSetBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IOpenDesignerForGearTrain, IOpenDesigner, IReferencable, IGearSet, IHasGeometryInfo, ITransparentable, IHasBuilder, IReportable, IMassProp ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [OpenDesignerBase](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md) ← [GearSetBase](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md) ← [GearSetPlanetaryDP](VM.Managed.DAFUL.GearTrain.GearSetPlanetaryDP.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -60,7 +61,8 @@ IReferencable, [IHasGeometryInfo](VM.Managed.DAFUL.GearTrain.IHasGeometryInfo.md), ITransparentable, IHasBuilder, -IReportable +IReportable, +IMassProp #### Inherited Members @@ -89,6 +91,7 @@ IReportable [GearSetBase.OnDeserialization\(object\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_OnDeserialization\_System\_Object\_), [GearSetBase.MakeReferenceImpl\(LinkedList\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_MakeReferenceImpl\_System\_Collections\_Generic\_LinkedList\_VM\_Managed\_Reference\_\_), [GearSetBase.GeometryInfoBasesImpl\(\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_GeometryInfoBasesImpl), +[GearSetBase.GetMassPropImpl\(ref double, VectorBase, OMatrix, double\[\], bool\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_GetMassPropImpl\_System\_Double\_\_VM\_Managed\_VectorBase\_VM\_Managed\_OMatrix\_System\_Double\_\_\_System\_Boolean\_), [GearSetBase.Extension](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_Extension), [GearSetBase.TargetBody](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_TargetBody), [GearSetBase.TypeOfParent](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_TypeOfParent), @@ -117,34 +120,34 @@ IReportable [OpenDesignerBase.HasLayerExplicitly](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_HasLayerExplicitly), [OpenDesignerBase.Referencable](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Referencable), [OpenDesignerBase.Visible](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Visible), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -243,7 +246,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -282,7 +285,7 @@ public GearSetPlanetaryDP(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -298,7 +301,7 @@ protected override string Extension { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeFileName @@ -310,7 +313,7 @@ public override string TypeFileName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -328,49 +331,49 @@ public override bool FillGearData(Document doc, int nNGear, string strName, stri The document -`nNGear` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNGear` int The No. of gear -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The gear name -`CenterDistance` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`CenterDistance` string\[\] The gear center distance -`NumberOfTeeth` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`NumberOfTeeth` string\[\] The No. of teeth -`ProfileShift` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`ProfileShift` string\[\] The profile shift -`FaceWidth` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`FaceWidth` string\[\] The face width -`bUseKissSoftInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseKissSoftInterface` bool The kiss soft interface flag -`bUseAdvanced` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseAdvanced` bool The advanced flag -`Color` [string](https://learn.microsoft.com/dotnet/api/system.string) +`Color` string The color -`InputArray` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`InputArray` string\[\] The input array for create #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Meshing\(List\) @@ -382,13 +385,13 @@ public override bool Meshing(List lstGB) #### Parameters -`lstGB` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> +`lstGB` List<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> The gear builder list. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OnPostBuildSpecial\(PropertyGearSetBase, Document, string\[\]\) @@ -408,7 +411,7 @@ The gearset property The document -`InputArray` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`InputArray` string\[\] The input array @@ -430,7 +433,7 @@ The gearset property The document -`InputArray` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`InputArray` string\[\] The input array diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetPlanetaryTS.GearSetType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetPlanetaryTS.GearSetType.md index 7a432694c4..3065081c03 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetPlanetaryTS.GearSetType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetPlanetaryTS.GearSetType.md @@ -1,4 +1,5 @@ -# Enum GearSetPlanetaryTS.GearSetType +# Enum GearSetPlanetaryTS.GearSetType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetPlanetaryTS.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetPlanetaryTS.md index 8bcb3da71e..e6eaa5b7da 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetPlanetaryTS.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetPlanetaryTS.md @@ -1,4 +1,5 @@ -# Class GearSetPlanetaryTS +# Class GearSetPlanetaryTS + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -6,19 +7,19 @@ Assembly: VMDGearTrain.dll Gear set for two-stage planetary ```csharp -public class GearSetPlanetaryTS : GearSetBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IOpenDesignerForGearTrain, IOpenDesigner, IReferencable, IGearSet, IHasGeometryInfo, ITransparentable, IHasBuilder, IReportable +public class GearSetPlanetaryTS : GearSetBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IOpenDesignerForGearTrain, IOpenDesigner, IReferencable, IGearSet, IHasGeometryInfo, ITransparentable, IHasBuilder, IReportable, IMassProp ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [OpenDesignerBase](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md) ← [GearSetBase](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md) ← [GearSetPlanetaryTS](VM.Managed.DAFUL.GearTrain.GearSetPlanetaryTS.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -60,7 +61,8 @@ IReferencable, [IHasGeometryInfo](VM.Managed.DAFUL.GearTrain.IHasGeometryInfo.md), ITransparentable, IHasBuilder, -IReportable +IReportable, +IMassProp #### Inherited Members @@ -89,6 +91,7 @@ IReportable [GearSetBase.OnDeserialization\(object\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_OnDeserialization\_System\_Object\_), [GearSetBase.MakeReferenceImpl\(LinkedList\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_MakeReferenceImpl\_System\_Collections\_Generic\_LinkedList\_VM\_Managed\_Reference\_\_), [GearSetBase.GeometryInfoBasesImpl\(\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_GeometryInfoBasesImpl), +[GearSetBase.GetMassPropImpl\(ref double, VectorBase, OMatrix, double\[\], bool\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_GetMassPropImpl\_System\_Double\_\_VM\_Managed\_VectorBase\_VM\_Managed\_OMatrix\_System\_Double\_\_\_System\_Boolean\_), [GearSetBase.Extension](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_Extension), [GearSetBase.TargetBody](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_TargetBody), [GearSetBase.TypeOfParent](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_TypeOfParent), @@ -117,34 +120,34 @@ IReportable [OpenDesignerBase.HasLayerExplicitly](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_HasLayerExplicitly), [OpenDesignerBase.Referencable](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Referencable), [OpenDesignerBase.Visible](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Visible), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -243,7 +246,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -282,7 +285,7 @@ public GearSetPlanetaryTS(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -298,7 +301,7 @@ protected override string Extension { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### FirstStageSingle @@ -346,7 +349,7 @@ public bool IsShareFirstStageDoublePinionIn { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsShareFirstStageDoublePinionOut @@ -358,7 +361,7 @@ public bool IsShareFirstStageDoublePinionOut { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsShareFirstStageDoubleRing @@ -370,7 +373,7 @@ public bool IsShareFirstStageDoubleRing { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsShareFirstStageDoubleSun @@ -382,7 +385,7 @@ public bool IsShareFirstStageDoubleSun { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsShareFirstStageSinglePinion @@ -394,7 +397,7 @@ public bool IsShareFirstStageSinglePinion { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsShareFirstStageSingleRing @@ -406,7 +409,7 @@ public bool IsShareFirstStageSingleRing { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsShareFirstStageSingleSun @@ -418,7 +421,7 @@ public bool IsShareFirstStageSingleSun { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsShareSecondStageDoublePinionIn @@ -430,7 +433,7 @@ public bool IsShareSecondStageDoublePinionIn { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsShareSecondStageDoublePinionOut @@ -442,7 +445,7 @@ public bool IsShareSecondStageDoublePinionOut { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsShareSecondStageDoubleRing @@ -454,7 +457,7 @@ public bool IsShareSecondStageDoubleRing { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsShareSecondStageDoubleSun @@ -466,7 +469,7 @@ public bool IsShareSecondStageDoubleSun { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsShareSecondStageSinglePinion @@ -478,7 +481,7 @@ public bool IsShareSecondStageSinglePinion { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsShareSecondStageSingleRing @@ -490,7 +493,7 @@ public bool IsShareSecondStageSingleRing { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsShareSecondStageSingleSun @@ -502,7 +505,7 @@ public bool IsShareSecondStageSingleSun { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SecondStageDouble @@ -538,7 +541,7 @@ public override string TypeFileName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -566,13 +569,13 @@ public override bool Meshing(List lstGB) #### Parameters -`lstGB` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> +`lstGB` List<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> The gear builder list. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OnPostBuildSpecial\(PropertyGearSetBase, Document, string\[\]\) @@ -592,7 +595,7 @@ The gearset property The document -`InputArray` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`InputArray` string\[\] The input array @@ -614,7 +617,7 @@ The gearset property The document -`InputArray` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`InputArray` string\[\] The input array diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetRackAndPinion.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetRackAndPinion.md index 073c9126c0..2113eac7c6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetRackAndPinion.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetRackAndPinion.md @@ -1,4 +1,5 @@ -# Class GearSetRackAndPinion +# Class GearSetRackAndPinion + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -6,19 +7,19 @@ Assembly: VMDGearTrain.dll Gear set for Rack and Pinion ```csharp -public class GearSetRackAndPinion : GearSetBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IOpenDesignerForGearTrain, IOpenDesigner, IReferencable, IGearSet, IHasGeometryInfo, ITransparentable, IHasBuilder, IReportable +public class GearSetRackAndPinion : GearSetBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IOpenDesignerForGearTrain, IOpenDesigner, IReferencable, IGearSet, IHasGeometryInfo, ITransparentable, IHasBuilder, IReportable, IMassProp ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [OpenDesignerBase](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md) ← [GearSetBase](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md) ← [GearSetRackAndPinion](VM.Managed.DAFUL.GearTrain.GearSetRackAndPinion.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -60,7 +61,8 @@ IReferencable, [IHasGeometryInfo](VM.Managed.DAFUL.GearTrain.IHasGeometryInfo.md), ITransparentable, IHasBuilder, -IReportable +IReportable, +IMassProp #### Inherited Members @@ -89,6 +91,7 @@ IReportable [GearSetBase.OnDeserialization\(object\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_OnDeserialization\_System\_Object\_), [GearSetBase.MakeReferenceImpl\(LinkedList\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_MakeReferenceImpl\_System\_Collections\_Generic\_LinkedList\_VM\_Managed\_Reference\_\_), [GearSetBase.GeometryInfoBasesImpl\(\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_GeometryInfoBasesImpl), +[GearSetBase.GetMassPropImpl\(ref double, VectorBase, OMatrix, double\[\], bool\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_GetMassPropImpl\_System\_Double\_\_VM\_Managed\_VectorBase\_VM\_Managed\_OMatrix\_System\_Double\_\_\_System\_Boolean\_), [GearSetBase.Extension](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_Extension), [GearSetBase.TargetBody](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_TargetBody), [GearSetBase.TypeOfParent](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_TypeOfParent), @@ -117,34 +120,34 @@ IReportable [OpenDesignerBase.HasLayerExplicitly](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_HasLayerExplicitly), [OpenDesignerBase.Referencable](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Referencable), [OpenDesignerBase.Visible](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Visible), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -243,7 +246,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -282,7 +285,7 @@ public GearSetRackAndPinion(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -298,7 +301,7 @@ public override bool AddToShaft { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Extension @@ -310,7 +313,7 @@ protected override string Extension { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeFileName @@ -322,7 +325,7 @@ public override string TypeFileName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -336,11 +339,11 @@ protected override void CreateGearGeometry(string strGearType, int nNGear, GearS #### Parameters -`strGearType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGearType` string THe gear type -`nNGear` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNGear` int The No. of gear @@ -358,13 +361,13 @@ public static double[] GetResultAfterCalculateBeamStiffness(string[] calculatedR #### Parameters -`calculatedResults` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`calculatedResults` string\[\] The calculated results #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### Meshing\(List\) @@ -376,13 +379,13 @@ public override bool Meshing(List lstGB) #### Parameters -`lstGB` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> +`lstGB` List<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> The gear builder list. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OnPostBuildSpecial\(PropertyGearSetBase, Document, string\[\]\) @@ -402,7 +405,7 @@ The gearset property The document -`InputArray` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`InputArray` string\[\] The input array @@ -424,7 +427,7 @@ The gearset property The document -`InputArray` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`InputArray` string\[\] The input array diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetWormAndWormWheel.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetWormAndWormWheel.md index af07f58d82..ad5312ce1f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetWormAndWormWheel.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearSetWormAndWormWheel.md @@ -1,4 +1,5 @@ -# Class GearSetWormAndWormWheel +# Class GearSetWormAndWormWheel + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -6,19 +7,19 @@ Assembly: VMDGearTrain.dll Gear set for Worm and WormWheel ```csharp -public class GearSetWormAndWormWheel : GearSetBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IOpenDesignerForGearTrain, IOpenDesigner, IReferencable, IGearSet, IHasGeometryInfo, ITransparentable, IHasBuilder, IReportable +public class GearSetWormAndWormWheel : GearSetBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IOpenDesignerForGearTrain, IOpenDesigner, IReferencable, IGearSet, IHasGeometryInfo, ITransparentable, IHasBuilder, IReportable, IMassProp ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [OpenDesignerBase](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md) ← [GearSetBase](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md) ← [GearSetWormAndWormWheel](VM.Managed.DAFUL.GearTrain.GearSetWormAndWormWheel.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -60,7 +61,8 @@ IReferencable, [IHasGeometryInfo](VM.Managed.DAFUL.GearTrain.IHasGeometryInfo.md), ITransparentable, IHasBuilder, -IReportable +IReportable, +IMassProp #### Inherited Members @@ -89,6 +91,7 @@ IReportable [GearSetBase.OnDeserialization\(object\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_OnDeserialization\_System\_Object\_), [GearSetBase.MakeReferenceImpl\(LinkedList\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_MakeReferenceImpl\_System\_Collections\_Generic\_LinkedList\_VM\_Managed\_Reference\_\_), [GearSetBase.GeometryInfoBasesImpl\(\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_GeometryInfoBasesImpl), +[GearSetBase.GetMassPropImpl\(ref double, VectorBase, OMatrix, double\[\], bool\)](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_GetMassPropImpl\_System\_Double\_\_VM\_Managed\_VectorBase\_VM\_Managed\_OMatrix\_System\_Double\_\_\_System\_Boolean\_), [GearSetBase.Extension](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_Extension), [GearSetBase.TargetBody](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_TargetBody), [GearSetBase.TypeOfParent](VM.Managed.DAFUL.GearTrain.GearSetBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_GearSetBase\_1\_TypeOfParent), @@ -117,34 +120,34 @@ IReportable [OpenDesignerBase.HasLayerExplicitly](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_HasLayerExplicitly), [OpenDesignerBase.Referencable](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Referencable), [OpenDesignerBase.Visible](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Visible), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -243,7 +246,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -282,7 +285,7 @@ public GearSetWormAndWormWheel(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -298,7 +301,7 @@ protected override string Extension { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeFileName @@ -310,7 +313,7 @@ public override string TypeFileName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -324,11 +327,11 @@ protected override void CreateGearGeometry(string strGearType, int nNGear, GearS #### Parameters -`strGearType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGearType` string THe gear type -`nNGear` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNGear` int The No. of gear @@ -373,13 +376,13 @@ the point on the line 1 is closet to line 2 the point on the line 2 is closet to line 1 -`mua` [double](https://learn.microsoft.com/dotnet/api/system.double) +`mua` double -`mub` [double](https://learn.microsoft.com/dotnet/api/system.double) +`mub` double #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Meshing\(List\) @@ -391,13 +394,13 @@ public override bool Meshing(List lstGB) #### Parameters -`lstGB` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> +`lstGB` List<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> The gear builder list. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OnPreBuildSpecial\(PropertyGearSetBase, Document, string\[\]\) @@ -417,7 +420,7 @@ The gearset property The document -`InputArray` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`InputArray` string\[\] The input array diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeBase.BuilderInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeBase.BuilderInfo.md index 05ee071094..5318a1906b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeBase.BuilderInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeBase.BuilderInfo.md @@ -1,4 +1,5 @@ -# Class GearShapeBase.BuilderInfo +# Class GearShapeBase.BuilderInfo + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,7 +12,7 @@ public class GearShapeBase.BuilderInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [GearShapeBase.BuilderInfo](VM.Managed.DAFUL.GearTrain.GearShapeBase.BuilderInfo.md) #### Extension Methods @@ -54,7 +55,7 @@ public bool IsDesigner { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsInternal @@ -66,7 +67,7 @@ public bool IsInternal { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MateAngle @@ -78,7 +79,7 @@ public double MateAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Offset @@ -90,7 +91,7 @@ public double Offset { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Orientation @@ -126,5 +127,5 @@ public double Transparency { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeBase.InvolutePoint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeBase.InvolutePoint.md index 60ffdc3856..c4c25d35a3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeBase.InvolutePoint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeBase.InvolutePoint.md @@ -1,4 +1,5 @@ -# Class GearShapeBase.InvolutePoint +# Class GearShapeBase.InvolutePoint + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,7 +12,7 @@ public class GearShapeBase.InvolutePoint #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [GearShapeBase.InvolutePoint](VM.Managed.DAFUL.GearTrain.GearShapeBase.InvolutePoint.md) #### Extension Methods @@ -42,7 +43,7 @@ public List Left { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### Right @@ -54,5 +55,5 @@ public List Right { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeBase.Spec.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeBase.Spec.md index 77e817a57e..5978c41091 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeBase.Spec.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeBase.Spec.md @@ -1,4 +1,5 @@ -# Class GearShapeBase.Spec +# Class GearShapeBase.Spec + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,7 +12,7 @@ public class GearShapeBase.Spec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [GearShapeBase.Spec](VM.Managed.DAFUL.GearTrain.GearShapeBase.Spec.md) #### Extension Methods @@ -40,7 +41,7 @@ public double[] AccumulateCenter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### ActiveRootDiameter @@ -52,7 +53,7 @@ public double ActiveRootDiameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ActiveTipDiameter @@ -64,7 +65,7 @@ public double ActiveTipDiameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### BCD @@ -76,7 +77,7 @@ public double BCD { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### BCR @@ -88,7 +89,7 @@ public double BCR { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### BackLash @@ -100,7 +101,7 @@ public double BackLash { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Center @@ -112,7 +113,7 @@ public double[] Center { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### DatFile @@ -124,7 +125,7 @@ public string DatFile { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### DensityForKissSoft @@ -134,7 +135,7 @@ public double DensityForKissSoft { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DiameterNA @@ -146,7 +147,7 @@ public double DiameterNA { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DiameterNF @@ -158,7 +159,7 @@ public double DiameterNF { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Drack @@ -170,7 +171,7 @@ public double Drack { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### EndPosY @@ -182,7 +183,7 @@ public double EndPosY { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### FaceWidth @@ -194,7 +195,7 @@ public double FaceWidth { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### HelixAngle @@ -206,7 +207,7 @@ public double HelixAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### HelixDirection @@ -218,7 +219,7 @@ public double HelixDirection { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Hrack @@ -230,7 +231,7 @@ public double Hrack { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ModuleT @@ -242,7 +243,7 @@ public double ModuleT { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NumberOfInvolutePoint @@ -254,7 +255,7 @@ public uint NumberOfInvolutePoint { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### NumberOfTeeth @@ -266,7 +267,7 @@ public uint NumberOfTeeth { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### NumberOfTrochoid @@ -278,7 +279,7 @@ public int NumberOfTrochoid { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Orientation @@ -302,7 +303,7 @@ public double PCD { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### PCR @@ -314,7 +315,7 @@ public double PCR { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ProfileShift @@ -326,7 +327,7 @@ public double ProfileShift { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RCD @@ -338,7 +339,7 @@ public double RCD { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RCR @@ -350,7 +351,7 @@ public double RCR { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RadiusNF @@ -362,7 +363,7 @@ public double RadiusNF { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RotationAngle @@ -374,7 +375,7 @@ public double RotationAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SliceSize @@ -386,7 +387,7 @@ public double SliceSize { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TCD @@ -398,7 +399,7 @@ public double TCD { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TCR @@ -410,7 +411,7 @@ public double TCR { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ToothHeight @@ -422,7 +423,7 @@ public double ToothHeight { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### WholeDepth @@ -434,5 +435,5 @@ public double WholeDepth { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeBase.Summary.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeBase.Summary.md index 3235756814..8d7c1bd5ab 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeBase.Summary.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeBase.Summary.md @@ -1,4 +1,5 @@ -# Class GearShapeBase.Summary +# Class GearShapeBase.Summary + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,7 +12,7 @@ public class GearShapeBase.Summary #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [GearShapeBase.Summary](VM.Managed.DAFUL.GearTrain.GearShapeBase.Summary.md) #### Extension Methods @@ -40,7 +41,7 @@ public double APoint { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### AddendmumCoefficient @@ -52,7 +53,7 @@ public double AddendmumCoefficient { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### BPoint @@ -64,7 +65,7 @@ public double BPoint { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### BackLash @@ -76,7 +77,7 @@ public double BackLash { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### BaseCircleDiameter @@ -88,7 +89,7 @@ public double BaseCircleDiameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DedendmumCoefficient @@ -100,7 +101,7 @@ public double DedendmumCoefficient { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### FaceWidth @@ -112,7 +113,7 @@ public double FaceWidth { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### HandOfHelix @@ -124,7 +125,7 @@ public double HandOfHelix { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### HelixAngle @@ -136,7 +137,7 @@ public double HelixAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NormalModule @@ -148,7 +149,7 @@ public double NormalModule { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NormalPressureAngle @@ -160,7 +161,7 @@ public double NormalPressureAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NormalProfileShiftCoefficient @@ -172,7 +173,7 @@ public double NormalProfileShiftCoefficient { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NumberOfTeeth @@ -184,7 +185,7 @@ public uint NumberOfTeeth { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### PitchCircleDiameter @@ -196,7 +197,7 @@ public double PitchCircleDiameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RootCircleDiameter @@ -208,7 +209,7 @@ public double RootCircleDiameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TipCircleDiameter @@ -220,7 +221,7 @@ public double TipCircleDiameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TransverseModule @@ -232,7 +233,7 @@ public double TransverseModule { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TransversePressureAngle @@ -244,7 +245,7 @@ public double TransversePressureAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TransverseProfileShiftCoefficient @@ -256,7 +257,7 @@ public double TransverseProfileShiftCoefficient { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### WorkingPitchCircleDiamter @@ -268,7 +269,7 @@ public double WorkingPitchCircleDiamter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### WorkingPitchCircleDiamterIdeal @@ -280,7 +281,7 @@ public double WorkingPitchCircleDiamterIdeal { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ZPoint @@ -292,5 +293,5 @@ public double ZPoint { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeBase.Tolerance.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeBase.Tolerance.md index 57b1da0dd7..52acdae12c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeBase.Tolerance.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeBase.Tolerance.md @@ -1,4 +1,5 @@ -# Class GearShapeBase.Tolerance +# Class GearShapeBase.Tolerance + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,7 +12,7 @@ public class GearShapeBase.Tolerance #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [GearShapeBase.Tolerance](VM.Managed.DAFUL.GearTrain.GearShapeBase.Tolerance.md) #### Extension Methods @@ -42,7 +43,7 @@ public double LeftPitchError { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RightPitchError @@ -54,7 +55,7 @@ public double RightPitchError { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RunoutError @@ -66,5 +67,5 @@ public double RunoutError { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeBase.md index df89058157..e1df0af69b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeBase.md @@ -1,4 +1,5 @@ -# Class GearShapeBase +# Class GearShapeBase + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public abstract class GearShapeBase : LinkContainer, IObservableObject, IDisposa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [GearShapeBase](VM.Managed.DAFUL.GearTrain.GearShapeBase.md) @@ -84,7 +85,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -125,7 +126,7 @@ public virtual bool AddToProperty { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### AddToShaft @@ -137,7 +138,7 @@ public virtual bool AddToShaft { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ExtraRotateAngle @@ -149,7 +150,7 @@ public virtual double ExtraRotateAngle { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GearDepth @@ -161,7 +162,7 @@ public double GearDepth { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GraphicInvolutePointList @@ -173,7 +174,7 @@ public List GraphicInvolutePointList { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[GearShapeBase](VM.Managed.DAFUL.GearTrain.GearShapeBase.md).[InvolutePoint](VM.Managed.DAFUL.GearTrain.GearShapeBase.InvolutePoint.md)\> + List<[GearShapeBase](VM.Managed.DAFUL.GearTrain.GearShapeBase.md).[InvolutePoint](VM.Managed.DAFUL.GearTrain.GearShapeBase.InvolutePoint.md)\> ### InvolutePointList @@ -185,7 +186,7 @@ public List InvolutePointList { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[GearShapeBase](VM.Managed.DAFUL.GearTrain.GearShapeBase.md).[InvolutePoint](VM.Managed.DAFUL.GearTrain.GearShapeBase.InvolutePoint.md)\> + List<[GearShapeBase](VM.Managed.DAFUL.GearTrain.GearShapeBase.md).[InvolutePoint](VM.Managed.DAFUL.GearTrain.GearShapeBase.InvolutePoint.md)\> ### IsHideBCD @@ -197,7 +198,7 @@ public bool IsHideBCD { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsHidePCD @@ -209,7 +210,7 @@ public bool IsHidePCD { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsHideRCD @@ -221,7 +222,7 @@ public bool IsHideRCD { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsHideTCD @@ -233,7 +234,7 @@ public bool IsHideTCD { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MBCDList @@ -245,7 +246,7 @@ public List MBCDList { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### ModificationGraphSplineValues @@ -257,11 +258,11 @@ public SplineValue[] ModificationGraphSplineValues { get; set; } #### Property Value - SplineValue\[\] + [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs)\[\] #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception SplineValue list is null. or @@ -279,7 +280,7 @@ public List NodesetPointList { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### ResultSpecification @@ -315,7 +316,7 @@ public List ToleranceList { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[GearShapeBase](VM.Managed.DAFUL.GearTrain.GearShapeBase.md).[Tolerance](VM.Managed.DAFUL.GearTrain.GearShapeBase.Tolerance.md)\> + List<[GearShapeBase](VM.Managed.DAFUL.GearTrain.GearShapeBase.md).[Tolerance](VM.Managed.DAFUL.GearTrain.GearShapeBase.Tolerance.md)\> ## Methods @@ -327,13 +328,13 @@ protected void FillSpline(IEnumerable source, List target, doubl #### Parameters -`source` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`source` IEnumerable -`target` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`target` List -`factorLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`factorLength` double -`offset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`offset` double ### GetFactorForLength\(\) @@ -345,7 +346,7 @@ protected double GetFactorForLength() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetInvolutePointFor2D\(\) @@ -369,11 +370,11 @@ public virtual void GetLengthAndHeight(ref double dLength, ref double dHeight) #### Parameters -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double Length of the d. -`dHeight` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHeight` double Height of the d. @@ -399,7 +400,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -413,11 +414,11 @@ public virtual void SetInvolutePoints(List lstPoint, bool bGraphic = #### Parameters -`lstPoint` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode)\[\]\> +`lstPoint` List The LST point. -`bGraphic` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bGraphic` bool The Graphic flag. @@ -439,11 +440,11 @@ The left point. The right point. -`nTooth` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nTooth` uint The No. tooth. -`nSlice` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nSlice` uint The No. slice. @@ -457,7 +458,7 @@ public virtual void SetNodesetPoints(List lstPoint) #### Parameters -`lstPoint` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode)\> +`lstPoint` List The LST point. @@ -471,7 +472,7 @@ public virtual void SetResultSpec(XmlNode node) #### Parameters -`node` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`node` XmlNode The node. @@ -489,27 +490,27 @@ public void SetResultSpec(KissSoftInterface.GearData gearData, uint nNumInvolute The gear data. -`nNumInvolute` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNumInvolute` uint The No. Involute. -`nNumTrochoid` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNumTrochoid` uint The No. Trochoid. -`nNumSlice` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNumSlice` uint The No. Slice. -`dHelixAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHelixAngle` double The helix angle. -`dCenterDistance` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dCenterDistance` double The center distance. -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double The density. @@ -523,7 +524,7 @@ public void SetResultSummary(XmlNode node) #### Parameters -`node` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`node` XmlNode The node. @@ -541,15 +542,15 @@ public void SetResultSummary(KissSoftInterface.GearData gearData, double dNormal The gear data. -`dNormalModule` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dNormalModule` double The normal module. -`dNormalPressureAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dNormalPressureAngle` double The normal pressure angle. -`dHelixAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHelixAngle` double The helix angle. @@ -563,7 +564,7 @@ public virtual void Show2D(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. @@ -577,7 +578,7 @@ protected void Show2DCore(Canvas canvas, OMatrix oMatrix) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeCrossHelical.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeCrossHelical.md index 4063441dc7..477b400dc7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeCrossHelical.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeCrossHelical.md @@ -1,4 +1,5 @@ -# Class GearShapeCrossHelical +# Class GearShapeCrossHelical + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class GearShapeCrossHelical : GearShapeBase, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [GearShapeBase](VM.Managed.DAFUL.GearTrain.GearShapeBase.md) ← [GearShapeCrossHelical](VM.Managed.DAFUL.GearTrain.GearShapeCrossHelical.md) @@ -107,7 +108,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -148,7 +149,7 @@ public double CrossAxisAngle { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ExtraRotateAngle @@ -160,7 +161,7 @@ public override double ExtraRotateAngle { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -174,7 +175,7 @@ public override void Show2D(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.Point2D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.Point2D.md index 2eb7a643cf..b158bc33f0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.Point2D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.Point2D.md @@ -1,4 +1,5 @@ -# Struct GearShapeCustomBase.Point2D +# Struct GearShapeCustomBase.Point2D + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -21,7 +22,7 @@ public double X { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y @@ -33,5 +34,5 @@ public double Y { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.Profile.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.Profile.md index 0ef7c1c096..e3c186f0e4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.Profile.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.Profile.md @@ -1,4 +1,5 @@ -# Class GearShapeCustomBase.Profile +# Class GearShapeCustomBase.Profile + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,7 +12,7 @@ public class GearShapeCustomBase.Profile #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [GearShapeCustomBase.Profile](VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.Profile.md) #### Extension Methods @@ -42,7 +43,7 @@ public double Distance { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### PointCount @@ -54,7 +55,7 @@ public int PointCount { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### PointList @@ -66,7 +67,7 @@ public List PointList { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[GearShapeCustomBase](VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.md).[Point2D](VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.Point2D.md)\> + List<[GearShapeCustomBase](VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.md).[Point2D](VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.Point2D.md)\> ## Methods @@ -86,7 +87,7 @@ public bool Equals(GearShapeCustomBase.Profile other) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool

    true if two objects are equal. Otherwise false.

    @@ -104,13 +105,13 @@ public static List GetToothProfile(GearShapeCustomB The target profile. -`nTooth` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nTooth` uint The number of tooth. #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[GearShapeCustomBase](VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.md).[Point2D](VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.Point2D.md)\> + List<[GearShapeCustomBase](VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.md).[Point2D](VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.Point2D.md)\> The profile of a gear tooth. @@ -132,13 +133,13 @@ The center point. The target profile. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The angle of maximum distance point. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double The maximum distance. @@ -162,7 +163,7 @@ The target profile. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double The minimum distance. @@ -184,13 +185,13 @@ The center point. The target profile. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The angle of maximum distance point. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double The minimum distance. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.md index 441cb509ab..61c4b443e7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.md @@ -1,4 +1,5 @@ -# Class GearShapeCustomBase +# Class GearShapeCustomBase + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public abstract class GearShapeCustomBase : GearShapeBase, IObservableObject, ID #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [GearShapeBase](VM.Managed.DAFUL.GearTrain.GearShapeBase.md) ← [GearShapeCustomBase](VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.md) @@ -113,7 +114,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -166,7 +167,7 @@ public List ExtraProfileList { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[GearShapeCustomBase](VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.md).[Profile](VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.Profile.md)\> + List<[GearShapeCustomBase](VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.md).[Profile](VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.Profile.md)\> ### ProfileCount @@ -178,7 +179,7 @@ public int ProfileCount { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### SliceCount @@ -190,7 +191,7 @@ public ExpressionValueVariable SliceCount { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### UseExtraProfile @@ -202,7 +203,7 @@ public bool UseExtraProfile { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -228,13 +229,13 @@ public static List ImportProfileFromFile(string str #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string The file name #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[GearShapeCustomBase](VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.md).[Point2D](VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.Point2D.md)\> + List<[GearShapeCustomBase](VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.md).[Point2D](VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.Point2D.md)\> ### IsNumeric\(string\[\]\) @@ -246,13 +247,13 @@ public static bool IsNumeric(string[] numStr) #### Parameters -`numStr` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`numStr` string\[\] The string array #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsNumeric\(string\) @@ -264,13 +265,13 @@ public static bool IsNumeric(string numStr) #### Parameters -`numStr` [string](https://learn.microsoft.com/dotnet/api/system.string) +`numStr` string The string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LoadProfileData\(string, string\) @@ -282,17 +283,17 @@ public static List LoadProfileData(string loadStr, string extStr) #### Parameters -`loadStr` [string](https://learn.microsoft.com/dotnet/api/system.string) +`loadStr` string The file path -`extStr` [string](https://learn.microsoft.com/dotnet/api/system.string) +`extStr` string The extension #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\[\]\> + List ### SetBaseProfile\(Profile\) @@ -318,7 +319,7 @@ public void SetExtraProfileList(List profiles) #### Parameters -`profiles` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[GearShapeCustomBase](VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.md).[Profile](VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.Profile.md)\> +`profiles` List<[GearShapeCustomBase](VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.md).[Profile](VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.Profile.md)\> The profiles. @@ -332,7 +333,7 @@ public void SetUseExtraProfile(bool bUseExtaProfile) #### Parameters -`bUseExtaProfile` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseExtaProfile` bool The flag of use extra profile. @@ -346,7 +347,7 @@ public override void Show2D(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeCustomHelical.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeCustomHelical.md index 4245c650b2..de82a35c63 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeCustomHelical.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeCustomHelical.md @@ -1,4 +1,5 @@ -# Class GearShapeCustomHelical +# Class GearShapeCustomHelical + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class GearShapeCustomHelical : GearShapeCustomBase, IObservableObject, ID #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [GearShapeBase](VM.Managed.DAFUL.GearTrain.GearShapeBase.md) ← [GearShapeCustomBase](VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.md) ← @@ -123,7 +124,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeCustomSpur.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeCustomSpur.md index 9da1d2b911..c5f8523dc5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeCustomSpur.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeCustomSpur.md @@ -1,4 +1,5 @@ -# Class GearShapeCustomSpur +# Class GearShapeCustomSpur + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class GearShapeCustomSpur : GearShapeCustomBase, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [GearShapeBase](VM.Managed.DAFUL.GearTrain.GearShapeBase.md) ← [GearShapeCustomBase](VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.md) ← @@ -123,7 +124,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeCycloidPin.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeCycloidPin.md index 0a33ead98d..fad8acb4e7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeCycloidPin.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeCycloidPin.md @@ -1,4 +1,5 @@ -# Class GearShapeCycloidPin +# Class GearShapeCycloidPin + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class GearShapeCycloidPin : GearShapeCustomBase, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [GearShapeBase](VM.Managed.DAFUL.GearTrain.GearShapeBase.md) ← [GearShapeCustomBase](VM.Managed.DAFUL.GearTrain.GearShapeCustomBase.md) ← @@ -123,7 +124,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -164,7 +165,7 @@ public ExpressionValueVariable ToleranceValue { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeHelical.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeHelical.md index e910434b07..1d54467852 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeHelical.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeHelical.md @@ -1,4 +1,5 @@ -# Class GearShapeHelical +# Class GearShapeHelical + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class GearShapeHelical : GearShapeBase, IObservableObject, IDisposableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [GearShapeBase](VM.Managed.DAFUL.GearTrain.GearShapeBase.md) ← [GearShapeHelical](VM.Managed.DAFUL.GearTrain.GearShapeHelical.md) @@ -111,7 +112,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapePin.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapePin.md index 641839b88f..5ee17e7f49 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapePin.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapePin.md @@ -1,4 +1,5 @@ -# Class GearShapePin +# Class GearShapePin + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class GearShapePin : GearShapeBase, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [GearShapeBase](VM.Managed.DAFUL.GearTrain.GearShapeBase.md) ← [GearShapePin](VM.Managed.DAFUL.GearTrain.GearShapePin.md) @@ -107,7 +108,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -148,7 +149,7 @@ public override bool AddToProperty { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### AddToShaft @@ -160,7 +161,7 @@ public override bool AddToShaft { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ToleranceValue @@ -172,7 +173,7 @@ public ExpressionValueVariable ToleranceValue { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -186,7 +187,7 @@ public override void Show2D(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeRackBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeRackBase.md index 8006ca3681..3cb0d7fc0e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeRackBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeRackBase.md @@ -1,4 +1,5 @@ -# Class GearShapeRackBase +# Class GearShapeRackBase + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public abstract class GearShapeRackBase : GearShapeBase, IObservableObject, IDis #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [GearShapeBase](VM.Managed.DAFUL.GearTrain.GearShapeBase.md) ← [GearShapeRackBase](VM.Managed.DAFUL.GearTrain.GearShapeRackBase.md) @@ -112,7 +113,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -153,7 +154,7 @@ public override bool AddToProperty { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LeftRack @@ -177,7 +178,7 @@ public SolidBody LeftSectionBody { get; set; } #### Property Value - SolidBody + [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ### RightRack @@ -201,7 +202,7 @@ public SolidBody RightSectionBody { get; set; } #### Property Value - SolidBody + [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ### SegmentIndex @@ -213,7 +214,7 @@ public int SegmentIndex { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -227,7 +228,7 @@ public double GetRackLength() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### OnDeserialization\(object\) @@ -239,7 +240,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -253,7 +254,7 @@ public override void Show2D(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeRackHelical.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeRackHelical.md index 5637fb14f6..cfaf5b8a04 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeRackHelical.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeRackHelical.md @@ -1,4 +1,5 @@ -# Class GearShapeRackHelical +# Class GearShapeRackHelical + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class GearShapeRackHelical : GearShapeRackBase, IObservableObject, IDispo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [GearShapeBase](VM.Managed.DAFUL.GearTrain.GearShapeBase.md) ← [GearShapeRackBase](VM.Managed.DAFUL.GearTrain.GearShapeRackBase.md) ← @@ -117,7 +118,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeRackSpur.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeRackSpur.md index 1bb1a3f898..98d1bcc550 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeRackSpur.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeRackSpur.md @@ -1,4 +1,5 @@ -# Class GearShapeRackSpur +# Class GearShapeRackSpur + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class GearShapeRackSpur : GearShapeRackBase, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [GearShapeBase](VM.Managed.DAFUL.GearTrain.GearShapeBase.md) ← [GearShapeRackBase](VM.Managed.DAFUL.GearTrain.GearShapeRackBase.md) ← @@ -117,7 +118,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeSpur.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeSpur.md index b5917f7051..26fddc0ff0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeSpur.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeSpur.md @@ -1,4 +1,5 @@ -# Class GearShapeSpur +# Class GearShapeSpur + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class GearShapeSpur : GearShapeBase, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [GearShapeBase](VM.Managed.DAFUL.GearTrain.GearShapeBase.md) ← [GearShapeSpur](VM.Managed.DAFUL.GearTrain.GearShapeSpur.md) @@ -107,7 +108,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeWorm.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeWorm.md index 5488c7b38b..94a1643808 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeWorm.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearShapeWorm.md @@ -1,4 +1,5 @@ -# Class GearShapeWorm +# Class GearShapeWorm + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class GearShapeWorm : GearShapeHelical, IObservableObject, IDisposableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [GearShapeBase](VM.Managed.DAFUL.GearTrain.GearShapeBase.md) ← [GearShapeHelical](VM.Managed.DAFUL.GearTrain.GearShapeHelical.md) ← @@ -108,7 +109,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -149,7 +150,7 @@ public override void Show2D(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearTrainDocument.ParentInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearTrainDocument.ParentInfo.md index ccc17db441..2eead8840f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearTrainDocument.ParentInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearTrainDocument.ParentInfo.md @@ -1,4 +1,5 @@ -# Class GearTrainDocument.ParentInfo +# Class GearTrainDocument.ParentInfo + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,7 +12,7 @@ public class GearTrainDocument.ParentInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [GearTrainDocument.ParentInfo](VM.Managed.DAFUL.GearTrain.GearTrainDocument.ParentInfo.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearTrainDocument.ParentInfoNew.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearTrainDocument.ParentInfoNew.md index 4a316bed1e..2eb70034ac 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearTrainDocument.ParentInfoNew.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearTrainDocument.ParentInfoNew.md @@ -1,4 +1,5 @@ -# Class GearTrainDocument.ParentInfoNew +# Class GearTrainDocument.ParentInfoNew + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class GearTrainDocument.ParentInfoNew : Object, IObserva #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [GearTrainDocument.ParentInfoNew](VM.Managed.DAFUL.GearTrain.GearTrainDocument.ParentInfoNew.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer #### Inherited Members @@ -129,7 +130,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearTrainDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearTrainDocument.md index bf1605600a..5a6d2d6166 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearTrainDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GearTrainDocument.md @@ -1,4 +1,5 @@ -# Class GearTrainDocument +# Class GearTrainDocument + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,16 +12,16 @@ public class GearTrainDocument : SubSystemDocument, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← [GearTrainDocument](VM.Managed.DAFUL.GearTrain.GearTrainDocument.md) #### Implements @@ -32,7 +33,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, IInterfaceSupport, @@ -53,100 +54,100 @@ IDocumentOwner #### Inherited Members -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -241,8 +242,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -253,9 +252,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -269,12 +268,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -552,7 +548,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -583,7 +579,7 @@ public GearTrainDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -659,7 +655,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### NodalBodyList @@ -683,7 +679,7 @@ public override string SimulationScenarioTypeName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SkipUI @@ -695,7 +691,7 @@ public static bool SkipUI { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseToolkitSubsystem @@ -707,7 +703,7 @@ public override bool UseToolkitSubsystem { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### VehicleSimulationDataSet @@ -719,7 +715,7 @@ public string VehicleSimulationDataSet { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### VehicleSimulatorProcessId @@ -731,7 +727,7 @@ public int VehicleSimulatorProcessId { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### VisibleTarget @@ -767,7 +763,7 @@ The open DES. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### AddParentToDictionary\(GeometryInfoBase, IOpenDesignerForGearTrain, GeometryInfoBase\) @@ -793,7 +789,7 @@ The bearing information. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ClearDocument\(\) @@ -813,7 +809,7 @@ public override bool DeleteWithSelectionObjects() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Find\(string\) @@ -825,7 +821,7 @@ public override IObjectBase Find(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -863,13 +859,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The fullname of type. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The category. @@ -883,7 +879,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -923,7 +919,7 @@ public List GetAllGear(string strExistShaftsetName, GearGeometryIn #### Parameters -`strExistShaftsetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strExistShaftsetName` string Name of the string exist shaftset. @@ -933,7 +929,7 @@ The added gear information. #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> + List<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> ### GetAssemblyInfoForOutputUsub\(ref IConnectable\) @@ -959,7 +955,7 @@ protected override void GetBodies(ref List lstBody) #### Parameters -`lstBody` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstBody` List The body container. @@ -973,13 +969,13 @@ public override void GetData(XmlNode writer) #### Parameters -`writer` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`writer` XmlNode The writer. #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception ### GetExtraInfoInDictionary\(GeometryInfoBase\) @@ -1009,7 +1005,7 @@ public List GetGearsWithSameAxis(string strExistShaftsetName, Vect #### Parameters -`strExistShaftsetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strExistShaftsetName` string Name of the string exist shaftset. @@ -1027,7 +1023,7 @@ The added gear information. #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> + List<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> ### GetGeometryInfo\(IOpenDesignerForGearTrain, GeometryType\) @@ -1097,13 +1093,13 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The ob unnamed. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The unnamed object name. @@ -1117,7 +1113,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the string category. @@ -1145,7 +1141,7 @@ The information. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsPairForBearing\(GeometryInfoBase\) @@ -1163,7 +1159,7 @@ The information. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LinkRequestUpdate\(object, LinkEventArgs\) @@ -1175,7 +1171,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -1193,7 +1189,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -1207,7 +1203,7 @@ protected override void OnPostMakeDocumentImpl(DocCreateAnalysisInfo info) #### Parameters -`info` DocCreateAnalysisInfo +`info` [DocCreateAnalysisInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DocCreate3DInfo.cs) The [analysis document create information]. @@ -1221,21 +1217,21 @@ public override bool PossibleToImport(SubSystemDocument document, out string str #### Parameters -`document` SubSystemDocument +`document` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document to import. -`strDocBase` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDocBase` string The base document type name. -`strDocNew` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDocNew` string The new document type name. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PostCloseDocument\(\) @@ -1271,7 +1267,7 @@ protected override bool ReAssemblyCore() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -1301,13 +1297,13 @@ public bool RemoveParentFromDictionary(GeometryInfoBase geomInfo, HiddenDocument The geom information. -`docHidden` HiddenDocument +`docHidden` [HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) The document hidden. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RemoveParentFromDictionary\(IOpenDesignerForGearTrain\) @@ -1333,13 +1329,13 @@ public override void SetData(XmlNode reader) #### Parameters -`reader` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`reader` XmlNode The reader. #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception ### SkipAddToDSDLWithCategory\(string\) @@ -1351,13 +1347,13 @@ public override bool SkipAddToDSDLWithCategory(string strCategory) #### Parameters -`strCategory` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategory` string The category name. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SkipAddToDSDLWithEntity\(ObjectBase\) @@ -1375,5 +1371,5 @@ The entity. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GeneratingProfile.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GeneratingProfile.md index 70ed2493e1..2e01262768 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GeneratingProfile.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GeneratingProfile.md @@ -1,4 +1,5 @@ -# Class GeneratingProfile +# Class GeneratingProfile + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class GeneratingProfile : LinkContainer, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [GeneratingProfile](VM.Managed.DAFUL.GearTrain.GeneratingProfile.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -142,7 +143,7 @@ public void InitChild(int nNum, Unit.ConvertFactor factor) #### Parameters -`nNum` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNum` int The n number. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GeometryInfoBase.GeometryType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GeometryInfoBase.GeometryType.md index af7a955865..34a6fba44c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GeometryInfoBase.GeometryType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GeometryInfoBase.GeometryType.md @@ -1,4 +1,5 @@ -# Enum GeometryInfoBase.GeometryType +# Enum GeometryInfoBase.GeometryType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GeometryInfoBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GeometryInfoBase.md index 47333456cd..3f87971580 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GeometryInfoBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.GeometryInfoBase.md @@ -1,4 +1,5 @@ -# Class GeometryInfoBase +# Class GeometryInfoBase + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,12 +12,12 @@ public abstract class GeometryInfoBase : SubEntity, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [GeometryInfoBase](VM.Managed.DAFUL.GearTrain.GeometryInfoBase.md) #### Derived @@ -33,7 +34,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -52,17 +53,17 @@ INavigatorItem #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -155,7 +156,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -194,7 +195,7 @@ public GeometryInfoBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the sub entity. @@ -222,7 +223,7 @@ public abstract double GeometryDepth { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TypeOfGeometry diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HDBContact.InputType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HDBContact.InputType.md index fe8b96af88..6c88c7f900 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HDBContact.InputType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HDBContact.InputType.md @@ -1,4 +1,5 @@ -# Enum HDBContact.InputType +# Enum HDBContact.InputType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HDBContact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HDBContact.md index fb5daefb12..6849cb1778 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HDBContact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HDBContact.md @@ -1,4 +1,5 @@ -# Class HDBContact +# Class HDBContact + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,12 +12,12 @@ public class HDBContact : SubEntity, IObservableObject, IDisposableObject, ILink #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [HDBContact](VM.Managed.DAFUL.GearTrain.HDBContact.md) #### Implements @@ -26,7 +27,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -45,17 +46,17 @@ INavigatorItem #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -190,7 +191,7 @@ public double BoundaryPenetration { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DampCoef @@ -203,7 +204,7 @@ public double DampCoef { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DampingSpline @@ -216,7 +217,7 @@ public string DampingSpline { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### DampingType @@ -242,7 +243,7 @@ public double DynFriCoef { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DynThreshold @@ -255,7 +256,7 @@ public double DynThreshold { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### FrictionSpline @@ -268,7 +269,7 @@ public string FrictionSpline { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### FrictionType @@ -294,7 +295,7 @@ public double NumOfAxial { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NumOfCircular @@ -307,7 +308,7 @@ public double NumOfCircular { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StaFriCoef @@ -320,7 +321,7 @@ public double StaFriCoef { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SticVel @@ -333,7 +334,7 @@ public double SticVel { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StiffCoef @@ -346,7 +347,7 @@ public double StiffCoef { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StiffOrder @@ -359,7 +360,7 @@ public double StiffOrder { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StiffnessSpline @@ -372,7 +373,7 @@ public string StiffnessSpline { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### StiffnessType @@ -399,7 +400,7 @@ public void SetBoundaryPenetration(double dVal) #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The boundary penetration. @@ -413,7 +414,7 @@ public void SetDampCoef(double dVal) #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The damping coefficient. @@ -427,7 +428,7 @@ public void SetDampingSpline(string strPath) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The damping spline path. @@ -455,7 +456,7 @@ public void SetDynFriCoef(double dVal) #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The dynamic friction coefficient. @@ -469,7 +470,7 @@ public void SetDynThreshold(double dVal) #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The dynamic threshold. @@ -483,7 +484,7 @@ public void SetFrictionSpline(string strPath) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The friction spline path. @@ -511,7 +512,7 @@ public void SetNumOfAxial(double dVal) #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The number of axial. @@ -525,7 +526,7 @@ public void SetNumOfCircular(double dVal) #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The number of circular. @@ -539,7 +540,7 @@ public void SetStaFriCoef(double dVal) #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The static friction coefficient. @@ -553,7 +554,7 @@ public void SetSticVel(double dVal) #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The stiction velocity. @@ -567,7 +568,7 @@ public void SetStiffCoef(double dVal) #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The stiffness coefficient. @@ -581,7 +582,7 @@ public void SetStiffOrder(double dVal) #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The stiffness order. @@ -595,7 +596,7 @@ public void SetStiffnessSpline(string strPath) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The stiffness spline path. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HDBGeometryInfo.HDBearingType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HDBGeometryInfo.HDBearingType.md index f7c617e200..ef1240ed1a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HDBGeometryInfo.HDBearingType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HDBGeometryInfo.HDBearingType.md @@ -1,4 +1,5 @@ -# Enum HDBGeometryInfo.HDBearingType +# Enum HDBGeometryInfo.HDBearingType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HDBGeometryInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HDBGeometryInfo.md index 02bf07532d..74bbe41f3a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HDBGeometryInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HDBGeometryInfo.md @@ -1,4 +1,5 @@ -# Class HDBGeometryInfo +# Class HDBGeometryInfo + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,12 +12,12 @@ public class HDBGeometryInfo : GeometryInfoBase, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [GeometryInfoBase](VM.Managed.DAFUL.GearTrain.GeometryInfoBase.md) ← [HDBGeometryInfo](VM.Managed.DAFUL.GearTrain.HDBGeometryInfo.md) @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -50,17 +51,17 @@ INavigatorItem [GeometryInfoBase.GeometryDepth](VM.Managed.DAFUL.GearTrain.GeometryInfoBase.md\#VM\_Managed\_DAFUL\_GearTrain\_GeometryInfoBase\_GeometryDepth), [GeometryInfoBase.ClearanceInformation](VM.Managed.DAFUL.GearTrain.GeometryInfoBase.md\#VM\_Managed\_DAFUL\_GearTrain\_GeometryInfoBase\_ClearanceInformation), [GeometryInfoBase.TypeOfGeometry](VM.Managed.DAFUL.GearTrain.GeometryInfoBase.md\#VM\_Managed\_DAFUL\_GearTrain\_GeometryInfoBase\_TypeOfGeometry), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -153,7 +154,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -192,7 +193,7 @@ public HDBGeometryInfo(string strName, HDBGeometryInfo.HDBearingType type) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the sub entity. @@ -212,7 +213,7 @@ public override double GeometryDepth { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GeometryHeight @@ -224,7 +225,7 @@ public double GeometryHeight { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GeometryStartDepth @@ -236,7 +237,7 @@ public double GeometryStartDepth { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Segments @@ -248,7 +249,7 @@ public List Segments { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[HDBGeometrySegment](VM.Managed.DAFUL.GearTrain.HDBGeometrySegment.md)\> + List<[HDBGeometrySegment](VM.Managed.DAFUL.GearTrain.HDBGeometrySegment.md)\> ### Type diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HDBGeometrySegment.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HDBGeometrySegment.md index 4ffb9f55bd..2d3d711a7f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HDBGeometrySegment.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HDBGeometrySegment.md @@ -1,4 +1,5 @@ -# Class HDBGeometrySegment +# Class HDBGeometrySegment + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,7 +12,7 @@ public class HDBGeometrySegment #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [HDBGeometrySegment](VM.Managed.DAFUL.GearTrain.HDBGeometrySegment.md) #### Extension Methods @@ -36,15 +37,15 @@ public HDBGeometrySegment(enHDBGeometrySegmentType type, double value1, double v type -`value1` [double](https://learn.microsoft.com/dotnet/api/system.double) +`value1` double value1 -`value2` [double](https://learn.microsoft.com/dotnet/api/system.double) +`value2` double value2 -`value3` [double](https://learn.microsoft.com/dotnet/api/system.double) +`value3` double value3 @@ -72,7 +73,7 @@ public double Value1 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Value2 @@ -84,7 +85,7 @@ public double Value2 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Value3 @@ -96,5 +97,5 @@ public double Value3 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HDBearing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HDBearing.md index 71867786e9..661909b4d4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HDBearing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HDBearing.md @@ -1,4 +1,5 @@ -# Class HDBearing +# Class HDBearing + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -12,14 +13,14 @@ public class HDBearing : OpenDesignerBase, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [OpenDesignerBase](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md) ← [HDBearing](VM.Managed.DAFUL.GearTrain.HDBearing.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -86,34 +87,34 @@ IReportable [OpenDesignerBase.HasLayerExplicitly](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_HasLayerExplicitly), [OpenDesignerBase.Referencable](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Referencable), [OpenDesignerBase.Visible](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Visible), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -212,7 +213,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -251,7 +252,7 @@ public HDBearing(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -271,7 +272,7 @@ public GeometryBase[] BearingBodies { get; set; } #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Hydro Dynamic Bearing Body list is null. or @@ -289,7 +290,7 @@ protected override string Extension { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Layer @@ -325,7 +326,7 @@ public override string TypeFileName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeOfParent @@ -365,7 +366,7 @@ protected override void MakeReferenceImpl(LinkedList lstRef) #### Parameters -`lstRef` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) +`lstRef` LinkedList The container. @@ -379,7 +380,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -393,7 +394,7 @@ public override Document SetDataToDesignDoc(bool bRecord) #### Parameters -`bRecord` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bRecord` bool #### Returns diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenBearingDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenBearingDocument.md index 3d44826c9f..17298656f0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenBearingDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenBearingDocument.md @@ -1,4 +1,5 @@ -# Class HiddenBearingDocument +# Class HiddenBearingDocument + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,17 +12,17 @@ public class HiddenBearingDocument : HiddenBearingDocumentBase, IObservableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← -HiddenDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← +[HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) ← [HiddenDocumentForGearTrain](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md) ← [HiddenBearingDocumentBase](VM.Managed.DAFUL.GearTrain.HiddenBearingDocumentBase.md) ← [HiddenBearingDocument](VM.Managed.DAFUL.GearTrain.HiddenBearingDocument.md) @@ -35,7 +36,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -62,113 +63,113 @@ IHiddenDocument [HiddenDocumentForGearTrain.Find\(string\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_Find\_System\_String\_), [HiddenDocumentForGearTrain.CloseDocumentCore\(\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CloseDocumentCore), [HiddenDocumentForGearTrain.CheckActiveDocument\(Document3D, Document3D\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CheckActiveDocument\_VM\_Managed\_Document3D\_VM\_Managed\_Document3D\_), -HiddenDocument.m\_canvas, -HiddenDocument.ClearDocument\(\), -HiddenDocument.InitializeSimParam\(\), -HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -HiddenDocument.DrawCoordinate\(double\), -HiddenDocument.HideSubData\(string\), -HiddenDocument.DrawCoordinateCore\(VectorBase, double\), -HiddenDocument.CloseDocumentCore\(\), -HiddenDocument.SetData\(XmlNode\), -HiddenDocument.FindLocal\(string\), -HiddenDocument.TargetDesign, -HiddenDocument.TargetDocument, -HiddenDocument.RenderingMode, -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[HiddenDocument.m\_canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinate\(double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.HideSubData\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinateCore\(VectorBase, double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.CloseDocumentCore\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDesign](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.RenderingMode](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -263,8 +264,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -275,9 +274,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -291,12 +290,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -574,7 +570,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -605,7 +601,7 @@ public HiddenBearingDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -621,7 +617,7 @@ protected Canvas m_canvasBall #### Field Value - Canvas + [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) ## Properties @@ -647,7 +643,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### TargetDesign @@ -685,7 +681,7 @@ protected override Assembly CreateAssemblyImpl() #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ### CreateStiffness\(\) @@ -705,7 +701,7 @@ public void DrawBall(Color color) #### Parameters -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) +`color` Color the drawing color of ball. @@ -719,13 +715,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string Type of the string. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### HideSubData\(string\) @@ -737,13 +733,13 @@ public override bool HideSubData(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The sub data name. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### InitializeCategoryInfo\(string\) @@ -755,7 +751,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the string category. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenBearingDocumentBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenBearingDocumentBase.md index 049ea55608..848d87c358 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenBearingDocumentBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenBearingDocumentBase.md @@ -1,4 +1,5 @@ -# Class HiddenBearingDocumentBase +# Class HiddenBearingDocumentBase + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,17 +12,17 @@ public abstract class HiddenBearingDocumentBase : HiddenDocumentForGearTrain, IO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← -HiddenDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← +[HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) ← [HiddenDocumentForGearTrain](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md) ← [HiddenBearingDocumentBase](VM.Managed.DAFUL.GearTrain.HiddenBearingDocumentBase.md) @@ -39,7 +40,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -63,113 +64,113 @@ IHiddenDocument [HiddenDocumentForGearTrain.Find\(string\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_Find\_System\_String\_), [HiddenDocumentForGearTrain.CloseDocumentCore\(\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CloseDocumentCore), [HiddenDocumentForGearTrain.CheckActiveDocument\(Document3D, Document3D\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CheckActiveDocument\_VM\_Managed\_Document3D\_VM\_Managed\_Document3D\_), -HiddenDocument.m\_canvas, -HiddenDocument.ClearDocument\(\), -HiddenDocument.InitializeSimParam\(\), -HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -HiddenDocument.DrawCoordinate\(double\), -HiddenDocument.HideSubData\(string\), -HiddenDocument.DrawCoordinateCore\(VectorBase, double\), -HiddenDocument.CloseDocumentCore\(\), -HiddenDocument.SetData\(XmlNode\), -HiddenDocument.FindLocal\(string\), -HiddenDocument.TargetDesign, -HiddenDocument.TargetDocument, -HiddenDocument.RenderingMode, -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[HiddenDocument.m\_canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinate\(double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.HideSubData\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinateCore\(VectorBase, double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.CloseDocumentCore\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDesign](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.RenderingMode](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -264,8 +265,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -276,9 +275,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -292,12 +291,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -575,7 +571,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -606,7 +602,7 @@ public HiddenBearingDocumentBase(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -622,7 +618,7 @@ public override void DrawCoordinate(double dIconSize) #### Parameters -`dIconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dIconSize` double Size of the d icon. @@ -636,7 +632,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -654,7 +650,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenDocumentFEBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenDocumentFEBase.md index a4ea8934f1..33b597d6b8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenDocumentFEBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenDocumentFEBase.md @@ -1,4 +1,5 @@ -# Class HiddenDocumentFEBase +# Class HiddenDocumentFEBase + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,17 +12,17 @@ public abstract class HiddenDocumentFEBase : HiddenDocumentMeshBase, IObservable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← -HiddenDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← +[HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) ← [HiddenDocumentForGearTrain](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md) ← [HiddenDocumentMeshBase](VM.Managed.DAFUL.GearTrain.HiddenDocumentMeshBase.md) ← [HiddenDocumentFEBase](VM.Managed.DAFUL.GearTrain.HiddenDocumentFEBase.md) @@ -40,7 +41,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -78,113 +79,113 @@ IHiddenDocument, [HiddenDocumentForGearTrain.Find\(string\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_Find\_System\_String\_), [HiddenDocumentForGearTrain.CloseDocumentCore\(\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CloseDocumentCore), [HiddenDocumentForGearTrain.CheckActiveDocument\(Document3D, Document3D\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CheckActiveDocument\_VM\_Managed\_Document3D\_VM\_Managed\_Document3D\_), -HiddenDocument.m\_canvas, -HiddenDocument.ClearDocument\(\), -HiddenDocument.InitializeSimParam\(\), -HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -HiddenDocument.DrawCoordinate\(double\), -HiddenDocument.HideSubData\(string\), -HiddenDocument.DrawCoordinateCore\(VectorBase, double\), -HiddenDocument.CloseDocumentCore\(\), -HiddenDocument.SetData\(XmlNode\), -HiddenDocument.FindLocal\(string\), -HiddenDocument.TargetDesign, -HiddenDocument.TargetDocument, -HiddenDocument.RenderingMode, -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[HiddenDocument.m\_canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinate\(double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.HideSubData\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinateCore\(VectorBase, double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.CloseDocumentCore\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDesign](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.RenderingMode](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -279,8 +280,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -291,9 +290,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -307,12 +306,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -590,7 +586,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -621,7 +617,7 @@ public HiddenDocumentFEBase(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md index 7685f57369..41438eb8c5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md @@ -1,4 +1,5 @@ -# Class HiddenDocumentForGearTrain +# Class HiddenDocumentForGearTrain + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,17 +12,17 @@ public abstract class HiddenDocumentForGearTrain : HiddenDocument, IObservableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← -HiddenDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← +[HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) ← [HiddenDocumentForGearTrain](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md) #### Derived @@ -40,7 +41,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -61,113 +62,113 @@ IHiddenDocument #### Inherited Members -HiddenDocument.m\_canvas, -HiddenDocument.ClearDocument\(\), -HiddenDocument.InitializeSimParam\(\), -HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -HiddenDocument.DrawCoordinate\(double\), -HiddenDocument.HideSubData\(string\), -HiddenDocument.DrawCoordinateCore\(VectorBase, double\), -HiddenDocument.CloseDocumentCore\(\), -HiddenDocument.SetData\(XmlNode\), -HiddenDocument.FindLocal\(string\), -HiddenDocument.TargetDesign, -HiddenDocument.TargetDocument, -HiddenDocument.RenderingMode, -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[HiddenDocument.m\_canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinate\(double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.HideSubData\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinateCore\(VectorBase, double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.CloseDocumentCore\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDesign](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.RenderingMode](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -262,8 +263,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -274,9 +273,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -290,12 +289,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -573,7 +569,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -604,7 +600,7 @@ public HiddenDocumentForGearTrain(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -630,7 +626,7 @@ The active document #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CloseDocumentCore\(\) @@ -650,7 +646,7 @@ public override IObjectBase Find(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenDocumentMeshBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenDocumentMeshBase.md index 8588aa973b..e26b571d0f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenDocumentMeshBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenDocumentMeshBase.md @@ -1,4 +1,5 @@ -# Class HiddenDocumentMeshBase +# Class HiddenDocumentMeshBase + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,17 +12,17 @@ public abstract class HiddenDocumentMeshBase : HiddenDocumentForGearTrain, IObse #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← -HiddenDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← +[HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) ← [HiddenDocumentForGearTrain](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md) ← [HiddenDocumentMeshBase](VM.Managed.DAFUL.GearTrain.HiddenDocumentMeshBase.md) @@ -39,7 +40,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -64,113 +65,113 @@ IHiddenDocument, [HiddenDocumentForGearTrain.Find\(string\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_Find\_System\_String\_), [HiddenDocumentForGearTrain.CloseDocumentCore\(\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CloseDocumentCore), [HiddenDocumentForGearTrain.CheckActiveDocument\(Document3D, Document3D\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CheckActiveDocument\_VM\_Managed\_Document3D\_VM\_Managed\_Document3D\_), -HiddenDocument.m\_canvas, -HiddenDocument.ClearDocument\(\), -HiddenDocument.InitializeSimParam\(\), -HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -HiddenDocument.DrawCoordinate\(double\), -HiddenDocument.HideSubData\(string\), -HiddenDocument.DrawCoordinateCore\(VectorBase, double\), -HiddenDocument.CloseDocumentCore\(\), -HiddenDocument.SetData\(XmlNode\), -HiddenDocument.FindLocal\(string\), -HiddenDocument.TargetDesign, -HiddenDocument.TargetDocument, -HiddenDocument.RenderingMode, -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[HiddenDocument.m\_canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinate\(double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.HideSubData\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinateCore\(VectorBase, double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.CloseDocumentCore\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDesign](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.RenderingMode](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -265,8 +266,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -277,9 +276,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -293,12 +292,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -576,7 +572,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -607,7 +603,7 @@ public HiddenDocumentMeshBase(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -659,7 +655,7 @@ public bool VisibleDimension { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### \_MeshEntity @@ -697,7 +693,7 @@ protected override Assembly CreateAssemblyImpl() #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ### CreateViewCore\(UIntPtr\) @@ -709,7 +705,7 @@ protected override View CreateViewCore(UIntPtr pView) #### Parameters -`pView` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pView` UIntPtr The view handle. @@ -727,7 +723,7 @@ public override IObjectBase Find(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -759,13 +755,13 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The ob unnamed. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The unnamed object name. @@ -779,7 +775,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenDocumentMeshFreeBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenDocumentMeshFreeBase.md index d276c96de1..d07dc9e4bc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenDocumentMeshFreeBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenDocumentMeshFreeBase.md @@ -1,4 +1,5 @@ -# Class HiddenDocumentMeshFreeBase +# Class HiddenDocumentMeshFreeBase + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,17 +12,17 @@ public abstract class HiddenDocumentMeshFreeBase : HiddenDocumentMeshBase, IObse #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← -HiddenDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← +[HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) ← [HiddenDocumentForGearTrain](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md) ← [HiddenDocumentMeshBase](VM.Managed.DAFUL.GearTrain.HiddenDocumentMeshBase.md) ← [HiddenDocumentMeshFreeBase](VM.Managed.DAFUL.GearTrain.HiddenDocumentMeshFreeBase.md) @@ -40,7 +41,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -78,113 +79,113 @@ IHiddenDocument, [HiddenDocumentForGearTrain.Find\(string\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_Find\_System\_String\_), [HiddenDocumentForGearTrain.CloseDocumentCore\(\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CloseDocumentCore), [HiddenDocumentForGearTrain.CheckActiveDocument\(Document3D, Document3D\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CheckActiveDocument\_VM\_Managed\_Document3D\_VM\_Managed\_Document3D\_), -HiddenDocument.m\_canvas, -HiddenDocument.ClearDocument\(\), -HiddenDocument.InitializeSimParam\(\), -HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -HiddenDocument.DrawCoordinate\(double\), -HiddenDocument.HideSubData\(string\), -HiddenDocument.DrawCoordinateCore\(VectorBase, double\), -HiddenDocument.CloseDocumentCore\(\), -HiddenDocument.SetData\(XmlNode\), -HiddenDocument.FindLocal\(string\), -HiddenDocument.TargetDesign, -HiddenDocument.TargetDocument, -HiddenDocument.RenderingMode, -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[HiddenDocument.m\_canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinate\(double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.HideSubData\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinateCore\(VectorBase, double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.CloseDocumentCore\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDesign](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.RenderingMode](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -279,8 +280,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -291,9 +290,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -307,12 +306,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -590,7 +586,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -621,7 +617,7 @@ public HiddenDocumentMeshFreeBase(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -637,7 +633,7 @@ public void ReAssemblyAssembledBody(AssembledBody ab) #### Parameters -`ab` AssembledBody +`ab` [AssembledBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs) The assembled body. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetCrossHelicalDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetCrossHelicalDocument.md index e9d60faaaf..319efb10b6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetCrossHelicalDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetCrossHelicalDocument.md @@ -1,4 +1,5 @@ -# Class HiddenGearSetCrossHelicalDocument +# Class HiddenGearSetCrossHelicalDocument + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,17 +12,17 @@ public class HiddenGearSetCrossHelicalDocument : HiddenGearSetDocumentBase, IObs #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← -HiddenDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← +[HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) ← [HiddenDocumentForGearTrain](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md) ← [HiddenGearSetDocumentBase](VM.Managed.DAFUL.GearTrain.HiddenGearSetDocumentBase.md) ← [HiddenGearSetCrossHelicalDocument](VM.Managed.DAFUL.GearTrain.HiddenGearSetCrossHelicalDocument.md) @@ -35,7 +36,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -94,113 +95,113 @@ IHiddenDocument [HiddenDocumentForGearTrain.Find\(string\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_Find\_System\_String\_), [HiddenDocumentForGearTrain.CloseDocumentCore\(\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CloseDocumentCore), [HiddenDocumentForGearTrain.CheckActiveDocument\(Document3D, Document3D\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CheckActiveDocument\_VM\_Managed\_Document3D\_VM\_Managed\_Document3D\_), -HiddenDocument.m\_canvas, -HiddenDocument.ClearDocument\(\), -HiddenDocument.InitializeSimParam\(\), -HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -HiddenDocument.DrawCoordinate\(double\), -HiddenDocument.HideSubData\(string\), -HiddenDocument.DrawCoordinateCore\(VectorBase, double\), -HiddenDocument.CloseDocumentCore\(\), -HiddenDocument.SetData\(XmlNode\), -HiddenDocument.FindLocal\(string\), -HiddenDocument.TargetDesign, -HiddenDocument.TargetDocument, -HiddenDocument.RenderingMode, -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[HiddenDocument.m\_canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinate\(double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.HideSubData\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinateCore\(VectorBase, double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.CloseDocumentCore\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDesign](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.RenderingMode](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -295,8 +296,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -307,9 +306,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -323,12 +322,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -606,7 +602,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -637,7 +633,7 @@ public HiddenGearSetCrossHelicalDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -653,7 +649,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ## Methods @@ -667,13 +663,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string Type of the string. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetCenterY\(double\[\]\) @@ -685,7 +681,7 @@ protected override void GetCenterY(double[] ardCenterY) #### Parameters -`ardCenterY` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ardCenterY` double\[\] The y coordinate of center. @@ -699,7 +695,7 @@ protected override void GetExternalState(bool[] arbExternal) #### Parameters -`arbExternal` [bool](https://learn.microsoft.com/dotnet/api/system.boolean)\[\] +`arbExternal` bool\[\] The external state array. @@ -713,7 +709,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the string category. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetCustomDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetCustomDocument.md index 0c6536d8c7..0c8716e3b3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetCustomDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetCustomDocument.md @@ -1,4 +1,5 @@ -# Class HiddenGearSetCustomDocument +# Class HiddenGearSetCustomDocument + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,17 +12,17 @@ public class HiddenGearSetCustomDocument : HiddenGearSetDocumentBase, IObservabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← -HiddenDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← +[HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) ← [HiddenDocumentForGearTrain](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md) ← [HiddenGearSetDocumentBase](VM.Managed.DAFUL.GearTrain.HiddenGearSetDocumentBase.md) ← [HiddenGearSetCustomDocument](VM.Managed.DAFUL.GearTrain.HiddenGearSetCustomDocument.md) @@ -35,7 +36,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -94,113 +95,113 @@ IHiddenDocument [HiddenDocumentForGearTrain.Find\(string\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_Find\_System\_String\_), [HiddenDocumentForGearTrain.CloseDocumentCore\(\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CloseDocumentCore), [HiddenDocumentForGearTrain.CheckActiveDocument\(Document3D, Document3D\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CheckActiveDocument\_VM\_Managed\_Document3D\_VM\_Managed\_Document3D\_), -HiddenDocument.m\_canvas, -HiddenDocument.ClearDocument\(\), -HiddenDocument.InitializeSimParam\(\), -HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -HiddenDocument.DrawCoordinate\(double\), -HiddenDocument.HideSubData\(string\), -HiddenDocument.DrawCoordinateCore\(VectorBase, double\), -HiddenDocument.CloseDocumentCore\(\), -HiddenDocument.SetData\(XmlNode\), -HiddenDocument.FindLocal\(string\), -HiddenDocument.TargetDesign, -HiddenDocument.TargetDocument, -HiddenDocument.RenderingMode, -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[HiddenDocument.m\_canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinate\(double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.HideSubData\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinateCore\(VectorBase, double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.CloseDocumentCore\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDesign](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.RenderingMode](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -295,8 +296,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -307,9 +306,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -323,12 +322,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -606,7 +602,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -637,7 +633,7 @@ public HiddenGearSetCustomDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -653,7 +649,7 @@ protected override bool HideBCD { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### HideLOA @@ -665,7 +661,7 @@ protected override bool HideLOA { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### InitialCategories @@ -677,7 +673,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### NumberOfLOA @@ -689,7 +685,7 @@ protected override int NumberOfLOA { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -703,13 +699,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string Type of the string. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### InitializeCategoryInfo\(string\) @@ -721,7 +717,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the string category. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetCycloidPinDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetCycloidPinDocument.md index 3f67eca629..160f0765f2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetCycloidPinDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetCycloidPinDocument.md @@ -1,4 +1,5 @@ -# Class HiddenGearSetCycloidPinDocument +# Class HiddenGearSetCycloidPinDocument + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,17 +12,17 @@ public class HiddenGearSetCycloidPinDocument : HiddenGearSetDocumentBase, IObser #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← -HiddenDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← +[HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) ← [HiddenDocumentForGearTrain](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md) ← [HiddenGearSetDocumentBase](VM.Managed.DAFUL.GearTrain.HiddenGearSetDocumentBase.md) ← [HiddenGearSetCycloidPinDocument](VM.Managed.DAFUL.GearTrain.HiddenGearSetCycloidPinDocument.md) @@ -35,7 +36,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -94,113 +95,113 @@ IHiddenDocument [HiddenDocumentForGearTrain.Find\(string\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_Find\_System\_String\_), [HiddenDocumentForGearTrain.CloseDocumentCore\(\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CloseDocumentCore), [HiddenDocumentForGearTrain.CheckActiveDocument\(Document3D, Document3D\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CheckActiveDocument\_VM\_Managed\_Document3D\_VM\_Managed\_Document3D\_), -HiddenDocument.m\_canvas, -HiddenDocument.ClearDocument\(\), -HiddenDocument.InitializeSimParam\(\), -HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -HiddenDocument.DrawCoordinate\(double\), -HiddenDocument.HideSubData\(string\), -HiddenDocument.DrawCoordinateCore\(VectorBase, double\), -HiddenDocument.CloseDocumentCore\(\), -HiddenDocument.SetData\(XmlNode\), -HiddenDocument.FindLocal\(string\), -HiddenDocument.TargetDesign, -HiddenDocument.TargetDocument, -HiddenDocument.RenderingMode, -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[HiddenDocument.m\_canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinate\(double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.HideSubData\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinateCore\(VectorBase, double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.CloseDocumentCore\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDesign](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.RenderingMode](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -295,8 +296,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -307,9 +306,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -323,12 +322,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -606,7 +602,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -637,7 +633,7 @@ public HiddenGearSetCycloidPinDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -653,7 +649,7 @@ public override bool AddToPropertyAllGear { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### HideBCD @@ -665,7 +661,7 @@ protected override bool HideBCD { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### HideLOA @@ -677,7 +673,7 @@ protected override bool HideLOA { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### InitialCategories @@ -689,7 +685,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### NumberOfLOA @@ -701,7 +697,7 @@ protected override int NumberOfLOA { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -715,13 +711,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string Type of the string. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### InitializeCategoryInfo\(string\) @@ -733,7 +729,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the string category. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetDocument.md index 3439b1cad6..34a04a5bcd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetDocument.md @@ -1,4 +1,5 @@ -# Class HiddenGearSetDocument +# Class HiddenGearSetDocument + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,17 +12,17 @@ public class HiddenGearSetDocument : HiddenGearSetDocumentBase, IObservableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← -HiddenDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← +[HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) ← [HiddenDocumentForGearTrain](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md) ← [HiddenGearSetDocumentBase](VM.Managed.DAFUL.GearTrain.HiddenGearSetDocumentBase.md) ← [HiddenGearSetDocument](VM.Managed.DAFUL.GearTrain.HiddenGearSetDocument.md) @@ -35,7 +36,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -94,113 +95,113 @@ IHiddenDocument [HiddenDocumentForGearTrain.Find\(string\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_Find\_System\_String\_), [HiddenDocumentForGearTrain.CloseDocumentCore\(\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CloseDocumentCore), [HiddenDocumentForGearTrain.CheckActiveDocument\(Document3D, Document3D\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CheckActiveDocument\_VM\_Managed\_Document3D\_VM\_Managed\_Document3D\_), -HiddenDocument.m\_canvas, -HiddenDocument.ClearDocument\(\), -HiddenDocument.InitializeSimParam\(\), -HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -HiddenDocument.DrawCoordinate\(double\), -HiddenDocument.HideSubData\(string\), -HiddenDocument.DrawCoordinateCore\(VectorBase, double\), -HiddenDocument.CloseDocumentCore\(\), -HiddenDocument.SetData\(XmlNode\), -HiddenDocument.FindLocal\(string\), -HiddenDocument.TargetDesign, -HiddenDocument.TargetDocument, -HiddenDocument.RenderingMode, -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[HiddenDocument.m\_canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinate\(double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.HideSubData\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinateCore\(VectorBase, double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.CloseDocumentCore\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDesign](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.RenderingMode](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -295,8 +296,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -307,9 +306,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -323,12 +322,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -606,7 +602,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -637,7 +633,7 @@ public HiddenGearSetDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -653,7 +649,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ## Methods @@ -667,13 +663,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string Type of the string. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetCenterY\(double\[\]\) @@ -685,7 +681,7 @@ protected override void GetCenterY(double[] ardCenterY) #### Parameters -`ardCenterY` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ardCenterY` double\[\] The y coordinate of center. @@ -699,7 +695,7 @@ protected override void GetExternalState(bool[] arbExternal) #### Parameters -`arbExternal` [bool](https://learn.microsoft.com/dotnet/api/system.boolean)\[\] +`arbExternal` bool\[\] The external state array. @@ -713,7 +709,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the string category. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetDocumentBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetDocumentBase.md index 66c641f509..dc63e75f59 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetDocumentBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetDocumentBase.md @@ -1,4 +1,5 @@ -# Class HiddenGearSetDocumentBase +# Class HiddenGearSetDocumentBase + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,17 +12,17 @@ public abstract class HiddenGearSetDocumentBase : HiddenDocumentForGearTrain, IO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← -HiddenDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← +[HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) ← [HiddenDocumentForGearTrain](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md) ← [HiddenGearSetDocumentBase](VM.Managed.DAFUL.GearTrain.HiddenGearSetDocumentBase.md) @@ -47,7 +48,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -71,113 +72,113 @@ IHiddenDocument [HiddenDocumentForGearTrain.Find\(string\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_Find\_System\_String\_), [HiddenDocumentForGearTrain.CloseDocumentCore\(\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CloseDocumentCore), [HiddenDocumentForGearTrain.CheckActiveDocument\(Document3D, Document3D\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CheckActiveDocument\_VM\_Managed\_Document3D\_VM\_Managed\_Document3D\_), -HiddenDocument.m\_canvas, -HiddenDocument.ClearDocument\(\), -HiddenDocument.InitializeSimParam\(\), -HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -HiddenDocument.DrawCoordinate\(double\), -HiddenDocument.HideSubData\(string\), -HiddenDocument.DrawCoordinateCore\(VectorBase, double\), -HiddenDocument.CloseDocumentCore\(\), -HiddenDocument.SetData\(XmlNode\), -HiddenDocument.FindLocal\(string\), -HiddenDocument.TargetDesign, -HiddenDocument.TargetDocument, -HiddenDocument.RenderingMode, -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[HiddenDocument.m\_canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinate\(double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.HideSubData\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinateCore\(VectorBase, double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.CloseDocumentCore\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDesign](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.RenderingMode](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -272,8 +273,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -284,9 +283,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -300,12 +299,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -583,7 +579,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -614,7 +610,7 @@ public HiddenGearSetDocumentBase(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -630,7 +626,7 @@ protected List m_bHideLOA #### Field Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[bool](https://learn.microsoft.com/dotnet/api/system.boolean)\> + List ### m\_bShow2D @@ -642,7 +638,7 @@ protected bool m_bShow2D #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Properties @@ -656,7 +652,7 @@ public virtual bool AddToPropertyAllGear { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DoingContactAnalysis @@ -668,7 +664,7 @@ public static bool DoingContactAnalysis { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GearSet @@ -692,7 +688,7 @@ protected virtual bool HideBCD { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### HideLOA @@ -704,7 +700,7 @@ protected virtual bool HideLOA { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### NumberOfLOA @@ -716,7 +712,7 @@ protected virtual int NumberOfLOA { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Show2D @@ -728,7 +724,7 @@ public bool Show2D { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TargetDesign @@ -770,7 +766,7 @@ public static void CalculateToothStiffness(IGearSet gearSet, List<(bool, int, st The gearset -`lstToothInfo` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<\([bool](https://learn.microsoft.com/dotnet/api/system.boolean), [int](https://learn.microsoft.com/dotnet/api/system.int32), [string](https://learn.microsoft.com/dotnet/api/system.string), [string](https://learn.microsoft.com/dotnet/api/system.string)\)\> +`lstToothInfo` List<\(bool, int, string, string\)\> The tooth information @@ -802,7 +798,7 @@ public static void CalculateToothStiffnessInContactAnalysis(HiddenGearSetDocumen The gearset hidden document -`nGearIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nGearIdx` int The gear index @@ -834,7 +830,7 @@ protected override Assembly CreateAssemblyImpl() #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ### CreateStiffness\(\) @@ -858,19 +854,19 @@ public static void DeserializeResult(PropertyGearSetBase pgs, string[] arRsult, The property -`arRsult` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arRsult` string\[\] The result -`arInvolutePoints` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[GearShapeBase](VM.Managed.DAFUL.GearTrain.GearShapeBase.md).[InvolutePoint](VM.Managed.DAFUL.GearTrain.GearShapeBase.InvolutePoint.md)\>\[\] +`arInvolutePoints` List<[GearShapeBase](VM.Managed.DAFUL.GearTrain.GearShapeBase.md).[InvolutePoint](VM.Managed.DAFUL.GearTrain.GearShapeBase.InvolutePoint.md)\>\[\] The involute points -`arGraphicInvolutePoints` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[GearShapeBase](VM.Managed.DAFUL.GearTrain.GearShapeBase.md).[InvolutePoint](VM.Managed.DAFUL.GearTrain.GearShapeBase.InvolutePoint.md)\>\[\] +`arGraphicInvolutePoints` List<[GearShapeBase](VM.Managed.DAFUL.GearTrain.GearShapeBase.md).[InvolutePoint](VM.Managed.DAFUL.GearTrain.GearShapeBase.InvolutePoint.md)\>\[\] The graphic involute points -`arMBCD` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)\[\] +`arMBCD` List\[\] The MBCD @@ -884,7 +880,7 @@ public override void DrawCoordinate(double dIconSize) #### Parameters -`dIconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dIconSize` double Size of the d icon. @@ -898,23 +894,23 @@ protected void DrawLOAForExternal(string strCanvasName, double dR1, double dR2, #### Parameters -`strCanvasName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCanvasName` string canvas name. -`dR1` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dR1` double first radius . -`dR2` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dR2` double second radius. -`curCenterY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`curCenterY` double current center. -`preCenterY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`preCenterY` double previous conter. @@ -932,19 +928,19 @@ protected void DrawLOAForInternal(string strCanvasName, double dR1, double dR2, #### Parameters -`strCanvasName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCanvasName` string canvas name. -`dR1` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dR1` double first radius . -`dR2` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dR2` double second radius. -`CenterY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`CenterY` double center Y. @@ -962,7 +958,7 @@ protected virtual void GetCenterY(double[] ardCenterY) #### Parameters -`ardCenterY` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ardCenterY` double\[\] The y coordinate of center. @@ -976,13 +972,13 @@ public override void GetData(XmlNode writer) #### Parameters -`writer` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`writer` XmlNode The writer. #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception ### GetExternalState\(bool\[\]\) @@ -994,7 +990,7 @@ protected virtual void GetExternalState(bool[] arbExternal) #### Parameters -`arbExternal` [bool](https://learn.microsoft.com/dotnet/api/system.boolean)\[\] +`arbExternal` bool\[\] The exteranl array. @@ -1008,11 +1004,11 @@ public override void GetInfoFromDocumentPropertyGrid(XmlDocument xmlTarget, XmlD #### Parameters -`xmlTarget` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlTarget` XmlDocument The XML target. -`xmlTool` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlTool` XmlDocument The XML tool. @@ -1026,7 +1022,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -1044,7 +1040,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -1062,17 +1058,17 @@ public override string MakeXmlForDocumentPropertyGrid(XmlDocument xmlDom, ref st #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XML DOM. -`strGroupName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGroupName` string Name of the string group. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### MakeXmlForDocumentPropertyGridForLOA\(XmlDocument, ref string, StringBuilder\) @@ -1084,15 +1080,15 @@ protected virtual void MakeXmlForDocumentPropertyGridForLOA(XmlDocument xmlDom, #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XML DOM. -`strGroupName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGroupName` string Name of the string group. -`sb` [StringBuilder](https://learn.microsoft.com/dotnet/api/system.text.stringbuilder) +`sb` StringBuilder The string builder. @@ -1112,7 +1108,7 @@ The gear geometry information #### Returns - \([bool](https://learn.microsoft.com/dotnet/api/system.boolean), [PseudoGearGeometry](VM.Managed.DAFUL.GearTrain.CAD.PseudoGearGeometry.md)\) + \(bool, [PseudoGearGeometry](VM.Managed.DAFUL.GearTrain.CAD.PseudoGearGeometry.md)\) ### RefreshGearBodyInNav\(\) @@ -1136,19 +1132,19 @@ public static void SerializeResult(PropertyGearSetBase pgs, ref string[] arRsult The gear property -`arRsult` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arRsult` string\[\] The result -`arInvolutePoints` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[GearShapeBase](VM.Managed.DAFUL.GearTrain.GearShapeBase.md).[InvolutePoint](VM.Managed.DAFUL.GearTrain.GearShapeBase.InvolutePoint.md)\>\[\] +`arInvolutePoints` List<[GearShapeBase](VM.Managed.DAFUL.GearTrain.GearShapeBase.md).[InvolutePoint](VM.Managed.DAFUL.GearTrain.GearShapeBase.InvolutePoint.md)\>\[\] The involute points -`arGraphicInvolutePoints` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[GearShapeBase](VM.Managed.DAFUL.GearTrain.GearShapeBase.md).[InvolutePoint](VM.Managed.DAFUL.GearTrain.GearShapeBase.InvolutePoint.md)\>\[\] +`arGraphicInvolutePoints` List<[GearShapeBase](VM.Managed.DAFUL.GearTrain.GearShapeBase.md).[InvolutePoint](VM.Managed.DAFUL.GearTrain.GearShapeBase.InvolutePoint.md)\>\[\] The graphic involute points -`arMBCD` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)\[\] +`arMBCD` List\[\] The MBCD @@ -1162,13 +1158,13 @@ public override void SetData(XmlNode reader) #### Parameters -`reader` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`reader` XmlNode The reader. #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception ### Show2Dimension\(bool\) @@ -1180,7 +1176,7 @@ public void Show2Dimension(bool isRefresh) #### Parameters -`isRefresh` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isRefresh` bool if set to true [is refresh]. @@ -1194,19 +1190,19 @@ protected virtual void Show2DimensionCore(int nCount, bool[] ardExternal, double #### Parameters -`nCount` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nCount` int the count. -`ardExternal` [bool](https://learn.microsoft.com/dotnet/api/system.boolean)\[\] +`ardExternal` bool\[\] external state array. -`ardCenterY` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ardCenterY` double\[\] center array. -`ardBCDR` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ardBCDR` double\[\] BCDR array. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetInternalDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetInternalDocument.md index 512e9db79c..07b0c4e660 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetInternalDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetInternalDocument.md @@ -1,4 +1,5 @@ -# Class HiddenGearSetInternalDocument +# Class HiddenGearSetInternalDocument + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,17 +12,17 @@ public class HiddenGearSetInternalDocument : HiddenGearSetDocumentBase, IObserva #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← -HiddenDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← +[HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) ← [HiddenDocumentForGearTrain](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md) ← [HiddenGearSetDocumentBase](VM.Managed.DAFUL.GearTrain.HiddenGearSetDocumentBase.md) ← [HiddenGearSetInternalDocument](VM.Managed.DAFUL.GearTrain.HiddenGearSetInternalDocument.md) @@ -35,7 +36,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -94,113 +95,113 @@ IHiddenDocument [HiddenDocumentForGearTrain.Find\(string\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_Find\_System\_String\_), [HiddenDocumentForGearTrain.CloseDocumentCore\(\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CloseDocumentCore), [HiddenDocumentForGearTrain.CheckActiveDocument\(Document3D, Document3D\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CheckActiveDocument\_VM\_Managed\_Document3D\_VM\_Managed\_Document3D\_), -HiddenDocument.m\_canvas, -HiddenDocument.ClearDocument\(\), -HiddenDocument.InitializeSimParam\(\), -HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -HiddenDocument.DrawCoordinate\(double\), -HiddenDocument.HideSubData\(string\), -HiddenDocument.DrawCoordinateCore\(VectorBase, double\), -HiddenDocument.CloseDocumentCore\(\), -HiddenDocument.SetData\(XmlNode\), -HiddenDocument.FindLocal\(string\), -HiddenDocument.TargetDesign, -HiddenDocument.TargetDocument, -HiddenDocument.RenderingMode, -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[HiddenDocument.m\_canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinate\(double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.HideSubData\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinateCore\(VectorBase, double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.CloseDocumentCore\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDesign](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.RenderingMode](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -295,8 +296,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -307,9 +306,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -323,12 +322,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -606,7 +602,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -637,7 +633,7 @@ public HiddenGearSetInternalDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -653,7 +649,7 @@ protected override bool HideLOA { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### InitialCategories @@ -665,7 +661,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ## Methods @@ -679,13 +675,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string Type of the string. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetCenterY\(double\[\]\) @@ -697,7 +693,7 @@ protected override void GetCenterY(double[] ardCenterY) #### Parameters -`ardCenterY` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ardCenterY` double\[\] The y coordinate of center. @@ -711,7 +707,7 @@ protected override void GetExternalState(bool[] arbExternal) #### Parameters -`arbExternal` [bool](https://learn.microsoft.com/dotnet/api/system.boolean)\[\] +`arbExternal` bool\[\] The external state array. @@ -725,7 +721,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the string category. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetPlanetaryDPDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetPlanetaryDPDocument.md index 1399cfce10..47927a76b5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetPlanetaryDPDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetPlanetaryDPDocument.md @@ -1,4 +1,5 @@ -# Class HiddenGearSetPlanetaryDPDocument +# Class HiddenGearSetPlanetaryDPDocument + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,17 +12,17 @@ public class HiddenGearSetPlanetaryDPDocument : HiddenGearSetDocumentBase, IObse #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← -HiddenDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← +[HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) ← [HiddenDocumentForGearTrain](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md) ← [HiddenGearSetDocumentBase](VM.Managed.DAFUL.GearTrain.HiddenGearSetDocumentBase.md) ← [HiddenGearSetPlanetaryDPDocument](VM.Managed.DAFUL.GearTrain.HiddenGearSetPlanetaryDPDocument.md) @@ -35,7 +36,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -94,113 +95,113 @@ IHiddenDocument [HiddenDocumentForGearTrain.Find\(string\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_Find\_System\_String\_), [HiddenDocumentForGearTrain.CloseDocumentCore\(\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CloseDocumentCore), [HiddenDocumentForGearTrain.CheckActiveDocument\(Document3D, Document3D\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CheckActiveDocument\_VM\_Managed\_Document3D\_VM\_Managed\_Document3D\_), -HiddenDocument.m\_canvas, -HiddenDocument.ClearDocument\(\), -HiddenDocument.InitializeSimParam\(\), -HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -HiddenDocument.DrawCoordinate\(double\), -HiddenDocument.HideSubData\(string\), -HiddenDocument.DrawCoordinateCore\(VectorBase, double\), -HiddenDocument.CloseDocumentCore\(\), -HiddenDocument.SetData\(XmlNode\), -HiddenDocument.FindLocal\(string\), -HiddenDocument.TargetDesign, -HiddenDocument.TargetDocument, -HiddenDocument.RenderingMode, -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[HiddenDocument.m\_canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinate\(double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.HideSubData\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinateCore\(VectorBase, double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.CloseDocumentCore\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDesign](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.RenderingMode](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -295,8 +296,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -307,9 +306,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -323,12 +322,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -606,7 +602,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -637,7 +633,7 @@ public HiddenGearSetPlanetaryDPDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -653,7 +649,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### NumberOfLOA @@ -665,7 +661,7 @@ protected override int NumberOfLOA { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -679,13 +675,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string Type of the string. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetCenterY\(double\[\]\) @@ -697,7 +693,7 @@ protected override void GetCenterY(double[] ardCenterY) #### Parameters -`ardCenterY` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ardCenterY` double\[\] The y coordinate of center. @@ -711,7 +707,7 @@ protected override void GetExternalState(bool[] arbExternal) #### Parameters -`arbExternal` [bool](https://learn.microsoft.com/dotnet/api/system.boolean)\[\] +`arbExternal` bool\[\] The external state array. @@ -725,7 +721,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the string category. @@ -739,15 +735,15 @@ protected override void MakeXmlForDocumentPropertyGridForLOA(XmlDocument xmlDom, #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XML DOM. -`strGroupName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGroupName` string Name of the string group. -`sb` [StringBuilder](https://learn.microsoft.com/dotnet/api/system.text.stringbuilder) +`sb` StringBuilder The string builder. @@ -761,19 +757,19 @@ protected override void Show2DimensionCore(int nCount, bool[] ardExternal, doubl #### Parameters -`nCount` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nCount` int the count. -`ardExternal` [bool](https://learn.microsoft.com/dotnet/api/system.boolean)\[\] +`ardExternal` bool\[\] external state array. -`ardCenterY` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ardCenterY` double\[\] center array. -`ardBCDR` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ardBCDR` double\[\] BCDR array. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetPlanetaryDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetPlanetaryDocument.md index 14fb497e95..44465170e6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetPlanetaryDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetPlanetaryDocument.md @@ -1,4 +1,5 @@ -# Class HiddenGearSetPlanetaryDocument +# Class HiddenGearSetPlanetaryDocument + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,17 +12,17 @@ public class HiddenGearSetPlanetaryDocument : HiddenGearSetDocumentBase, IObserv #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← -HiddenDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← +[HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) ← [HiddenDocumentForGearTrain](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md) ← [HiddenGearSetDocumentBase](VM.Managed.DAFUL.GearTrain.HiddenGearSetDocumentBase.md) ← [HiddenGearSetPlanetaryDocument](VM.Managed.DAFUL.GearTrain.HiddenGearSetPlanetaryDocument.md) @@ -35,7 +36,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -94,113 +95,113 @@ IHiddenDocument [HiddenDocumentForGearTrain.Find\(string\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_Find\_System\_String\_), [HiddenDocumentForGearTrain.CloseDocumentCore\(\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CloseDocumentCore), [HiddenDocumentForGearTrain.CheckActiveDocument\(Document3D, Document3D\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CheckActiveDocument\_VM\_Managed\_Document3D\_VM\_Managed\_Document3D\_), -HiddenDocument.m\_canvas, -HiddenDocument.ClearDocument\(\), -HiddenDocument.InitializeSimParam\(\), -HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -HiddenDocument.DrawCoordinate\(double\), -HiddenDocument.HideSubData\(string\), -HiddenDocument.DrawCoordinateCore\(VectorBase, double\), -HiddenDocument.CloseDocumentCore\(\), -HiddenDocument.SetData\(XmlNode\), -HiddenDocument.FindLocal\(string\), -HiddenDocument.TargetDesign, -HiddenDocument.TargetDocument, -HiddenDocument.RenderingMode, -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[HiddenDocument.m\_canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinate\(double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.HideSubData\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinateCore\(VectorBase, double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.CloseDocumentCore\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDesign](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.RenderingMode](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -295,8 +296,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -307,9 +306,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -323,12 +322,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -606,7 +602,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -637,7 +633,7 @@ public HiddenGearSetPlanetaryDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -653,7 +649,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### NumberOfLOA @@ -665,7 +661,7 @@ protected override int NumberOfLOA { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -679,13 +675,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string Type of the string. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetCenterY\(double\[\]\) @@ -697,7 +693,7 @@ protected override void GetCenterY(double[] ardCenterY) #### Parameters -`ardCenterY` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ardCenterY` double\[\] The y coordinate of center. @@ -711,7 +707,7 @@ protected override void GetExternalState(bool[] arbExternal) #### Parameters -`arbExternal` [bool](https://learn.microsoft.com/dotnet/api/system.boolean)\[\] +`arbExternal` bool\[\] The external state array. @@ -725,7 +721,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the string category. @@ -739,15 +735,15 @@ protected override void MakeXmlForDocumentPropertyGridForLOA(XmlDocument xmlDom, #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XML DOM. -`strGroupName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGroupName` string Name of the string group. -`sb` [StringBuilder](https://learn.microsoft.com/dotnet/api/system.text.stringbuilder) +`sb` StringBuilder The string builder. @@ -761,19 +757,19 @@ protected override void Show2DimensionCore(int nCount, bool[] ardExternal, doubl #### Parameters -`nCount` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nCount` int the count. -`ardExternal` [bool](https://learn.microsoft.com/dotnet/api/system.boolean)\[\] +`ardExternal` bool\[\] external state array. -`ardCenterY` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ardCenterY` double\[\] center array. -`ardBCDR` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ardBCDR` double\[\] BCDR array. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetPlanetaryTSDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetPlanetaryTSDocument.md index 55a3ae1fc1..f13a1549f9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetPlanetaryTSDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetPlanetaryTSDocument.md @@ -1,4 +1,5 @@ -# Class HiddenGearSetPlanetaryTSDocument +# Class HiddenGearSetPlanetaryTSDocument + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,17 +12,17 @@ public class HiddenGearSetPlanetaryTSDocument : HiddenGearSetDocumentBase, IObse #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← -HiddenDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← +[HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) ← [HiddenDocumentForGearTrain](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md) ← [HiddenGearSetDocumentBase](VM.Managed.DAFUL.GearTrain.HiddenGearSetDocumentBase.md) ← [HiddenGearSetPlanetaryTSDocument](VM.Managed.DAFUL.GearTrain.HiddenGearSetPlanetaryTSDocument.md) @@ -35,7 +36,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -94,113 +95,113 @@ IHiddenDocument [HiddenDocumentForGearTrain.Find\(string\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_Find\_System\_String\_), [HiddenDocumentForGearTrain.CloseDocumentCore\(\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CloseDocumentCore), [HiddenDocumentForGearTrain.CheckActiveDocument\(Document3D, Document3D\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CheckActiveDocument\_VM\_Managed\_Document3D\_VM\_Managed\_Document3D\_), -HiddenDocument.m\_canvas, -HiddenDocument.ClearDocument\(\), -HiddenDocument.InitializeSimParam\(\), -HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -HiddenDocument.DrawCoordinate\(double\), -HiddenDocument.HideSubData\(string\), -HiddenDocument.DrawCoordinateCore\(VectorBase, double\), -HiddenDocument.CloseDocumentCore\(\), -HiddenDocument.SetData\(XmlNode\), -HiddenDocument.FindLocal\(string\), -HiddenDocument.TargetDesign, -HiddenDocument.TargetDocument, -HiddenDocument.RenderingMode, -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[HiddenDocument.m\_canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinate\(double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.HideSubData\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinateCore\(VectorBase, double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.CloseDocumentCore\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDesign](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.RenderingMode](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -295,8 +296,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -307,9 +306,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -323,12 +322,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -606,7 +602,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -637,7 +633,7 @@ public HiddenGearSetPlanetaryTSDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -653,7 +649,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### NumberOfLOA @@ -665,7 +661,7 @@ protected override int NumberOfLOA { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -679,13 +675,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string Type of the string. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetCenterY\(double\[\]\) @@ -697,7 +693,7 @@ protected override void GetCenterY(double[] ardCenterY) #### Parameters -`ardCenterY` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ardCenterY` double\[\] The y coordinate of center. @@ -711,7 +707,7 @@ protected override void GetExternalState(bool[] arbExternal) #### Parameters -`arbExternal` [bool](https://learn.microsoft.com/dotnet/api/system.boolean)\[\] +`arbExternal` bool\[\] The external state array. @@ -725,7 +721,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the string category. @@ -739,15 +735,15 @@ protected override void MakeXmlForDocumentPropertyGridForLOA(XmlDocument xmlDom, #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XML DOM. -`strGroupName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGroupName` string Name of the string group. -`sb` [StringBuilder](https://learn.microsoft.com/dotnet/api/system.text.stringbuilder) +`sb` StringBuilder The string builder. @@ -761,19 +757,19 @@ protected override void Show2DimensionCore(int nCount, bool[] ardExternal, doubl #### Parameters -`nCount` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nCount` int the count. -`ardExternal` [bool](https://learn.microsoft.com/dotnet/api/system.boolean)\[\] +`ardExternal` bool\[\] external state array. -`ardCenterY` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ardCenterY` double\[\] center array. -`ardBCDR` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ardBCDR` double\[\] BCDR array. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetRackAndPinionDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetRackAndPinionDocument.md index 1587e600c5..6fd54d3629 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetRackAndPinionDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetRackAndPinionDocument.md @@ -1,4 +1,5 @@ -# Class HiddenGearSetRackAndPinionDocument +# Class HiddenGearSetRackAndPinionDocument + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,17 +12,17 @@ public class HiddenGearSetRackAndPinionDocument : HiddenGearSetDocumentBase, IOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← -HiddenDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← +[HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) ← [HiddenDocumentForGearTrain](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md) ← [HiddenGearSetDocumentBase](VM.Managed.DAFUL.GearTrain.HiddenGearSetDocumentBase.md) ← [HiddenGearSetRackAndPinionDocument](VM.Managed.DAFUL.GearTrain.HiddenGearSetRackAndPinionDocument.md) @@ -35,7 +36,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -94,113 +95,113 @@ IHiddenDocument [HiddenDocumentForGearTrain.Find\(string\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_Find\_System\_String\_), [HiddenDocumentForGearTrain.CloseDocumentCore\(\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CloseDocumentCore), [HiddenDocumentForGearTrain.CheckActiveDocument\(Document3D, Document3D\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CheckActiveDocument\_VM\_Managed\_Document3D\_VM\_Managed\_Document3D\_), -HiddenDocument.m\_canvas, -HiddenDocument.ClearDocument\(\), -HiddenDocument.InitializeSimParam\(\), -HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -HiddenDocument.DrawCoordinate\(double\), -HiddenDocument.HideSubData\(string\), -HiddenDocument.DrawCoordinateCore\(VectorBase, double\), -HiddenDocument.CloseDocumentCore\(\), -HiddenDocument.SetData\(XmlNode\), -HiddenDocument.FindLocal\(string\), -HiddenDocument.TargetDesign, -HiddenDocument.TargetDocument, -HiddenDocument.RenderingMode, -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[HiddenDocument.m\_canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinate\(double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.HideSubData\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinateCore\(VectorBase, double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.CloseDocumentCore\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDesign](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.RenderingMode](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -295,8 +296,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -307,9 +306,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -323,12 +322,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -606,7 +602,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -637,7 +633,7 @@ public HiddenGearSetRackAndPinionDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -653,7 +649,7 @@ public override bool AddToPropertyAllGear { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### HideLOA @@ -665,7 +661,7 @@ protected override bool HideLOA { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### InitialCategories @@ -677,7 +673,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ## Methods @@ -691,13 +687,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string Type of the string. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### InitializeCategoryInfo\(string\) @@ -709,7 +705,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the string category. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetWormAndWormWheelDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetWormAndWormWheelDocument.md index 0cef9726a3..7fecfdce43 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetWormAndWormWheelDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenGearSetWormAndWormWheelDocument.md @@ -1,4 +1,5 @@ -# Class HiddenGearSetWormAndWormWheelDocument +# Class HiddenGearSetWormAndWormWheelDocument + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,17 +12,17 @@ public class HiddenGearSetWormAndWormWheelDocument : HiddenGearSetDocumentBase, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← -HiddenDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← +[HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) ← [HiddenDocumentForGearTrain](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md) ← [HiddenGearSetDocumentBase](VM.Managed.DAFUL.GearTrain.HiddenGearSetDocumentBase.md) ← [HiddenGearSetWormAndWormWheelDocument](VM.Managed.DAFUL.GearTrain.HiddenGearSetWormAndWormWheelDocument.md) @@ -35,7 +36,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -94,113 +95,113 @@ IHiddenDocument [HiddenDocumentForGearTrain.Find\(string\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_Find\_System\_String\_), [HiddenDocumentForGearTrain.CloseDocumentCore\(\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CloseDocumentCore), [HiddenDocumentForGearTrain.CheckActiveDocument\(Document3D, Document3D\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CheckActiveDocument\_VM\_Managed\_Document3D\_VM\_Managed\_Document3D\_), -HiddenDocument.m\_canvas, -HiddenDocument.ClearDocument\(\), -HiddenDocument.InitializeSimParam\(\), -HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -HiddenDocument.DrawCoordinate\(double\), -HiddenDocument.HideSubData\(string\), -HiddenDocument.DrawCoordinateCore\(VectorBase, double\), -HiddenDocument.CloseDocumentCore\(\), -HiddenDocument.SetData\(XmlNode\), -HiddenDocument.FindLocal\(string\), -HiddenDocument.TargetDesign, -HiddenDocument.TargetDocument, -HiddenDocument.RenderingMode, -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[HiddenDocument.m\_canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinate\(double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.HideSubData\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinateCore\(VectorBase, double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.CloseDocumentCore\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDesign](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.RenderingMode](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -295,8 +296,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -307,9 +306,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -323,12 +322,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -606,7 +602,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -637,7 +633,7 @@ public HiddenGearSetWormAndWormWheelDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -653,7 +649,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ## Methods @@ -667,13 +663,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string Type of the string. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetCenterY\(double\[\]\) @@ -685,7 +681,7 @@ protected override void GetCenterY(double[] ardCenterY) #### Parameters -`ardCenterY` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ardCenterY` double\[\] The y coordinate of center. @@ -699,7 +695,7 @@ protected override void GetExternalState(bool[] arbExternal) #### Parameters -`arbExternal` [bool](https://learn.microsoft.com/dotnet/api/system.boolean)\[\] +`arbExternal` bool\[\] The external state array. @@ -713,7 +709,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the string category. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenHousingFEDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenHousingFEDocument.md index 724e7587c8..75dc3686da 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenHousingFEDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenHousingFEDocument.md @@ -1,4 +1,5 @@ -# Class HiddenHousingFEDocument +# Class HiddenHousingFEDocument + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,17 +12,17 @@ public class HiddenHousingFEDocument : HiddenDocumentFEBase, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← -HiddenDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← +[HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) ← [HiddenDocumentForGearTrain](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md) ← [HiddenDocumentMeshBase](VM.Managed.DAFUL.GearTrain.HiddenDocumentMeshBase.md) ← [HiddenDocumentFEBase](VM.Managed.DAFUL.GearTrain.HiddenDocumentFEBase.md) ← @@ -36,7 +37,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -75,113 +76,113 @@ IHiddenDocument, [HiddenDocumentForGearTrain.Find\(string\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_Find\_System\_String\_), [HiddenDocumentForGearTrain.CloseDocumentCore\(\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CloseDocumentCore), [HiddenDocumentForGearTrain.CheckActiveDocument\(Document3D, Document3D\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CheckActiveDocument\_VM\_Managed\_Document3D\_VM\_Managed\_Document3D\_), -HiddenDocument.m\_canvas, -HiddenDocument.ClearDocument\(\), -HiddenDocument.InitializeSimParam\(\), -HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -HiddenDocument.DrawCoordinate\(double\), -HiddenDocument.HideSubData\(string\), -HiddenDocument.DrawCoordinateCore\(VectorBase, double\), -HiddenDocument.CloseDocumentCore\(\), -HiddenDocument.SetData\(XmlNode\), -HiddenDocument.FindLocal\(string\), -HiddenDocument.TargetDesign, -HiddenDocument.TargetDocument, -HiddenDocument.RenderingMode, -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[HiddenDocument.m\_canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinate\(double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.HideSubData\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinateCore\(VectorBase, double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.CloseDocumentCore\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDesign](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.RenderingMode](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -276,8 +277,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -288,9 +287,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -304,12 +303,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -587,7 +583,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -618,7 +614,7 @@ public HiddenHousingFEDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -634,7 +630,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ## Methods @@ -648,13 +644,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string Type of the string. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### InitializeCategoryInfo\(string\) @@ -666,7 +662,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the string category. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenHousingMeshFreeDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenHousingMeshFreeDocument.md index 7a9491b125..9eb1408bd3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenHousingMeshFreeDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenHousingMeshFreeDocument.md @@ -1,4 +1,5 @@ -# Class HiddenHousingMeshFreeDocument +# Class HiddenHousingMeshFreeDocument + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,17 +12,17 @@ public class HiddenHousingMeshFreeDocument : HiddenDocumentMeshFreeBase, IObserv #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← -HiddenDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← +[HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) ← [HiddenDocumentForGearTrain](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md) ← [HiddenDocumentMeshBase](VM.Managed.DAFUL.GearTrain.HiddenDocumentMeshBase.md) ← [HiddenDocumentMeshFreeBase](VM.Managed.DAFUL.GearTrain.HiddenDocumentMeshFreeBase.md) ← @@ -36,7 +37,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -75,113 +76,113 @@ IHiddenDocument, [HiddenDocumentForGearTrain.Find\(string\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_Find\_System\_String\_), [HiddenDocumentForGearTrain.CloseDocumentCore\(\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CloseDocumentCore), [HiddenDocumentForGearTrain.CheckActiveDocument\(Document3D, Document3D\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CheckActiveDocument\_VM\_Managed\_Document3D\_VM\_Managed\_Document3D\_), -HiddenDocument.m\_canvas, -HiddenDocument.ClearDocument\(\), -HiddenDocument.InitializeSimParam\(\), -HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -HiddenDocument.DrawCoordinate\(double\), -HiddenDocument.HideSubData\(string\), -HiddenDocument.DrawCoordinateCore\(VectorBase, double\), -HiddenDocument.CloseDocumentCore\(\), -HiddenDocument.SetData\(XmlNode\), -HiddenDocument.FindLocal\(string\), -HiddenDocument.TargetDesign, -HiddenDocument.TargetDocument, -HiddenDocument.RenderingMode, -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[HiddenDocument.m\_canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinate\(double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.HideSubData\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinateCore\(VectorBase, double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.CloseDocumentCore\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDesign](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.RenderingMode](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -276,8 +277,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -288,9 +287,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -304,12 +303,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -587,7 +583,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -618,7 +614,7 @@ public HiddenHousingMeshFreeDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -634,7 +630,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ## Methods @@ -648,13 +644,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string Type of the string. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### InitializeCategoryInfo\(string\) @@ -666,7 +662,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the string category. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenShaftSetDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenShaftSetDocument.md index 7a39a137be..1b384974f3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenShaftSetDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenShaftSetDocument.md @@ -1,4 +1,5 @@ -# Class HiddenShaftSetDocument +# Class HiddenShaftSetDocument + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,17 +12,17 @@ public class HiddenShaftSetDocument : HiddenDocumentForGearTrain, IObservableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← -HiddenDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← +[HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) ← [HiddenDocumentForGearTrain](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md) ← [HiddenShaftSetDocument](VM.Managed.DAFUL.GearTrain.HiddenShaftSetDocument.md) @@ -34,7 +35,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -59,113 +60,113 @@ IHiddenDocument, [HiddenDocumentForGearTrain.Find\(string\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_Find\_System\_String\_), [HiddenDocumentForGearTrain.CloseDocumentCore\(\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CloseDocumentCore), [HiddenDocumentForGearTrain.CheckActiveDocument\(Document3D, Document3D\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CheckActiveDocument\_VM\_Managed\_Document3D\_VM\_Managed\_Document3D\_), -HiddenDocument.m\_canvas, -HiddenDocument.ClearDocument\(\), -HiddenDocument.InitializeSimParam\(\), -HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -HiddenDocument.DrawCoordinate\(double\), -HiddenDocument.HideSubData\(string\), -HiddenDocument.DrawCoordinateCore\(VectorBase, double\), -HiddenDocument.CloseDocumentCore\(\), -HiddenDocument.SetData\(XmlNode\), -HiddenDocument.FindLocal\(string\), -HiddenDocument.TargetDesign, -HiddenDocument.TargetDocument, -HiddenDocument.RenderingMode, -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[HiddenDocument.m\_canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinate\(double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.HideSubData\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinateCore\(VectorBase, double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.CloseDocumentCore\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDesign](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.RenderingMode](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -260,8 +261,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -272,9 +271,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -288,12 +287,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -571,7 +567,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -602,7 +598,7 @@ public HiddenShaftSetDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document core. @@ -618,7 +614,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### RenderingMode @@ -666,7 +662,7 @@ public bool VisibleDimension { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -692,7 +688,7 @@ protected override Assembly CreateAssemblyImpl() #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ### CreateViewCore\(UIntPtr\) @@ -704,7 +700,7 @@ protected override View CreateViewCore(UIntPtr pView) #### Parameters -`pView` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pView` UIntPtr The view handle. @@ -722,7 +718,7 @@ public override void DrawCoordinate(double dIconSize) #### Parameters -`dIconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dIconSize` double ### FindCategory\(string\) @@ -734,13 +730,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string Type of the string. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetAllGears\(\) @@ -764,7 +760,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the string category. @@ -778,7 +774,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. @@ -804,7 +800,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenShaftSetFEDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenShaftSetFEDocument.md index 3f835fcbb1..c75d6ceca2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenShaftSetFEDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenShaftSetFEDocument.md @@ -1,4 +1,5 @@ -# Class HiddenShaftSetFEDocument +# Class HiddenShaftSetFEDocument + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,17 +12,17 @@ public class HiddenShaftSetFEDocument : HiddenDocumentFEBase, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← -HiddenDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← +[HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) ← [HiddenDocumentForGearTrain](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md) ← [HiddenDocumentMeshBase](VM.Managed.DAFUL.GearTrain.HiddenDocumentMeshBase.md) ← [HiddenDocumentFEBase](VM.Managed.DAFUL.GearTrain.HiddenDocumentFEBase.md) ← @@ -36,7 +37,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -75,113 +76,113 @@ IHiddenDocument, [HiddenDocumentForGearTrain.Find\(string\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_Find\_System\_String\_), [HiddenDocumentForGearTrain.CloseDocumentCore\(\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CloseDocumentCore), [HiddenDocumentForGearTrain.CheckActiveDocument\(Document3D, Document3D\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CheckActiveDocument\_VM\_Managed\_Document3D\_VM\_Managed\_Document3D\_), -HiddenDocument.m\_canvas, -HiddenDocument.ClearDocument\(\), -HiddenDocument.InitializeSimParam\(\), -HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -HiddenDocument.DrawCoordinate\(double\), -HiddenDocument.HideSubData\(string\), -HiddenDocument.DrawCoordinateCore\(VectorBase, double\), -HiddenDocument.CloseDocumentCore\(\), -HiddenDocument.SetData\(XmlNode\), -HiddenDocument.FindLocal\(string\), -HiddenDocument.TargetDesign, -HiddenDocument.TargetDocument, -HiddenDocument.RenderingMode, -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[HiddenDocument.m\_canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinate\(double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.HideSubData\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinateCore\(VectorBase, double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.CloseDocumentCore\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDesign](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.RenderingMode](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -276,8 +277,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -288,9 +287,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -304,12 +303,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -587,7 +583,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -618,7 +614,7 @@ public HiddenShaftSetFEDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -634,7 +630,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ## Methods @@ -648,13 +644,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string Type of the string. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### InitializeCategoryInfo\(string\) @@ -666,7 +662,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the string category. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenShaftSetMeshFreeDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenShaftSetMeshFreeDocument.md index 918834a6ec..e85bddb617 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenShaftSetMeshFreeDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenShaftSetMeshFreeDocument.md @@ -1,4 +1,5 @@ -# Class HiddenShaftSetMeshFreeDocument +# Class HiddenShaftSetMeshFreeDocument + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,17 +12,17 @@ public class HiddenShaftSetMeshFreeDocument : HiddenDocumentMeshFreeBase, IObser #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← -HiddenDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← +[HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) ← [HiddenDocumentForGearTrain](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md) ← [HiddenDocumentMeshBase](VM.Managed.DAFUL.GearTrain.HiddenDocumentMeshBase.md) ← [HiddenDocumentMeshFreeBase](VM.Managed.DAFUL.GearTrain.HiddenDocumentMeshFreeBase.md) ← @@ -36,7 +37,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -75,113 +76,113 @@ IHiddenDocument, [HiddenDocumentForGearTrain.Find\(string\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_Find\_System\_String\_), [HiddenDocumentForGearTrain.CloseDocumentCore\(\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CloseDocumentCore), [HiddenDocumentForGearTrain.CheckActiveDocument\(Document3D, Document3D\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CheckActiveDocument\_VM\_Managed\_Document3D\_VM\_Managed\_Document3D\_), -HiddenDocument.m\_canvas, -HiddenDocument.ClearDocument\(\), -HiddenDocument.InitializeSimParam\(\), -HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -HiddenDocument.DrawCoordinate\(double\), -HiddenDocument.HideSubData\(string\), -HiddenDocument.DrawCoordinateCore\(VectorBase, double\), -HiddenDocument.CloseDocumentCore\(\), -HiddenDocument.SetData\(XmlNode\), -HiddenDocument.FindLocal\(string\), -HiddenDocument.TargetDesign, -HiddenDocument.TargetDocument, -HiddenDocument.RenderingMode, -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[HiddenDocument.m\_canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinate\(double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.HideSubData\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinateCore\(VectorBase, double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.CloseDocumentCore\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDesign](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.RenderingMode](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -276,8 +277,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -288,9 +287,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -304,12 +303,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -587,7 +583,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -618,7 +614,7 @@ public HiddenShaftSetMeshFreeDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -634,7 +630,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ## Methods @@ -648,13 +644,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string Type of the string. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### InitializeCategoryInfo\(string\) @@ -666,7 +662,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the string category. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenSlidingBearingDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenSlidingBearingDocument.md index 2e6cb7b5a6..c988a936b0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenSlidingBearingDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HiddenSlidingBearingDocument.md @@ -1,4 +1,5 @@ -# Class HiddenSlidingBearingDocument +# Class HiddenSlidingBearingDocument + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,17 +12,17 @@ public class HiddenSlidingBearingDocument : HiddenBearingDocumentBase, IObservab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← HandledDocument ← Document3D ← -DocumentAnalysis ← -SubSystemDocument ← -HiddenDocument ← +[DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) ← +[SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) ← +[HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) ← [HiddenDocumentForGearTrain](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md) ← [HiddenBearingDocumentBase](VM.Managed.DAFUL.GearTrain.HiddenBearingDocumentBase.md) ← [HiddenSlidingBearingDocument](VM.Managed.DAFUL.GearTrain.HiddenSlidingBearingDocument.md) @@ -35,7 +36,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -62,113 +63,113 @@ IHiddenDocument [HiddenDocumentForGearTrain.Find\(string\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_Find\_System\_String\_), [HiddenDocumentForGearTrain.CloseDocumentCore\(\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CloseDocumentCore), [HiddenDocumentForGearTrain.CheckActiveDocument\(Document3D, Document3D\)](VM.Managed.DAFUL.GearTrain.HiddenDocumentForGearTrain.md\#VM\_Managed\_DAFUL\_GearTrain\_HiddenDocumentForGearTrain\_CheckActiveDocument\_VM\_Managed\_Document3D\_VM\_Managed\_Document3D\_), -HiddenDocument.m\_canvas, -HiddenDocument.ClearDocument\(\), -HiddenDocument.InitializeSimParam\(\), -HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -HiddenDocument.DrawCoordinate\(double\), -HiddenDocument.HideSubData\(string\), -HiddenDocument.DrawCoordinateCore\(VectorBase, double\), -HiddenDocument.CloseDocumentCore\(\), -HiddenDocument.SetData\(XmlNode\), -HiddenDocument.FindLocal\(string\), -HiddenDocument.TargetDesign, -HiddenDocument.TargetDocument, -HiddenDocument.RenderingMode, -SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -SubSystemDocument.OnDeserialization\(object\), -SubSystemDocument.InitializeSimParam\(\), -SubSystemDocument.CreateAssemblyImpl\(\), -SubSystemDocument.RenameEntityImpl\(string, ObjectBase\), -SubSystemDocument.RegisterAddon\(\), -SubSystemDocument.FindCategory\(string\), -SubSystemDocument.InitializeCategoryInfo\(string\), -SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\), -SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\), -SubSystemDocument.PossibleDifferentUnit\(out string\), -SubSystemDocument.InitializeInterface\(\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\), -SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader\), -SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\), -SubSystemDocument.HideObjectInReading\(\), -SubSystemDocument.SkipObjectInWriting\(ObjectBase\), -SubSystemDocument.CheckMassPropForCADImport\(\), -SubSystemDocument.ImportCADBody\(BuilderImport\[\]\), -SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\), -SubSystemDocument.GetCADBodyNameAttribute\(ref List\), -SubSystemDocument.GetImportCADBody\(\), -SubSystemDocument.ReAssemblyImpl\(ObjectBase\), -SubSystemDocument.ReInitInterfaceForAssembly\(\), -SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\), -SubSystemDocument.GetReferDocument\(ref List\), -SubSystemDocument.GetSimulationConfigurationType\(\), -SubSystemDocument.ClearDocument\(\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\), -SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\), -SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\), -SubSystemDocument.SkipDelete\(ObjectBase\), -SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\), -SubSystemDocument.FindBodyFromCADBody\(ObjectBase\), -SubSystemDocument.SkipShowHide\(ObjectBase\), -SubSystemDocument.WriteMessageForShowHide\(\), -SubSystemDocument.PostOpenDocument\(\), -SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\), -SubSystemDocument.InitialCategories, -SubSystemDocument.ApplyInitialVelocityImpl, -SubSystemDocument.InitialVelocityImpl, -SubSystemDocument.Interfaces, -SubSystemDocument.SkipBindInterfaceWhenOpen, -SubSystemDocument.TemplateXmlVersion, -SubSystemDocument.DocumentSessionOverride, -SubSystemDocument.SetDocumentSessionOverride, -SubSystemDocument.ChangeNewFilePath, -SubSystemDocument.ChangeOldFilePath, -SubSystemDocument.ChangeNewFilePaths, -SubSystemDocument.ChangeOldFilePaths, -DocumentAnalysis.m\_bSkipGravity, -DocumentAnalysis.RegisterAddon\(\), -DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\), -DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\), -DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\), -DocumentAnalysis.AddConfiguration\(Configuration\), -DocumentAnalysis.RemoveConfiguration\(Configuration\), -DocumentAnalysis.ClearConfiguration\(\), -DocumentAnalysis.GetDefaultMaterial\(\), -DocumentAnalysis.GetDefaultMaterial\(bool\), -DocumentAnalysis.IsExistDefaultMaterial\(\), -DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\), -DocumentAnalysis.GetBodyAndTransformation\(ref List\), -DocumentAnalysis.IsEnabledImpl\(ObjectBase\), -DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\), -DocumentAnalysis.SkipObjectInWriting\(ObjectBase\), -DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\), -DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\), -DocumentAnalysis.InitializeSimParam\(\), -DocumentAnalysis.GetData\(XmlNode\), -DocumentAnalysis.SetData\(XmlNode\), -DocumentAnalysis.PostOpenDocument\(\), -DocumentAnalysis.GetAllArgumentList\(\), -DocumentAnalysis.GetEntityRequest\(\), -DocumentAnalysis.GetSimulationConfigurationType\(\), -DocumentAnalysis.OnDeserialization\(object\), -DocumentAnalysis.CheckBeforeSave\(\), -DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\), -DocumentAnalysis.ClearDocument\(\), -DocumentAnalysis.ReAssemblyImpl\(ObjectBase\), -DocumentAnalysis.SkipDelete\(ObjectBase\), -DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\), -DocumentAnalysis.PostCloseDocument\(\), -DocumentAnalysis.Configurations, -DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations, -DocumentAnalysis.ActiveSimulationConfiguration, -DocumentAnalysis.Gravity, -DocumentAnalysis.UseIncrementTime, -DocumentAnalysis.IncrementTime, -DocumentAnalysis.IconSize, -DocumentAnalysis.SimulationScenarioTypeName, -DocumentAnalysis.UseToolkitSubsystem, +[HiddenDocument.m\_canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinate\(double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.HideSubData\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.DrawCoordinateCore\(VectorBase, double\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.CloseDocumentCore\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDesign](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.TargetDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[HiddenDocument.RenderingMode](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs), +[SubSystemDocument.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CreateAssemblyImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RenameEntityImpl\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindCategory\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeCategoryInfo\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleToImport\(SubSystemDocument, out string, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(SubSystemDocument, out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PossibleDifferentUnit\(out string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitializeInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SaveTemplateBasedXml\(XmlWriter, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.LoadTemplateBasedXml\(XmlReader, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.HideObjectInReading\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.CheckMassPropForCADImport\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ImportCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReplaceCADBody\(BuilderImport\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetCADBodyNameAttribute\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetImportCADBody\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReInitInterfaceForAssembly\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReference\(ObjectBase, ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetReferDocument\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetTransformationOfGlobal\(ObjectBase, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ReAssembleForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.GetRemovedConnectorForChangeAssembly\(ChangeAssemblyType, string, string, List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindObjectForSelection\(ObjectBase, Document3D.OperationTypeForSelection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.FindBodyFromCADBody\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipShowHide\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.WriteMessageForShowHide\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialCategories](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ApplyInitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.InitialVelocityImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.Interfaces](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SkipBindInterfaceWhenOpen](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.TemplateXmlVersion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeNewFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[SubSystemDocument.ChangeOldFilePaths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs), +[DocumentAnalysis.m\_bSkipGravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RegisterAddon\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsContainSimulationScenarioInMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetStateFromActiveSimulationScenarioMap\(Scenario\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetStateFromActiveSimulationScenarioMap\(Scenario, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.AddConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.RemoveConfiguration\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetDefaultMaterial\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsExistDefaultMaterial\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetBodyAndTransformation\(ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipObjectInWriting\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnPostMakeDocumentImpl\(DocCreateAnalysisInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.InitializeSimParam\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetAllArgumentList\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetEntityRequest\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.GetSimulationConfigurationType\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CheckBeforeSave\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ClearDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ReAssemblyImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SkipDelete\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostOpenDocumentAfterErrCheckEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.PostCloseDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Configurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.CountOfMFLinearStaticSimulationConfigurations](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.ActiveSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.Gravity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.IconSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.SimulationScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), +[DocumentAnalysis.UseToolkitSubsystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs), Document3D.RibbonGalleryIndex, Document3D.m\_lstAssem, Document3D.m\_bReload, @@ -263,8 +264,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -275,9 +274,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -291,12 +290,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -574,7 +570,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -605,7 +601,7 @@ public HiddenSlidingBearingDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -621,7 +617,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### SlidingBearing @@ -659,13 +655,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The fullname of type. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The category. @@ -679,7 +675,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the string category. @@ -693,7 +689,7 @@ protected override void RenameEntityImpl(string strOldName, ObjectBase namedObj) #### Parameters -`strOldName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOldName` string The old name. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.History.CloseHiddenDocumentEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.History.CloseHiddenDocumentEvent.md index 3975fe4177..a1e41213df 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.History.CloseHiddenDocumentEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.History.CloseHiddenDocumentEvent.md @@ -1,4 +1,5 @@ -# Class CloseHiddenDocumentEvent +# Class CloseHiddenDocumentEvent + Namespace: [VM.Managed.DAFUL.GearTrain.History](VM.Managed.DAFUL.GearTrain.History.md) Assembly: VMDGearTrain.dll @@ -11,8 +12,8 @@ public class CloseHiddenDocumentEvent : HiddenDocumentEventBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [HiddenDocumentEventBase](VM.Managed.DAFUL.GearTrain.History.HiddenDocumentEventBase.md) ← [CloseHiddenDocumentEvent](VM.Managed.DAFUL.GearTrain.History.CloseHiddenDocumentEvent.md) @@ -21,17 +22,17 @@ HistoryEvent ← [HiddenDocumentEventBase.Clear\(bool\)](VM.Managed.DAFUL.GearTrain.History.HiddenDocumentEventBase.md\#VM\_Managed\_DAFUL\_GearTrain\_History\_HiddenDocumentEventBase\_Clear\_System\_Boolean\_), [HiddenDocumentEventBase.Open\(\)](VM.Managed.DAFUL.GearTrain.History.HiddenDocumentEventBase.md\#VM\_Managed\_DAFUL\_GearTrain\_History\_HiddenDocumentEventBase\_Open), [HiddenDocumentEventBase.Close\(\)](VM.Managed.DAFUL.GearTrain.History.HiddenDocumentEventBase.md\#VM\_Managed\_DAFUL\_GearTrain\_History\_HiddenDocumentEventBase\_Close), -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -51,11 +52,11 @@ public CloseHiddenDocumentEvent(object obOriginal, string strFilePath) #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object The original object. -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string The file path. @@ -71,11 +72,11 @@ public static void CloseHiddenDocument(object obj, string strFilePath) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The object. -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string The file path. @@ -89,7 +90,7 @@ protected override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) The event argument for undo. @@ -103,7 +104,7 @@ protected override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) The event argument for undo. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.History.HiddenDocumentEventBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.History.HiddenDocumentEventBase.md index 104b890b13..2393aec0a8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.History.HiddenDocumentEventBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.History.HiddenDocumentEventBase.md @@ -1,4 +1,5 @@ -# Class HiddenDocumentEventBase +# Class HiddenDocumentEventBase + Namespace: [VM.Managed.DAFUL.GearTrain.History](VM.Managed.DAFUL.GearTrain.History.md) Assembly: VMDGearTrain.dll @@ -11,8 +12,8 @@ public abstract class HiddenDocumentEventBase : HistoryEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [HiddenDocumentEventBase](VM.Managed.DAFUL.GearTrain.History.HiddenDocumentEventBase.md) #### Derived @@ -22,17 +23,17 @@ HistoryEvent ← #### Inherited Members -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -52,11 +53,11 @@ public HiddenDocumentEventBase(object obOriginal, string strFilePath) #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object The original object. -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string The file path. @@ -72,7 +73,7 @@ protected override void Clear(bool bReserveReferenceCount) #### Parameters -`bReserveReferenceCount` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReserveReferenceCount` bool The event argument for clear. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.History.OpenHiddenDocumentEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.History.OpenHiddenDocumentEvent.md index c7c6249272..131713635a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.History.OpenHiddenDocumentEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.History.OpenHiddenDocumentEvent.md @@ -1,4 +1,5 @@ -# Class OpenHiddenDocumentEvent +# Class OpenHiddenDocumentEvent + Namespace: [VM.Managed.DAFUL.GearTrain.History](VM.Managed.DAFUL.GearTrain.History.md) Assembly: VMDGearTrain.dll @@ -11,8 +12,8 @@ public class OpenHiddenDocumentEvent : HiddenDocumentEventBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [HiddenDocumentEventBase](VM.Managed.DAFUL.GearTrain.History.HiddenDocumentEventBase.md) ← [OpenHiddenDocumentEvent](VM.Managed.DAFUL.GearTrain.History.OpenHiddenDocumentEvent.md) @@ -21,17 +22,17 @@ HistoryEvent ← [HiddenDocumentEventBase.Clear\(bool\)](VM.Managed.DAFUL.GearTrain.History.HiddenDocumentEventBase.md\#VM\_Managed\_DAFUL\_GearTrain\_History\_HiddenDocumentEventBase\_Clear\_System\_Boolean\_), [HiddenDocumentEventBase.Open\(\)](VM.Managed.DAFUL.GearTrain.History.HiddenDocumentEventBase.md\#VM\_Managed\_DAFUL\_GearTrain\_History\_HiddenDocumentEventBase\_Open), [HiddenDocumentEventBase.Close\(\)](VM.Managed.DAFUL.GearTrain.History.HiddenDocumentEventBase.md\#VM\_Managed\_DAFUL\_GearTrain\_History\_HiddenDocumentEventBase\_Close), -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -51,11 +52,11 @@ public OpenHiddenDocumentEvent(object obOriginal, string strFilePath) #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object The original object. -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string The file path. @@ -71,7 +72,7 @@ protected override void BeforeRedo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) The event argument for call this method. @@ -85,7 +86,7 @@ protected override void BeforeUndo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) The event argument for call this method. @@ -99,11 +100,11 @@ public static void OpenHiddenDocument(object obj, string strFilePath) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The object. -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string The file path. @@ -117,7 +118,7 @@ protected override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) The event argument for redo. @@ -131,7 +132,7 @@ protected override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) The event argument for undo. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.History.ReOpenHiddenDocEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.History.ReOpenHiddenDocEvent.md index 160e54d0a0..3c192da7d5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.History.ReOpenHiddenDocEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.History.ReOpenHiddenDocEvent.md @@ -1,4 +1,5 @@ -# Class ReOpenHiddenDocEvent +# Class ReOpenHiddenDocEvent + Namespace: [VM.Managed.DAFUL.GearTrain.History](VM.Managed.DAFUL.GearTrain.History.md) Assembly: VMDGearTrain.dll @@ -11,23 +12,23 @@ public class ReOpenHiddenDocEvent : HistoryEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [ReOpenHiddenDocEvent](VM.Managed.DAFUL.GearTrain.History.ReOpenHiddenDocEvent.md) #### Inherited Members -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -47,7 +48,7 @@ public ReOpenHiddenDocEvent(object obOriginal) #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object The original object. @@ -63,7 +64,7 @@ protected override void AfterRedo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) The event argument for call this method. @@ -77,7 +78,7 @@ protected override void AfterUndo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) The event argument for call this method. @@ -91,7 +92,7 @@ protected override void Clear(bool bReserveReferenceCount) #### Parameters -`bReserveReferenceCount` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReserveReferenceCount` bool The event argument for clear. @@ -105,7 +106,7 @@ public static void ReOpenHiddenDocument(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The object. @@ -119,7 +120,7 @@ protected override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) The event argument for redo. @@ -133,7 +134,7 @@ protected override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) The event argument for undo. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.History.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.History.md index 45acfe6297..6f84941328 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.History.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.History.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.GearTrain.History +# Namespace VM.Managed.DAFUL.GearTrain.History + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HousingBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HousingBase-1.md index 39f7df187e..bc41e4ce28 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HousingBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HousingBase-1.md @@ -1,4 +1,5 @@ -# Class HousingBase +# Class HousingBase + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -17,14 +18,14 @@ The type of the property. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [OpenDesignerBase](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md) ← [HousingBase](VM.Managed.DAFUL.GearTrain.HousingBase\-1.md) @@ -35,7 +36,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -86,34 +87,34 @@ IReportable [OpenDesignerBase.HasLayerExplicitly](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_HasLayerExplicitly), [OpenDesignerBase.Referencable](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Referencable), [OpenDesignerBase.Visible](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Visible), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -212,7 +213,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -251,7 +252,7 @@ public HousingBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -267,7 +268,7 @@ public InstanceContainer Body { get; set; } #### Property Value - InstanceContainer + [InstanceContainer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs) ### Layer @@ -315,7 +316,7 @@ public override string TypeFileName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeOfCreate @@ -359,7 +360,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -391,13 +392,13 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The ob unnamed. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The unnamed object name. @@ -411,7 +412,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -429,7 +430,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. @@ -447,7 +448,7 @@ protected override void MakeReferenceImpl(LinkedList lstRef) #### Parameters -`lstRef` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) +`lstRef` LinkedList The container. @@ -461,7 +462,7 @@ public override Document SetDataToDesignDoc(bool bRecord) #### Parameters -`bRecord` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bRecord` bool #### Returns diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HousingFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HousingFE.md index 2a336f0a8e..044c83f29f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HousingFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HousingFE.md @@ -1,4 +1,5 @@ -# Class HousingFE +# Class HousingFE + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,14 +12,14 @@ public class HousingFE : HousingBase, IObservableObject, IDis #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [OpenDesignerBase](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md) ← [HousingBase](VM.Managed.DAFUL.GearTrain.HousingBase\-1.md) ← [HousingFE](VM.Managed.DAFUL.GearTrain.HousingFE.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -95,34 +96,34 @@ IReportable [OpenDesignerBase.HasLayerExplicitly](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_HasLayerExplicitly), [OpenDesignerBase.Referencable](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Referencable), [OpenDesignerBase.Visible](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Visible), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -221,7 +222,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -260,7 +261,7 @@ public HousingFE(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -276,7 +277,7 @@ protected override string Extension { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeFileName @@ -288,7 +289,7 @@ public override string TypeFileName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeOfCreate @@ -326,7 +327,7 @@ public override Document SetDataToDesignDoc(bool bRecord) #### Parameters -`bRecord` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bRecord` bool #### Returns diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HousingMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HousingMeshFree.md index f5e6c2962c..fcf97d9d4a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HousingMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HousingMeshFree.md @@ -1,4 +1,5 @@ -# Class HousingMeshFree +# Class HousingMeshFree + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,14 +12,14 @@ public class HousingMeshFree : HousingBase, IObservable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [OpenDesignerBase](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md) ← [HousingBase](VM.Managed.DAFUL.GearTrain.HousingBase\-1.md) ← [HousingMeshFree](VM.Managed.DAFUL.GearTrain.HousingMeshFree.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -95,34 +96,34 @@ IReportable [OpenDesignerBase.HasLayerExplicitly](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_HasLayerExplicitly), [OpenDesignerBase.Referencable](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Referencable), [OpenDesignerBase.Visible](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Visible), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -221,7 +222,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -260,7 +261,7 @@ public HousingMeshFree(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -276,7 +277,7 @@ protected override string Extension { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TargetBody @@ -300,7 +301,7 @@ public override string TypeFileName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeOfCreate @@ -338,7 +339,7 @@ public override Document SetDataToDesignDoc(bool bRecord) #### Parameters -`bRecord` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bRecord` bool #### Returns diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HousingNodalBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HousingNodalBody.md index 3e4a0e1fc4..6d4d965702 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HousingNodalBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.HousingNodalBody.md @@ -1,4 +1,5 @@ -# Class HousingNodalBody +# Class HousingNodalBody + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,13 +12,13 @@ public class HousingNodalBody : NodalBody, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← -InstanceContainer ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← +[InstanceContainer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs) ← NodalBody ← [HousingNodalBody](VM.Managed.DAFUL.GearTrain.HousingNodalBody.md) @@ -28,7 +29,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -146,46 +147,47 @@ NodalBody.ChangedDocument, NodalBody.FilePath, NodalBody.ReferenceFrameType, NodalBody.ParentType, -InstanceContainer.InitInterfaceTable\(\), -InstanceContainer.LinkRequestUpdate\(object, LinkEventArgs\), -InstanceContainer.BindInterface\(\), -InstanceContainer.BindInterface\(ObjectBase, ObjectBase\), -InstanceContainer.BindInterface\(InstanceContainer.InterfaceTable\), -InstanceContainer.Find\(string\), -InstanceContainer.FindLocal\(string\), -InstanceContainer.GetNewEntityName\(string\), -InstanceContainer.GetNewEntityName\(string, bool, int\), -InstanceContainer.GetNewEntityName\(string, bool, int, int\), -InstanceContainer.GetUnnamedObjectName\(object\), -InstanceContainer.MakeReferenceImpl\(LinkedList\), -InstanceContainer.PostOpenDocumentAfterHookEvent\(\), -InstanceContainer.TransformImpl\(TMatrix\), -InstanceContainer.Redraw\(\), -InstanceContainer.GetLayerImpl\(\), -InstanceContainer.SetLayerImpl\(Layer\), -InstanceContainer.IsDestroyContainer\(\), -InstanceContainer.GetTargetListForUpdate\(\), -InstanceContainer.ProcessDuplicateReferenceImpl\(Reference\), -InstanceContainer.PostAddToDocument\(\), -InstanceContainer.LinkRequestDestroy\(object, LinkEventArgs\), -InstanceContainer.GetChildListImpl\(\), -InstanceContainer.OnDeserialization\(object\), -InstanceContainer.Instance, -InstanceContainer.InterfaceTableList, -InstanceContainer.InterfaceTables, -InstanceContainer.Layer, -InstanceContainer.IsVisible, -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +NodalBody.SupportSetMassImpl, +[InstanceContainer.InitInterfaceTable\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.BindInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.BindInterface\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.BindInterface\(InstanceContainer.InterfaceTable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.Find\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetNewEntityName\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetNewEntityName\(string, bool, int\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetNewEntityName\(string, bool, int, int\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.TransformImpl\(TMatrix\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.Redraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.IsDestroyContainer\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.ProcessDuplicateReferenceImpl\(Reference\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetChildListImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.Instance](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.InterfaceTableList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.InterfaceTables](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -278,7 +280,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -317,7 +319,7 @@ public HousingNodalBody(string strName, Instance instanceNodalBody) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -335,11 +337,11 @@ public HousingNodalBody(string strName, string strMeshFilePath, TransformBase tr #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. -`strMeshFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMeshFilePath` string The string mesh file path. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IBearing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IBearing.md index b7459ccc36..f3bc1ed66b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IBearing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IBearing.md @@ -1,4 +1,5 @@ -# Interface IBearing +# Interface IBearing + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -57,25 +58,25 @@ bool FillBearingData(Document doc, string InnerColor, string OuterColor, string The document -`InnerColor` [string](https://learn.microsoft.com/dotnet/api/system.string) +`InnerColor` string The inner color -`OuterColor` [string](https://learn.microsoft.com/dotnet/api/system.string) +`OuterColor` string The outer color -`strPropertyFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPropertyFilePath` string The property file path -`InputArray` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`InputArray` string\[\] The input array #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RemoveBuilder\(Builder\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IDimension.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IDimension.md index acbb37e27b..8ac63d2063 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IDimension.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IDimension.md @@ -1,4 +1,5 @@ -# Interface IDimension +# Interface IDimension + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -27,11 +28,11 @@ void GetLengthAndHeight(ref double dLength, ref double dHeight) #### Parameters -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double Length of the d. -`dHeight` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHeight` double Height of the d. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IGearSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IGearSet.md index 2c0d403f6b..700e2f2b00 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IGearSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IGearSet.md @@ -1,4 +1,5 @@ -# Interface IGearSet +# Interface IGearSet + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -27,7 +28,7 @@ bool AddToShaft { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GearBodies @@ -99,7 +100,7 @@ bool UseMeshing { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -153,49 +154,49 @@ bool FillGearData(Document doc, int nNGear, string strName, string[] CenterDista The document -`nNGear` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNGear` int The No. of gear -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The gear name -`CenterDistance` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`CenterDistance` string\[\] The gear center distance -`NumberOfTeeth` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`NumberOfTeeth` string\[\] The No. of teeth -`ProfileShift` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`ProfileShift` string\[\] The profile shift -`FaceWidth` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`FaceWidth` string\[\] The face width -`bUseKissSoftInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseKissSoftInterface` bool The kiss soft interface flag -`bUseAdvanced` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseAdvanced` bool The advanced flag -`Color` [string](https://learn.microsoft.com/dotnet/api/system.string) +`Color` string The color -`InputArray` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`InputArray` string\[\] The input array for create #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetBodyFromGeometryInfo\(GeometryInfoBase\) @@ -225,13 +226,13 @@ bool Meshing(List lstGB) #### Parameters -`lstGB` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> +`lstGB` List<[IGearBuilder](VM.Managed.DAFUL.GearTrain.CAD.IGearBuilder.md)\> The gear builder list. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RemoveBuilder\(Builder\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IHasComponent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IHasComponent.md index fddecb642e..f2456da1a6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IHasComponent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IHasComponent.md @@ -1,4 +1,5 @@ -# Interface IHasComponent +# Interface IHasComponent + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IHasGeometryInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IHasGeometryInfo.md index de5ab34d73..b9998f6880 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IHasGeometryInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IHasGeometryInfo.md @@ -1,4 +1,5 @@ -# Interface IHasGeometryInfo +# Interface IHasGeometryInfo + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IHasPowerLoad.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IHasPowerLoad.md index 062ff3d9ea..d43ac77c27 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IHasPowerLoad.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IHasPowerLoad.md @@ -1,4 +1,5 @@ -# Interface IHasPowerLoad +# Interface IHasPowerLoad + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IHousing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IHousing.md index c1f18ef9b4..4423d9b118 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IHousing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IHousing.md @@ -1,4 +1,5 @@ -# Interface IHousing +# Interface IHousing + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IMeshEntity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IMeshEntity.md index ac415f1a13..7c9b1af204 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IMeshEntity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IMeshEntity.md @@ -1,4 +1,5 @@ -# Interface IMeshEntity +# Interface IMeshEntity + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -27,7 +28,7 @@ InstanceContainer Body { get; set; } #### Property Value - InstanceContainer + [InstanceContainer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs) ### PropertyOfEntity @@ -39,7 +40,7 @@ Property PropertyOfEntity { get; } #### Property Value - Property + [Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ### Transformation diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IOpenDesignerForGearTrain.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IOpenDesignerForGearTrain.md index eb6ad93796..a055beacfe 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IOpenDesignerForGearTrain.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IOpenDesignerForGearTrain.md @@ -1,4 +1,5 @@ -# Interface IOpenDesignerForGearTrain +# Interface IOpenDesignerForGearTrain + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IPointEntity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IPointEntity.md index e3dfa84072..a0914e63f4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IPointEntity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IPointEntity.md @@ -1,4 +1,5 @@ -# Interface IPointEntity +# Interface IPointEntity + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IPointLoad.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IPointLoad.md index 769d6061c3..f4a1205032 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IPointLoad.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IPointLoad.md @@ -1,4 +1,5 @@ -# Interface IPointLoad +# Interface IPointLoad + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -43,7 +44,7 @@ ExpressionValueVariable ForceX { get; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ForceY @@ -55,7 +56,7 @@ ExpressionValueVariable ForceY { get; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ForceZ @@ -67,7 +68,7 @@ ExpressionValueVariable ForceZ { get; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TorqueX @@ -79,7 +80,7 @@ ExpressionValueVariable TorqueX { get; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TorqueY @@ -91,5 +92,5 @@ ExpressionValueVariable TorqueY { get; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IPowerLoad.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IPowerLoad.md index f3a25651f5..304a3afa54 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IPowerLoad.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IPowerLoad.md @@ -1,4 +1,5 @@ -# Interface IPowerLoad +# Interface IPowerLoad + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IPseudoEntityOnRBE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IPseudoEntityOnRBE.md index 6f2db53f4d..741ac2c1a0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IPseudoEntityOnRBE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IPseudoEntityOnRBE.md @@ -1,4 +1,5 @@ -# Interface IPseudoEntityOnRBE +# Interface IPseudoEntityOnRBE + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IPseudoEntityOnShaftSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IPseudoEntityOnShaftSet.md index 6834157fd7..2e69789fbd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IPseudoEntityOnShaftSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IPseudoEntityOnShaftSet.md @@ -1,4 +1,5 @@ -# Interface IPseudoEntityOnShaftSet +# Interface IPseudoEntityOnShaftSet + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IShaftSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IShaftSet.md index 4389fdf29f..9a72b3ad2a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IShaftSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IShaftSet.md @@ -1,4 +1,5 @@ -# Interface IShaftSet +# Interface IShaftSet + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -43,5 +44,5 @@ double TotalSectionLength { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IUnbalanceMass.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IUnbalanceMass.md index f4bae59715..1188cb3272 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IUnbalanceMass.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.IUnbalanceMass.md @@ -1,4 +1,5 @@ -# Interface IUnbalanceMass +# Interface IUnbalanceMass + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -43,7 +44,7 @@ ExpressionValueVariable Mass { get; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MomentArm @@ -55,5 +56,5 @@ ExpressionValueVariable MomentArm { get; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.InputShaftSetInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.InputShaftSetInfo.md index 5749643cf1..c06c0d7859 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.InputShaftSetInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.InputShaftSetInfo.md @@ -1,4 +1,5 @@ -# Class InputShaftSetInfo +# Class InputShaftSetInfo + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class InputShaftSetInfo : LinkContainer, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [InputShaftSetInfo](VM.Managed.DAFUL.GearTrain.InputShaftSetInfo.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -128,7 +129,7 @@ public bool IsCW { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsExternable @@ -140,7 +141,7 @@ public override bool IsExternable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### \_InputShaftSet diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.KissSoftInterface.GearData.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.KissSoftInterface.GearData.md index 55266045da..a75f6cd678 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.KissSoftInterface.GearData.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.KissSoftInterface.GearData.md @@ -1,4 +1,5 @@ -# Class KissSoftInterface.GearData +# Class KissSoftInterface.GearData + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,7 +12,7 @@ public class KissSoftInterface.GearData #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [KissSoftInterface.GearData](VM.Managed.DAFUL.GearTrain.KissSoftInterface.GearData.md) #### Extension Methods @@ -42,7 +43,7 @@ public double AddendumCoefficient { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### BaseDiameter @@ -54,7 +55,7 @@ public double BaseDiameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DedendumCoefficient @@ -66,7 +67,7 @@ public double DedendumCoefficient { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Density @@ -78,7 +79,7 @@ public double Density { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### FaceWidth @@ -90,7 +91,7 @@ public double FaceWidth { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GeneratingProfileShiftCoefficient @@ -102,7 +103,7 @@ public double GeneratingProfileShiftCoefficient { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### HelixAngleAtReferenceCircle @@ -114,7 +115,7 @@ public double HelixAngleAtReferenceCircle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### HelixAngleAtReferenceCircleAsDegree @@ -126,7 +127,7 @@ public double HelixAngleAtReferenceCircleAsDegree { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### LeftPosition @@ -162,7 +163,7 @@ public uint NumberOfGearTooth { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### OperatingPitchDiameter @@ -174,7 +175,7 @@ public double OperatingPitchDiameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### PoissonsRatio @@ -186,7 +187,7 @@ public double PoissonsRatio { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ProfileShiftCoefficient @@ -198,7 +199,7 @@ public double ProfileShiftCoefficient { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ReferenceDiameter @@ -210,7 +211,7 @@ public double ReferenceDiameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RightPosition @@ -234,7 +235,7 @@ public double RootDiameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TipDiameter @@ -246,7 +247,7 @@ public double TipDiameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TypeOfGearHelicalDirection @@ -270,5 +271,5 @@ public double YoungsModulus { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.KissSoftInterface.GearHelicalDirectionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.KissSoftInterface.GearHelicalDirectionType.md index fe2a878ffd..a7f489cba5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.KissSoftInterface.GearHelicalDirectionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.KissSoftInterface.GearHelicalDirectionType.md @@ -1,4 +1,5 @@ -# Enum KissSoftInterface.GearHelicalDirectionType +# Enum KissSoftInterface.GearHelicalDirectionType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.KissSoftInterface.GearHelicalPairType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.KissSoftInterface.GearHelicalPairType.md index 348beda223..da2657b25e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.KissSoftInterface.GearHelicalPairType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.KissSoftInterface.GearHelicalPairType.md @@ -1,4 +1,5 @@ -# Enum KissSoftInterface.GearHelicalPairType +# Enum KissSoftInterface.GearHelicalPairType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.KissSoftInterface.GearType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.KissSoftInterface.GearType.md index bb10586c7f..ffa4d1b315 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.KissSoftInterface.GearType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.KissSoftInterface.GearType.md @@ -1,4 +1,5 @@ -# Enum KissSoftInterface.GearType +# Enum KissSoftInterface.GearType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.KissSoftInterface.InputData.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.KissSoftInterface.InputData.md index bc3f5aa71d..b3d4680bbf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.KissSoftInterface.InputData.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.KissSoftInterface.InputData.md @@ -1,4 +1,5 @@ -# Struct KissSoftInterface.InputData +# Struct KissSoftInterface.InputData + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -21,19 +22,19 @@ public InputData(string strFilePath, uint nNumberOfTrochoid, uint nNumberOfInvol #### Parameters -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string The file path -`nNumberOfTrochoid` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNumberOfTrochoid` uint The No. of trochoid -`nNumberOfInvolute` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNumberOfInvolute` uint The No. of involute -`nNumberOfSlice` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNumberOfSlice` uint The No. of slice @@ -49,7 +50,7 @@ public string FilePath { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GeneralInputData @@ -61,7 +62,7 @@ public double[] GeneralInputData { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### NumberOfInvolute @@ -73,7 +74,7 @@ public uint NumberOfInvolute { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### NumberOfSlice @@ -85,7 +86,7 @@ public uint NumberOfSlice { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### NumberOfTrochoid @@ -97,7 +98,7 @@ public uint NumberOfTrochoid { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### PreInputData @@ -109,5 +110,5 @@ public double[] PreInputData { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.KissSoftInterface.OutputData.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.KissSoftInterface.OutputData.md index 90c3789f2a..d5e2d43f9d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.KissSoftInterface.OutputData.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.KissSoftInterface.OutputData.md @@ -1,4 +1,5 @@ -# Class KissSoftInterface.OutputData +# Class KissSoftInterface.OutputData + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,7 +12,7 @@ public class KissSoftInterface.OutputData #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [KissSoftInterface.OutputData](VM.Managed.DAFUL.GearTrain.KissSoftInterface.OutputData.md) #### Extension Methods @@ -40,19 +41,19 @@ public OutputData(string strFilePath, uint nNumberOfTrochoid, uint nNumberOfInvo #### Parameters -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string The file path -`nNumberOfTrochoid` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNumberOfTrochoid` uint The number of trochoid -`nNumberOfInvolute` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNumberOfInvolute` uint The number of involute -`nNumberOfSlice` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNumberOfSlice` uint The number of slice @@ -68,7 +69,7 @@ public double AxialCrossingAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### CenterDistancePair1 @@ -80,7 +81,7 @@ public double CenterDistancePair1 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### CenterDistancePair2 @@ -92,7 +93,7 @@ public double CenterDistancePair2 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### CenterDistancePair3 @@ -104,7 +105,7 @@ public double CenterDistancePair3 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### FilePath @@ -116,7 +117,7 @@ public string FilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GearDataList @@ -140,7 +141,7 @@ public double NormalModule { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NormalPressureAngle @@ -152,7 +153,7 @@ public double NormalPressureAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NumberOfGear @@ -164,7 +165,7 @@ public uint NumberOfGear { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### NumberOfInvolute @@ -176,7 +177,7 @@ public uint NumberOfInvolute { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### NumberOfPlaneraryGear @@ -188,7 +189,7 @@ public uint NumberOfPlaneraryGear { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### NumberOfSlice @@ -200,7 +201,7 @@ public uint NumberOfSlice { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### NumberOfTrochoid @@ -212,7 +213,7 @@ public uint NumberOfTrochoid { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### TypeOfGear diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.KissSoftInterface.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.KissSoftInterface.md index 89cb7d15ab..8a62b94589 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.KissSoftInterface.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.KissSoftInterface.md @@ -1,4 +1,5 @@ -# Class KissSoftInterface +# Class KissSoftInterface + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,7 +12,7 @@ public class KissSoftInterface #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [KissSoftInterface](VM.Managed.DAFUL.GearTrain.KissSoftInterface.md) #### Extension Methods @@ -62,7 +63,7 @@ The document The input data -`bIsInternal` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bIsInternal` bool The internal flag @@ -72,5 +73,5 @@ The output data #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.LeftRightValue.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.LeftRightValue.md index b6c4fae694..8a77dd17ef 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.LeftRightValue.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.LeftRightValue.md @@ -1,4 +1,5 @@ -# Class LeftRightValue +# Class LeftRightValue + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class LeftRightValue : LinkContainer, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [LeftRightValue](VM.Managed.DAFUL.GearTrain.LeftRightValue.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -114,11 +115,11 @@ public LeftRightValue(string strFirstValue, string strSecondValue) #### Parameters -`strFirstValue` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFirstValue` string The string first value. -`strSecondValue` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSecondValue` string The string second value. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Material.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Material.md index 45c5d71a96..839dbc361b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Material.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Material.md @@ -1,4 +1,5 @@ -# Class Material +# Class Material + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class Material : GearPropertyBase, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [GearPropertyBase](VM.Managed.DAFUL.GearTrain.GearPropertyBase.md) ← [Material](VM.Managed.DAFUL.GearTrain.Material.md) @@ -77,7 +78,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -118,7 +119,7 @@ public string[] MaterialNames { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### Materials @@ -168,7 +169,7 @@ public void InitChild(int nNum, Unit.ConvertFactor factor, PropertyGearSetBase p #### Parameters -`nNum` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNum` int The n number. @@ -190,7 +191,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MatrixLib.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MatrixLib.md index 92e09caa9b..7b9cda7d28 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MatrixLib.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MatrixLib.md @@ -1,4 +1,5 @@ -# Class MatrixLib +# Class MatrixLib + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -9,7 +10,7 @@ public class MatrixLib #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [MatrixLib](VM.Managed.DAFUL.GearTrain.MatrixLib.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MeasurePoint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MeasurePoint.md index c032c68d10..0a0dd55c0b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MeasurePoint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MeasurePoint.md @@ -1,4 +1,5 @@ -# Class MeasurePoint +# Class MeasurePoint + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,12 +12,12 @@ public class MeasurePoint : PointEntityOnShaftSet, IObservableObject, IDisposabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [PointEntityOnShaftSet](VM.Managed.DAFUL.GearTrain.PointEntityOnShaftSet.md) ← [MeasurePoint](VM.Managed.DAFUL.GearTrain.MeasurePoint.md) @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -55,17 +56,17 @@ INavigatorItem [PointEntityOnShaftSet.Position](VM.Managed.DAFUL.GearTrain.PointEntityOnShaftSet.md\#VM\_Managed\_DAFUL\_GearTrain\_PointEntityOnShaftSet\_Position), [PointEntityOnShaftSet.OffsetToAxisDirection](VM.Managed.DAFUL.GearTrain.PointEntityOnShaftSet.md\#VM\_Managed\_DAFUL\_GearTrain\_PointEntityOnShaftSet\_OffsetToAxisDirection), [PointEntityOnShaftSet.Width](VM.Managed.DAFUL.GearTrain.PointEntityOnShaftSet.md\#VM\_Managed\_DAFUL\_GearTrain\_PointEntityOnShaftSet\_Width), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -158,7 +159,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -197,7 +198,7 @@ public MeasurePoint(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the sub entity. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Modification.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Modification.md index b381bf4109..b91636ad09 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Modification.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Modification.md @@ -1,4 +1,5 @@ -# Class Modification +# Class Modification + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class Modification : GearPropertyBase, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [GearPropertyBase](VM.Managed.DAFUL.GearTrain.GearPropertyBase.md) ← [Modification](VM.Managed.DAFUL.GearTrain.Modification.md) @@ -77,7 +78,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -274,7 +275,7 @@ public bool UseCalculateValue { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ZPoint @@ -300,7 +301,7 @@ public override void InitChild(int nNum) #### Parameters -`nNum` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNum` int The n number. @@ -314,7 +315,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorBaseBuiler.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorBaseBuiler.md index d2e7fae0d5..8782d1c1a3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorBaseBuiler.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorBaseBuiler.md @@ -1,4 +1,5 @@ -# Class MotorBaseBuiler +# Class MotorBaseBuiler + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll The rotor builder in motor ```csharp -public abstract class MotorBaseBuiler : BuilderColorGeom, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public abstract class MotorBaseBuiler : BuilderColorGeom, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -41,8 +42,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, -IAttributeContainer +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +IAttributeContainer, +IHasReplaceableEntity #### Inherited Members @@ -75,6 +77,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -178,7 +182,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -217,7 +221,7 @@ public double Depth { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RotateAxis @@ -251,5 +255,5 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.CreationBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.CreationBase.md index 27d0e6c41a..c248d9e6ac 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.CreationBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.CreationBase.md @@ -1,4 +1,5 @@ -# Class MotorDesigner.CreationBase +# Class MotorDesigner.CreationBase + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,19 +12,19 @@ public abstract class MotorDesigner.CreationBase : LinkContainer, IObservableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MotorDesigner.CreationBase](VM.Managed.DAFUL.GearTrain.MotorDesigner.CreationBase.md) #### Derived [MotorDesigner.StatorSection.CADImportCreation](VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.CADImportCreation.md), -[MotorDesigner.StatorSection.MaxwellCreation](VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.MaxwellCreation.md), [MotorDesigner.RotorSection.MaxwellCreation](VM.Managed.DAFUL.GearTrain.MotorDesigner.RotorSection.MaxwellCreation.md), -[MotorDesigner.RotorSection.UserDefinedCreation](VM.Managed.DAFUL.GearTrain.MotorDesigner.RotorSection.UserDefinedCreation.md), -[MotorDesigner.StatorSection.UserDefinedCreation](VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.UserDefinedCreation.md) +[MotorDesigner.StatorSection.MaxwellCreation](VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.MaxwellCreation.md), +[MotorDesigner.StatorSection.UserDefinedCreation](VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.UserDefinedCreation.md), +[MotorDesigner.RotorSection.UserDefinedCreation](VM.Managed.DAFUL.GearTrain.MotorDesigner.RotorSection.UserDefinedCreation.md) #### Implements @@ -83,7 +84,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -124,7 +125,7 @@ public ExpressionValueVariable Depth { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Material @@ -148,7 +149,7 @@ public ExpressionValueVariable RotateAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TypeOfGeometryCreation @@ -200,7 +201,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.Harmonic.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.Harmonic.md index 7df5269fe2..1f8e7c63ac 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.Harmonic.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.Harmonic.md @@ -1,4 +1,5 @@ -# Class MotorDesigner.EMForceSection.Harmonic +# Class MotorDesigner.EMForceSection.Harmonic + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class MotorDesigner.EMForceSection.Harmonic : LinkContainer, IObservableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MotorDesigner.EMForceSection.Harmonic](VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.Harmonic.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,7 +117,7 @@ public ExpressionValueVariable Order { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ScaleFactor @@ -128,7 +129,7 @@ public ExpressionValueVariable ScaleFactor { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.MaxwellFileMethod.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.MaxwellFileMethod.md index f058a61ddd..c66c3312e4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.MaxwellFileMethod.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.MaxwellFileMethod.md @@ -1,4 +1,5 @@ -# Class MotorDesigner.EMForceSection.MaxwellFileMethod +# Class MotorDesigner.EMForceSection.MaxwellFileMethod + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class MotorDesigner.EMForceSection.MaxwellFileMethod : MotorDesigner.EMFo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MotorDesigner.EMForceSection.MethodBase](VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.MethodBase.md) ← [MotorDesigner.EMForceSection.MaxwellFileMethod](VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.MaxwellFileMethod.md) @@ -81,7 +82,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -122,7 +123,7 @@ public ExpressionValueVariable InitialPositionAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Marker @@ -134,7 +135,7 @@ public Marker Marker { get; set; } #### Property Value - Marker + [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) ### ResultFile @@ -146,7 +147,7 @@ public string ResultFile { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RotorVectorSet @@ -182,7 +183,7 @@ public StringValue String { get; set; } #### Property Value - StringValue + [StringValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSP/StringValue.cs) ### TypeOfGeometryCreation @@ -208,13 +209,13 @@ protected override bool CanBeDestroy(object objNotifier) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The destroy object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Initialize\(ConvertFactor\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.MethodBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.MethodBase.md index ab081d63d5..09cdaecb11 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.MethodBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.MethodBase.md @@ -1,4 +1,5 @@ -# Class MotorDesigner.EMForceSection.MethodBase +# Class MotorDesigner.EMForceSection.MethodBase + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public abstract class MotorDesigner.EMForceSection.MethodBase : LinkContainer, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MotorDesigner.EMForceSection.MethodBase](VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.MethodBase.md) @@ -80,7 +81,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -121,7 +122,7 @@ public Spline RadialSpline { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### Scale @@ -145,7 +146,7 @@ public Spline TangentialSpline { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### TypeOfGeometryCreation diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.UserDefinedMethod.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.UserDefinedMethod.md index deb4e29979..aa46c8c014 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.UserDefinedMethod.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.UserDefinedMethod.md @@ -1,4 +1,5 @@ -# Class MotorDesigner.EMForceSection.UserDefinedMethod +# Class MotorDesigner.EMForceSection.UserDefinedMethod + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class MotorDesigner.EMForceSection.UserDefinedMethod : MotorDesigner.EMFo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MotorDesigner.EMForceSection.MethodBase](VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.MethodBase.md) ← [MotorDesigner.EMForceSection.UserDefinedMethod](VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.UserDefinedMethod.md) @@ -81,7 +82,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -134,7 +135,7 @@ public ExpressionValueVariable NumberOfMagnetPole { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### NumberOfPhase @@ -146,7 +147,7 @@ public ExpressionValueVariable NumberOfPhase { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RotorVectorSet @@ -182,7 +183,7 @@ public Spline TNCurveSpline { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### TNCurveValue @@ -194,7 +195,7 @@ public SplineValue TNCurveValue { get; set; } #### Property Value - SplineValue + [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### TypeOfGeometryCreation @@ -220,13 +221,13 @@ protected override bool CanBeDestroy(object objNotifier) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The destroy object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Initialize\(ConvertFactor\) @@ -252,7 +253,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.VectorCreator.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.VectorCreator.md index 9c38c86b81..812c490332 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.VectorCreator.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.VectorCreator.md @@ -1,4 +1,5 @@ -# Class MotorDesigner.EMForceSection.VectorCreator +# Class MotorDesigner.EMForceSection.VectorCreator + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class MotorDesigner.EMForceSection.VectorCreator : LinkContainer, IObserv #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MotorDesigner.EMForceSection.VectorCreator](VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.VectorCreator.md) @@ -79,7 +80,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -118,11 +119,11 @@ public VectorCreator(Vector vector, UserSubroutine usub) #### Parameters -`vector` Vector +`vector` [Vector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFP/Vector.cs) The vector. -`usub` UserSubroutine +`usub` [UserSubroutine](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSP/UserSubroutine.cs) The usub. @@ -138,7 +139,7 @@ public UserSubroutine UserSubroutine { get; set; } #### Property Value - UserSubroutine + [UserSubroutine](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSP/UserSubroutine.cs) ### Vector @@ -150,7 +151,7 @@ public Vector Vector { get; set; } #### Property Value - Vector + [Vector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFP/Vector.cs) ## Methods @@ -184,7 +185,7 @@ public virtual bool IsExistAll() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LinkRequestDestroying\(object, LinkEventArgs\) @@ -196,7 +197,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.VectorUserDefinedCreator.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.VectorUserDefinedCreator.md index 058a4fec29..2fb0795cf1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.VectorUserDefinedCreator.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.VectorUserDefinedCreator.md @@ -1,4 +1,5 @@ -# Class MotorDesigner.EMForceSection.VectorUserDefinedCreator +# Class MotorDesigner.EMForceSection.VectorUserDefinedCreator + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class MotorDesigner.EMForceSection.VectorUserDefinedCreator : MotorDesign #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MotorDesigner.EMForceSection.VectorCreator](VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.VectorCreator.md) ← [MotorDesigner.EMForceSection.VectorUserDefinedCreator](VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.VectorUserDefinedCreator.md) @@ -82,7 +83,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -121,15 +122,15 @@ public VectorUserDefinedCreator(Vector vector, UserSubroutine usub, Array array) #### Parameters -`vector` Vector +`vector` [Vector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFP/Vector.cs) The vector. -`usub` UserSubroutine +`usub` [UserSubroutine](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSP/UserSubroutine.cs) The usub. -`array` Array +`array` [Array](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSP/Array.cs) The array. @@ -145,7 +146,7 @@ public Array Array { get; set; } #### Property Value - Array + [Array](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSP/Array.cs) ## Methods @@ -179,7 +180,7 @@ public override bool IsExistAll() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LinkRequestDestroying\(object, LinkEventArgs\) @@ -191,7 +192,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.md index 74aedb6ebb..a419669023 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.md @@ -1,4 +1,5 @@ -# Class MotorDesigner.EMForceSection +# Class MotorDesigner.EMForceSection + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class MotorDesigner.EMForceSection : LinkContainer, IObservableObject, ID #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MotorDesigner.EMForceSection](VM.Managed.DAFUL.GearTrain.MotorDesigner.EMForceSection.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.GeometryCreationType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.GeometryCreationType.md index ba1b4a97d4..168219bfab 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.GeometryCreationType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.GeometryCreationType.md @@ -1,4 +1,5 @@ -# Enum MotorDesigner.GeometryCreationType +# Enum MotorDesigner.GeometryCreationType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.HousingSection.Rib.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.HousingSection.Rib.md index 1b62c4da03..21d168edbf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.HousingSection.Rib.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.HousingSection.Rib.md @@ -1,4 +1,5 @@ -# Enum MotorDesigner.HousingSection.Rib +# Enum MotorDesigner.HousingSection.Rib + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.HousingSection.StatorMountingDirection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.HousingSection.StatorMountingDirection.md index 5eadd995ce..6c62c6a479 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.HousingSection.StatorMountingDirection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.HousingSection.StatorMountingDirection.md @@ -1,4 +1,5 @@ -# Enum MotorDesigner.HousingSection.StatorMountingDirection +# Enum MotorDesigner.HousingSection.StatorMountingDirection + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.HousingSection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.HousingSection.md index e3e311ef0c..0b9bceab32 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.HousingSection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.HousingSection.md @@ -1,4 +1,5 @@ -# Class MotorDesigner.HousingSection +# Class MotorDesigner.HousingSection + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class MotorDesigner.HousingSection : LinkContainer, IObservableObject, ID #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MotorDesigner.HousingSection](VM.Managed.DAFUL.GearTrain.MotorDesigner.HousingSection.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -128,7 +129,7 @@ public ExpressionValueVariable Hr { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### LengthSet @@ -152,7 +153,7 @@ public ExpressionValueVariable MTGBoltDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Material @@ -188,7 +189,7 @@ public ExpressionValueVariable NumberOfMountingBolt { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### NumberOfRib @@ -200,7 +201,7 @@ public ExpressionValueVariable NumberOfRib { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RibType @@ -260,7 +261,7 @@ public Tie TieContact { get; set; } #### Property Value - Tie + [Tie](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/Tie.cs) ### Wr @@ -272,7 +273,7 @@ public ExpressionValueVariable Wr { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### \_Material @@ -414,7 +415,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.HousingType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.HousingType.md index 168bd0f7f7..9a2c5a97a2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.HousingType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.HousingType.md @@ -1,4 +1,5 @@ -# Enum MotorDesigner.HousingType +# Enum MotorDesigner.HousingType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.MeasuringPointSection.MeasuringInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.MeasuringPointSection.MeasuringInfo.md index 72773418a9..3a7a286e63 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.MeasuringPointSection.MeasuringInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.MeasuringPointSection.MeasuringInfo.md @@ -1,4 +1,5 @@ -# Class MotorDesigner.MeasuringPointSection.MeasuringInfo +# Class MotorDesigner.MeasuringPointSection.MeasuringInfo + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class MotorDesigner.MeasuringPointSection.MeasuringInfo : LinkContainer, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MotorDesigner.MeasuringPointSection.MeasuringInfo](VM.Managed.DAFUL.GearTrain.MotorDesigner.MeasuringPointSection.MeasuringInfo.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,7 +117,7 @@ public SolidBody DummyBody { get; set; } #### Property Value - SolidBody + [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ### Fixed @@ -152,7 +153,7 @@ public bool Use { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.MeasuringPointSection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.MeasuringPointSection.md index 108010da3b..2f2b64ae09 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.MeasuringPointSection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.MeasuringPointSection.md @@ -1,4 +1,5 @@ -# Class MotorDesigner.MeasuringPointSection +# Class MotorDesigner.MeasuringPointSection + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class MotorDesigner.MeasuringPointSection : LinkContainer, IObservableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MotorDesigner.MeasuringPointSection](VM.Managed.DAFUL.GearTrain.MotorDesigner.MeasuringPointSection.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -128,7 +129,7 @@ public ExpressionValueVariable RadiusOfRBECircle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RearCoverCenter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.RBECreator.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.RBECreator.md index e2d99d1319..c1e2e7b448 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.RBECreator.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.RBECreator.md @@ -1,4 +1,5 @@ -# Class MotorDesigner.RBECreator +# Class MotorDesigner.RBECreator + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class MotorDesigner.RBECreator : LinkContainer, IObservableObject, IDispo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MotorDesigner.RBECreator](VM.Managed.DAFUL.GearTrain.MotorDesigner.RBECreator.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -204,5 +205,5 @@ public bool IsExistAll() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.RotorSection.MaxwellCreation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.RotorSection.MaxwellCreation.md index 35fda9943c..819fa86968 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.RotorSection.MaxwellCreation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.RotorSection.MaxwellCreation.md @@ -1,4 +1,5 @@ -# Class MotorDesigner.RotorSection.MaxwellCreation +# Class MotorDesigner.RotorSection.MaxwellCreation + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class MotorDesigner.RotorSection.MaxwellCreation : MotorDesigner.Creation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MotorDesigner.CreationBase](VM.Managed.DAFUL.GearTrain.MotorDesigner.CreationBase.md) ← [MotorDesigner.RotorSection.MaxwellCreation](VM.Managed.DAFUL.GearTrain.MotorDesigner.RotorSection.MaxwellCreation.md) @@ -83,7 +84,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -124,7 +125,7 @@ public string FilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeOfGeometryCreation diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.RotorSection.UserDefinedCreation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.RotorSection.UserDefinedCreation.md index d79e3ab6f7..35ed6fb81c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.RotorSection.UserDefinedCreation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.RotorSection.UserDefinedCreation.md @@ -1,4 +1,5 @@ -# Class MotorDesigner.RotorSection.UserDefinedCreation +# Class MotorDesigner.RotorSection.UserDefinedCreation + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class MotorDesigner.RotorSection.UserDefinedCreation : MotorDesigner.Crea #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MotorDesigner.CreationBase](VM.Managed.DAFUL.GearTrain.MotorDesigner.CreationBase.md) ← [MotorDesigner.RotorSection.UserDefinedCreation](VM.Managed.DAFUL.GearTrain.MotorDesigner.RotorSection.UserDefinedCreation.md) @@ -83,7 +84,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -124,7 +125,7 @@ public ExpressionValueVariable InnerDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### OuterDiameter @@ -136,7 +137,7 @@ public ExpressionValueVariable OuterDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TypeOfGeometryCreation diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.RotorSection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.RotorSection.md index aec7e7a02a..f02c90fbd3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.RotorSection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.RotorSection.md @@ -1,4 +1,5 @@ -# Class MotorDesigner.RotorSection +# Class MotorDesigner.RotorSection + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class MotorDesigner.RotorSection : LinkContainer, IObservableObject, IDis #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MotorDesigner.RotorSection](VM.Managed.DAFUL.GearTrain.MotorDesigner.RotorSection.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,7 +117,7 @@ public SolidBody DummyBody { get; set; } #### Property Value - SolidBody + [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ### GeometryCreation @@ -166,13 +167,13 @@ protected override bool CanBeDestroy(object objNotifier) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The destroy object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ChangeGeometryCreation\(GeometryCreationType\) @@ -230,7 +231,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorMountingType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorMountingType.md index 149938880e..70442ef7a6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorMountingType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorMountingType.md @@ -1,4 +1,5 @@ -# Enum MotorDesigner.StatorMountingType +# Enum MotorDesigner.StatorMountingType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.CADImportCreation.StatorCADParam.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.CADImportCreation.StatorCADParam.md index 68e16dd596..ad8166271b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.CADImportCreation.StatorCADParam.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.CADImportCreation.StatorCADParam.md @@ -1,4 +1,5 @@ -# Class MotorDesigner.StatorSection.CADImportCreation.StatorCADParam +# Class MotorDesigner.StatorSection.CADImportCreation.StatorCADParam + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,7 +12,7 @@ public class MotorDesigner.StatorSection.CADImportCreation.StatorCADParam #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [MotorDesigner.StatorSection.CADImportCreation.StatorCADParam](VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.CADImportCreation.StatorCADParam.md) #### Extension Methods @@ -40,5 +41,5 @@ public string FilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.CADImportCreation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.CADImportCreation.md index c5b69fd53f..4740c17ef5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.CADImportCreation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.CADImportCreation.md @@ -1,4 +1,5 @@ -# Class MotorDesigner.StatorSection.CADImportCreation +# Class MotorDesigner.StatorSection.CADImportCreation + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class MotorDesigner.StatorSection.CADImportCreation : MotorDesigner.Creat #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MotorDesigner.CreationBase](VM.Managed.DAFUL.GearTrain.MotorDesigner.CreationBase.md) ← [MotorDesigner.StatorSection.CADImportCreation](VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.CADImportCreation.md) @@ -83,7 +84,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -124,7 +125,7 @@ public string FilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### MountingOuterRound @@ -136,7 +137,7 @@ public ExpressionValueVariable MountingOuterRound { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MountingRadius @@ -148,7 +149,7 @@ public ExpressionValueVariable MountingRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### NumberOfMounting @@ -160,7 +161,7 @@ public ExpressionValueVariable NumberOfMounting { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### NumberOfSlot @@ -172,7 +173,7 @@ public ExpressionValueVariable NumberOfSlot { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TiltedAngle @@ -184,7 +185,7 @@ public ExpressionValueVariable TiltedAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TypeOfGeometryCreation @@ -214,13 +215,13 @@ public static (double, int, int, double, double) AnalysisCAD(Document3D document The document -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string The file path #### Returns - \([double](https://learn.microsoft.com/dotnet/api/system.double), [int](https://learn.microsoft.com/dotnet/api/system.int32), [int](https://learn.microsoft.com/dotnet/api/system.int32), [double](https://learn.microsoft.com/dotnet/api/system.double), [double](https://learn.microsoft.com/dotnet/api/system.double)\) + \(double, int, int, double, double\) geometry paramter item1 : Depth diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.MaxwellCreation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.MaxwellCreation.md index 674e19b87d..cb4e9c9c17 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.MaxwellCreation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.MaxwellCreation.md @@ -1,4 +1,5 @@ -# Class MotorDesigner.StatorSection.MaxwellCreation +# Class MotorDesigner.StatorSection.MaxwellCreation + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class MotorDesigner.StatorSection.MaxwellCreation : MotorDesigner.Creatio #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MotorDesigner.CreationBase](VM.Managed.DAFUL.GearTrain.MotorDesigner.CreationBase.md) ← [MotorDesigner.StatorSection.MaxwellCreation](VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.MaxwellCreation.md) @@ -83,7 +84,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -124,7 +125,7 @@ public string FilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeOfGeometryCreation diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.UserDefinedCreation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.UserDefinedCreation.md index 505a185c9a..d32deb3e69 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.UserDefinedCreation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.UserDefinedCreation.md @@ -1,4 +1,5 @@ -# Class MotorDesigner.StatorSection.UserDefinedCreation +# Class MotorDesigner.StatorSection.UserDefinedCreation + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class MotorDesigner.StatorSection.UserDefinedCreation : MotorDesigner.Cre #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MotorDesigner.CreationBase](VM.Managed.DAFUL.GearTrain.MotorDesigner.CreationBase.md) ← [MotorDesigner.StatorSection.UserDefinedCreation](VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.UserDefinedCreation.md) @@ -83,7 +84,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -124,7 +125,7 @@ public ExpressionValueVariable Height1 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Height2 @@ -136,7 +137,7 @@ public ExpressionValueVariable Height2 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Height3 @@ -148,7 +149,7 @@ public ExpressionValueVariable Height3 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### InnerDiameter @@ -160,7 +161,7 @@ public ExpressionValueVariable InnerDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MountingFilletRound @@ -172,7 +173,7 @@ public ExpressionValueVariable MountingFilletRound { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MountingInnerRound @@ -184,7 +185,7 @@ public ExpressionValueVariable MountingInnerRound { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MountingOuterRound @@ -196,7 +197,7 @@ public ExpressionValueVariable MountingOuterRound { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MountingRadius @@ -208,7 +209,7 @@ public ExpressionValueVariable MountingRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### NumberOfMounting @@ -220,7 +221,7 @@ public ExpressionValueVariable NumberOfMounting { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### NumberOfSlot @@ -232,7 +233,7 @@ public ExpressionValueVariable NumberOfSlot { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### OuterDiameter @@ -244,7 +245,7 @@ public ExpressionValueVariable OuterDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RoundS @@ -256,7 +257,7 @@ public ExpressionValueVariable RoundS { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TypeOfGeometryCreation @@ -280,7 +281,7 @@ public ExpressionValueVariable Width1 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Width2 @@ -292,7 +293,7 @@ public ExpressionValueVariable Width2 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Width3 @@ -304,7 +305,7 @@ public ExpressionValueVariable Width3 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.md index 55a7e0dcdf..7d027e0cf6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.md @@ -1,4 +1,5 @@ -# Class MotorDesigner.StatorSection +# Class MotorDesigner.StatorSection + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class MotorDesigner.StatorSection : LinkContainer, IObservableObject, IDi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MotorDesigner.StatorSection](VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -206,31 +207,31 @@ public void GetRelatedHousingBuilderInfo(out Vector StartPosition, out double De The start position -`Depth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`Depth` double The depth -`IsExistMounting` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`IsExistMounting` bool The mounting exist flag -`NumberOfSlot` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`NumberOfSlot` int The number of slot -`NumberOfMounting` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`NumberOfMounting` int The number of mounting -`MPCR` [double](https://learn.microsoft.com/dotnet/api/system.double) +`MPCR` double The MPCR -`Rmo` [double](https://learn.microsoft.com/dotnet/api/system.double) +`Rmo` double The Rmo -`RotateAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`RotateAngle` double The Rotate angle diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.md index 1646a144bf..909050dbdb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorDesigner.md @@ -1,4 +1,5 @@ -# Class MotorDesigner +# Class MotorDesigner + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,12 +12,12 @@ public class MotorDesigner : SubEntity, IObservableObject, IDisposableObject, IL #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [MotorDesigner](VM.Managed.DAFUL.GearTrain.MotorDesigner.md) #### Implements @@ -26,7 +27,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -45,17 +46,17 @@ INavigatorItem #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -193,7 +194,7 @@ public Bearing[] BearingSet { get; set; } #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Bearing set is null. or @@ -295,7 +296,7 @@ public SolidBody RotorBody { get; set; } #### Property Value - SolidBody + [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ### SimpleShaftSet @@ -331,7 +332,7 @@ public SolidBody StatorBody { get; set; } #### Property Value - SolidBody + [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ### TypeOfHousing @@ -369,21 +370,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -411,7 +412,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -427,7 +428,7 @@ protected override void OnLinkReserved(ILink reserved, object objNotifier, Event `reserved` ILink -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object -`args` [EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) +`args` EventArgs diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorHousingBuiler.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorHousingBuiler.md index e332b90fbc..481eedb91c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorHousingBuiler.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorHousingBuiler.md @@ -1,4 +1,5 @@ -# Class MotorHousingBuiler +# Class MotorHousingBuiler + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll The housing builder in motor ```csharp -public class MotorHousingBuiler : MotorBaseBuiler, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public class MotorHousingBuiler : MotorBaseBuiler, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -36,8 +37,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, -IAttributeContainer +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +IAttributeContainer, +IHasReplaceableEntity #### Inherited Members @@ -74,6 +76,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -177,7 +181,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -216,7 +220,7 @@ public string HousingType { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Hr @@ -226,7 +230,7 @@ public double Hr { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### IsMeasureBottomSide @@ -236,7 +240,7 @@ public bool IsMeasureBottomSide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsMeasureRearCoverCenter @@ -246,7 +250,7 @@ public bool IsMeasureRearCoverCenter { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsMeasureTopSide @@ -256,7 +260,7 @@ public bool IsMeasureTopSide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### L1 @@ -266,7 +270,7 @@ public double L1 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### L10 @@ -276,7 +280,7 @@ public double L10 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### L11 @@ -286,7 +290,7 @@ public double L11 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### L2 @@ -296,7 +300,7 @@ public double L2 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### L3 @@ -306,7 +310,7 @@ public double L3 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### L4 @@ -316,7 +320,7 @@ public double L4 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### L5 @@ -326,7 +330,7 @@ public double L5 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### L6 @@ -336,7 +340,7 @@ public double L6 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### L7 @@ -346,7 +350,7 @@ public double L7 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### L8 @@ -356,7 +360,7 @@ public double L8 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### L9 @@ -366,7 +370,7 @@ public double L9 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MTGBoltDiameter @@ -376,7 +380,7 @@ public double MTGBoltDiameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MeasureBottomSideLowerPosition @@ -406,7 +410,7 @@ public double MeasureRBECircleRadius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MeasureRearCoverCenterPosition @@ -446,7 +450,7 @@ public int NumberOfMountingBolt { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfRib @@ -456,7 +460,7 @@ public int NumberOfRib { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### RibType @@ -466,7 +470,7 @@ public string RibType { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### StatorDepth @@ -476,7 +480,7 @@ public double StatorDepth { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StatorIsExistMounting @@ -486,7 +490,7 @@ public bool StatorIsExistMounting { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### StatorMPCR @@ -496,7 +500,7 @@ public double StatorMPCR { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StatorMountingDirectionType @@ -506,7 +510,7 @@ public string StatorMountingDirectionType { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### StatorNumberOfMounting @@ -516,7 +520,7 @@ public int StatorNumberOfMounting { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### StatorRmo @@ -526,7 +530,7 @@ public double StatorRmo { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StatorRotateAngle @@ -536,7 +540,7 @@ public double StatorRotateAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StatorStartPosition @@ -556,7 +560,7 @@ public double T1 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### T2 @@ -566,7 +570,7 @@ public double T2 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### T3 @@ -576,7 +580,7 @@ public double T3 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### T4 @@ -586,7 +590,7 @@ public double T4 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### T5 @@ -596,7 +600,7 @@ public double T5 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Wr @@ -606,7 +610,7 @@ public double Wr { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -620,7 +624,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamBase\) @@ -632,5 +636,5 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorRotorBuiler.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorRotorBuiler.md index 588a7c1f29..23522ef9d4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorRotorBuiler.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorRotorBuiler.md @@ -1,4 +1,5 @@ -# Class MotorRotorBuiler +# Class MotorRotorBuiler + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll The rotor builder in motor ```csharp -public class MotorRotorBuiler : MotorBaseBuiler, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public class MotorRotorBuiler : MotorBaseBuiler, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -36,8 +37,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, -IAttributeContainer +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +IAttributeContainer, +IHasReplaceableEntity #### Inherited Members @@ -74,6 +76,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -177,7 +181,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -216,7 +220,7 @@ public double InnerDiameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### OuterDiameter @@ -226,7 +230,7 @@ public double OuterDiameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -240,7 +244,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamBase\) @@ -252,5 +256,5 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorStatorBuiler.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorStatorBuiler.md index a8f92ec44a..de2a195341 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorStatorBuiler.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.MotorStatorBuiler.md @@ -1,4 +1,5 @@ -# Class MotorStatorBuiler +# Class MotorStatorBuiler + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -6,14 +7,14 @@ Assembly: VMDGearTrain.dll The stator builder in motor ```csharp -public class MotorStatorBuiler : MotorBaseBuiler, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer +public class MotorStatorBuiler : MotorBaseBuiler, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Builder ← @@ -36,8 +37,9 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, -IAttributeContainer +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +IAttributeContainer, +IHasReplaceableEntity #### Inherited Members @@ -74,6 +76,8 @@ Builder.LinkRequestUpdate\(object, LinkEventArgs\), Builder.PostWorkWhenFailedToGetXmlString\(\), Builder.GetFilledParameter\(\), Builder.GetXmlString\(\), +Builder.HasReplaceableEntity\(IObjectBase\), +Builder.ReplaceEntity\(IObjectBase, IObjectBase\), Builder.GetFactorForLength\(\), Builder.CheckCircularReferenceForPoint\(PointBase, ObjectBase\), Builder.CheckCircularReferenceForDirection\(DirectionBase, ObjectBase\), @@ -177,7 +181,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -216,7 +220,7 @@ public double Bs0 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Bs1 @@ -226,7 +230,7 @@ public double Bs1 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Bs2 @@ -236,7 +240,7 @@ public double Bs2 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GeometryMethod @@ -256,7 +260,7 @@ public double Hs0 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Hs1 @@ -266,7 +270,7 @@ public double Hs1 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Hs2 @@ -276,7 +280,7 @@ public double Hs2 { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ImportBuilder @@ -298,7 +302,7 @@ public double InnerDiameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### IsExistMounting @@ -308,7 +312,7 @@ public bool IsExistMounting { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MPCR @@ -318,7 +322,7 @@ public double MPCR { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NumberOfMounting @@ -328,7 +332,7 @@ public int NumberOfMounting { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfSlot @@ -338,7 +342,7 @@ public int NumberOfSlot { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### OuterDiameter @@ -348,7 +352,7 @@ public double OuterDiameter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Rmf @@ -358,7 +362,7 @@ public double Rmf { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Rmi @@ -368,7 +372,7 @@ public double Rmi { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Rmo @@ -378,7 +382,7 @@ public double Rmo { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RotateAngle @@ -388,7 +392,7 @@ public double RotateAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Rs @@ -398,7 +402,7 @@ public double Rs { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -412,7 +416,7 @@ protected override BuilderParamBase CreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### FillParameter\(BuilderParamBase\) @@ -424,7 +428,7 @@ protected override void FillParameter(BuilderParamBase parameter) #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### OnDeserialization\(object\) @@ -436,7 +440,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.OpenDesignerBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.OpenDesignerBase-1.md index 0aeef2cdd1..c5df530e9b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.OpenDesignerBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.OpenDesignerBase-1.md @@ -1,4 +1,5 @@ -# Class OpenDesignerBase +# Class OpenDesignerBase + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -17,14 +18,14 @@ The type of the property. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [OpenDesignerBase](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md) #### Implements @@ -34,7 +35,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -63,34 +64,34 @@ IReferencable #### Inherited Members -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -189,7 +190,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -228,7 +229,7 @@ public OpenDesignerBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -244,7 +245,7 @@ protected virtual string Extension { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### HasLayerExplicitly @@ -256,7 +257,7 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Referencable @@ -268,7 +269,7 @@ public bool Referencable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TargetBody @@ -292,7 +293,7 @@ public virtual string TypeFileName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeOfParent @@ -308,7 +309,7 @@ public virtual ParentType TypeOfParent { get; } #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ### Visible @@ -320,7 +321,7 @@ public bool Visible { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -360,7 +361,7 @@ protected virtual string GetFilePath() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Instantiate\(Reference, Canvas\) @@ -376,7 +377,7 @@ public void Instantiate(Reference reference, Canvas canvas) The reference. -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. @@ -390,7 +391,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -406,7 +407,7 @@ public void MakeReference(LinkedList lstRef) #### Parameters -`lstRef` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) +`lstRef` LinkedList ### MakeReferenceImpl\(LinkedList\) @@ -418,7 +419,7 @@ protected virtual void MakeReferenceImpl(LinkedList lstRef) #### Parameters -`lstRef` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) +`lstRef` LinkedList The container. @@ -454,7 +455,7 @@ public void SetCustomFilterEvent(object picker) #### Parameters -`picker` [object](https://learn.microsoft.com/dotnet/api/system.object) +`picker` object The picker. @@ -468,7 +469,7 @@ public virtual Document SetDataToDesignDoc(bool bRecord) #### Parameters -`bRecord` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bRecord` bool #### Returns diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddBearingToRBEInFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddBearingToRBEInFE.md index 4aadcc61a5..a1c9417ce8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddBearingToRBEInFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddBearingToRBEInFE.md @@ -1,4 +1,5 @@ -# Class AddBearingToRBEInFE +# Class AddBearingToRBEInFE + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,9 +12,9 @@ public class AddBearingToRBEInFE : Create, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -Create ← +[Create](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs) ← [AddBearingToRBEInFE](VM.Managed.DAFUL.GearTrain.Operation.AddBearingToRBEInFE.md) #### Implements @@ -22,13 +23,13 @@ IOperation #### Inherited Members -Create.m\_strInitializerXml, -Create.Execute\(\), -Create.PostExecute\(\), -Create.ExecutePickOperation\(XmlDocument, string\[\], string\[\], int, int\), -Create.Name, -Create.IsHistoryMerge, -Create.UseMacro, +[Create.m\_strInitializerXml](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.PostExecute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.ExecutePickOperation\(XmlDocument, string\[\], string\[\], int, int\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.IsHistoryMerge](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.UseMacro](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -103,7 +104,7 @@ public AddBearingToRBEInFE(string strInitializerXml) #### Parameters -`strInitializerXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInitializerXml` string The STR initializer XML. @@ -119,29 +120,29 @@ protected override bool ExecutePickOperation(XmlDocument dom, string[] arPickRes #### Parameters -`dom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`dom` XmlDocument The DOM. -`arPickResult` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arPickResult` string\[\] The ar pick result. -`arPickOp` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arPickOp` string\[\] The ar pick op. -`start` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`start` int The start. -`end` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`end` int The end. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UpdateUI\(IUIUpdate, Document\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddBearingToShaft.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddBearingToShaft.md index 719679e674..4ee87c9b88 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddBearingToShaft.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddBearingToShaft.md @@ -1,4 +1,5 @@ -# Class AddBearingToShaft +# Class AddBearingToShaft + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,9 +12,9 @@ public class AddBearingToShaft : Create, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -Create ← +[Create](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs) ← [AddBearingToShaft](VM.Managed.DAFUL.GearTrain.Operation.AddBearingToShaft.md) #### Implements @@ -22,13 +23,13 @@ IOperation #### Inherited Members -Create.m\_strInitializerXml, -Create.Execute\(\), -Create.PostExecute\(\), -Create.ExecutePickOperation\(XmlDocument, string\[\], string\[\], int, int\), -Create.Name, -Create.IsHistoryMerge, -Create.UseMacro, +[Create.m\_strInitializerXml](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.PostExecute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.ExecutePickOperation\(XmlDocument, string\[\], string\[\], int, int\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.IsHistoryMerge](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.UseMacro](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -103,7 +104,7 @@ public AddBearingToShaft(string strInitializerXml) #### Parameters -`strInitializerXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInitializerXml` string The STR initializer XML. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddGearToRBEInFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddGearToRBEInFE.md index 27e44068c8..4b4c6c5981 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddGearToRBEInFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddGearToRBEInFE.md @@ -1,4 +1,5 @@ -# Class AddGearToRBEInFE +# Class AddGearToRBEInFE + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,9 +12,9 @@ public class AddGearToRBEInFE : Create, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -Create ← +[Create](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs) ← [AddGearToRBEInFE](VM.Managed.DAFUL.GearTrain.Operation.AddGearToRBEInFE.md) #### Implements @@ -22,13 +23,13 @@ IOperation #### Inherited Members -Create.m\_strInitializerXml, -Create.Execute\(\), -Create.PostExecute\(\), -Create.ExecutePickOperation\(XmlDocument, string\[\], string\[\], int, int\), -Create.Name, -Create.IsHistoryMerge, -Create.UseMacro, +[Create.m\_strInitializerXml](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.PostExecute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.ExecutePickOperation\(XmlDocument, string\[\], string\[\], int, int\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.IsHistoryMerge](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.UseMacro](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -103,7 +104,7 @@ public AddGearToRBEInFE(string strInitializerXml) #### Parameters -`strInitializerXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInitializerXml` string The STR initializer XML. @@ -119,29 +120,29 @@ protected override bool ExecutePickOperation(XmlDocument dom, string[] arPickRes #### Parameters -`dom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`dom` XmlDocument The DOM. -`arPickResult` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arPickResult` string\[\] The ar pick result. -`arPickOp` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arPickOp` string\[\] The ar pick op. -`start` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`start` int The start. -`end` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`end` int The end. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UpdateUI\(IUIUpdate, Document\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddGearToShaft.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddGearToShaft.md index 08405d11b1..00926ecaf6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddGearToShaft.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddGearToShaft.md @@ -1,4 +1,5 @@ -# Class AddGearToShaft +# Class AddGearToShaft + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,9 +12,9 @@ public class AddGearToShaft : Create, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -Create ← +[Create](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs) ← [AddGearToShaft](VM.Managed.DAFUL.GearTrain.Operation.AddGearToShaft.md) #### Implements @@ -22,13 +23,13 @@ IOperation #### Inherited Members -Create.m\_strInitializerXml, -Create.Execute\(\), -Create.PostExecute\(\), -Create.ExecutePickOperation\(XmlDocument, string\[\], string\[\], int, int\), -Create.Name, -Create.IsHistoryMerge, -Create.UseMacro, +[Create.m\_strInitializerXml](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.PostExecute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.ExecutePickOperation\(XmlDocument, string\[\], string\[\], int, int\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.IsHistoryMerge](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.UseMacro](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -103,7 +104,7 @@ public AddGearToShaft(string strInitializerXml) #### Parameters -`strInitializerXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInitializerXml` string The STR initializer XML. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddMeasurePointToShaft.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddMeasurePointToShaft.md index df49daa102..0a6f7aea0c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddMeasurePointToShaft.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddMeasurePointToShaft.md @@ -1,4 +1,5 @@ -# Class AddMeasurePointToShaft +# Class AddMeasurePointToShaft + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,9 +12,9 @@ public class AddMeasurePointToShaft : Create, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -Create ← +[Create](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs) ← [AddMeasurePointToShaft](VM.Managed.DAFUL.GearTrain.Operation.AddMeasurePointToShaft.md) #### Implements @@ -22,13 +23,13 @@ IOperation #### Inherited Members -Create.m\_strInitializerXml, -Create.Execute\(\), -Create.PostExecute\(\), -Create.ExecutePickOperation\(XmlDocument, string\[\], string\[\], int, int\), -Create.Name, -Create.IsHistoryMerge, -Create.UseMacro, +[Create.m\_strInitializerXml](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.PostExecute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.ExecutePickOperation\(XmlDocument, string\[\], string\[\], int, int\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.IsHistoryMerge](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.UseMacro](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -103,7 +104,7 @@ public AddMeasurePointToShaft(string strInitializerXml) #### Parameters -`strInitializerXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInitializerXml` string The STR initializer XML. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddPointloadToShaft.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddPointloadToShaft.md index aeeaa96ebe..37d09f0364 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddPointloadToShaft.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddPointloadToShaft.md @@ -1,4 +1,5 @@ -# Class AddPointloadToShaft +# Class AddPointloadToShaft + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,9 +12,9 @@ public class AddPointloadToShaft : Create, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -Create ← +[Create](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs) ← [AddPointloadToShaft](VM.Managed.DAFUL.GearTrain.Operation.AddPointloadToShaft.md) #### Implements @@ -22,13 +23,13 @@ IOperation #### Inherited Members -Create.m\_strInitializerXml, -Create.Execute\(\), -Create.PostExecute\(\), -Create.ExecutePickOperation\(XmlDocument, string\[\], string\[\], int, int\), -Create.Name, -Create.IsHistoryMerge, -Create.UseMacro, +[Create.m\_strInitializerXml](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.PostExecute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.ExecutePickOperation\(XmlDocument, string\[\], string\[\], int, int\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.IsHistoryMerge](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.UseMacro](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -103,7 +104,7 @@ public AddPointloadToShaft(string strInitializerXml) #### Parameters -`strInitializerXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInitializerXml` string The STR initializer XML. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddPowerloadToShaft.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddPowerloadToShaft.md index f8cf2ec7af..dd47c43699 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddPowerloadToShaft.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddPowerloadToShaft.md @@ -1,4 +1,5 @@ -# Class AddPowerloadToShaft +# Class AddPowerloadToShaft + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,9 +12,9 @@ public class AddPowerloadToShaft : Create, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -Create ← +[Create](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs) ← [AddPowerloadToShaft](VM.Managed.DAFUL.GearTrain.Operation.AddPowerloadToShaft.md) #### Implements @@ -22,13 +23,13 @@ IOperation #### Inherited Members -Create.m\_strInitializerXml, -Create.Execute\(\), -Create.PostExecute\(\), -Create.ExecutePickOperation\(XmlDocument, string\[\], string\[\], int, int\), -Create.Name, -Create.IsHistoryMerge, -Create.UseMacro, +[Create.m\_strInitializerXml](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.PostExecute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.ExecutePickOperation\(XmlDocument, string\[\], string\[\], int, int\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.IsHistoryMerge](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.UseMacro](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -103,7 +104,7 @@ public AddPowerloadToShaft(string strInitializerXml) #### Parameters -`strInitializerXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInitializerXml` string The STR initializer XML. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddRackToRBEInFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddRackToRBEInFE.md index 9b6fa51f83..e1e19063e2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddRackToRBEInFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddRackToRBEInFE.md @@ -1,4 +1,5 @@ -# Class AddRackToRBEInFE +# Class AddRackToRBEInFE + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,9 +12,9 @@ public class AddRackToRBEInFE : Create, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -Create ← +[Create](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs) ← [AddRackToRBEInFE](VM.Managed.DAFUL.GearTrain.Operation.AddRackToRBEInFE.md) #### Implements @@ -22,13 +23,13 @@ IOperation #### Inherited Members -Create.m\_strInitializerXml, -Create.Execute\(\), -Create.PostExecute\(\), -Create.ExecutePickOperation\(XmlDocument, string\[\], string\[\], int, int\), -Create.Name, -Create.IsHistoryMerge, -Create.UseMacro, +[Create.m\_strInitializerXml](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.PostExecute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.ExecutePickOperation\(XmlDocument, string\[\], string\[\], int, int\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.IsHistoryMerge](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.UseMacro](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -103,7 +104,7 @@ public AddRackToRBEInFE(string strInitializerXml) #### Parameters -`strInitializerXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInitializerXml` string The STR initializer XML. @@ -119,29 +120,29 @@ protected override bool ExecutePickOperation(XmlDocument dom, string[] arPickRes #### Parameters -`dom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`dom` XmlDocument The DOM. -`arPickResult` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arPickResult` string\[\] The ar pick result. -`arPickOp` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arPickOp` string\[\] The ar pick op. -`start` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`start` int The start. -`end` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`end` int The end. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UpdateUI\(IUIUpdate, Document\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddRackToShaft.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddRackToShaft.md index b6155197dc..61630bf4f3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddRackToShaft.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddRackToShaft.md @@ -1,4 +1,5 @@ -# Class AddRackToShaft +# Class AddRackToShaft + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,9 +12,9 @@ public class AddRackToShaft : Create, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -Create ← +[Create](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs) ← [AddRackToShaft](VM.Managed.DAFUL.GearTrain.Operation.AddRackToShaft.md) #### Implements @@ -22,13 +23,13 @@ IOperation #### Inherited Members -Create.m\_strInitializerXml, -Create.Execute\(\), -Create.PostExecute\(\), -Create.ExecutePickOperation\(XmlDocument, string\[\], string\[\], int, int\), -Create.Name, -Create.IsHistoryMerge, -Create.UseMacro, +[Create.m\_strInitializerXml](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.PostExecute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.ExecutePickOperation\(XmlDocument, string\[\], string\[\], int, int\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.IsHistoryMerge](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.UseMacro](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -103,7 +104,7 @@ public AddRackToShaft(string strInitializerXml) #### Parameters -`strInitializerXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInitializerXml` string The STR initializer XML. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddSlidingBearingToRBEInFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddSlidingBearingToRBEInFE.md index 59b3990c45..1b1d991082 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddSlidingBearingToRBEInFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddSlidingBearingToRBEInFE.md @@ -1,4 +1,5 @@ -# Class AddSlidingBearingToRBEInFE +# Class AddSlidingBearingToRBEInFE + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,9 +12,9 @@ public class AddSlidingBearingToRBEInFE : Create, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -Create ← +[Create](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs) ← [AddSlidingBearingToRBEInFE](VM.Managed.DAFUL.GearTrain.Operation.AddSlidingBearingToRBEInFE.md) #### Implements @@ -22,13 +23,13 @@ IOperation #### Inherited Members -Create.m\_strInitializerXml, -Create.Execute\(\), -Create.PostExecute\(\), -Create.ExecutePickOperation\(XmlDocument, string\[\], string\[\], int, int\), -Create.Name, -Create.IsHistoryMerge, -Create.UseMacro, +[Create.m\_strInitializerXml](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.PostExecute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.ExecutePickOperation\(XmlDocument, string\[\], string\[\], int, int\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.IsHistoryMerge](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.UseMacro](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -103,7 +104,7 @@ public AddSlidingBearingToRBEInFE(string strInitializerXml) #### Parameters -`strInitializerXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInitializerXml` string The STR initializer XML. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddSlidingBearingToShaft.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddSlidingBearingToShaft.md index d822210669..8065f4fc2e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddSlidingBearingToShaft.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddSlidingBearingToShaft.md @@ -1,4 +1,5 @@ -# Class AddSlidingBearingToShaft +# Class AddSlidingBearingToShaft + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,9 +12,9 @@ public class AddSlidingBearingToShaft : Create, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -Create ← +[Create](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs) ← [AddSlidingBearingToShaft](VM.Managed.DAFUL.GearTrain.Operation.AddSlidingBearingToShaft.md) #### Implements @@ -22,13 +23,13 @@ IOperation #### Inherited Members -Create.m\_strInitializerXml, -Create.Execute\(\), -Create.PostExecute\(\), -Create.ExecutePickOperation\(XmlDocument, string\[\], string\[\], int, int\), -Create.Name, -Create.IsHistoryMerge, -Create.UseMacro, +[Create.m\_strInitializerXml](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.PostExecute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.ExecutePickOperation\(XmlDocument, string\[\], string\[\], int, int\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.IsHistoryMerge](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.UseMacro](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -103,7 +104,7 @@ public AddSlidingBearingToShaft(string strInitializerXml) #### Parameters -`strInitializerXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInitializerXml` string The STR initializer XML. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddUnbalanceMassToShaft.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddUnbalanceMassToShaft.md index ac5c1c8249..0796f7bcc7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddUnbalanceMassToShaft.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AddUnbalanceMassToShaft.md @@ -1,4 +1,5 @@ -# Class AddUnbalanceMassToShaft +# Class AddUnbalanceMassToShaft + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,9 +12,9 @@ public class AddUnbalanceMassToShaft : Create, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -Create ← +[Create](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs) ← [AddUnbalanceMassToShaft](VM.Managed.DAFUL.GearTrain.Operation.AddUnbalanceMassToShaft.md) #### Implements @@ -22,13 +23,13 @@ IOperation #### Inherited Members -Create.m\_strInitializerXml, -Create.Execute\(\), -Create.PostExecute\(\), -Create.ExecutePickOperation\(XmlDocument, string\[\], string\[\], int, int\), -Create.Name, -Create.IsHistoryMerge, -Create.UseMacro, +[Create.m\_strInitializerXml](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.PostExecute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.ExecutePickOperation\(XmlDocument, string\[\], string\[\], int, int\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.IsHistoryMerge](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.UseMacro](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -103,7 +104,7 @@ public AddUnbalanceMassToShaft(string strInitializerXml) #### Parameters -`strInitializerXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInitializerXml` string The STR initializer XML. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyAssemblyBearing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyAssemblyBearing.md index 10ac6534dd..4252e9d68b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyAssemblyBearing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyAssemblyBearing.md @@ -1,4 +1,5 @@ -# Class ApplyAssemblyBearing +# Class ApplyAssemblyBearing + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class ApplyAssemblyBearing : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ApplyAssemblyBearing](VM.Managed.DAFUL.GearTrain.Operation.ApplyAssemblyBearing.md) @@ -87,7 +88,7 @@ public ApplyAssemblyBearing(GearTrainDocument gearTrainDocument, IConnectable re #### Parameters -`gearTrainDocument` GearTrainDocument +`gearTrainDocument` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The geartrain document @@ -95,11 +96,11 @@ The geartrain document The reference body -`bearingInfo` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<\([string](https://learn.microsoft.com/dotnet/api/system.string), [bool](https://learn.microsoft.com/dotnet/api/system.boolean), [string](https://learn.microsoft.com/dotnet/api/system.string), [bool](https://learn.microsoft.com/dotnet/api/system.boolean)\)\> +`bearingInfo` IEnumerable<\(string, bool, string, bool\)\> The bearing information -`cycloidPinInfo` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<\([string](https://learn.microsoft.com/dotnet/api/system.string), [string](https://learn.microsoft.com/dotnet/api/system.string), [bool](https://learn.microsoft.com/dotnet/api/system.boolean), [string](https://learn.microsoft.com/dotnet/api/system.string), Vector\)\> +`cycloidPinInfo` IEnumerable<\(string, string, bool, string, Vector\)\> The cycloid pin information @@ -129,11 +130,11 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ## Methods @@ -147,7 +148,7 @@ public override void Execute() #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ### GetInformation\(XmlWriter\) @@ -159,7 +160,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyAssemblyIOShaft.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyAssemblyIOShaft.md index 84a9820c48..1c53936774 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyAssemblyIOShaft.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyAssemblyIOShaft.md @@ -1,4 +1,5 @@ -# Class ApplyAssemblyIOShaft +# Class ApplyAssemblyIOShaft + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class ApplyAssemblyIOShaft : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ApplyAssemblyIOShaft](VM.Managed.DAFUL.GearTrain.Operation.ApplyAssemblyIOShaft.md) @@ -87,7 +88,7 @@ public ApplyAssemblyIOShaft(GearTrainDocument gearTrainDocument, IConnectable re #### Parameters -`gearTrainDocument` GearTrainDocument +`gearTrainDocument` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The geartrain document @@ -99,11 +100,11 @@ The reference body The direction -`inputInfo` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`inputInfo` List<[GTAssemblyInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/Assembly.cs)\> The input information -`outputInfo` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`outputInfo` List<[GTAssemblyInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/Assembly.cs)\> The output information @@ -133,11 +134,11 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ## Methods @@ -151,7 +152,7 @@ public override void Execute() #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ### GetInformation\(XmlWriter\) @@ -163,7 +164,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyBearing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyBearing.md index 5e9494b595..e2884eb623 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyBearing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyBearing.md @@ -1,4 +1,5 @@ -# Class ApplyBearing +# Class ApplyBearing + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class ApplyBearing : ApplyDTEntity, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ApplyDTEntity](VM.Managed.DAFUL.GearTrain.Operation.ApplyDTEntity.md) ← [ApplyBearing](VM.Managed.DAFUL.GearTrain.Operation.ApplyBearing.md) @@ -105,7 +106,7 @@ public ApplyBearing(GearTrainDocument gearTrainDocument, BodyToDTData[] arData, #### Parameters -`gearTrainDocument` GearTrainDocument +`gearTrainDocument` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document. @@ -113,7 +114,7 @@ The document. The data. -`bRefresh` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bRefresh` bool The refresh flag. @@ -143,7 +144,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyClutch.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyClutch.md index 443ccc35b9..6f78f60748 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyClutch.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyClutch.md @@ -1,4 +1,5 @@ -# Class ApplyClutch +# Class ApplyClutch + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class ApplyClutch : ApplyDTEntity, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ApplyDTEntity](VM.Managed.DAFUL.GearTrain.Operation.ApplyDTEntity.md) ← [ApplyClutch](VM.Managed.DAFUL.GearTrain.Operation.ApplyClutch.md) @@ -105,7 +106,7 @@ public ApplyClutch(GearTrainDocument gearTrainDocument, BodyToDTData[] arData, b #### Parameters -`gearTrainDocument` GearTrainDocument +`gearTrainDocument` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document. @@ -113,7 +114,7 @@ The document. The data. -`bRefresh` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bRefresh` bool The refresh flag. @@ -143,7 +144,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyDTEntity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyDTEntity.md index 034c931223..3693ba5da2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyDTEntity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyDTEntity.md @@ -1,4 +1,5 @@ -# Class ApplyDTEntity +# Class ApplyDTEntity + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public abstract class ApplyDTEntity : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ApplyDTEntity](VM.Managed.DAFUL.GearTrain.Operation.ApplyDTEntity.md) @@ -95,7 +96,7 @@ public ApplyDTEntity(GearTrainDocument gearTrainDocument, BodyToDTData[] arData, #### Parameters -`gearTrainDocument` GearTrainDocument +`gearTrainDocument` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document. @@ -103,7 +104,7 @@ The document. The data. -`bRefresh` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bRefresh` bool The refresh flag. @@ -145,7 +146,7 @@ protected bool m_bRefresh #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_bSuccess @@ -157,7 +158,7 @@ protected bool m_bSuccess #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_gearTrainDocument @@ -169,7 +170,7 @@ protected GearTrainDocument m_gearTrainDocument #### Field Value - GearTrainDocument + [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) ## Properties @@ -183,7 +184,7 @@ public bool Success { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -197,19 +198,19 @@ protected void AppendEFHousing(string strBodyName, string strDTName, string strP #### Parameters -`strBodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBodyName` string The body name -`strDTName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDTName` string The dt name -`strPartPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPartPath` string The part file path -`lstHiddenFilePath` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstHiddenFilePath` List The hidden file path @@ -223,15 +224,15 @@ protected virtual void AppendMeshFreeHousing(string strDTName, string strSolidNa #### Parameters -`strDTName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDTName` string The dt entity name -`strSolidName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSolidName` string The solid name -`strPartPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPartPath` string The part path @@ -239,7 +240,7 @@ The part path The body -`lstHiddenFilePath` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstHiddenFilePath` List The hidden file path @@ -251,9 +252,9 @@ protected void ApplySolidName(PartDocument document, string strSolidName) #### Parameters -`document` PartDocument +`document` [PartDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs) -`strSolidName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSolidName` string ### ChangeName\(string, string\) @@ -265,9 +266,9 @@ protected ObjectBase ChangeName(string strOldDTName, string strDTName) #### Parameters -`strOldDTName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOldDTName` string -`strDTName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDTName` string #### Returns @@ -283,15 +284,15 @@ protected virtual IHousing CreateMeshFreeHousing(bool bShaft, string strDTName, #### Parameters -`bShaft` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bShaft` bool The shaft flag -`strDTName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDTName` string The dt entity name -`strSolidName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSolidName` string The solid name @@ -299,7 +300,7 @@ The solid name The body -`lstHiddenFilePath` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstHiddenFilePath` List The hidden file path @@ -317,7 +318,7 @@ protected void DeleteDTEntity(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string ### GetDuplicateEFHousing\(string\) @@ -329,13 +330,13 @@ protected Dictionary GetDuplicateEFHousing(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The type #### Returns - [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2) + Dictionary ### GetInformation\(XmlWriter\) @@ -347,7 +348,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. @@ -359,11 +360,11 @@ protected string GetSolidName(string strBodyName) #### Parameters -`strBodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBodyName` string #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ReCreateMeshFreeHousing\(bool, string, string, ref List\) @@ -375,19 +376,19 @@ protected virtual IHousing ReCreateMeshFreeHousing(bool bShaft, string strBodyNa #### Parameters -`bShaft` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bShaft` bool The shaft flag -`strBodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBodyName` string The body name -`strDTName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDTName` string The dt entity name -`lstHiddenFilePath` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstHiddenFilePath` List The hidden file path @@ -423,23 +424,23 @@ protected void SetAttribute(IAttributeContainer attrCont, string strBodyName, bo The attribute container -`strBodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBodyName` string The body name -`bUsePowerLoad` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUsePowerLoad` bool The power load flag -`powerLoadType` PowerLoad.PowerLoadType +`powerLoadType` [PowerLoad](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/PowerLoad.cs).[PowerLoadType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/PowerLoad.cs) The power load type -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double The power load offset -`dWidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dWidth` double The power load width diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyGearSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyGearSet.md index eea0c058dc..900b7e0d3a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyGearSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyGearSet.md @@ -1,4 +1,5 @@ -# Class ApplyGearSet +# Class ApplyGearSet + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class ApplyGearSet : ApplyDTEntity, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ApplyDTEntity](VM.Managed.DAFUL.GearTrain.Operation.ApplyDTEntity.md) ← [ApplyGearSet](VM.Managed.DAFUL.GearTrain.Operation.ApplyGearSet.md) @@ -105,7 +106,7 @@ public ApplyGearSet(GearTrainDocument gearTrainDocument, BodyToDTData[] arData, #### Parameters -`gearTrainDocument` GearTrainDocument +`gearTrainDocument` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document. @@ -113,7 +114,7 @@ The document. The data. -`bRefresh` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bRefresh` bool The refresh flag. @@ -143,7 +144,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyHousing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyHousing.md index 1faa92efea..abc4b49f5e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyHousing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyHousing.md @@ -1,4 +1,5 @@ -# Class ApplyHousing +# Class ApplyHousing + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class ApplyHousing : ApplyDTEntity, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ApplyDTEntity](VM.Managed.DAFUL.GearTrain.Operation.ApplyDTEntity.md) ← [ApplyHousing](VM.Managed.DAFUL.GearTrain.Operation.ApplyHousing.md) @@ -105,7 +106,7 @@ public ApplyHousing(GearTrainDocument gearTrainDocument, BodyToDTData[] arData, #### Parameters -`gearTrainDocument` GearTrainDocument +`gearTrainDocument` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document. @@ -113,7 +114,7 @@ The document. The data. -`bRefresh` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bRefresh` bool The refresh flag. @@ -143,7 +144,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyMotorDesigner.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyMotorDesigner.md index a5d7f8d96c..0e11ee8854 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyMotorDesigner.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyMotorDesigner.md @@ -1,4 +1,5 @@ -# Class ApplyMotorDesigner +# Class ApplyMotorDesigner + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class ApplyMotorDesigner : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ApplyMotorDesigner](VM.Managed.DAFUL.GearTrain.Operation.ApplyMotorDesigner.md) @@ -87,27 +88,27 @@ public ApplyMotorDesigner(GearTrainDocument doc, MotorDesigner motorDesigner, bo #### Parameters -`doc` GearTrainDocument +`doc` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document. -`motorDesigner` MotorDesigner +`motorDesigner` [MotorDesigner](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/MotorDesigner.cs) The motor designer. -`bHousingModified` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHousingModified` bool The housing modified flag. -`bStatorModified` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bStatorModified` bool The stator modified flag. -`bRotorModified` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bRotorModified` bool The rotor modified flag. -`oldMethod` MotorDesigner.EMForceSection.MethodBase +`oldMethod` [MotorDesigner](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/MotorDesigner.cs).[EMForceSection](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/MotorDesigner.cs).[MethodBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/MotorDesigner.cs) The old em force method. @@ -123,7 +124,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyPowerFlow.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyPowerFlow.md index d8d4026ea7..c9e5d120e7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyPowerFlow.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyPowerFlow.md @@ -1,4 +1,5 @@ -# Class ApplyPowerFlow +# Class ApplyPowerFlow + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class ApplyPowerFlow : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ApplyPowerFlow](VM.Managed.DAFUL.GearTrain.Operation.ApplyPowerFlow.md) @@ -87,11 +88,11 @@ public ApplyPowerFlow(GearTrainDocument gearTrainDocument, PowerFlow powerFlow) #### Parameters -`gearTrainDocument` GearTrainDocument +`gearTrainDocument` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The geartrain document -`powerFlow` PowerFlow +`powerFlow` [PowerFlow](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/PowerFlow.cs) The power flow @@ -121,11 +122,11 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ## Methods @@ -139,7 +140,7 @@ public override void Execute() #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ### GetInformation\(XmlWriter\) @@ -151,7 +152,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyRequest.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyRequest.md index d7da9b79d6..782a46a418 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyRequest.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyRequest.md @@ -1,4 +1,5 @@ -# Class ApplyRequest +# Class ApplyRequest + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class ApplyRequest : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ApplyRequest](VM.Managed.DAFUL.GearTrain.Operation.ApplyRequest.md) @@ -87,15 +88,15 @@ public ApplyRequest(GearTrainDocument gearTrainDocument, Request request, IEnume #### Parameters -`gearTrainDocument` GearTrainDocument +`gearTrainDocument` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The geartrain document -`request` Request +`request` [Request](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/Request.cs) The request -`lstGearsetForceDisplay` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[bool](https://learn.microsoft.com/dotnet/api/system.boolean)\> +`lstGearsetForceDisplay` IEnumerable The gearset force display @@ -125,11 +126,11 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ## Methods @@ -143,7 +144,7 @@ public override void Execute() #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ### GetInformation\(XmlWriter\) @@ -155,7 +156,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyRollingBearing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyRollingBearing.md index 240868fbcf..67c2da317f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyRollingBearing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyRollingBearing.md @@ -1,4 +1,5 @@ -# Class ApplyRollingBearing +# Class ApplyRollingBearing + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class ApplyRollingBearing : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ApplyRollingBearing](VM.Managed.DAFUL.GearTrain.Operation.ApplyRollingBearing.md) @@ -87,11 +88,11 @@ public ApplyRollingBearing(HiddenBearingDocument hiddenBearingDocument, Bearing #### Parameters -`hiddenBearingDocument` HiddenBearingDocument +`hiddenBearingDocument` [HiddenBearingDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenBearingDocument.cs) The hidden bearing document -`bearing` Bearing +`bearing` [Bearing](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/Bearing.cs) The bearing @@ -121,11 +122,11 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ## Methods @@ -139,7 +140,7 @@ public override void Execute() #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ### GetInformation\(XmlWriter\) @@ -151,7 +152,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyShaftSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyShaftSet.md index 979a0db797..51e4a9893f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyShaftSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplyShaftSet.md @@ -1,4 +1,5 @@ -# Class ApplyShaftSet +# Class ApplyShaftSet + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class ApplyShaftSet : ApplyDTEntity, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ApplyDTEntity](VM.Managed.DAFUL.GearTrain.Operation.ApplyDTEntity.md) ← [ApplyShaftSet](VM.Managed.DAFUL.GearTrain.Operation.ApplyShaftSet.md) @@ -105,7 +106,7 @@ public ApplyShaftSet(GearTrainDocument gearTrainDocument, BodyToDTData[] arData, #### Parameters -`gearTrainDocument` GearTrainDocument +`gearTrainDocument` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document. @@ -113,7 +114,7 @@ The document. The data. -`bRefresh` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bRefresh` bool The refresh flag. @@ -143,7 +144,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplySlidingBearing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplySlidingBearing.md index 3ad953d6cf..368ea05313 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplySlidingBearing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ApplySlidingBearing.md @@ -1,4 +1,5 @@ -# Class ApplySlidingBearing +# Class ApplySlidingBearing + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class ApplySlidingBearing : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ApplySlidingBearing](VM.Managed.DAFUL.GearTrain.Operation.ApplySlidingBearing.md) @@ -87,11 +88,11 @@ public ApplySlidingBearing(HiddenSlidingBearingDocument hiddenSlidingBearingDocu #### Parameters -`hiddenSlidingBearingDocument1` HiddenSlidingBearingDocument +`hiddenSlidingBearingDocument1` [HiddenSlidingBearingDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenBearingDocument.cs) The hidden sliding bearing document -`slidingBearing` SlidingBearing +`slidingBearing` [SlidingBearing](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/SlidingBearing.cs) The sliding bearing @@ -121,11 +122,11 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ## Methods @@ -139,7 +140,7 @@ public override void Execute() #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ### GetInformation\(XmlWriter\) @@ -151,7 +152,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AssembleItems.NearestCylinderFaceParam.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AssembleItems.NearestCylinderFaceParam.md index 1333100bab..f041a33b49 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AssembleItems.NearestCylinderFaceParam.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AssembleItems.NearestCylinderFaceParam.md @@ -1,4 +1,5 @@ -# Class AssembleItems.NearestCylinderFaceParam +# Class AssembleItems.NearestCylinderFaceParam + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class AssembleItems.NearestCylinderFaceParam #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AssembleItems.NearestCylinderFaceParam](VM.Managed.DAFUL.GearTrain.Operation.AssembleItems.NearestCylinderFaceParam.md) #### Extension Methods @@ -40,7 +41,7 @@ public KeyInfo TargetBody { get; set; } #### Property Value - KeyInfo + [KeyInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/KeyInfo.cs) ### Tolerance @@ -52,7 +53,7 @@ public double Tolerance { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ToolBody @@ -64,5 +65,5 @@ public KeyInfo ToolBody { get; set; } #### Property Value - KeyInfo + [KeyInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/KeyInfo.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AssembleItems.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AssembleItems.md index 24aa341266..1957d13734 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AssembleItems.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AssembleItems.md @@ -1,4 +1,5 @@ -# Class AssembleItems +# Class AssembleItems + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class AssembleItems : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [AssembleItems](VM.Managed.DAFUL.GearTrain.Operation.AssembleItems.md) @@ -87,7 +88,7 @@ public AssembleItems(GearTrainDocument gearTrainDocument, BodyToDTData[] arBodyT #### Parameters -`gearTrainDocument` GearTrainDocument +`gearTrainDocument` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document. @@ -99,7 +100,7 @@ The gearset data. The bearing data. -`dTolerance` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTolerance` double The tolerance. @@ -129,7 +130,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### StatusMessage @@ -141,7 +142,7 @@ public string StatusMessage { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Success @@ -153,7 +154,7 @@ public bool Success { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -175,7 +176,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AssemblyManager.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AssemblyManager.md index 5e75688f65..12e4439281 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AssemblyManager.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AssemblyManager.md @@ -1,4 +1,5 @@ -# Class AssemblyManager +# Class AssemblyManager + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,9 +12,9 @@ public class AssemblyManager : DialogOperation, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -DialogOperation ← +[DialogOperation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs) ← [AssemblyManager](VM.Managed.DAFUL.GearTrain.Operation.AssemblyManager.md) #### Implements @@ -22,11 +23,11 @@ IOperation #### Inherited Members -DialogOperation.Execute\(\), -DialogOperation.OnApply\(object, CancelEventArgs\), -DialogOperation.IsConainOpenedDic\(Document\), -DialogOperation.Name, -DialogOperation.OpDialog, +[DialogOperation.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.IsConainOpenedDic\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OpDialog](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -99,7 +100,7 @@ The document. #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The document is null. @@ -115,7 +116,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -137,11 +138,11 @@ protected override void OnApply(object sender, CancelEventArgs arg) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. -`arg` [CancelEventArgs](https://learn.microsoft.com/dotnet/api/system.componentmodel.canceleventargs) +`arg` CancelEventArgs The instance containing the event data. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AssemblyManagerSimulation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AssemblyManagerSimulation.md index e8f1f9265e..e61d1ef3f0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AssemblyManagerSimulation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.AssemblyManagerSimulation.md @@ -1,4 +1,5 @@ -# Class AssemblyManagerSimulation +# Class AssemblyManagerSimulation + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class AssemblyManagerSimulation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [AssemblyManagerSimulation](VM.Managed.DAFUL.GearTrain.Operation.AssemblyManagerSimulation.md) @@ -87,7 +88,7 @@ public AssemblyManagerSimulation(GearTrainDocument doc) #### Parameters -`doc` GearTrainDocument +`doc` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The document. @@ -117,7 +118,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -139,7 +140,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CalculateBeamStiffness.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CalculateBeamStiffness.md index 77636c760c..23166604d4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CalculateBeamStiffness.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CalculateBeamStiffness.md @@ -1,4 +1,5 @@ -# Class CalculateBeamStiffness +# Class CalculateBeamStiffness + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class CalculateBeamStiffness : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [CalculateBeamStiffness](VM.Managed.DAFUL.GearTrain.Operation.CalculateBeamStiffness.md) @@ -87,15 +88,15 @@ public CalculateBeamStiffness(HiddenGearSetRackAndPinionDocument doc, string str #### Parameters -`doc` HiddenGearSetRackAndPinionDocument +`doc` [HiddenGearSetRackAndPinionDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenGearSetRackAndPinionDocument.cs) The document. -`strDocInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDocInfo` string The string document information. -`strDATFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDATFilePath` string The dat file path. @@ -125,7 +126,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -147,7 +148,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. @@ -161,5 +162,5 @@ public string[] Result() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CalculateBearingStiffness.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CalculateBearingStiffness.md index c97d1904d9..a5911f04f8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CalculateBearingStiffness.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CalculateBearingStiffness.md @@ -1,4 +1,5 @@ -# Class CalculateBearingStiffness +# Class CalculateBearingStiffness + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class CalculateBearingStiffness : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [CalculateBearingStiffness](VM.Managed.DAFUL.GearTrain.Operation.CalculateBearingStiffness.md) @@ -87,11 +88,11 @@ public CalculateBearingStiffness(HiddenBearingDocument doc, string strDocInfo) #### Parameters -`doc` HiddenBearingDocument +`doc` [HiddenBearingDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenBearingDocument.cs) The document. -`strDocInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDocInfo` string The string document information. @@ -121,7 +122,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -143,7 +144,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. @@ -157,5 +158,5 @@ public string[] Result() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CalculateToothStiffness.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CalculateToothStiffness.md index 89b325c196..b4dc22a3a2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CalculateToothStiffness.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CalculateToothStiffness.md @@ -1,4 +1,5 @@ -# Class CalculateToothStiffness +# Class CalculateToothStiffness + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class CalculateToothStiffness : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [CalculateToothStiffness](VM.Managed.DAFUL.GearTrain.Operation.CalculateToothStiffness.md) @@ -92,15 +93,15 @@ public CalculateToothStiffness(string strDocInfo, string strDatFile, double dEnd #### Parameters -`strDocInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDocInfo` string The string document information. -`strDatFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDatFile` string the string dat file. -`dEndPosY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dEndPosY` double The d end position y. @@ -108,15 +109,15 @@ The d end position y. The ar teeth position. -`nNumberOfMarker` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNumberOfMarker` uint The n number of marker. -`nGearIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nGearIdx` int Index of the n gear. -`strGearset` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGearset` string The gearset name. @@ -134,15 +135,15 @@ public CalculateToothStiffness(Document3D doc, string strDocInfo, string strDatF The document. -`strDocInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDocInfo` string The string document information. -`strDatFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDatFile` string the string dat file. -`dEndPosY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dEndPosY` double The d end position y. @@ -150,15 +151,15 @@ The d end position y. The ar teeth position. -`nNumberOfMarker` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNumberOfMarker` uint The n number of marker. -`nGearIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nGearIdx` int Index of the n gear. -`strGearset` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGearset` string The gearset name. @@ -200,7 +201,7 @@ protected double[] m_ardDeform #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### m\_bAdvancedGearGeometry @@ -210,7 +211,7 @@ protected bool m_bAdvancedGearGeometry #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_bRingGear @@ -220,7 +221,7 @@ protected bool m_bRingGear #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_doc @@ -244,7 +245,7 @@ protected int m_nGearIdx #### Field Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### m\_nNumberOfMarker @@ -256,7 +257,7 @@ protected uint m_nNumberOfMarker #### Field Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### m\_strDatFile @@ -268,7 +269,7 @@ protected string m_strDatFile #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### m\_strDocInfo @@ -280,7 +281,7 @@ protected string m_strDocInfo #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### m\_strGearSet @@ -292,7 +293,7 @@ protected string m_strGearSet #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Properties @@ -306,7 +307,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -324,11 +325,11 @@ protected void CreateMarkerOnNode(MeshDocument docMesh, int nNodeIndex, ref List mesh document -`nNodeIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNodeIndex` int the index of node -`lstMarkerPoint` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstMarkerPoint` List the list of marker's position @@ -346,13 +347,13 @@ protected virtual bool CreateSetNode(MeshDocument docMesh, string strName) The doc. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The name. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Execute\(\) @@ -376,7 +377,7 @@ protected T FindReferConnectEntity(NodalBody nBody, string entityName) where nodal body -`entityName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`entityName` string the name of reference object's prototype @@ -410,7 +411,7 @@ vec1 vec2 -`bLast` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bLast` bool bLast @@ -430,7 +431,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. @@ -444,15 +445,15 @@ protected void ReadOutFile(string strPath, int nLen, ref double[] ardDeform) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string the out file path -`nLen` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nLen` int nLen -`ardDeform` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ardDeform` double\[\] ardDeform @@ -466,7 +467,7 @@ public double[] Result() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### WriteDat\(string\) @@ -478,7 +479,7 @@ protected void WriteDat(string strDatPath) #### Parameters -`strDatPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDatPath` string strDatPath diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CalculateToothStiffnessForCycloid.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CalculateToothStiffnessForCycloid.md index de47519142..3a13c7de9a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CalculateToothStiffnessForCycloid.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CalculateToothStiffnessForCycloid.md @@ -1,4 +1,5 @@ -# Class CalculateToothStiffnessForCycloid +# Class CalculateToothStiffnessForCycloid + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class CalculateToothStiffnessForCycloid : CalculateToothStiffness, IOpera #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [CalculateToothStiffness](VM.Managed.DAFUL.GearTrain.Operation.CalculateToothStiffness.md) ← [CalculateToothStiffnessForCycloid](VM.Managed.DAFUL.GearTrain.Operation.CalculateToothStiffnessForCycloid.md) @@ -108,19 +109,19 @@ public CalculateToothStiffnessForCycloid(string strDocInfo, string strDatFile, i #### Parameters -`strDocInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDocInfo` string The string document information. -`strDatFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDatFile` string the string dat file. -`nGearIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nGearIdx` int Index of the n gear. -`strGearset` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGearset` string The gearset name. @@ -138,19 +139,19 @@ public CalculateToothStiffnessForCycloid(Document3D doc, string strDocInfo, stri The document. -`strDocInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDocInfo` string The string document information. -`strDatFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDatFile` string the string dat file. -`nGearIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nGearIdx` int Index of the n gear. -`strGearset` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGearset` string The gearset name. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CalculateToothStiffnessForRAP.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CalculateToothStiffnessForRAP.md index e8d562ed5b..4a9c05a01c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CalculateToothStiffnessForRAP.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CalculateToothStiffnessForRAP.md @@ -1,4 +1,5 @@ -# Class CalculateToothStiffnessForRAP +# Class CalculateToothStiffnessForRAP + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class CalculateToothStiffnessForRAP : CalculateToothStiffness, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [CalculateToothStiffness](VM.Managed.DAFUL.GearTrain.Operation.CalculateToothStiffness.md) ← [CalculateToothStiffnessForRAP](VM.Managed.DAFUL.GearTrain.Operation.CalculateToothStiffnessForRAP.md) @@ -108,15 +109,15 @@ public CalculateToothStiffnessForRAP(string strDocInfo, string strDatFile, doubl #### Parameters -`strDocInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDocInfo` string The string document information. -`strDatFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDatFile` string the string dat file. -`dEndPosY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dEndPosY` double The d end position y. @@ -124,15 +125,15 @@ The d end position y. The ar teeth position. -`nNumberOfMarker` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNumberOfMarker` uint The n number of marker. -`nGearIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nGearIdx` int Index of the n gear. -`strGearset` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGearset` string The gearset name. @@ -150,15 +151,15 @@ public CalculateToothStiffnessForRAP(Document3D doc, string strDocInfo, string s The document. -`strDocInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDocInfo` string The string document information. -`strDatFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDatFile` string the string dat file. -`dEndPosY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dEndPosY` double The d end position y. @@ -166,15 +167,15 @@ The d end position y. The ar teeth position. -`nNumberOfMarker` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNumberOfMarker` uint The n number of marker. -`nGearIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nGearIdx` int Index of the n gear. -`strGearset` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGearset` string The gearset name. @@ -208,11 +209,11 @@ protected override bool CreateSetNode(MeshDocument docMesh, string strName) The doc. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The name. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CalculateWebStiffness.NodeInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CalculateWebStiffness.NodeInfo.md index d30925f08b..9d4a7ff456 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CalculateWebStiffness.NodeInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CalculateWebStiffness.NodeInfo.md @@ -1,4 +1,5 @@ -# Class CalculateWebStiffness.NodeInfo +# Class CalculateWebStiffness.NodeInfo + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class CalculateWebStiffness.NodeInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CalculateWebStiffness.NodeInfo](VM.Managed.DAFUL.GearTrain.Operation.CalculateWebStiffness.NodeInfo.md) #### Extension Methods @@ -32,7 +33,7 @@ public NodeInfo(double dDist, Node node) #### Parameters -`dDist` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDist` double dDist @@ -52,7 +53,7 @@ public double Distance { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Node diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CalculateWebStiffness.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CalculateWebStiffness.md index 1a7f876a16..b26c36fe61 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CalculateWebStiffness.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CalculateWebStiffness.md @@ -1,4 +1,5 @@ -# Class CalculateWebStiffness +# Class CalculateWebStiffness + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class CalculateWebStiffness : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [CalculateWebStiffness](VM.Managed.DAFUL.GearTrain.Operation.CalculateWebStiffness.md) @@ -91,39 +92,39 @@ public CalculateWebStiffness(HiddenGearSetDocumentBase doc, string strDocInfo, s #### Parameters -`doc` HiddenGearSetDocumentBase +`doc` [HiddenGearSetDocumentBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenGearSetDocumentBase.cs) The document. -`strDocInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDocInfo` string The string document information. -`strDATFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDATFilePath` string The dat file path. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The target angle. -`dRange` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRange` double The target range. -`dYoungsModulus` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dYoungsModulus` double The target young's modulus. -`dPoissonRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dPoissonRatio` double The target poisson's ratio. -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double The target density. -`dDampingRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDampingRatio` double The target damping ratio. @@ -153,7 +154,7 @@ protected string[] m_arResult #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### m\_dAngle @@ -165,7 +166,7 @@ protected double m_dAngle #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_dDampingRatio @@ -177,7 +178,7 @@ protected double m_dDampingRatio #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_dDensity @@ -189,7 +190,7 @@ protected double m_dDensity #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_dIxx @@ -201,7 +202,7 @@ protected double m_dIxx #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_dIxy @@ -213,7 +214,7 @@ protected double m_dIxy #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_dIxz @@ -225,7 +226,7 @@ protected double m_dIxz #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_dIyy @@ -237,7 +238,7 @@ protected double m_dIyy #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_dIyz @@ -249,7 +250,7 @@ protected double m_dIyz #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_dIzz @@ -261,7 +262,7 @@ protected double m_dIzz #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_dMass @@ -273,7 +274,7 @@ protected double m_dMass #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_dPoissonRatio @@ -285,7 +286,7 @@ protected double m_dPoissonRatio #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_dRange @@ -297,7 +298,7 @@ protected double m_dRange #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_dYoungsModulus @@ -309,7 +310,7 @@ protected double m_dYoungsModulus #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_doc @@ -321,7 +322,7 @@ protected HiddenGearSetDocumentBase m_doc #### Field Value - HiddenGearSetDocumentBase + [HiddenGearSetDocumentBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenGearSetDocumentBase.cs) ### m\_strDATFilePath @@ -333,7 +334,7 @@ protected string m_strDATFilePath #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### m\_strDocInfo @@ -345,7 +346,7 @@ protected string m_strDocInfo #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Properties @@ -359,7 +360,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -381,7 +382,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. @@ -395,7 +396,7 @@ public double Ixx() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Ixy\(\) @@ -407,7 +408,7 @@ public double Ixy() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Ixz\(\) @@ -419,7 +420,7 @@ public double Ixz() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Iyy\(\) @@ -431,7 +432,7 @@ public double Iyy() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Iyz\(\) @@ -443,7 +444,7 @@ public double Iyz() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Izz\(\) @@ -455,7 +456,7 @@ public double Izz() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Mass\(\) @@ -467,7 +468,7 @@ public double Mass() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ReadOutFile\(string\) @@ -479,13 +480,13 @@ protected List ReadOutFile(string strPath) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The string path. #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List The result text lines. @@ -499,5 +500,5 @@ public string[] Result() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CalculateWebStiffnessMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CalculateWebStiffnessMeshFree.md index 4303275f36..f6ea41c8ea 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CalculateWebStiffnessMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CalculateWebStiffnessMeshFree.md @@ -1,4 +1,5 @@ -# Class CalculateWebStiffnessMeshFree +# Class CalculateWebStiffnessMeshFree + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class CalculateWebStiffnessMeshFree : CalculateWebStiffness, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [CalculateWebStiffness](VM.Managed.DAFUL.GearTrain.Operation.CalculateWebStiffness.md) ← [CalculateWebStiffnessMeshFree](VM.Managed.DAFUL.GearTrain.Operation.CalculateWebStiffnessMeshFree.md) @@ -117,39 +118,39 @@ public CalculateWebStiffnessMeshFree(HiddenGearSetDocumentBase doc, string strDo #### Parameters -`doc` HiddenGearSetDocumentBase +`doc` [HiddenGearSetDocumentBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenGearSetDocumentBase.cs) The document. -`strDocInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDocInfo` string The string document information. -`strDATFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDATFilePath` string The dat file path. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The target angle. -`dRange` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRange` double The target range. -`dYoungsModulus` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dYoungsModulus` double The target young's modulus. -`dPoissonRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dPoissonRatio` double The target poisson's ratio. -`dDensity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDensity` double The target density. -`dDampingRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDampingRatio` double The target damping ratio. @@ -179,7 +180,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ComponentAnalysisInShaftSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ComponentAnalysisInShaftSet.md index 1348601714..c8f409bfcb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ComponentAnalysisInShaftSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ComponentAnalysisInShaftSet.md @@ -1,4 +1,5 @@ -# Class ComponentAnalysisInShaftSet +# Class ComponentAnalysisInShaftSet + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class ComponentAnalysisInShaftSet : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ComponentAnalysisInShaftSet](VM.Managed.DAFUL.GearTrain.Operation.ComponentAnalysisInShaftSet.md) @@ -87,7 +88,7 @@ public ComponentAnalysisInShaftSet(string strCAInfo) #### Parameters -`strCAInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCAInfo` string The string ca information. @@ -101,11 +102,11 @@ public ComponentAnalysisInShaftSet(string strCAInfo, bool bOpenPost) #### Parameters -`strCAInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCAInfo` string The string ca information. -`bOpenPost` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bOpenPost` bool The post open flag. @@ -135,7 +136,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -157,7 +158,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ContactAnalysis.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ContactAnalysis.md index 861186b1ba..945b3bbdfb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ContactAnalysis.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ContactAnalysis.md @@ -1,4 +1,5 @@ -# Class ContactAnalysis +# Class ContactAnalysis + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class ContactAnalysis : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ContactAnalysis](VM.Managed.DAFUL.GearTrain.Operation.ContactAnalysis.md) @@ -87,51 +88,51 @@ public ContactAnalysis(string strDocInfo, string strSpeed, string strTorque, str #### Parameters -`strDocInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDocInfo` string The string document information. -`strSpeed` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSpeed` string The string speed. -`strTorque` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strTorque` string The string torque. -`strRatio` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRatio` string The string torque. -`arnIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`arnIndex` int\[\] Index. -`strResultFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strResultFileName` string The string result file name. -`nSamplingFrequency` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nSamplingFrequency` int The sampling frequency. -`nGearPairIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nGearPairIndex` int The gear pair index. -`bOpenPost` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bOpenPost` bool The post open flag. -`strInput` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInput` string The input type. -`strOutput` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOutput` string The output type. -`strAlignType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strAlignType` string The align type. @@ -161,7 +162,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -183,7 +184,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.BearingCreateInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.BearingCreateInfo.md index 497a568706..2bd10b004b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.BearingCreateInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.BearingCreateInfo.md @@ -1,4 +1,5 @@ -# Class CreateDTEntityUtil.BearingCreateInfo +# Class CreateDTEntityUtil.BearingCreateInfo + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -9,7 +10,7 @@ public class CreateDTEntityUtil.BearingCreateInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CreateDTEntityUtil.BearingCreateInfo](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.BearingCreateInfo.md) #### Extension Methods @@ -36,7 +37,7 @@ public double ActionPoint #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### AdditionalDimensionInformation @@ -46,7 +47,7 @@ public double[] AdditionalDimensionInformation #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### AdditionalPropertyInformation @@ -56,7 +57,7 @@ public double[] AdditionalPropertyInformation #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### AxialClearance @@ -66,7 +67,7 @@ public double AxialClearance #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### BallDiameter @@ -76,7 +77,7 @@ public double BallDiameter #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### BearingType @@ -86,7 +87,7 @@ public PropertyBearing.enBearingType BearingType #### Field Value - PropertyBearing.enBearingType + [PropertyBearing](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/Bearing.cs).[enBearingType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/Bearing.cs) ### CurvatureCenterInner @@ -96,7 +97,7 @@ public double CurvatureCenterInner #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### CurvatureCenterOuter @@ -106,7 +107,7 @@ public double CurvatureCenterOuter #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DampingRatio @@ -116,7 +117,7 @@ public double DampingRatio #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### InnerRacewayOfInnerDiameter @@ -126,7 +127,7 @@ public double InnerRacewayOfInnerDiameter #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### InnerRacewayOfOuterDiameter @@ -136,7 +137,7 @@ public double InnerRacewayOfOuterDiameter #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### InnerRacewayOfOuterDiameter2 @@ -146,7 +147,7 @@ public double InnerRacewayOfOuterDiameter2 #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NumberOfBall @@ -156,7 +157,7 @@ public int NumberOfBall #### Field Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### OuterRacewayOfInnerDiameter @@ -166,7 +167,7 @@ public double OuterRacewayOfInnerDiameter #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### OuterRacewayOfInnerDiameter2 @@ -176,7 +177,7 @@ public double OuterRacewayOfInnerDiameter2 #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### OuterRacewayOfOuterDiameter @@ -186,7 +187,7 @@ public double OuterRacewayOfOuterDiameter #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RadialClearance @@ -196,7 +197,7 @@ public double RadialClearance #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RoundingRadius @@ -206,7 +207,7 @@ public double RoundingRadius #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StiffnessMatrix @@ -216,7 +217,7 @@ public double[] StiffnessMatrix #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### StiffnessType @@ -226,7 +227,7 @@ public PropertyBearing.enStiffnessType StiffnessType #### Field Value - PropertyBearing.enStiffnessType + [PropertyBearing](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/Bearing.cs).[enStiffnessType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/Bearing.cs) ### UnloadedContactAngle @@ -236,7 +237,7 @@ public double UnloadedContactAngle #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Width @@ -246,7 +247,7 @@ public double Width #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Properties @@ -258,7 +259,7 @@ public string[] InputArray { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetCreateInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetCreateInfo.md index c9e5941ac5..29cb7a30e3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetCreateInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetCreateInfo.md @@ -1,4 +1,5 @@ -# Class CreateDTEntityUtil.GearSetCreateInfo +# Class CreateDTEntityUtil.GearSetCreateInfo + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -9,7 +10,7 @@ public class CreateDTEntityUtil.GearSetCreateInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CreateDTEntityUtil.GearSetCreateInfo](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetCreateInfo.md) #### Derived @@ -44,7 +45,7 @@ public bool Advanced #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CenterDistance @@ -54,7 +55,7 @@ public double[] CenterDistance #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### FaceWidth @@ -64,7 +65,7 @@ public double[] FaceWidth #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GearType @@ -74,7 +75,7 @@ public BasicInvolute.GearType GearType #### Field Value - BasicInvolute.GearType + [BasicInvolute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearInfo.cs).[GearType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearInfo.cs) ### HelicalAngleDirection @@ -84,7 +85,7 @@ public BasicInvolute.HelicalAngleType HelicalAngleDirection #### Field Value - BasicInvolute.HelicalAngleType + [BasicInvolute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearInfo.cs).[HelicalAngleType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearInfo.cs) ### HelixAngle @@ -94,7 +95,7 @@ public double HelixAngle #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### KissSoft @@ -104,7 +105,7 @@ public bool KissSoft #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Module @@ -114,7 +115,7 @@ public double Module #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Name @@ -124,7 +125,7 @@ public string[] Name #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### NumberOfGear @@ -134,7 +135,7 @@ public int NumberOfGear #### Field Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfTeeth @@ -144,7 +145,7 @@ public int[] NumberOfTeeth #### Field Value - [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] + int\[\] ### PasternAngle @@ -154,7 +155,7 @@ public double PasternAngle #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### PressureAngle @@ -164,7 +165,7 @@ public double PressureAngle #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ProfileMethodType @@ -174,7 +175,7 @@ public BasicInvolute.ProfilMethodType ProfileMethodType #### Field Value - BasicInvolute.ProfilMethodType + [BasicInvolute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearInfo.cs).[ProfilMethodType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearInfo.cs) ### ProfileShift @@ -184,7 +185,7 @@ public double[] ProfileShift #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### Reserved @@ -194,7 +195,7 @@ public double[] Reserved #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ## Properties @@ -206,7 +207,7 @@ public string[] CenterDistances { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### FaceWidths @@ -216,7 +217,7 @@ public string[] FaceWidths { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### InputArray @@ -226,7 +227,7 @@ public string[] InputArray { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### InputArrayForCustom @@ -236,7 +237,7 @@ public string[] InputArrayForCustom { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### InputArrayForPlanetary @@ -246,7 +247,7 @@ public string[] InputArrayForPlanetary { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### Names @@ -256,7 +257,7 @@ public string Names { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NumberOfTeeths @@ -266,7 +267,7 @@ public string[] NumberOfTeeths { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### ProfileShifts @@ -276,7 +277,7 @@ public string[] ProfileShifts { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetCrossHelicalCreateInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetCrossHelicalCreateInfo.md index 255a3387c2..8b635638bf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetCrossHelicalCreateInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetCrossHelicalCreateInfo.md @@ -1,4 +1,5 @@ -# Class CreateDTEntityUtil.GearSetCrossHelicalCreateInfo +# Class CreateDTEntityUtil.GearSetCrossHelicalCreateInfo + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -9,7 +10,7 @@ public class CreateDTEntityUtil.GearSetCrossHelicalCreateInfo : CreateDTEntityUt #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CreateDTEntityUtil.GearSetCreateInfo](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetCreateInfo.md) ← [CreateDTEntityUtil.GearSetCrossHelicalCreateInfo](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetCrossHelicalCreateInfo.md) @@ -68,7 +69,7 @@ public double CrossAxisAngle #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Properties @@ -80,7 +81,7 @@ public string[] InputArrayForCrossHelical { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetCycloidPinCreateInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetCycloidPinCreateInfo.md index e6824bfc99..2cc2942b3f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetCycloidPinCreateInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetCycloidPinCreateInfo.md @@ -1,4 +1,5 @@ -# Class CreateDTEntityUtil.GearSetCycloidPinCreateInfo +# Class CreateDTEntityUtil.GearSetCycloidPinCreateInfo + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -9,7 +10,7 @@ public class CreateDTEntityUtil.GearSetCycloidPinCreateInfo : CreateDTEntityUtil #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CreateDTEntityUtil.GearSetCreateInfo](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetCreateInfo.md) ← [CreateDTEntityUtil.GearSetCycloidPinCreateInfo](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetCycloidPinCreateInfo.md) @@ -68,7 +69,7 @@ public string CycloidProfile #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### EccentricityOfGear @@ -78,7 +79,7 @@ public double EccentricityOfGear #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### PinDiameterOfGear @@ -88,7 +89,7 @@ public double PinDiameterOfGear #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### PinPitchOfGear @@ -98,7 +99,7 @@ public double PinPitchOfGear #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Properties @@ -110,7 +111,7 @@ public string[] InputArrayForCycloidPin { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -122,5 +123,5 @@ public void InitializeCycloidPin(string strProfilePath) #### Parameters -`strProfilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strProfilePath` string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetPlanetaryDPCreateInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetPlanetaryDPCreateInfo.md index ef0eab6ffe..dde367160f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetPlanetaryDPCreateInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetPlanetaryDPCreateInfo.md @@ -1,4 +1,5 @@ -# Class CreateDTEntityUtil.GearSetPlanetaryDPCreateInfo +# Class CreateDTEntityUtil.GearSetPlanetaryDPCreateInfo + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -9,7 +10,7 @@ public class CreateDTEntityUtil.GearSetPlanetaryDPCreateInfo : CreateDTEntityUti #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CreateDTEntityUtil.GearSetCreateInfo](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetCreateInfo.md) ← [CreateDTEntityUtil.GearSetPlanetaryDPCreateInfo](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetPlanetaryDPCreateInfo.md) @@ -68,7 +69,7 @@ public PropertyGearSetPlanetaryDP.DogLegDirectionType DogLegDirection #### Field Value - PropertyGearSetPlanetaryDP.DogLegDirectionType + [PropertyGearSetPlanetaryDP](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearSetPlanetaryDP.cs).[DogLegDirectionType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearSetPlanetaryDP.cs) ## Properties @@ -80,7 +81,7 @@ public string[] InputArrayForPlanetaryDP { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetRackAndPinionCreateInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetRackAndPinionCreateInfo.md index 9fa1c2fe74..5e3a4e7b80 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetRackAndPinionCreateInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetRackAndPinionCreateInfo.md @@ -1,4 +1,5 @@ -# Class CreateDTEntityUtil.GearSetRackAndPinionCreateInfo +# Class CreateDTEntityUtil.GearSetRackAndPinionCreateInfo + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -9,7 +10,7 @@ public class CreateDTEntityUtil.GearSetRackAndPinionCreateInfo : CreateDTEntityU #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CreateDTEntityUtil.GearSetCreateInfo](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetCreateInfo.md) ← [CreateDTEntityUtil.GearSetRackAndPinionCreateInfo](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetRackAndPinionCreateInfo.md) @@ -68,7 +69,7 @@ public double DiameterOfRack #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### HeightOfRack @@ -78,7 +79,7 @@ public double HeightOfRack #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RackHelixAngle @@ -88,7 +89,7 @@ public double RackHelixAngle #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RackType @@ -98,7 +99,7 @@ public Rack.BarType RackType #### Field Value - Rack.BarType + [Rack](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearRackInfo.cs).[BarType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearRackInfo.cs) ### SideLength @@ -108,7 +109,7 @@ public double SideLength #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UseDifferentHelixAngle @@ -118,7 +119,7 @@ public bool UseDifferentHelixAngle #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Properties @@ -130,7 +131,7 @@ public string[] InputArrayForPlanetaryRackAndPinion { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetWormAndWormWheelCreateInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetWormAndWormWheelCreateInfo.md index da837a3972..414c5d1470 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetWormAndWormWheelCreateInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetWormAndWormWheelCreateInfo.md @@ -1,4 +1,5 @@ -# Class CreateDTEntityUtil.GearSetWormAndWormWheelCreateInfo +# Class CreateDTEntityUtil.GearSetWormAndWormWheelCreateInfo + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -9,7 +10,7 @@ public class CreateDTEntityUtil.GearSetWormAndWormWheelCreateInfo : CreateDTEnti #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CreateDTEntityUtil.GearSetCreateInfo](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetCreateInfo.md) ← [CreateDTEntityUtil.GearSetWormAndWormWheelCreateInfo](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetWormAndWormWheelCreateInfo.md) @@ -68,7 +69,7 @@ public double[] AddendumCoefficient #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### DedendumCoefficient @@ -78,7 +79,7 @@ public double[] DedendumCoefficient #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### ToolTipRadius @@ -88,7 +89,7 @@ public double[] ToolTipRadius #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ## Properties @@ -100,7 +101,7 @@ public string[] InputArrayForWormAndWormWheel { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.SlidingBearingCreateInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.SlidingBearingCreateInfo.md index 388380810f..acd5d84284 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.SlidingBearingCreateInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.SlidingBearingCreateInfo.md @@ -1,4 +1,5 @@ -# Class CreateDTEntityUtil.SlidingBearingCreateInfo +# Class CreateDTEntityUtil.SlidingBearingCreateInfo + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -9,7 +10,7 @@ public class CreateDTEntityUtil.SlidingBearingCreateInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CreateDTEntityUtil.SlidingBearingCreateInfo](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.SlidingBearingCreateInfo.md) #### Extension Methods @@ -36,7 +37,7 @@ public double ArcAngle #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### InnerDiameter @@ -46,7 +47,7 @@ public double InnerDiameter #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Length @@ -56,7 +57,7 @@ public double Length #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Thickness @@ -66,7 +67,7 @@ public double Thickness #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Type @@ -88,7 +89,7 @@ public string[] InputArray { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.StiffnessBearingCreateInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.StiffnessBearingCreateInfo.md index 2203e8586d..795cfbf350 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.StiffnessBearingCreateInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.StiffnessBearingCreateInfo.md @@ -1,4 +1,5 @@ -# Class CreateDTEntityUtil.StiffnessBearingCreateInfo +# Class CreateDTEntityUtil.StiffnessBearingCreateInfo + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -9,7 +10,7 @@ public class CreateDTEntityUtil.StiffnessBearingCreateInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CreateDTEntityUtil.StiffnessBearingCreateInfo](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.StiffnessBearingCreateInfo.md) #### Extension Methods @@ -36,7 +37,7 @@ public double AxialClearance #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### BallDiameter @@ -46,7 +47,7 @@ public double BallDiameter #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### BearingType @@ -56,7 +57,7 @@ public PropertyBearing.enBearingType BearingType #### Field Value - PropertyBearing.enBearingType + [PropertyBearing](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/Bearing.cs).[enBearingType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/Bearing.cs) ### CurvatureCenterInner @@ -66,7 +67,7 @@ public double CurvatureCenterInner #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### CurvatureCenterOuter @@ -76,7 +77,7 @@ public double CurvatureCenterOuter #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DampingRatio @@ -86,7 +87,7 @@ public double DampingRatio #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### InnerRacewayOfInnerDiameter @@ -96,7 +97,7 @@ public double InnerRacewayOfInnerDiameter #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### InnerRacewayOfOuterDiameter @@ -106,7 +107,7 @@ public double InnerRacewayOfOuterDiameter #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NumberOfBall @@ -116,7 +117,7 @@ public int NumberOfBall #### Field Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### OuterRacewayOfInnerDiameter @@ -126,7 +127,7 @@ public double OuterRacewayOfInnerDiameter #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### OuterRacewayOfOuterDiameter @@ -136,7 +137,7 @@ public double OuterRacewayOfOuterDiameter #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RadialClearance @@ -146,7 +147,7 @@ public double RadialClearance #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StiffnessMatrix @@ -156,7 +157,7 @@ public double[] StiffnessMatrix #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### StiffnessType @@ -166,7 +167,7 @@ public PropertyBearing.enStiffnessType StiffnessType #### Field Value - PropertyBearing.enStiffnessType + [PropertyBearing](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/Bearing.cs).[enStiffnessType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/Bearing.cs) ### UnloadedContactAngle @@ -176,7 +177,7 @@ public double UnloadedContactAngle #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Width @@ -186,7 +187,7 @@ public double Width #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Properties @@ -198,7 +199,7 @@ public string[] InputArray { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.md index 772554618d..1fc98e141f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.md @@ -1,4 +1,5 @@ -# Class CreateDTEntityUtil +# Class CreateDTEntityUtil + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -9,7 +10,7 @@ public static class CreateDTEntityUtil #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CreateDTEntityUtil](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.md) #### Extension Methods @@ -28,15 +29,15 @@ public static Bearing CreateBearing(this GearTrainDocument gearTrainDocument, st #### Parameters -`gearTrainDocument` GearTrainDocument +`gearTrainDocument` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string `info` [CreateDTEntityUtil](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.md).[BearingCreateInfo](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.BearingCreateInfo.md) #### Returns - Bearing + [Bearing](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/Bearing.cs) ### CreateCrossHelicalGearset\(GearTrainDocument, string, GearSetCrossHelicalCreateInfo\) @@ -46,15 +47,15 @@ public static GearSetCrossHelical CreateCrossHelicalGearset(this GearTrainDocume #### Parameters -`gearTrainDocument` GearTrainDocument +`gearTrainDocument` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string `info` [CreateDTEntityUtil](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.md).[GearSetCrossHelicalCreateInfo](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetCrossHelicalCreateInfo.md) #### Returns - GearSetCrossHelical + [GearSetCrossHelical](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearSetCrossHelical.cs) ### CreateCustomGearset\(GearTrainDocument, string, GearSetCreateInfo\) @@ -64,15 +65,15 @@ public static GearSetCustom CreateCustomGearset(this GearTrainDocument gearTrain #### Parameters -`gearTrainDocument` GearTrainDocument +`gearTrainDocument` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string `info` [CreateDTEntityUtil](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.md).[GearSetCreateInfo](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetCreateInfo.md) #### Returns - GearSetCustom + [GearSetCustom](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearSetCustom.cs) ### CreateCycloidPinGearset\(GearTrainDocument, string, GearSetCycloidPinCreateInfo\) @@ -82,15 +83,15 @@ public static GearSetCycloidPin CreateCycloidPinGearset(this GearTrainDocument g #### Parameters -`gearTrainDocument` GearTrainDocument +`gearTrainDocument` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string `info` [CreateDTEntityUtil](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.md).[GearSetCycloidPinCreateInfo](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetCycloidPinCreateInfo.md) #### Returns - GearSetCycloidPin + [GearSetCycloidPin](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearSetCycloidPin.cs) ### CreateGearset\(GearTrainDocument, string, int, GearSetCreateInfo\) @@ -100,17 +101,17 @@ public static GearSet CreateGearset(this GearTrainDocument gearTrainDocument, st #### Parameters -`gearTrainDocument` GearTrainDocument +`gearTrainDocument` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string -`nNumGear` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNumGear` int `info` [CreateDTEntityUtil](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.md).[GearSetCreateInfo](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetCreateInfo.md) #### Returns - GearSet + [GearSet](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearSet.cs) ### CreateInternalGearset\(GearTrainDocument, string, GearSetCreateInfo\) @@ -120,15 +121,15 @@ public static GearSetInternal CreateInternalGearset(this GearTrainDocument gearT #### Parameters -`gearTrainDocument` GearTrainDocument +`gearTrainDocument` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string `info` [CreateDTEntityUtil](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.md).[GearSetCreateInfo](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetCreateInfo.md) #### Returns - GearSetInternal + [GearSetInternal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearSetInternal.cs) ### CreatePlanetaryDPGearset\(GearTrainDocument, string, int, GearSetPlanetaryDPCreateInfo\) @@ -138,17 +139,17 @@ public static GearSetPlanetaryDP CreatePlanetaryDPGearset(this GearTrainDocument #### Parameters -`gearTrainDocument` GearTrainDocument +`gearTrainDocument` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string -`nNumPinionGear` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNumPinionGear` int `info` [CreateDTEntityUtil](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.md).[GearSetPlanetaryDPCreateInfo](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetPlanetaryDPCreateInfo.md) #### Returns - GearSetPlanetaryDP + [GearSetPlanetaryDP](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearSetPlanetaryDP.cs) ### CreatePlanetaryGearset\(GearTrainDocument, string, int, GearSetCreateInfo\) @@ -158,17 +159,17 @@ public static GearSetPlanetary CreatePlanetaryGearset(this GearTrainDocument gea #### Parameters -`gearTrainDocument` GearTrainDocument +`gearTrainDocument` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string -`nNumPinionGear` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNumPinionGear` int `info` [CreateDTEntityUtil](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.md).[GearSetCreateInfo](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetCreateInfo.md) #### Returns - GearSetPlanetary + [GearSetPlanetary](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearSetPlanetary.cs) ### CreateRackAndPinionGearset\(GearTrainDocument, string, GearSetRackAndPinionCreateInfo\) @@ -178,15 +179,15 @@ public static GearSetRackAndPinion CreateRackAndPinionGearset(this GearTrainDocu #### Parameters -`gearTrainDocument` GearTrainDocument +`gearTrainDocument` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string `info` [CreateDTEntityUtil](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.md).[GearSetRackAndPinionCreateInfo](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetRackAndPinionCreateInfo.md) #### Returns - GearSetRackAndPinion + [GearSetRackAndPinion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearSetRackAndPinion.cs) ### CreateSimpleShaftset\(GearTrainDocument, string, Vector, Vector, double, double, int\) @@ -196,23 +197,23 @@ public static ShaftSet CreateSimpleShaftset(this GearTrainDocument gearTrainDocu #### Parameters -`gearTrainDocument` GearTrainDocument +`gearTrainDocument` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string `position` Vector `rotateAxis` Vector -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double -`dDiameter` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDiameter` double -`nNumSection` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNumSection` int #### Returns - ShaftSet + [ShaftSet](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/ShaftSet.cs) ### CreateSlidingBearing\(GearTrainDocument, string, SlidingBearingCreateInfo\) @@ -222,15 +223,15 @@ public static SlidingBearing CreateSlidingBearing(this GearTrainDocument gearTra #### Parameters -`gearTrainDocument` GearTrainDocument +`gearTrainDocument` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string `info` [CreateDTEntityUtil](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.md).[SlidingBearingCreateInfo](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.SlidingBearingCreateInfo.md) #### Returns - SlidingBearing + [SlidingBearing](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/SlidingBearing.cs) ### CreateStiffnessBearing\(GearTrainDocument, string, StiffnessBearingCreateInfo\) @@ -240,15 +241,15 @@ public static Bearing CreateStiffnessBearing(this GearTrainDocument gearTrainDoc #### Parameters -`gearTrainDocument` GearTrainDocument +`gearTrainDocument` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string `info` [CreateDTEntityUtil](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.md).[StiffnessBearingCreateInfo](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.StiffnessBearingCreateInfo.md) #### Returns - Bearing + [Bearing](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/Bearing.cs) ### CreateWormAndWormWheelGearset\(GearTrainDocument, string, GearSetWormAndWormWheelCreateInfo\) @@ -258,15 +259,15 @@ public static GearSetWormAndWormWheel CreateWormAndWormWheelGearset(this GearTra #### Parameters -`gearTrainDocument` GearTrainDocument +`gearTrainDocument` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string `info` [CreateDTEntityUtil](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.md).[GearSetWormAndWormWheelCreateInfo](VM.Managed.DAFUL.GearTrain.Operation.CreateDTEntityUtil.GearSetWormAndWormWheelCreateInfo.md) #### Returns - GearSetWormAndWormWheel + [GearSetWormAndWormWheel](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearSetWormAndWormWheel.cs) ### OpenHiddenDocument\(object\) @@ -276,7 +277,7 @@ public static Document3D OpenHiddenDocument(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object #### Returns diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.DeleteDTEntity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.DeleteDTEntity.md index 91bf48f39a..844fb52c3d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.DeleteDTEntity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.DeleteDTEntity.md @@ -1,4 +1,5 @@ -# Class DeleteDTEntity +# Class DeleteDTEntity + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class DeleteDTEntity : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [DeleteDTEntity](VM.Managed.DAFUL.GearTrain.Operation.DeleteDTEntity.md) @@ -115,7 +116,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -137,7 +138,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.EHDBearingUtil.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.EHDBearingUtil.md index 71810104d0..249835ed07 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.EHDBearingUtil.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.EHDBearingUtil.md @@ -1,4 +1,5 @@ -# Class EHDBearingUtil +# Class EHDBearingUtil + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -9,7 +10,7 @@ public static class EHDBearingUtil #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [EHDBearingUtil](VM.Managed.DAFUL.GearTrain.Operation.EHDBearingUtil.md) #### Extension Methods @@ -28,9 +29,9 @@ public static EHDBearing CreateEHDBearing(this GearTrainDocument gearTrainDocume #### Parameters -`gearTrainDocument` GearTrainDocument +`gearTrainDocument` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string `baseGeometry` ObjectBase @@ -48,15 +49,15 @@ public static EHDBearing CreateEHDBearing(this GearTrainDocument gearTrainDocume `actionXAxis` DirectionBase -`dBearingRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBearingRadius` double -`dJournalRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dJournalRadius` double -`dWidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dWidth` double #### Returns - EHDBearing + [EHDBearing](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDEHDBearing/EHDBearing.cs) ### CreateEHDBearing\(GearTrainDocument, string, ObjectBase, ObjectBase, PointBase, DirectionBase, DirectionBase, double, double, double\) @@ -66,9 +67,9 @@ public static EHDBearing CreateEHDBearing(this GearTrainDocument gearTrainDocume #### Parameters -`gearTrainDocument` GearTrainDocument +`gearTrainDocument` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string `baseGeometry` ObjectBase @@ -80,13 +81,13 @@ public static EHDBearing CreateEHDBearing(this GearTrainDocument gearTrainDocume `xAxis` DirectionBase -`dBearingRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBearingRadius` double -`dJournalRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dJournalRadius` double -`dWidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dWidth` double #### Returns - EHDBearing + [EHDBearing](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDEHDBearing/EHDBearing.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ExecuteBodyToDT.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ExecuteBodyToDT.md index fde3658d80..fef8a1bcf5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ExecuteBodyToDT.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ExecuteBodyToDT.md @@ -1,4 +1,5 @@ -# Class ExecuteBodyToDT +# Class ExecuteBodyToDT + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,9 +12,9 @@ public class ExecuteBodyToDT : DialogOperation, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -DialogOperation ← +[DialogOperation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs) ← [ExecuteBodyToDT](VM.Managed.DAFUL.GearTrain.Operation.ExecuteBodyToDT.md) #### Implements @@ -22,11 +23,11 @@ IOperation #### Inherited Members -DialogOperation.Execute\(\), -DialogOperation.OnApply\(object, CancelEventArgs\), -DialogOperation.IsConainOpenedDic\(Document\), -DialogOperation.Name, -DialogOperation.OpDialog, +[DialogOperation.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.IsConainOpenedDic\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OpDialog](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -105,7 +106,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -127,11 +128,11 @@ protected override void OnApply(object sender, CancelEventArgs arg) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. -`arg` [CancelEventArgs](https://learn.microsoft.com/dotnet/api/system.componentmodel.canceleventargs) +`arg` CancelEventArgs The instance containing the event data. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ExportDFG.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ExportDFG.md index 3f60bb4d5c..6313d022ff 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ExportDFG.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ExportDFG.md @@ -1,4 +1,5 @@ -# Class ExportDFG +# Class ExportDFG + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,10 +12,10 @@ public class ExportDFG : ExportDFG, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ExportDFG ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ExportDFG](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFG.cs) ← [ExportDFG](VM.Managed.DAFUL.GearTrain.Operation.ExportDFG.md) #### Implements @@ -23,31 +24,32 @@ IOperation #### Inherited Members -ExportDFG.Execute\(\), -ExportDFG.ExportDFGImpl\(\), -ExportDFG.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ExportDFG.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFG.cs), +[ExportDFG.ExportDFGImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFG.cs), +[ExportDFG.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFG.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ExportDFS.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ExportDFS.md index 08a94a238f..7861500c8c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ExportDFS.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ExportDFS.md @@ -1,4 +1,5 @@ -# Class ExportDFS +# Class ExportDFS + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,10 +12,10 @@ public class ExportDFS : ExportDFS, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ExportDFS ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ExportDFS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs) ← [ExportDFS](VM.Managed.DAFUL.GearTrain.Operation.ExportDFS.md) #### Implements @@ -23,31 +24,32 @@ IOperation #### Inherited Members -ExportDFS.Execute\(\), -ExportDFS.ExportDFSImpl\(\), -ExportDFS.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ExportDFS.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs), +[ExportDFS.ExportDFSImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs), +[ExportDFS.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ExportFiles.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ExportFiles.md new file mode 100644 index 0000000000..a61ae73afd --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ExportFiles.md @@ -0,0 +1,151 @@ +# Class ExportFiles + + +Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) +Assembly: VMOpGearTrain.dll + +```csharp +public class ExportFiles : ExportFiles, IOperation +``` + +#### Inheritance + +object ← +OperationBase ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ExportFiles](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs) ← +[ExportFiles](VM.Managed.DAFUL.GearTrain.Operation.ExportFiles.md) + +#### Implements + +IOperation + +#### Inherited Members + +[ExportFiles.m\_bWriteDFS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.m\_bWriteXML](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.m\_bWriteDFG](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.m\_bIncludeReferenceFiles](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[ExportFiles.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportFiles.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +OperationBase.g\_bRedrawKernel, +OperationBase.g\_bVerify, +OperationBase.g\_bSkipAddEvent, +OperationBase.g\_bDupicateMsg, +OperationBase.m\_bIsHistoryMerge, +OperationBase.Execute\(\), +OperationBase.PostExecute\(\), +OperationBase.GetInformation\(XmlWriter\), +OperationBase.Create\(string, View, object\), +OperationBase.Create\(string, IDocument, object\), +OperationBase.Create\(string, object\), +OperationBase.Create\(string\), +OperationBase.StartSession\(\), +OperationBase.StartSession\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSession\(OperationBase\), +OperationBase.StartSessionAndWait\(\), +OperationBase.StartSessionAndWait\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSessionAndWait\(OperationBase\), +OperationBase.Initialize\(OperationBase.ShowVerifyResult\), +OperationBase.RecordJournal\(OperationBase\), +OperationBase.UseSession\(string\), +OperationBase.raise\_OnOperationStatusChanged\(object, OperationStatusEventArgs\), +OperationBase.raise\_OnEndOperation\(object, EventArgs\), +OperationBase.ClearCurrentMark\(string\), +OperationBase.ClearCurrentMark\(IDocument\), +OperationBase.ClearCurrentMark\(\), +OperationBase.GlobalOverride, +OperationBase.IsDoingThread, +OperationBase.ExecuteMacro, +OperationBase.SimStatus, +OperationBase.Status, +OperationBase.autoEvents, +OperationBase.IsHistoryMerge, +OperationBase.SkipClearTemporaryLinkContainer, +OperationBase.PostExecuteClearTemporaryLinkContainer, +OperationBase.SkipEndOperation, +OperationBase.UseMacro, +OperationBase.MarkStatus, +OperationBase.UseThread, +OperationBase.Name, +OperationBase.ExecutableOnHold, +OperationBase.Override, +OperationBase.Parameter, +OperationBase.View, +OperationBase.Document, +OperationBase.OnEndOperation, +OperationBase.OnOperationStatusChanged + +#### Extension Methods + +[LinkPropertyItemCache.GetLinkProperties\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkProperties\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkPropertiesAndValues\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkPropertiesAndValues\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkedObjects\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkedObjects\_\_1\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_) + +## Constructors + +### ExportFiles\(Document3D, string, bool, bool, bool, bool\) + +```csharp +public ExportFiles(Document3D doc, string strFilePath, bool bWriteDFS, bool bWriteXML, bool bWriteDFG, bool bIncludeReferenceFiles) +``` + +#### Parameters + +`doc` Document3D + +`strFilePath` string + +`bWriteDFS` bool + +`bWriteXML` bool + +`bWriteDFG` bool + +`bIncludeReferenceFiles` bool + +### ExportFiles\(JournalParameter\) + +```csharp +public ExportFiles(JournalParameter jp) +``` + +#### Parameters + +`jp` JournalParameter + +## Methods + +### Execute\(\) + +Execute the operation. + +```csharp +public override void Execute() +``` + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ExportMotionFiles.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ExportMotionFiles.md new file mode 100644 index 0000000000..a4759d8ce7 --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ExportMotionFiles.md @@ -0,0 +1,112 @@ +# Class ExportMotionFiles + + +Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) +Assembly: VMOpGearTrain.dll + +```csharp +public class ExportMotionFiles : ExportMotionFiles, IOperation +``` + +#### Inheritance + +object ← +OperationBase ← +[DialogOperation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs) ← +[ExportMotionFiles](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs) ← +[ExportMotionFiles](VM.Managed.DAFUL.GearTrain.Operation.ExportMotionFiles.md) + +#### Implements + +IOperation + +#### Inherited Members + +[ExportMotionFiles.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[ExportMotionFiles.GetDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[ExportMotionFiles.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[ExportMotionFiles.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[ExportMotionFiles.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[DialogOperation.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.IsConainOpenedDic\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OpDialog](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +OperationBase.g\_bRedrawKernel, +OperationBase.g\_bVerify, +OperationBase.g\_bSkipAddEvent, +OperationBase.g\_bDupicateMsg, +OperationBase.m\_bIsHistoryMerge, +OperationBase.Execute\(\), +OperationBase.PostExecute\(\), +OperationBase.GetInformation\(XmlWriter\), +OperationBase.Create\(string, View, object\), +OperationBase.Create\(string, IDocument, object\), +OperationBase.Create\(string, object\), +OperationBase.Create\(string\), +OperationBase.StartSession\(\), +OperationBase.StartSession\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSession\(OperationBase\), +OperationBase.StartSessionAndWait\(\), +OperationBase.StartSessionAndWait\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSessionAndWait\(OperationBase\), +OperationBase.Initialize\(OperationBase.ShowVerifyResult\), +OperationBase.RecordJournal\(OperationBase\), +OperationBase.UseSession\(string\), +OperationBase.raise\_OnOperationStatusChanged\(object, OperationStatusEventArgs\), +OperationBase.raise\_OnEndOperation\(object, EventArgs\), +OperationBase.ClearCurrentMark\(string\), +OperationBase.ClearCurrentMark\(IDocument\), +OperationBase.ClearCurrentMark\(\), +OperationBase.GlobalOverride, +OperationBase.IsDoingThread, +OperationBase.ExecuteMacro, +OperationBase.SimStatus, +OperationBase.Status, +OperationBase.autoEvents, +OperationBase.IsHistoryMerge, +OperationBase.SkipClearTemporaryLinkContainer, +OperationBase.PostExecuteClearTemporaryLinkContainer, +OperationBase.SkipEndOperation, +OperationBase.UseMacro, +OperationBase.MarkStatus, +OperationBase.UseThread, +OperationBase.Name, +OperationBase.ExecutableOnHold, +OperationBase.Override, +OperationBase.Parameter, +OperationBase.View, +OperationBase.Document, +OperationBase.OnEndOperation, +OperationBase.OnOperationStatusChanged + +#### Extension Methods + +[LinkPropertyItemCache.GetLinkProperties\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkProperties\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkPropertiesAndValues\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkPropertiesAndValues\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkedObjects\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkedObjects\_\_1\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_) + +## Constructors + +### ExportMotionFiles\(Document\) + +```csharp +public ExportMotionFiles(Document doc) +``` + +#### Parameters + +`doc` Document + +## Methods + +### GetDialog\(\) + +```csharp +protected override OperationDialogBase GetDialog() +``` + +#### Returns + + OperationDialogBase + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ExportXML.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ExportXML.md index a55fb0ec19..2668c4a573 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ExportXML.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ExportXML.md @@ -1,4 +1,5 @@ -# Class ExportXML +# Class ExportXML + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,10 +12,10 @@ public class ExportXML : ExportXML, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ExportXML ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ExportXML](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportXML.cs) ← [ExportXML](VM.Managed.DAFUL.GearTrain.Operation.ExportXML.md) #### Implements @@ -23,31 +24,32 @@ IOperation #### Inherited Members -ExportXML.Execute\(\), -ExportXML.ExportXMLImpl\(\), -ExportXML.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ExportXML.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportXML.cs), +[ExportXML.ExportXMLImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportXML.cs), +[ExportXML.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportXML.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.GetShaftStartPoint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.GetShaftStartPoint.md index ee025fc008..652cfe686c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.GetShaftStartPoint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.GetShaftStartPoint.md @@ -1,4 +1,5 @@ -# Class GetShaftStartPoint +# Class GetShaftStartPoint + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class GetShaftStartPoint : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [GetShaftStartPoint](VM.Managed.DAFUL.GearTrain.Operation.GetShaftStartPoint.md) @@ -87,7 +88,7 @@ public GetShaftStartPoint(GearTrainDocument gearTrainDocument, Body body, Vector #### Parameters -`gearTrainDocument` GearTrainDocument +`gearTrainDocument` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) The geartrain document @@ -127,7 +128,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Success @@ -139,7 +140,7 @@ public bool Success { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ImportBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ImportBody.md index fded1c7d52..08f7ed4ffc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ImportBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ImportBody.md @@ -1,4 +1,5 @@ -# Class ImportBody +# Class ImportBody + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,9 +12,9 @@ public class ImportBody : Create, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -Create ← +[Create](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs) ← [ImportBody](VM.Managed.DAFUL.GearTrain.Operation.ImportBody.md) #### Implements @@ -22,13 +23,13 @@ IOperation #### Inherited Members -Create.m\_strInitializerXml, -Create.Execute\(\), -Create.PostExecute\(\), -Create.ExecutePickOperation\(XmlDocument, string\[\], string\[\], int, int\), -Create.Name, -Create.IsHistoryMerge, -Create.UseMacro, +[Create.m\_strInitializerXml](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.PostExecute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.ExecutePickOperation\(XmlDocument, string\[\], string\[\], int, int\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.IsHistoryMerge](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.UseMacro](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -103,7 +104,7 @@ public ImportBody(string strInitializerXml) #### Parameters -`strInitializerXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInitializerXml` string The STR initializer XML. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.MakeBearingStiffnessSpline.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.MakeBearingStiffnessSpline.md index 4cbe191d29..f6dcf9ca82 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.MakeBearingStiffnessSpline.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.MakeBearingStiffnessSpline.md @@ -1,4 +1,5 @@ -# Class MakeBearingStiffnessSpline +# Class MakeBearingStiffnessSpline + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class MakeBearingStiffnessSpline : OperationInHiddenDocument, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [OperationInHiddenDocument](VM.Managed.DAFUL.GearTrain.Operation.OperationInHiddenDocument.md) ← [MakeBearingStiffnessSpline](VM.Managed.DAFUL.GearTrain.Operation.MakeBearingStiffnessSpline.md) @@ -94,27 +95,27 @@ public MakeBearingStiffnessSpline(List lstRadialStifnessSplineData, Li #### Parameters -`lstRadialStifnessSplineData` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\[\]\> +`lstRadialStifnessSplineData` List The radial stiffness spline value. -`lstAxialStifnessSplineData` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\[\]\> +`lstAxialStifnessSplineData` List The axial stiffness spline value. -`lstTiltStifnessSplineData` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\[\]\> +`lstTiltStifnessSplineData` List The tilt stiffness spline value. -`strMaxRadialStiffnessValue` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMaxRadialStiffnessValue` string The maximum roational stiffness value. -`strMaxAxialStiffnessValue` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMaxAxialStiffnessValue` string The maximum axial stiffness value. -`strMaxTiltStiffnessValue` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMaxTiltStiffnessValue` string The maximum tilt stiffness value. @@ -144,7 +145,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -166,7 +167,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.MakeContactAnalysisSpline.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.MakeContactAnalysisSpline.md index 92013ffbcf..0a07d2d5de 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.MakeContactAnalysisSpline.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.MakeContactAnalysisSpline.md @@ -1,4 +1,5 @@ -# Class MakeContactAnalysisSpline +# Class MakeContactAnalysisSpline + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class MakeContactAnalysisSpline : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [MakeContactAnalysisSpline](VM.Managed.DAFUL.GearTrain.Operation.MakeContactAnalysisSpline.md) @@ -87,15 +88,15 @@ public MakeContactAnalysisSpline(double[] arDeform, string strIndex, string strN #### Parameters -`arDeform` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arDeform` double\[\] The ar deform. -`strIndex` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strIndex` string Index of the string. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -125,7 +126,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -147,7 +148,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.MakeStiffnessSpline.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.MakeStiffnessSpline.md index b24ec29271..c31d598310 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.MakeStiffnessSpline.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.MakeStiffnessSpline.md @@ -1,4 +1,5 @@ -# Class MakeStiffnessSpline +# Class MakeStiffnessSpline + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class MakeStiffnessSpline : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [MakeStiffnessSpline](VM.Managed.DAFUL.GearTrain.Operation.MakeStiffnessSpline.md) @@ -87,19 +88,19 @@ public MakeStiffnessSpline(List lstDeform, List lstMethodType, #### Parameters -`lstDeform` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\[\]\> +`lstDeform` List The deform. -`lstMethodType` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstMethodType` List Type of the method. -`lstSelName` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstSelName` List Type of the name. -`strGearset` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGearset` string The gearset name. @@ -117,19 +118,19 @@ public MakeStiffnessSpline(Document3D doc, List lstDeform, List +`lstDeform` List The deform. -`lstMethodType` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstMethodType` List Type of the method. -`lstSelName` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstSelName` List Type of the name. -`strGearset` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGearset` string The gearset name. @@ -159,7 +160,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -181,7 +182,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.MeshingGearSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.MeshingGearSet.md index 0724964a8a..7490da4480 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.MeshingGearSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.MeshingGearSet.md @@ -1,4 +1,5 @@ -# Class MeshingGearSet +# Class MeshingGearSet + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class MeshingGearSet : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [MeshingGearSet](VM.Managed.DAFUL.GearTrain.Operation.MeshingGearSet.md) @@ -87,7 +88,7 @@ public MeshingGearSet(List lstSelGearSet) #### Parameters -`lstSelGearSet` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstSelGearSet` List The selectd gearset list. @@ -105,7 +106,7 @@ public MeshingGearSet(Document doc, List lstSelGearSet) The document. -`lstSelGearSet` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstSelGearSet` List The selectd gearset list. @@ -135,7 +136,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Result @@ -147,7 +148,7 @@ public Dictionary Result { get; set; } #### Property Value - [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [bool](https://learn.microsoft.com/dotnet/api/system.boolean)\> + Dictionary ## Methods @@ -169,7 +170,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.MotorAssembly.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.MotorAssembly.md index 879c0cd6f9..c54902aa1b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.MotorAssembly.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.MotorAssembly.md @@ -1,4 +1,5 @@ -# Class MotorAssembly +# Class MotorAssembly + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,9 +12,9 @@ public class MotorAssembly : DialogOperation, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -DialogOperation ← +[DialogOperation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs) ← [MotorAssembly](VM.Managed.DAFUL.GearTrain.Operation.MotorAssembly.md) #### Implements @@ -22,11 +23,11 @@ IOperation #### Inherited Members -DialogOperation.Execute\(\), -DialogOperation.OnApply\(object, CancelEventArgs\), -DialogOperation.IsConainOpenedDic\(Document\), -DialogOperation.Name, -DialogOperation.OpDialog, +[DialogOperation.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.IsConainOpenedDic\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OpDialog](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -105,7 +106,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -127,11 +128,11 @@ protected override void OnApply(object sender, CancelEventArgs arg) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. -`arg` [CancelEventArgs](https://learn.microsoft.com/dotnet/api/system.componentmodel.canceleventargs) +`arg` CancelEventArgs The instance containing the event data. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.MotorEMForceUtil.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.MotorEMForceUtil.md index e8f32f02c3..211cb66b64 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.MotorEMForceUtil.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.MotorEMForceUtil.md @@ -1,4 +1,5 @@ -# Class MotorEMForceUtil +# Class MotorEMForceUtil + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -9,7 +10,7 @@ public static class MotorEMForceUtil #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [MotorEMForceUtil](VM.Managed.DAFUL.GearTrain.Operation.MotorEMForceUtil.md) #### Extension Methods @@ -28,9 +29,9 @@ public static MotorEMForce CreateMotorEMForceForAM(this GearTrainDocument gearTr #### Parameters -`gearTrainDocument` GearTrainDocument +`gearTrainDocument` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string `Stator` ObjectBase @@ -44,15 +45,15 @@ public static MotorEMForce CreateMotorEMForceForAM(this GearTrainDocument gearTr `ReferenceOfRotational` ObjectBase -`ResultFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`ResultFile` string -`MaxwellGeometryFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`MaxwellGeometryFile` string -`MaxwellForceFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`MaxwellForceFile` string #### Returns - MotorEMForce + [MotorEMForce](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/MotorEMForce.cs) ### CreateMotorEMForceForJMAG\(GearTrainDocument, string, ObjectBase, ObjectBase, PointBase, DirectionBase, DirectionBase, ObjectBase, \(string, string, double\)\[\]\) @@ -62,9 +63,9 @@ public static MotorEMForce CreateMotorEMForceForJMAG(this GearTrainDocument gear #### Parameters -`gearTrainDocument` GearTrainDocument +`gearTrainDocument` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string `Stator` ObjectBase @@ -78,11 +79,11 @@ public static MotorEMForce CreateMotorEMForceForJMAG(this GearTrainDocument gear `ReferenceOfRotational` ObjectBase -`ForceStatorRotorRPMUNVFile` \([string](https://learn.microsoft.com/dotnet/api/system.string), [string](https://learn.microsoft.com/dotnet/api/system.string), [double](https://learn.microsoft.com/dotnet/api/system.double)\)\[\] +`ForceStatorRotorRPMUNVFile` \(string, string, double\)\[\] #### Returns - MotorEMForce + [MotorEMForce](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/MotorEMForce.cs) ### CreateMotorEMForceForUNV\(GearTrainDocument, string, ObjectBase, ObjectBase, PointBase, DirectionBase, DirectionBase, ObjectBase, \(string, string\), \(string, string, double\)\[\]\) @@ -92,9 +93,9 @@ public static MotorEMForce CreateMotorEMForceForUNV(this GearTrainDocument gearT #### Parameters -`gearTrainDocument` GearTrainDocument +`gearTrainDocument` [GearTrainDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GearTrainDocument.cs) -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string `Stator` ObjectBase @@ -108,11 +109,11 @@ public static MotorEMForce CreateMotorEMForceForUNV(this GearTrainDocument gearT `ReferenceOfRotational` ObjectBase -`GeometryStatorRotorUNVFile` \([string](https://learn.microsoft.com/dotnet/api/system.string), [string](https://learn.microsoft.com/dotnet/api/system.string)\) +`GeometryStatorRotorUNVFile` \(string, string\) -`ForceStatorRotorRPMUNVFile` \([string](https://learn.microsoft.com/dotnet/api/system.string), [string](https://learn.microsoft.com/dotnet/api/system.string), [double](https://learn.microsoft.com/dotnet/api/system.double)\)\[\] +`ForceStatorRotorRPMUNVFile` \(string, string, double\)\[\] #### Returns - MotorEMForce + [MotorEMForce](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/MotorEMForce.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.OperationInHiddenDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.OperationInHiddenDocument.md index 0bd642f99e..1f09ab414f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.OperationInHiddenDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.OperationInHiddenDocument.md @@ -1,4 +1,5 @@ -# Class OperationInHiddenDocument +# Class OperationInHiddenDocument + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public abstract class OperationInHiddenDocument : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [OperationInHiddenDocument](VM.Managed.DAFUL.GearTrain.Operation.OperationInHiddenDocument.md) @@ -141,11 +142,11 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ## Methods @@ -159,7 +160,7 @@ public override void Execute() #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ### GetFullNameOfType\(Type\) @@ -171,13 +172,13 @@ protected string GetFullNameOfType(Type type) #### Parameters -`type` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`type` Type The type. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetLoadXml\(object\) @@ -189,13 +190,13 @@ protected string GetLoadXml(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The object. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetObject\(Type, string\) @@ -207,17 +208,17 @@ protected object GetObject(Type type, string strXml) #### Parameters -`type` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`type` Type The type. -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The string XML. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### UpdateActiveUserControl\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.RemoveBodyToDTAttribute.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.RemoveBodyToDTAttribute.md index 426763b206..9f63d96671 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.RemoveBodyToDTAttribute.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.RemoveBodyToDTAttribute.md @@ -1,4 +1,5 @@ -# Class RemoveBodyToDTAttribute +# Class RemoveBodyToDTAttribute + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -9,7 +10,7 @@ public class RemoveBodyToDTAttribute : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [RemoveBodyToDTAttribute](VM.Managed.DAFUL.GearTrain.Operation.RemoveBodyToDTAttribute.md) @@ -113,7 +114,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -135,7 +136,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SectionModificationSplit.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SectionModificationSplit.md index 9c1cb5d956..fc2dc6f4af 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SectionModificationSplit.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SectionModificationSplit.md @@ -1,4 +1,5 @@ -# Class SectionModificationSplit +# Class SectionModificationSplit + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,9 +12,9 @@ public class SectionModificationSplit : Create, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -Create ← +[Create](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs) ← [SectionModificationSplit](VM.Managed.DAFUL.GearTrain.Operation.SectionModificationSplit.md) #### Implements @@ -22,13 +23,13 @@ IOperation #### Inherited Members -Create.m\_strInitializerXml, -Create.Execute\(\), -Create.PostExecute\(\), -Create.ExecutePickOperation\(XmlDocument, string\[\], string\[\], int, int\), -Create.Name, -Create.IsHistoryMerge, -Create.UseMacro, +[Create.m\_strInitializerXml](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.PostExecute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.ExecutePickOperation\(XmlDocument, string\[\], string\[\], int, int\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.IsHistoryMerge](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), +[Create.UseMacro](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOP/CreateObject.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -103,7 +104,7 @@ public SectionModificationSplit(string strInitializerXml) #### Parameters -`strInitializerXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInitializerXml` string The STR initializer XML. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetBearingDesignDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetBearingDesignDocument.md index 4d0060aa2c..04d124466f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetBearingDesignDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetBearingDesignDocument.md @@ -1,4 +1,5 @@ -# Class SetBearingDesignDocument +# Class SetBearingDesignDocument + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class SetBearingDesignDocument : SetDesignDocumentBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [SetDesignDocumentBase](VM.Managed.DAFUL.GearTrain.Operation.SetDesignDocumentBase.md) ← [SetBearingDesignDocument](VM.Managed.DAFUL.GearTrain.Operation.SetBearingDesignDocument.md) @@ -97,7 +98,7 @@ public SetBearingDesignDocument(Bearing bearing) #### Parameters -`bearing` Bearing +`bearing` [Bearing](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/Bearing.cs) The bearing. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetDesignDocumentBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetDesignDocumentBase.md index 8f22339b21..fd386d2e93 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetDesignDocumentBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetDesignDocumentBase.md @@ -1,4 +1,5 @@ -# Class SetDesignDocumentBase +# Class SetDesignDocumentBase + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public abstract class SetDesignDocumentBase : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [SetDesignDocumentBase](VM.Managed.DAFUL.GearTrain.Operation.SetDesignDocumentBase.md) @@ -131,7 +132,7 @@ protected string m_strBodyName #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Properties @@ -145,7 +146,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -157,7 +158,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -179,7 +180,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. @@ -193,13 +194,13 @@ protected bool OpenDesignDocument(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Result\(\) @@ -211,7 +212,7 @@ public HiddenDocument Result() #### Returns - HiddenDocument + [HiddenDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/HiddenDocument.cs) ### SetActiveUserControl\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetFEDesignDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetFEDesignDocument.md index 7739fd9ad2..83dcf829f7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetFEDesignDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetFEDesignDocument.md @@ -1,4 +1,5 @@ -# Class SetFEDesignDocument +# Class SetFEDesignDocument + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public abstract class SetFEDesignDocument : SetMeshDesignDocument, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [SetDesignDocumentBase](VM.Managed.DAFUL.GearTrain.Operation.SetDesignDocumentBase.md) ← [SetMeshDesignDocument](VM.Managed.DAFUL.GearTrain.Operation.SetMeshDesignDocument.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetGearSetDesignDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetGearSetDesignDocument.md index 9802fcad9c..820fb84641 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetGearSetDesignDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetGearSetDesignDocument.md @@ -1,4 +1,5 @@ -# Class SetGearSetDesignDocument +# Class SetGearSetDesignDocument + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class SetGearSetDesignDocument : SetDesignDocumentBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [SetDesignDocumentBase](VM.Managed.DAFUL.GearTrain.Operation.SetDesignDocumentBase.md) ← [SetGearSetDesignDocument](VM.Managed.DAFUL.GearTrain.Operation.SetGearSetDesignDocument.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetHousingFEDesignDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetHousingFEDesignDocument.md index bbb493ed3e..3e00e416f6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetHousingFEDesignDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetHousingFEDesignDocument.md @@ -1,4 +1,5 @@ -# Class SetHousingFEDesignDocument +# Class SetHousingFEDesignDocument + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class SetHousingFEDesignDocument : SetFEDesignDocument, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [SetDesignDocumentBase](VM.Managed.DAFUL.GearTrain.Operation.SetDesignDocumentBase.md) ← [SetMeshDesignDocument](VM.Managed.DAFUL.GearTrain.Operation.SetMeshDesignDocument.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetHousingMeshFreeDesignDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetHousingMeshFreeDesignDocument.md index 79d8880d84..42ad274114 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetHousingMeshFreeDesignDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetHousingMeshFreeDesignDocument.md @@ -1,4 +1,5 @@ -# Class SetHousingMeshFreeDesignDocument +# Class SetHousingMeshFreeDesignDocument + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class SetHousingMeshFreeDesignDocument : SetMeshFreeDesignDocument, IOper #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [SetDesignDocumentBase](VM.Managed.DAFUL.GearTrain.Operation.SetDesignDocumentBase.md) ← [SetMeshDesignDocument](VM.Managed.DAFUL.GearTrain.Operation.SetMeshDesignDocument.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetMeshDesignDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetMeshDesignDocument.md index aa2eea203b..286200b712 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetMeshDesignDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetMeshDesignDocument.md @@ -1,4 +1,5 @@ -# Class SetMeshDesignDocument +# Class SetMeshDesignDocument + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public abstract class SetMeshDesignDocument : SetDesignDocumentBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [SetDesignDocumentBase](VM.Managed.DAFUL.GearTrain.Operation.SetDesignDocumentBase.md) ← [SetMeshDesignDocument](VM.Managed.DAFUL.GearTrain.Operation.SetMeshDesignDocument.md) @@ -154,7 +155,7 @@ public virtual void ExecuteCore(HiddenDocumentMeshBase mesh_doc) #### Parameters -`mesh_doc` HiddenDocumentMeshBase +`mesh_doc` [HiddenDocumentMeshBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) The mesh_doc. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetMeshFreeDesignDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetMeshFreeDesignDocument.md index 5c39e74275..79ea2d6144 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetMeshFreeDesignDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetMeshFreeDesignDocument.md @@ -1,4 +1,5 @@ -# Class SetMeshFreeDesignDocument +# Class SetMeshFreeDesignDocument + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public abstract class SetMeshFreeDesignDocument : SetMeshDesignDocument, IOperat #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [SetDesignDocumentBase](VM.Managed.DAFUL.GearTrain.Operation.SetDesignDocumentBase.md) ← [SetMeshDesignDocument](VM.Managed.DAFUL.GearTrain.Operation.SetMeshDesignDocument.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetShaftSetDesignDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetShaftSetDesignDocument.md index ddfacceff4..5ca97d429b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetShaftSetDesignDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetShaftSetDesignDocument.md @@ -1,4 +1,5 @@ -# Class SetShaftSetDesignDocument +# Class SetShaftSetDesignDocument + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class SetShaftSetDesignDocument : SetDesignDocumentBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [SetDesignDocumentBase](VM.Managed.DAFUL.GearTrain.Operation.SetDesignDocumentBase.md) ← [SetShaftSetDesignDocument](VM.Managed.DAFUL.GearTrain.Operation.SetShaftSetDesignDocument.md) @@ -97,7 +98,7 @@ public SetShaftSetDesignDocument(ShaftSet shaftset) #### Parameters -`shaftset` ShaftSet +`shaftset` [ShaftSet](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/ShaftSet.cs) The shaftset. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetShaftSetFEDesignDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetShaftSetFEDesignDocument.md index 685e71dbc1..53c1319c05 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetShaftSetFEDesignDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetShaftSetFEDesignDocument.md @@ -1,4 +1,5 @@ -# Class SetShaftSetFEDesignDocument +# Class SetShaftSetFEDesignDocument + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class SetShaftSetFEDesignDocument : SetFEDesignDocument, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [SetDesignDocumentBase](VM.Managed.DAFUL.GearTrain.Operation.SetDesignDocumentBase.md) ← [SetMeshDesignDocument](VM.Managed.DAFUL.GearTrain.Operation.SetMeshDesignDocument.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetShaftSetMeshFreeDesignDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetShaftSetMeshFreeDesignDocument.md index adc425a890..9f71a75c04 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetShaftSetMeshFreeDesignDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetShaftSetMeshFreeDesignDocument.md @@ -1,4 +1,5 @@ -# Class SetShaftSetMeshFreeDesignDocument +# Class SetShaftSetMeshFreeDesignDocument + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class SetShaftSetMeshFreeDesignDocument : SetMeshFreeDesignDocument, IOpe #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [SetDesignDocumentBase](VM.Managed.DAFUL.GearTrain.Operation.SetDesignDocumentBase.md) ← [SetMeshDesignDocument](VM.Managed.DAFUL.GearTrain.Operation.SetMeshDesignDocument.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetSlidingBearingDesignDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetSlidingBearingDesignDocument.md index 138ae747a9..6b472ee097 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetSlidingBearingDesignDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SetSlidingBearingDesignDocument.md @@ -1,4 +1,5 @@ -# Class SetSlidingBearingDesignDocument +# Class SetSlidingBearingDesignDocument + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class SetSlidingBearingDesignDocument : SetDesignDocumentBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [SetDesignDocumentBase](VM.Managed.DAFUL.GearTrain.Operation.SetDesignDocumentBase.md) ← [SetSlidingBearingDesignDocument](VM.Managed.DAFUL.GearTrain.Operation.SetSlidingBearingDesignDocument.md) @@ -97,7 +98,7 @@ public SetSlidingBearingDesignDocument(SlidingBearing bearing) #### Parameters -`bearing` SlidingBearing +`bearing` [SlidingBearing](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/SlidingBearing.cs) The bearing. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.Show2D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.Show2D.md index 5ab55789c5..903260ffa2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.Show2D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.Show2D.md @@ -1,4 +1,5 @@ -# Class Show2D +# Class Show2D + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class Show2D : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [Show2D](VM.Managed.DAFUL.GearTrain.Operation.Show2D.md) @@ -109,7 +110,7 @@ public Show2D(XmlElement nodeArg) #### Parameters -`nodeArg` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`nodeArg` XmlElement The node argument. @@ -125,7 +126,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -147,7 +148,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ShowHideDimension.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ShowHideDimension.md index 1548ab8f12..420f5a1b82 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ShowHideDimension.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ShowHideDimension.md @@ -1,4 +1,5 @@ -# Class ShowHideDimension +# Class ShowHideDimension + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class ShowHideDimension : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ShowHideDimension](VM.Managed.DAFUL.GearTrain.Operation.ShowHideDimension.md) @@ -125,7 +126,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -147,7 +148,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ShowSimulationBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ShowSimulationBase.md index 50b71ea7ff..8f0e5423a7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ShowSimulationBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ShowSimulationBase.md @@ -1,4 +1,5 @@ -# Class ShowSimulationBase +# Class ShowSimulationBase + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,10 +12,10 @@ public abstract class ShowSimulationBase : ShowSimulationDlg, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ShowSimulationDlg ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ShowSimulationDlg](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs) ← [ShowSimulationBase](VM.Managed.DAFUL.GearTrain.Operation.ShowSimulationBase.md) #### Derived @@ -27,32 +28,33 @@ IOperation #### Inherited Members -ShowSimulationDlg.Execute\(\), -ShowSimulationDlg.SimulationRunImpl\(bool\), -ShowSimulationDlg.ExecuteImpl\(\), -ShowSimulationDlg.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ShowSimulationDlg.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[ShowSimulationDlg.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[ShowSimulationDlg.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[ShowSimulationDlg.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ShowSimulationDlg.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ShowSimulationDlg.md index dadd798823..73be66e5f0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ShowSimulationDlg.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ShowSimulationDlg.md @@ -1,4 +1,5 @@ -# Class ShowSimulationDlg +# Class ShowSimulationDlg + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,10 +12,10 @@ public class ShowSimulationDlg : ShowSimulationDlg, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ShowSimulationDlg ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ShowSimulationDlg](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs) ← [ShowSimulationDlg](VM.Managed.DAFUL.GearTrain.Operation.ShowSimulationDlg.md) #### Implements @@ -23,32 +24,33 @@ IOperation #### Inherited Members -ShowSimulationDlg.Execute\(\), -ShowSimulationDlg.SimulationRunImpl\(bool\), -ShowSimulationDlg.ExecuteImpl\(\), -ShowSimulationDlg.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ShowSimulationDlg.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[ShowSimulationDlg.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[ShowSimulationDlg.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[ShowSimulationDlg.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -153,7 +155,7 @@ protected override void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool if set to true [b write DFG]. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ShowSimulationInShaftSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ShowSimulationInShaftSet.md index 0c1ad2a419..1dcae8ea08 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ShowSimulationInShaftSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.ShowSimulationInShaftSet.md @@ -1,4 +1,5 @@ -# Class ShowSimulationInShaftSet +# Class ShowSimulationInShaftSet + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,10 +12,10 @@ public class ShowSimulationInShaftSet : ShowSimulationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ShowSimulationDlg ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ShowSimulationDlg](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs) ← [ShowSimulationBase](VM.Managed.DAFUL.GearTrain.Operation.ShowSimulationBase.md) ← [ShowSimulationInShaftSet](VM.Managed.DAFUL.GearTrain.Operation.ShowSimulationInShaftSet.md) @@ -26,32 +27,33 @@ IOperation [ShowSimulationBase.Execute\(\)](VM.Managed.DAFUL.GearTrain.Operation.ShowSimulationBase.md\#VM\_Managed\_DAFUL\_GearTrain\_Operation\_ShowSimulationBase\_Execute), [ShowSimulationBase.PrepareForm\(SimulationFormBase\)](VM.Managed.DAFUL.GearTrain.Operation.ShowSimulationBase.md\#VM\_Managed\_DAFUL\_GearTrain\_Operation\_ShowSimulationBase\_PrepareForm\_VM\_Managed\_DAFUL\_Pre\_Forms\_SimulationFormBase\_), -ShowSimulationDlg.Execute\(\), -ShowSimulationDlg.SimulationRunImpl\(bool\), -ShowSimulationDlg.ExecuteImpl\(\), -ShowSimulationDlg.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ShowSimulationDlg.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[ShowSimulationDlg.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[ShowSimulationDlg.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[ShowSimulationDlg.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -122,15 +124,15 @@ public ShowSimulationInShaftSet(Document doc, string strAnalType, string strMaxi The document. -`strAnalType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strAnalType` string Type of the string anal. -`strMaximumNumberOfNode` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMaximumNumberOfNode` string The string maximum number of node. -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string The string file name. @@ -160,7 +162,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -194,7 +196,7 @@ public override void ReadExtraJournal(XmlElement nodeArg) #### Parameters -`nodeArg` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`nodeArg` XmlElement ### SimulationRunImpl\(bool\) @@ -206,7 +208,7 @@ protected override void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool if set to true [write DFG]. @@ -218,5 +220,5 @@ public override void WriteExtraJournal(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SimulationRun.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SimulationRun.md index 70825e1774..3fa9ce508b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SimulationRun.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SimulationRun.md @@ -1,4 +1,5 @@ -# Class SimulationRun +# Class SimulationRun + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,9 +12,9 @@ public class SimulationRun : SimulationRun, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [SimulationRun](VM.Managed.DAFUL.GearTrain.Operation.SimulationRun.md) #### Implements @@ -22,28 +23,29 @@ IOperation #### Inherited Members -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -120,7 +122,7 @@ public SimulationRun(Document doc, string strSimPar) `doc` Document -`strSimPar` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSimPar` string ### SimulationRun\(Document, SimulationParameter\) @@ -132,7 +134,7 @@ public SimulationRun(Document doc, SimulationRun.SimulationParameter param) `doc` Document -`param` SimulationRun.SimulationParameter +`param` [SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs).[SimulationParameter](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ### SimulationRun\(JournalParameter\) @@ -154,7 +156,7 @@ protected override void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool ### UpdateUI\(IUIUpdate, Document\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SimulationRunInDesigner.AddEntityCalback.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SimulationRunInDesigner.AddEntityCalback.md index 00056c8af2..b2013b2e8c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SimulationRunInDesigner.AddEntityCalback.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SimulationRunInDesigner.AddEntityCalback.md @@ -1,4 +1,5 @@ -# Delegate SimulationRunInDesigner.AddEntityCalback +# Delegate SimulationRunInDesigner.AddEntityCalback + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -15,7 +16,7 @@ public delegate List SimulationRunInDesigner.AddEntityCalback(Manager #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List<[SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs)\> #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SimulationRunInDesigner.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SimulationRunInDesigner.md index 3bce486632..aa56a0d465 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SimulationRunInDesigner.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.SimulationRunInDesigner.md @@ -1,4 +1,5 @@ -# Class SimulationRunInDesigner +# Class SimulationRunInDesigner + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,9 +12,9 @@ public class SimulationRunInDesigner : SimulationRun, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [SimulationRunInDesigner](VM.Managed.DAFUL.GearTrain.Operation.SimulationRunInDesigner.md) #### Implements @@ -22,28 +23,29 @@ IOperation #### Inherited Members -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -120,7 +122,7 @@ public SimulationRunInDesigner(Document doc, string strSimPar) `doc` Document -`strSimPar` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSimPar` string ### SimulationRunInDesigner\(Document, string, DFSInfo, OutputInfo\) @@ -132,7 +134,7 @@ public SimulationRunInDesigner(Document doc, string strSimPar, DFSInfo pInfo, Si `doc` Document -`strSimPar` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSimPar` string `pInfo` DFSInfo @@ -148,7 +150,7 @@ public SimulationRunInDesigner(Document doc, SimulationRun.SimulationParameter p `doc` Document -`param` SimulationRun.SimulationParameter +`param` [SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs).[SimulationParameter](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ### SimulationRunInDesigner\(JournalParameter\) @@ -184,7 +186,7 @@ protected override void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool if set to true [b write DFG]. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateAssemblyManager.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateAssemblyManager.md index 3950a69c36..de7350e853 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateAssemblyManager.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateAssemblyManager.md @@ -1,4 +1,5 @@ -# Class UpdateAssemblyManager +# Class UpdateAssemblyManager + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class UpdateAssemblyManager : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [UpdateAssemblyManager](VM.Managed.DAFUL.GearTrain.Operation.UpdateAssemblyManager.md) @@ -125,7 +126,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -147,7 +148,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateBearing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateBearing.md index f788500a9d..7a0498a622 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateBearing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateBearing.md @@ -1,4 +1,5 @@ -# Class UpdateBearing +# Class UpdateBearing + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class UpdateBearing : OperationInHiddenDocument, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [OperationInHiddenDocument](VM.Managed.DAFUL.GearTrain.Operation.OperationInHiddenDocument.md) ← [UpdateBearing](VM.Managed.DAFUL.GearTrain.Operation.UpdateBearing.md) @@ -132,7 +133,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -154,7 +155,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateBearingInFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateBearingInFE.md index fd87c1fcd1..d696b95a0e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateBearingInFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateBearingInFE.md @@ -1,4 +1,5 @@ -# Class UpdateBearingInFE +# Class UpdateBearingInFE + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class UpdateBearingInFE : OperationInHiddenDocument, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [OperationInHiddenDocument](VM.Managed.DAFUL.GearTrain.Operation.OperationInHiddenDocument.md) ← [UpdateBearingInFE](VM.Managed.DAFUL.GearTrain.Operation.UpdateBearingInFE.md) @@ -98,15 +99,15 @@ public UpdateBearingInFE(string strBearingGeometryName, string strRBEName, strin #### Parameters -`strBearingGeometryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBearingGeometryName` string Name of the string bearing geometry. -`strRBEName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRBEName` string Name of the string rbe. -`strZAxis` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strZAxis` string The string z axis. @@ -124,15 +125,15 @@ public UpdateBearingInFE(Document3D document3D, string strBearingGeometryName, s The document. -`strBearingGeometryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBearingGeometryName` string Name of the string bearing geometry. -`strRBEName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRBEName` string Name of the string rbe. -`strZAxis` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strZAxis` string The string z axis. @@ -170,7 +171,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateBearingInMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateBearingInMeshFree.md index ed410b8743..ec807ed94d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateBearingInMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateBearingInMeshFree.md @@ -1,4 +1,5 @@ -# Class UpdateBearingInMeshFree +# Class UpdateBearingInMeshFree + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class UpdateBearingInMeshFree : UpdateBearingInFE, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [OperationInHiddenDocument](VM.Managed.DAFUL.GearTrain.Operation.OperationInHiddenDocument.md) ← [UpdateBearingInFE](VM.Managed.DAFUL.GearTrain.Operation.UpdateBearingInFE.md) ← @@ -97,15 +98,15 @@ public UpdateBearingInMeshFree(string strBearingGeometryName, string strRBEName, #### Parameters -`strBearingGeometryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBearingGeometryName` string Name of the string bearing geometry. -`strRBEName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRBEName` string Name of the string rbe. -`strZAxis` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strZAxis` string The string z axis. @@ -123,15 +124,15 @@ public UpdateBearingInMeshFree(Document3D document3D, string strBearingGeometryN The document. -`strBearingGeometryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBearingGeometryName` string Name of the string bearing geometry. -`strRBEName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRBEName` string Name of the string rbe. -`strZAxis` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strZAxis` string The string z axis. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateBearingInShaftSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateBearingInShaftSet.md index 5b6575cd90..2294ed31eb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateBearingInShaftSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateBearingInShaftSet.md @@ -1,4 +1,5 @@ -# Class UpdateBearingInShaftSet +# Class UpdateBearingInShaftSet + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class UpdateBearingInShaftSet : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [UpdateBearingInShaftSet](VM.Managed.DAFUL.GearTrain.Operation.UpdateBearingInShaftSet.md) @@ -87,23 +88,23 @@ public UpdateBearingInShaftSet(string strBearingGeometryName, string strReferenc #### Parameters -`strBearingGeometryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBearingGeometryName` string Name of the string bearing geometry. -`strReferenceOffset` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strReferenceOffset` string The string reference offset. -`strReferencePoint` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strReferencePoint` string The string reference point. -`bIsReverse` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bIsReverse` bool The reverse state. -`clearanceInfo` ClearanceInfo +`clearanceInfo` [ClearanceInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GeometryInfoBase.cs) The clearance Information. @@ -121,23 +122,23 @@ public UpdateBearingInShaftSet(Document3D document3D, string strBearingGeometryN The document. -`strBearingGeometryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBearingGeometryName` string Name of the string bearing geometry. -`strReferenceOffset` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strReferenceOffset` string The string reference offset. -`strReferencePoint` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strReferencePoint` string The string reference point. -`bIsReverse` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bIsReverse` bool The reverse state. -`clearanceInfo` ClearanceInfo +`clearanceInfo` [ClearanceInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GeometryInfoBase.cs) The clearance Information. @@ -167,7 +168,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -189,7 +190,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateBodyInFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateBodyInFE.md index f471e4bc04..ae48be1527 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateBodyInFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateBodyInFE.md @@ -1,4 +1,5 @@ -# Class UpdateBodyInFE +# Class UpdateBodyInFE + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class UpdateBodyInFE : OperationInHiddenDocument, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [OperationInHiddenDocument](VM.Managed.DAFUL.GearTrain.Operation.OperationInHiddenDocument.md) ← [UpdateBodyInFE](VM.Managed.DAFUL.GearTrain.Operation.UpdateBodyInFE.md) @@ -158,7 +159,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateBodyInMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateBodyInMeshFree.md index 79257e1fed..1e287f7877 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateBodyInMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateBodyInMeshFree.md @@ -1,4 +1,5 @@ -# Class UpdateBodyInMeshFree +# Class UpdateBodyInMeshFree + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class UpdateBodyInMeshFree : OperationInHiddenDocument, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [OperationInHiddenDocument](VM.Managed.DAFUL.GearTrain.Operation.OperationInHiddenDocument.md) ← [UpdateBodyInMeshFree](VM.Managed.DAFUL.GearTrain.Operation.UpdateBodyInMeshFree.md) @@ -94,7 +95,7 @@ public UpdateBodyInMeshFree(AssembledBody assem, BodyAnalysisType bodyAnalysisTy #### Parameters -`assem` AssembledBody +`assem` [AssembledBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs) The assem. @@ -102,11 +103,11 @@ The assem. The body analysis type. -`massPropertyType` SolidBodyProperty.MassPropertyType +`massPropertyType` [SolidBodyProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs).[MassPropertyType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) The mass property type. -`massInfo` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`massInfo` string\[\] The mass information. @@ -124,7 +125,7 @@ public UpdateBodyInMeshFree(Document3D document3D, AssembledBody assem, BodyAnal The document. -`assem` AssembledBody +`assem` [AssembledBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs) The assem. @@ -132,11 +133,11 @@ The assem. The body analysis type. -`massPropertyType` SolidBodyProperty.MassPropertyType +`massPropertyType` [SolidBodyProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs).[MassPropertyType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) The mass property type. -`massInfo` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`massInfo` string\[\] The mass information. @@ -174,7 +175,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateDesignerInMesh.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateDesignerInMesh.md index ac18668382..d734c5bc05 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateDesignerInMesh.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateDesignerInMesh.md @@ -1,4 +1,5 @@ -# Class UpdateDesignerInMesh +# Class UpdateDesignerInMesh + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class UpdateDesignerInMesh : OperationInHiddenDocument, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [OperationInHiddenDocument](VM.Managed.DAFUL.GearTrain.Operation.OperationInHiddenDocument.md) ← [UpdateDesignerInMesh](VM.Managed.DAFUL.GearTrain.Operation.UpdateDesignerInMesh.md) @@ -132,7 +133,7 @@ protected object m_MeshEntity #### Field Value - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### m\_hiddenDoc @@ -144,7 +145,7 @@ protected HiddenDocumentMeshBase m_hiddenDoc #### Field Value - HiddenDocumentMeshBase + [HiddenDocumentMeshBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/HiddenDocumentFEBase.cs) ## Properties @@ -158,7 +159,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -172,7 +173,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateGearInFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateGearInFE.md index 635b7fce04..889a44f6f8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateGearInFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateGearInFE.md @@ -1,4 +1,5 @@ -# Class UpdateGearInFE +# Class UpdateGearInFE + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class UpdateGearInFE : OperationInHiddenDocument, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [OperationInHiddenDocument](VM.Managed.DAFUL.GearTrain.Operation.OperationInHiddenDocument.md) ← [UpdateGearInFE](VM.Managed.DAFUL.GearTrain.Operation.UpdateGearInFE.md) @@ -98,23 +99,23 @@ public UpdateGearInFE(string strGearGeometryName, string strReferenceOffset, str #### Parameters -`strGearGeometryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGearGeometryName` string Name of the string gear geometry. -`strReferenceOffset` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strReferenceOffset` string The string reference offset. -`strReferencePoint` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strReferencePoint` string The string reference point. -`strParentType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strParentType` string Type of the string parent. -`strRBEOrBearing` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRBEOrBearing` string The string rbe or bearing. @@ -132,23 +133,23 @@ public UpdateGearInFE(Document3D document3D, string strGearGeometryName, string The document. -`strGearGeometryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGearGeometryName` string Name of the string gear geometry. -`strReferenceOffset` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strReferenceOffset` string The string reference offset. -`strReferencePoint` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strReferencePoint` string The string reference point. -`strParentType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strParentType` string Type of the string parent. -`strRBEOrBearing` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRBEOrBearing` string The string rbe or bearing. @@ -186,7 +187,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateGearInMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateGearInMeshFree.md index 4ff3e8128a..132be4e431 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateGearInMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateGearInMeshFree.md @@ -1,4 +1,5 @@ -# Class UpdateGearInMeshFree +# Class UpdateGearInMeshFree + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class UpdateGearInMeshFree : UpdateGearInFE, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [OperationInHiddenDocument](VM.Managed.DAFUL.GearTrain.Operation.OperationInHiddenDocument.md) ← [UpdateGearInFE](VM.Managed.DAFUL.GearTrain.Operation.UpdateGearInFE.md) ← @@ -97,23 +98,23 @@ public UpdateGearInMeshFree(string strGearGeometryName, string strReferenceOffse #### Parameters -`strGearGeometryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGearGeometryName` string Name of the string gear geometry. -`strReferenceOffset` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strReferenceOffset` string The string reference offset. -`strReferencePoint` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strReferencePoint` string The string reference point. -`strParentType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strParentType` string Type of the string parent. -`strRBEOrBearing` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRBEOrBearing` string The string rbe or bearing. @@ -131,23 +132,23 @@ public UpdateGearInMeshFree(Document3D document3D, string strGearGeometryName, s The document. -`strGearGeometryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGearGeometryName` string Name of the string gear geometry. -`strReferenceOffset` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strReferenceOffset` string The string reference offset. -`strReferencePoint` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strReferencePoint` string The string reference point. -`strParentType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strParentType` string Type of the string parent. -`strRBEOrBearing` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRBEOrBearing` string The string rbe or bearing. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateGearInShaftSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateGearInShaftSet.md index 379a962fbe..fc718601f0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateGearInShaftSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateGearInShaftSet.md @@ -1,4 +1,5 @@ -# Class UpdateGearInShaftSet +# Class UpdateGearInShaftSet + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class UpdateGearInShaftSet : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [UpdateGearInShaftSet](VM.Managed.DAFUL.GearTrain.Operation.UpdateGearInShaftSet.md) @@ -87,27 +88,27 @@ public UpdateGearInShaftSet(string strGearGeometryName, string strReferenceOffse #### Parameters -`strGearGeometryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGearGeometryName` string Name of the string gear geometry. -`strReferenceOffset` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strReferenceOffset` string The string reference offset. -`strReferencePoint` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strReferencePoint` string The string reference point. -`strParentType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strParentType` string Type of the string parent. -`strBearing` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBearing` string The string bearing. -`clearanceInfo` ClearanceInfo +`clearanceInfo` [ClearanceInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GeometryInfoBase.cs) The clearance Information. @@ -125,27 +126,27 @@ public UpdateGearInShaftSet(Document3D document3D, string strGearGeometryName, s The document. -`strGearGeometryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGearGeometryName` string Name of the string gear geometry. -`strReferenceOffset` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strReferenceOffset` string The string reference offset. -`strReferencePoint` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strReferencePoint` string The string reference point. -`strParentType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strParentType` string Type of the string parent. -`strBearing` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBearing` string The string bearing. -`clearanceInfo` ClearanceInfo +`clearanceInfo` [ClearanceInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/GeometryInfoBase.cs) The clearance Information. @@ -175,7 +176,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -197,7 +198,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateGearSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateGearSet.md index 17776bf7df..a489cb97fb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateGearSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateGearSet.md @@ -1,4 +1,5 @@ -# Class UpdateGearSet +# Class UpdateGearSet + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class UpdateGearSet : OperationInHiddenDocument, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [OperationInHiddenDocument](VM.Managed.DAFUL.GearTrain.Operation.OperationInHiddenDocument.md) ← [UpdateGearSet](VM.Managed.DAFUL.GearTrain.Operation.UpdateGearSet.md) @@ -140,7 +141,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdatePointEntity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdatePointEntity.md index 4a42e6dad3..5c7a8b0b43 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdatePointEntity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdatePointEntity.md @@ -1,4 +1,5 @@ -# Class UpdatePointEntity +# Class UpdatePointEntity + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class UpdatePointEntity : OperationInHiddenDocument, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [OperationInHiddenDocument](VM.Managed.DAFUL.GearTrain.Operation.OperationInHiddenDocument.md) ← [UpdatePointEntity](VM.Managed.DAFUL.GearTrain.Operation.UpdatePointEntity.md) @@ -94,7 +95,7 @@ public UpdatePointEntity(PointEntityOnShaftSet pl) #### Parameters -`pl` PointEntityOnShaftSet +`pl` [PointEntityOnShaftSet](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/PointEntityOnShaftSet.cs) ### UpdatePointEntity\(Document3D, PointEntityOnShaftSet\) @@ -110,7 +111,7 @@ public UpdatePointEntity(Document3D document3D, PointEntityOnShaftSet pl) The document. -`pl` PointEntityOnShaftSet +`pl` [PointEntityOnShaftSet](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/PointEntityOnShaftSet.cs) The point entity. @@ -148,7 +149,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdatePointEntityOnRBE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdatePointEntityOnRBE.md index 1d24693c7e..5792edecfd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdatePointEntityOnRBE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdatePointEntityOnRBE.md @@ -1,4 +1,5 @@ -# Class UpdatePointEntityOnRBE +# Class UpdatePointEntityOnRBE + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class UpdatePointEntityOnRBE : OperationInHiddenDocument, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [OperationInHiddenDocument](VM.Managed.DAFUL.GearTrain.Operation.OperationInHiddenDocument.md) ← [UpdatePointEntityOnRBE](VM.Managed.DAFUL.GearTrain.Operation.UpdatePointEntityOnRBE.md) @@ -94,7 +95,7 @@ public UpdatePointEntityOnRBE(PointEntityOnRBE pl) #### Parameters -`pl` PointEntityOnRBE +`pl` [PointEntityOnRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/PointEntityOnRBE.cs) The pl. @@ -112,7 +113,7 @@ public UpdatePointEntityOnRBE(Document3D document3D, PointEntityOnRBE pl) The document. -`pl` PointEntityOnRBE +`pl` [PointEntityOnRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDGearTrain/PointEntityOnRBE.cs) The pl. @@ -150,7 +151,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateRackInFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateRackInFE.md index 2950fbd438..d5ff9505c9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateRackInFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateRackInFE.md @@ -1,4 +1,5 @@ -# Class UpdateRackInFE +# Class UpdateRackInFE + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class UpdateRackInFE : OperationInHiddenDocument, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [OperationInHiddenDocument](VM.Managed.DAFUL.GearTrain.Operation.OperationInHiddenDocument.md) ← [UpdateRackInFE](VM.Managed.DAFUL.GearTrain.Operation.UpdateRackInFE.md) @@ -98,31 +99,31 @@ public UpdateRackInFE(string strRackGeometryName, string strStartRBEName, string #### Parameters -`strRackGeometryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRackGeometryName` string Name of the string rack geometry. -`strStartRBEName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strStartRBEName` string Name of the string start rbe. -`strEndRBEName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strEndRBEName` string Name of the string end rbe. -`bUseStart` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseStart` bool if set to true [b use start]. -`bUseEnd` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseEnd` bool if set to true [b use end]. -`strZAxis` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strZAxis` string The string z axis. -`strInitialAngle` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInitialAngle` string The Initial angle. @@ -140,31 +141,31 @@ public UpdateRackInFE(Document3D document3D, string strRackGeometryName, string The document. -`strRackGeometryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRackGeometryName` string Name of the string rack geometry. -`strStartRBEName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strStartRBEName` string Name of the string start rbe. -`strEndRBEName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strEndRBEName` string Name of the string end rbe. -`bUseStart` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseStart` bool if set to true [b use start]. -`bUseEnd` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseEnd` bool if set to true [b use end]. -`strZAxis` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strZAxis` string The string z axis. -`strInitialAngle` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInitialAngle` string The Initial angle. @@ -202,7 +203,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateRackInMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateRackInMeshFree.md index 2f8d2e11c6..dffec072df 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateRackInMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateRackInMeshFree.md @@ -1,4 +1,5 @@ -# Class UpdateRackInMeshFree +# Class UpdateRackInMeshFree + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class UpdateRackInMeshFree : UpdateRackInFE, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [OperationInHiddenDocument](VM.Managed.DAFUL.GearTrain.Operation.OperationInHiddenDocument.md) ← [UpdateRackInFE](VM.Managed.DAFUL.GearTrain.Operation.UpdateRackInFE.md) ← @@ -97,31 +98,31 @@ public UpdateRackInMeshFree(string strRackGeometryName, string strStartRBEName, #### Parameters -`strRackGeometryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRackGeometryName` string Name of the string rack geometry. -`strStartRBEName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strStartRBEName` string Name of the string start rbe. -`strEndRBEName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strEndRBEName` string Name of the string end rbe. -`bUseStart` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseStart` bool if set to true [b use start]. -`bUseEnd` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseEnd` bool if set to true [b use end]. -`strZAxis` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strZAxis` string The string z axis. -`strInitialAngle` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInitialAngle` string The Initial angle. @@ -139,31 +140,31 @@ public UpdateRackInMeshFree(Document3D document3D, string strRackGeometryName, s The document. -`strRackGeometryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRackGeometryName` string Name of the string rack geometry. -`strStartRBEName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strStartRBEName` string Name of the string start rbe. -`strEndRBEName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strEndRBEName` string Name of the string end rbe. -`bUseStart` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseStart` bool if set to true [b use start]. -`bUseEnd` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseEnd` bool if set to true [b use end]. -`strZAxis` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strZAxis` string The string z axis. -`strInitialAngle` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInitialAngle` string The Initial angle. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateRackInShaftSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateRackInShaftSet.md index 29e687c889..e1e26af483 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateRackInShaftSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateRackInShaftSet.md @@ -1,4 +1,5 @@ -# Class UpdateRackInShaftSet +# Class UpdateRackInShaftSet + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class UpdateRackInShaftSet : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [UpdateRackInShaftSet](VM.Managed.DAFUL.GearTrain.Operation.UpdateRackInShaftSet.md) @@ -87,11 +88,11 @@ public UpdateRackInShaftSet(string strRackGeometryName, string strInitialAngle) #### Parameters -`strRackGeometryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRackGeometryName` string Name of the string rack geometry. -`strInitialAngle` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInitialAngle` string The Initial angle. @@ -109,11 +110,11 @@ public UpdateRackInShaftSet(Document3D document3D, string strRackGeometryName, s The document. -`strRackGeometryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRackGeometryName` string Name of the string rack geometry. -`strInitialAngle` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInitialAngle` string The Initial angle. @@ -143,7 +144,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -165,7 +166,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateShaftSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateShaftSet.md index 1a3d3e06ca..aff4619cd7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateShaftSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateShaftSet.md @@ -1,4 +1,5 @@ -# Class UpdateShaftSet +# Class UpdateShaftSet + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class UpdateShaftSet : OperationInHiddenDocument, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [OperationInHiddenDocument](VM.Managed.DAFUL.GearTrain.Operation.OperationInHiddenDocument.md) ← [UpdateShaftSet](VM.Managed.DAFUL.GearTrain.Operation.UpdateShaftSet.md) @@ -102,7 +103,7 @@ public UpdateShaftSet(bool bMerge) #### Parameters -`bMerge` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bMerge` bool The merge flag. @@ -120,7 +121,7 @@ public UpdateShaftSet(Document3D document3D, bool bMerge) The document. -`bMerge` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bMerge` bool The merge flag. @@ -150,7 +151,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -172,7 +173,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateSlidingBearing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateSlidingBearing.md index 20ed2f6932..18194e85e8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateSlidingBearing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateSlidingBearing.md @@ -1,4 +1,5 @@ -# Class UpdateSlidingBearing +# Class UpdateSlidingBearing + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class UpdateSlidingBearing : OperationInHiddenDocument, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [OperationInHiddenDocument](VM.Managed.DAFUL.GearTrain.Operation.OperationInHiddenDocument.md) ← [UpdateSlidingBearing](VM.Managed.DAFUL.GearTrain.Operation.UpdateSlidingBearing.md) @@ -140,7 +141,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateSlidingBearingInFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateSlidingBearingInFE.md index ec43e82fa1..cf738bacbb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateSlidingBearingInFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateSlidingBearingInFE.md @@ -1,4 +1,5 @@ -# Class UpdateSlidingBearingInFE +# Class UpdateSlidingBearingInFE + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class UpdateSlidingBearingInFE : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [UpdateSlidingBearingInFE](VM.Managed.DAFUL.GearTrain.Operation.UpdateSlidingBearingInFE.md) @@ -91,11 +92,11 @@ public UpdateSlidingBearingInFE(string strBearingGeometryName, string strRBEName #### Parameters -`strBearingGeometryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBearingGeometryName` string Name of the string bearing geometry. -`strRBEName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRBEName` string Name of the string rbe. @@ -113,11 +114,11 @@ public UpdateSlidingBearingInFE(Document3D document3D, string strBearingGeometry The document. -`strBearingGeometryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBearingGeometryName` string Name of the string bearing geometry. -`strRBEName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRBEName` string Name of the string rbe. @@ -147,7 +148,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -169,7 +170,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateSlidingBearingInMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateSlidingBearingInMeshFree.md index 236c744ecd..6bf53734e4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateSlidingBearingInMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateSlidingBearingInMeshFree.md @@ -1,4 +1,5 @@ -# Class UpdateSlidingBearingInMeshFree +# Class UpdateSlidingBearingInMeshFree + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class UpdateSlidingBearingInMeshFree : UpdateSlidingBearingInFE, IOperati #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [UpdateSlidingBearingInFE](VM.Managed.DAFUL.GearTrain.Operation.UpdateSlidingBearingInFE.md) ← [UpdateSlidingBearingInMeshFree](VM.Managed.DAFUL.GearTrain.Operation.UpdateSlidingBearingInMeshFree.md) @@ -91,11 +92,11 @@ public UpdateSlidingBearingInMeshFree(string strBearingGeometryName, string strR #### Parameters -`strBearingGeometryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBearingGeometryName` string Name of the string bearing geometry. -`strRBEName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRBEName` string Name of the string rbe. @@ -113,11 +114,11 @@ public UpdateSlidingBearingInMeshFree(Document3D document3D, string strBearingGe The document. -`strBearingGeometryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBearingGeometryName` string Name of the string bearing geometry. -`strRBEName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRBEName` string Name of the string rbe. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateSlidingBearingInShaftSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateSlidingBearingInShaftSet.md index 939a92f848..d05607acc5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateSlidingBearingInShaftSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.UpdateSlidingBearingInShaftSet.md @@ -1,4 +1,5 @@ -# Class UpdateSlidingBearingInShaftSet +# Class UpdateSlidingBearingInShaftSet + Namespace: [VM.Managed.DAFUL.GearTrain.Operation](VM.Managed.DAFUL.GearTrain.Operation.md) Assembly: VMOpGearTrain.dll @@ -11,7 +12,7 @@ public class UpdateSlidingBearingInShaftSet : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [UpdateSlidingBearingInShaftSet](VM.Managed.DAFUL.GearTrain.Operation.UpdateSlidingBearingInShaftSet.md) @@ -87,19 +88,19 @@ public UpdateSlidingBearingInShaftSet(string strBearingGeometryName, string strR #### Parameters -`strBearingGeometryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBearingGeometryName` string Name of the string bearing geometry. -`strReferenceOffset` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strReferenceOffset` string The string reference offset. -`strReferencePoint` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strReferencePoint` string The string reference point. -`strStartAngle` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strStartAngle` string The string arc angle. @@ -117,19 +118,19 @@ public UpdateSlidingBearingInShaftSet(Document3D document3D, string strBearingGe The document. -`strBearingGeometryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBearingGeometryName` string Name of the string bearing geometry. -`strReferenceOffset` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strReferenceOffset` string The string reference offset. -`strReferencePoint` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strReferencePoint` string The string reference point. -`strStartAngle` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strStartAngle` string The string arc angle. @@ -159,7 +160,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -181,7 +182,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.md index bb228259e5..f119701091 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Operation.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.GearTrain.Operation +# Namespace VM.Managed.DAFUL.GearTrain.Operation + ### Classes @@ -172,6 +173,10 @@ The export DFG file operation The export xml file for solver operation + [ExportFiles](VM.Managed.DAFUL.GearTrain.Operation.ExportFiles.md) + + [ExportMotionFiles](VM.Managed.DAFUL.GearTrain.Operation.ExportMotionFiles.md) + [ExportXML](VM.Managed.DAFUL.GearTrain.Operation.ExportXML.md) The export xml file for solver operation diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.OutputShaftSetInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.OutputShaftSetInfo.md index 660eda8c12..bdb5c1520f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.OutputShaftSetInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.OutputShaftSetInfo.md @@ -1,4 +1,5 @@ -# Class OutputShaftSetInfo +# Class OutputShaftSetInfo + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class OutputShaftSetInfo : LinkContainer, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [OutputShaftSetInfo](VM.Managed.DAFUL.GearTrain.OutputShaftSetInfo.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -130,7 +131,7 @@ public ExpressionValueVariable Efficiency_New { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### IsExternable @@ -142,7 +143,7 @@ public override bool IsExternable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OutputShaftSet @@ -166,7 +167,7 @@ public string OutputTorqueFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ReductionRatio @@ -178,7 +179,7 @@ public ExpressionValueVariable ReductionRatio { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Split\_New @@ -190,7 +191,7 @@ public ExpressionValueVariable Split_New { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### \_OutputShaftSet @@ -230,7 +231,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ParentType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ParentType.md index 037703c7fb..bcd5047cee 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ParentType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ParentType.md @@ -1,4 +1,5 @@ -# Enum ParentType +# Enum ParentType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PerformanceIndexInformation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PerformanceIndexInformation.md index cc05921467..53565ed88e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PerformanceIndexInformation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PerformanceIndexInformation.md @@ -1,4 +1,5 @@ -# Class PerformanceIndexInformation +# Class PerformanceIndexInformation + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class PerformanceIndexInformation : Object, IObservableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [PerformanceIndexInformation](VM.Managed.DAFUL.GearTrain.PerformanceIndexInformation.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, INamed, IPerformanceIndexable @@ -131,7 +132,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -170,7 +171,7 @@ public PerformanceIndexInformation(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The name. @@ -186,7 +187,7 @@ public string FullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Name @@ -198,7 +199,7 @@ public string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NonSymmetricName @@ -210,7 +211,7 @@ public string NonSymmetricName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UsePerformanceIndex @@ -223,7 +224,7 @@ public bool UsePerformanceIndex { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -237,7 +238,7 @@ public void SetUsePerformanceIndex(bool bUsePerformanceIndex) #### Parameters -`bUsePerformanceIndex` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUsePerformanceIndex` bool The use flag. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PointEntityOnRBE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PointEntityOnRBE.md index 6228ae7528..933bbf5bf9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PointEntityOnRBE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PointEntityOnRBE.md @@ -1,4 +1,5 @@ -# Class PointEntityOnRBE +# Class PointEntityOnRBE + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,12 +12,12 @@ public abstract class PointEntityOnRBE : SubEntity, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [PointEntityOnRBE](VM.Managed.DAFUL.GearTrain.PointEntityOnRBE.md) #### Derived @@ -32,7 +33,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -51,17 +52,17 @@ INavigatorItem #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -154,7 +155,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -193,7 +194,7 @@ public PointEntityOnRBE(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the sub entity. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PointEntityOnShaftSet.ReferenceType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PointEntityOnShaftSet.ReferenceType.md index e7d6fbfe92..792c343c6d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PointEntityOnShaftSet.ReferenceType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PointEntityOnShaftSet.ReferenceType.md @@ -1,4 +1,5 @@ -# Enum PointEntityOnShaftSet.ReferenceType +# Enum PointEntityOnShaftSet.ReferenceType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PointEntityOnShaftSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PointEntityOnShaftSet.md index a863b8bf04..aae22f6018 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PointEntityOnShaftSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PointEntityOnShaftSet.md @@ -1,4 +1,5 @@ -# Class PointEntityOnShaftSet +# Class PointEntityOnShaftSet + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,12 +12,12 @@ public abstract class PointEntityOnShaftSet : SubEntity, IObservableObject, IDis #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [PointEntityOnShaftSet](VM.Managed.DAFUL.GearTrain.PointEntityOnShaftSet.md) #### Derived @@ -33,7 +34,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -52,17 +53,17 @@ INavigatorItem #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -155,7 +156,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -194,7 +195,7 @@ public PointEntityOnShaftSet(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the sub entity. @@ -210,7 +211,7 @@ public double OffsetToAxisDirection { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Position @@ -235,7 +236,7 @@ public double ReferenceOffset { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TypeOfReference @@ -260,7 +261,7 @@ public ExpressionValueVariable Width { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -288,7 +289,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -302,7 +303,7 @@ public void SetReferenceOffset(double dOffset) #### Parameters -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double The reference offset. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PointLoad.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PointLoad.md index 960b41d5a8..d2037fbca3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PointLoad.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PointLoad.md @@ -1,4 +1,5 @@ -# Class PointLoad +# Class PointLoad + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,12 +12,12 @@ public class PointLoad : PointEntityOnShaftSet, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [PointEntityOnShaftSet](VM.Managed.DAFUL.GearTrain.PointEntityOnShaftSet.md) ← [PointLoad](VM.Managed.DAFUL.GearTrain.PointLoad.md) @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -57,17 +58,17 @@ INavigatorItem, [PointEntityOnShaftSet.Position](VM.Managed.DAFUL.GearTrain.PointEntityOnShaftSet.md\#VM\_Managed\_DAFUL\_GearTrain\_PointEntityOnShaftSet\_Position), [PointEntityOnShaftSet.OffsetToAxisDirection](VM.Managed.DAFUL.GearTrain.PointEntityOnShaftSet.md\#VM\_Managed\_DAFUL\_GearTrain\_PointEntityOnShaftSet\_OffsetToAxisDirection), [PointEntityOnShaftSet.Width](VM.Managed.DAFUL.GearTrain.PointEntityOnShaftSet.md\#VM\_Managed\_DAFUL\_GearTrain\_PointEntityOnShaftSet\_Width), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -160,7 +161,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -199,7 +200,7 @@ public PointLoad(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the sub entity. @@ -227,7 +228,7 @@ public ExpressionValueVariable ForceX { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ForceY @@ -239,7 +240,7 @@ public ExpressionValueVariable ForceY { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ForceZ @@ -251,7 +252,7 @@ public ExpressionValueVariable ForceZ { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TorqueX @@ -263,7 +264,7 @@ public ExpressionValueVariable TorqueX { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TorqueY @@ -275,7 +276,7 @@ public ExpressionValueVariable TorqueY { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PointLoadOnRBE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PointLoadOnRBE.md index 61f55f5039..82184ddd65 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PointLoadOnRBE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PointLoadOnRBE.md @@ -1,4 +1,5 @@ -# Class PointLoadOnRBE +# Class PointLoadOnRBE + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,12 +12,12 @@ public class PointLoadOnRBE : PointEntityOnRBE, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [PointEntityOnRBE](VM.Managed.DAFUL.GearTrain.PointEntityOnRBE.md) ← [PointLoadOnRBE](VM.Managed.DAFUL.GearTrain.PointLoadOnRBE.md) @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -51,17 +52,17 @@ INavigatorItem, [PointEntityOnRBE.ConnectableEntity](VM.Managed.DAFUL.GearTrain.PointEntityOnRBE.md\#VM\_Managed\_DAFUL\_GearTrain\_PointEntityOnRBE\_ConnectableEntity), [PointEntityOnRBE.\_ConnectableEntity](VM.Managed.DAFUL.GearTrain.PointEntityOnRBE.md\#VM\_Managed\_DAFUL\_GearTrain\_PointEntityOnRBE\_\_ConnectableEntity), [PointEntityOnRBE.Position](VM.Managed.DAFUL.GearTrain.PointEntityOnRBE.md\#VM\_Managed\_DAFUL\_GearTrain\_PointEntityOnRBE\_Position), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -154,7 +155,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -193,7 +194,7 @@ public PointLoadOnRBE(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the sub entity. @@ -221,7 +222,7 @@ public ExpressionValueVariable ForceX { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ForceY @@ -233,7 +234,7 @@ public ExpressionValueVariable ForceY { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ForceZ @@ -245,7 +246,7 @@ public ExpressionValueVariable ForceZ { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TorqueX @@ -257,7 +258,7 @@ public ExpressionValueVariable TorqueX { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TorqueY @@ -269,7 +270,7 @@ public ExpressionValueVariable TorqueY { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ZAxis diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PowerFlow.SimulationType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PowerFlow.SimulationType.md index de79379680..871e074781 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PowerFlow.SimulationType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PowerFlow.SimulationType.md @@ -1,4 +1,5 @@ -# Enum PowerFlow.SimulationType +# Enum PowerFlow.SimulationType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PowerFlow.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PowerFlow.md index 0d530f4b71..6d5df00678 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PowerFlow.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PowerFlow.md @@ -1,4 +1,5 @@ -# Class PowerFlow +# Class PowerFlow + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class PowerFlow : LinkContainer, IObservableObject, IDisposableObject, IL #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [PowerFlow](VM.Managed.DAFUL.GearTrain.PowerFlow.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -130,7 +131,7 @@ public double DurationValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### EndTimeValue @@ -142,7 +143,7 @@ public double EndTimeValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GearPairs @@ -158,7 +159,7 @@ public GearPair[] GearPairs { get; set; } #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception GearSet list is null. or @@ -176,7 +177,7 @@ public double InputEndSpeedValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### InputPowerFilePath @@ -188,7 +189,7 @@ public string InputPowerFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### InputPowerValue @@ -200,7 +201,7 @@ public double InputPowerValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### InputShaftSet @@ -228,7 +229,7 @@ public InputShaftSetInfo[] InputShaftSetInfos { get; set; } #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception InputShaftSetInfo list is null. or @@ -246,7 +247,7 @@ public string InputSpeedFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### InputStartSpeedValue @@ -258,7 +259,7 @@ public double InputStartSpeedValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### IsExternable @@ -270,7 +271,7 @@ public override bool IsExternable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsUseCW @@ -282,7 +283,7 @@ public bool IsUseCW { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MaxTorqueValue @@ -294,7 +295,7 @@ public double MaxTorqueValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NameOfResult @@ -306,7 +307,7 @@ public string NameOfResult { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NumberOfInterpolation @@ -318,7 +319,7 @@ public double NumberOfInterpolation { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### OutputShaftSetInfos @@ -334,7 +335,7 @@ public OutputShaftSetInfo[] OutputShaftSetInfos { get; set; } #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception OutputShaftSetInfo list is null. or @@ -352,7 +353,7 @@ public uint SamplingFrequencyValue { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### TMScenarioFile @@ -364,7 +365,7 @@ public string TMScenarioFile { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeOfSimulation @@ -400,7 +401,7 @@ public string VehicleSimulatorResultFile { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### \_InputShaftSet @@ -492,13 +493,13 @@ public static SplineValue GetInputSplineValue(Document3D doc, (string, SplineVal `doc` Document3D -`splineTuple` \([string](https://learn.microsoft.com/dotnet/api/system.string), SplineValue\)\[\] +`splineTuple` \(string, [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs)\)\[\] -`strShaftSet` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strShaftSet` string #### Returns - SplineValue + [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### GetOutputSplineValue\(Document3D, \(string, SplineValue\)\[\], string\) @@ -510,13 +511,13 @@ public static SplineValue GetOutputSplineValue(Document3D doc, (string, SplineVa `doc` Document3D -`splineTuple` \([string](https://learn.microsoft.com/dotnet/api/system.string), SplineValue\)\[\] +`splineTuple` \(string, [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs)\)\[\] -`strShaftSet` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strShaftSet` string #### Returns - SplineValue + [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### GetSplineValueFromResultFile\(string\) @@ -528,11 +529,11 @@ public static (string, SplineValue)[] GetSplineValueFromResultFile(string strRes #### Parameters -`strResultScenarioFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strResultScenarioFile` string #### Returns - \([string](https://learn.microsoft.com/dotnet/api/system.string), SplineValue\)\[\] + \(string, [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs)\)\[\] ### GetSplineValueWithPowerLoad\(\(string, SplineValue\)\[\], string\) @@ -544,17 +545,17 @@ public static SplineValue GetSplineValueWithPowerLoad((string, SplineValue)[] sp #### Parameters -`splineTuple` \([string](https://learn.microsoft.com/dotnet/api/system.string), SplineValue\)\[\] +`splineTuple` \(string, [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs)\)\[\] The spline tuple -`strPowerLoad` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPowerLoad` string The power load name #### Returns - SplineValue + [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### OnDeserialization\(object\) @@ -566,7 +567,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PowerLoad.PowerLoadType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PowerLoad.PowerLoadType.md index 793254cb4f..dce12acefa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PowerLoad.PowerLoadType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PowerLoad.PowerLoadType.md @@ -1,4 +1,5 @@ -# Enum PowerLoad.PowerLoadType +# Enum PowerLoad.PowerLoadType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PowerLoad.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PowerLoad.md index 8fc35e6362..031bc40a1f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PowerLoad.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PowerLoad.md @@ -1,4 +1,5 @@ -# Class PowerLoad +# Class PowerLoad + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,12 +12,12 @@ public class PowerLoad : PointEntityOnShaftSet, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [PointEntityOnShaftSet](VM.Managed.DAFUL.GearTrain.PointEntityOnShaftSet.md) ← [PowerLoad](VM.Managed.DAFUL.GearTrain.PowerLoad.md) @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -56,17 +57,17 @@ INavigatorItem, [PointEntityOnShaftSet.Position](VM.Managed.DAFUL.GearTrain.PointEntityOnShaftSet.md\#VM\_Managed\_DAFUL\_GearTrain\_PointEntityOnShaftSet\_Position), [PointEntityOnShaftSet.OffsetToAxisDirection](VM.Managed.DAFUL.GearTrain.PointEntityOnShaftSet.md\#VM\_Managed\_DAFUL\_GearTrain\_PointEntityOnShaftSet\_OffsetToAxisDirection), [PointEntityOnShaftSet.Width](VM.Managed.DAFUL.GearTrain.PointEntityOnShaftSet.md\#VM\_Managed\_DAFUL\_GearTrain\_PointEntityOnShaftSet\_Width), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -159,7 +160,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -198,7 +199,7 @@ public PowerLoad(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the sub entity. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PowerLoadOnRBE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PowerLoadOnRBE.md index 8abfbad139..9114989d48 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PowerLoadOnRBE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PowerLoadOnRBE.md @@ -1,4 +1,5 @@ -# Class PowerLoadOnRBE +# Class PowerLoadOnRBE + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,12 +12,12 @@ public class PowerLoadOnRBE : PointEntityOnRBE, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [PointEntityOnRBE](VM.Managed.DAFUL.GearTrain.PointEntityOnRBE.md) ← [PowerLoadOnRBE](VM.Managed.DAFUL.GearTrain.PowerLoadOnRBE.md) @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -50,17 +51,17 @@ INavigatorItem, [PointEntityOnRBE.ConnectableEntity](VM.Managed.DAFUL.GearTrain.PointEntityOnRBE.md\#VM\_Managed\_DAFUL\_GearTrain\_PointEntityOnRBE\_ConnectableEntity), [PointEntityOnRBE.\_ConnectableEntity](VM.Managed.DAFUL.GearTrain.PointEntityOnRBE.md\#VM\_Managed\_DAFUL\_GearTrain\_PointEntityOnRBE\_\_ConnectableEntity), [PointEntityOnRBE.Position](VM.Managed.DAFUL.GearTrain.PointEntityOnRBE.md\#VM\_Managed\_DAFUL\_GearTrain\_PointEntityOnRBE\_Position), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -153,7 +154,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -192,7 +193,7 @@ public PowerLoadOnRBE(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the sub entity. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyBearing.enBearingType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyBearing.enBearingType.md index 042e05f762..b99ebdcc47 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyBearing.enBearingType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyBearing.enBearingType.md @@ -1,4 +1,5 @@ -# Enum PropertyBearing.enBearingType +# Enum PropertyBearing.enBearingType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyBearing.enStiffnessType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyBearing.enStiffnessType.md index 2fc41c0d84..c6d83f0b5f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyBearing.enStiffnessType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyBearing.enStiffnessType.md @@ -1,4 +1,5 @@ -# Enum PropertyBearing.enStiffnessType +# Enum PropertyBearing.enStiffnessType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyBearing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyBearing.md index b564bb5069..9915546d20 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyBearing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyBearing.md @@ -1,4 +1,5 @@ -# Class PropertyBearing +# Class PropertyBearing + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,13 +12,13 @@ public class PropertyBearing : Property, IObservableObject, IDisposableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyBearing](VM.Managed.DAFUL.GearTrain.PropertyBearing.md) #### Implements @@ -31,7 +32,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -40,12 +41,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -144,7 +145,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -186,7 +187,7 @@ public double AxialClearance { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### BallColor @@ -199,7 +200,7 @@ public string BallColor { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### BallDrawingColor @@ -211,7 +212,7 @@ public Color BallDrawingColor { get; } #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### BearingStiffness @@ -248,7 +249,7 @@ public string Color { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### DampingRatio @@ -261,7 +262,7 @@ public double DampingRatio { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DampingRatioVariable @@ -273,7 +274,7 @@ public ExpressionValueVariable DampingRatioVariable { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Dimension @@ -297,7 +298,7 @@ public Color DrawingColor { get; } #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### InnerCurvatureCenter @@ -310,7 +311,7 @@ public double InnerCurvatureCenter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### InnerGeomInfo @@ -335,7 +336,7 @@ public string InnerRacewayColor { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### InnerRacewayDrawingColor @@ -347,7 +348,7 @@ public Color InnerRacewayDrawingColor { get; } #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### NumberOfBall @@ -360,7 +361,7 @@ public uint NumberOfBall { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### OuterCurvatureCenter @@ -373,7 +374,7 @@ public double OuterCurvatureCenter { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### OuterGeomInfo @@ -398,7 +399,7 @@ public string OuterRacewayColor { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### OuterRacewayDrawingColor @@ -410,7 +411,7 @@ public Color OuterRacewayDrawingColor { get; } #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### RadialClearance @@ -423,7 +424,7 @@ public double RadialClearance { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RadiusOfBall @@ -436,7 +437,7 @@ public double RadiusOfBall { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StiffnessMatrix @@ -448,7 +449,7 @@ public VariableMatrix StiffnessMatrix { get; set; } #### Property Value - VariableMatrix + [VariableMatrix](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/VariableMatrix.cs) ### StiffnessType @@ -487,7 +488,7 @@ public double UnloadContactAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -501,7 +502,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -525,7 +526,7 @@ The document #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double The effective stiffness. @@ -571,7 +572,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -585,7 +586,7 @@ public void SetAxialClearance(double dAxialClearance) #### Parameters -`dAxialClearance` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAxialClearance` double The axial clearance. @@ -599,7 +600,7 @@ public void SetBallColor(string strColor) #### Parameters -`strColor` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strColor` string The ball color. @@ -613,7 +614,7 @@ public void SetColor(string strColor) #### Parameters -`strColor` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strColor` string The color. @@ -627,7 +628,7 @@ public void SetDampingRatio(double dDampingRatio) #### Parameters -`dDampingRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDampingRatio` double The damping ratio. @@ -641,7 +642,7 @@ public void SetInnerCurvatureCenter(double dInnerCurvatureCenter) #### Parameters -`dInnerCurvatureCenter` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dInnerCurvatureCenter` double The ionner curvature center. @@ -655,7 +656,7 @@ public void SetInnerRacewayColor(string strColor) #### Parameters -`strColor` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strColor` string The inner raceway color. @@ -669,7 +670,7 @@ public void SetNumberOfBall(uint dNumberOfBall) #### Parameters -`dNumberOfBall` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`dNumberOfBall` uint The number of ball. @@ -683,7 +684,7 @@ public void SetOuterCurvatureCenter(double dOuterCurvatureCenter) #### Parameters -`dOuterCurvatureCenter` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOuterCurvatureCenter` double The outer curvature center. @@ -697,7 +698,7 @@ public void SetOuterRacewayColor(string strColor) #### Parameters -`strColor` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strColor` string The outer raceway color. @@ -711,7 +712,7 @@ public void SetRadialClearance(double dRadialClearance) #### Parameters -`dRadialClearance` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadialClearance` double The radial clearance. @@ -725,7 +726,7 @@ public void SetRadiusOfBall(double dRadiusOfBall) #### Parameters -`dRadiusOfBall` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadiusOfBall` double The radius of ball. @@ -739,15 +740,15 @@ public BearingStiffness SetStiffness(SplineValue svRadial, SplineValue svAxial, #### Parameters -`svRadial` SplineValue +`svRadial` [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) The radial stiffness spline value. -`svAxial` SplineValue +`svAxial` [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) The axial stiffness spline value. -`svTilt` SplineValue +`svTilt` [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) The tilt stiffness spline value. @@ -867,7 +868,7 @@ public void SetUnloadContactAngle(double dUnloadContactAngle) #### Parameters -`dUnloadContactAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dUnloadContactAngle` double The unload contact angle. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSet.md index 034f3d1d6e..e9cab3ce9e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSet.md @@ -1,4 +1,5 @@ -# Class PropertyGearSet +# Class PropertyGearSet + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,13 +12,13 @@ public class PropertyGearSet : PropertyGearSetBase, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyGearSetBase](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md) ← [PropertyGearSet](VM.Managed.DAFUL.GearTrain.PropertyGearSet.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -85,12 +86,12 @@ IPostDeserialized [PropertyGearSetBase.KissSoftInterfaceFilePath](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyGearSetBase\_KissSoftInterfaceFilePath), [PropertyGearSetBase.CreationMethod](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyGearSetBase\_CreationMethod), [PropertyGearSetBase.AdvancedGearGeometry](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyGearSetBase\_AdvancedGearGeometry), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -189,7 +190,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -238,7 +239,7 @@ protected override void ReadResultCore(XmlDocument xmlDoc) #### Parameters -`xmlDoc` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDoc` XmlDocument The XML document. @@ -252,31 +253,31 @@ protected override void ReadResultWithKissSoftInterface(uint nNumInvolute, uint #### Parameters -`nNumInvolute` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNumInvolute` uint The number of Involute -`nNumTrochoid` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNumTrochoid` uint The number of trochoid -`nNumSlice` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNumSlice` uint The number of slice -`dNormalModule` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dNormalModule` double The normal module -`dNormalPressureAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dNormalPressureAngle` double The normal pressure angle -`ardCenterDistance` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ardCenterDistance` double\[\] The center distancte -`dAxialCrossingAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAxialCrossingAngle` double The axial crossing angle diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.CreateDATType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.CreateDATType.md index b9faba6cd9..f9d710c6c1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.CreateDATType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.CreateDATType.md @@ -1,4 +1,5 @@ -# Enum PropertyGearSetBase.CreateDATType +# Enum PropertyGearSetBase.CreateDATType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.CreationMethodType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.CreationMethodType.md index 2b9334058c..94b3308bcc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.CreationMethodType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.CreationMethodType.md @@ -1,4 +1,5 @@ -# Enum PropertyGearSetBase.CreationMethodType +# Enum PropertyGearSetBase.CreationMethodType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md index 68decd2732..3cae4fb925 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md @@ -1,4 +1,5 @@ -# Class PropertyGearSetBase +# Class PropertyGearSetBase + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,13 +12,13 @@ public abstract class PropertyGearSetBase : Property, IObservableObject, IDispos #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyGearSetBase](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md) #### Derived @@ -43,7 +44,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -53,12 +54,12 @@ IPostDeserialized #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -157,7 +158,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -198,7 +199,7 @@ public bool AdvancedGearGeometry { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### BasicInvoluteProperty @@ -223,7 +224,7 @@ public string Color { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ContactAnalysisProperty @@ -259,7 +260,7 @@ public Color DrawingColor { get; } #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### GearPairs @@ -275,7 +276,7 @@ public GearPair[] GearPairs { get; set; } #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception GearPair list is null. or @@ -297,7 +298,7 @@ public GearGeometryInfo[] GeometryInfos { get; set; } #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception GeometryInfo list is null. or @@ -315,7 +316,7 @@ public string KissSoftInterfaceFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### MaterialProperty @@ -351,7 +352,7 @@ public bool ModifiedParam { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SimulationType @@ -412,7 +413,7 @@ public bool UseKissSoftInterface { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### WebProperty @@ -458,7 +459,7 @@ public bool BuildGear() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### BuildGear\(bool\) @@ -470,11 +471,11 @@ public virtual bool BuildGear(bool bCreate) #### Parameters -`bCreate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bCreate` bool #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### BuildGearCore\(bool, string, string, string\[\]\) @@ -486,19 +487,19 @@ protected void BuildGearCore(bool bCreate, string strInputPath, string strResult #### Parameters -`bCreate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bCreate` bool create state. -`strInputPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInputPath` string input path. -`strResultPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strResultPath` string result path. -`arDatPath` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arDatPath` string\[\] dat file path array. @@ -512,13 +513,13 @@ public bool BuildGearWithKissSoftInterface(bool bCreate, KissSoftInterface.Outpu #### Parameters -`bCreate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bCreate` bool `outputData` [KissSoftInterface](VM.Managed.DAFUL.GearTrain.KissSoftInterface.md).[OutputData](VM.Managed.DAFUL.GearTrain.KissSoftInterface.OutputData.md) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### BuildGearWithKissSoftInterface\(string\) @@ -530,11 +531,11 @@ public bool BuildGearWithKissSoftInterface(string strFilePath) #### Parameters -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### BuildGearWithKissSoftInterface\(\) @@ -546,7 +547,7 @@ public bool BuildGearWithKissSoftInterface() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### FindLocal\(string\) @@ -558,7 +559,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -618,7 +619,7 @@ The finding information. #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetSelectedGearInfo\(string, GearGeometryInfo\[\]\) @@ -630,7 +631,7 @@ public virtual GearGeometryInfo GetSelectedGearInfo(string strText, GearGeometry #### Parameters -`strText` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strText` string The text @@ -652,11 +653,11 @@ public virtual void InitChild(int nNum, string[] arName, Unit.ConvertFactor fact #### Parameters -`nNum` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNum` int The n number. -`arName` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arName` string\[\] Name of the ar. @@ -688,7 +689,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -706,7 +707,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -720,7 +721,7 @@ protected virtual void OnPostDeserializedImpl(StreamingContext context) #### Parameters -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext ### PostBuildGear\(\) @@ -740,7 +741,7 @@ protected virtual void ReadResultCore(XmlDocument xmlDoc) #### Parameters -`xmlDoc` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDoc` XmlDocument The XML document. @@ -754,11 +755,11 @@ protected virtual void ReadResultForDatFile(string[] arDatPath, int nIdx) #### Parameters -`arDatPath` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arDatPath` string\[\] The dat path array. -`nIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIdx` int The index. @@ -772,31 +773,31 @@ protected virtual void ReadResultWithKissSoftInterface(uint nNumInvolute, uint n #### Parameters -`nNumInvolute` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNumInvolute` uint The number of Involute -`nNumTrochoid` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNumTrochoid` uint The number of trochoid -`nNumSlice` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNumSlice` uint The number of slice -`dNormalModule` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dNormalModule` double The normal module -`dNormalPressureAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dNormalPressureAngle` double The normal pressure angle -`ardCenterDistance` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ardCenterDistance` double\[\] The center distancte -`dAxialCrossingAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAxialCrossingAngle` double The axial crossing angle @@ -814,7 +815,7 @@ public void SetColor(string color) #### Parameters -`color` [string](https://learn.microsoft.com/dotnet/api/system.string) +`color` string The color. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetCrossHelical.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetCrossHelical.md index 87182091fe..d229ac5574 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetCrossHelical.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetCrossHelical.md @@ -1,4 +1,5 @@ -# Class PropertyGearSetCrossHelical +# Class PropertyGearSetCrossHelical + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,13 +12,13 @@ public class PropertyGearSetCrossHelical : PropertyGearSetBase, IObservableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyGearSetBase](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md) ← [PropertyGearSetCrossHelical](VM.Managed.DAFUL.GearTrain.PropertyGearSetCrossHelical.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -85,12 +86,12 @@ IPostDeserialized [PropertyGearSetBase.KissSoftInterfaceFilePath](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyGearSetBase\_KissSoftInterfaceFilePath), [PropertyGearSetBase.CreationMethod](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyGearSetBase\_CreationMethod), [PropertyGearSetBase.AdvancedGearGeometry](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyGearSetBase\_AdvancedGearGeometry), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -189,7 +190,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -252,7 +253,7 @@ protected override void ReadResultCore(XmlDocument xmlDoc) #### Parameters -`xmlDoc` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDoc` XmlDocument The XML document. @@ -266,31 +267,31 @@ protected override void ReadResultWithKissSoftInterface(uint nNumInvolute, uint #### Parameters -`nNumInvolute` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNumInvolute` uint The number of Involute -`nNumTrochoid` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNumTrochoid` uint The number of trochoid -`nNumSlice` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNumSlice` uint The number of slice -`dNormalModule` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dNormalModule` double The normal module -`dNormalPressureAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dNormalPressureAngle` double The normal pressure angle -`ardCenterDistance` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ardCenterDistance` double\[\] The center distancte -`dAxialCrossingAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAxialCrossingAngle` double The axial crossing angle diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetCustom.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetCustom.md index 7bd947d90f..08af13bb6a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetCustom.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetCustom.md @@ -1,4 +1,5 @@ -# Class PropertyGearSetCustom +# Class PropertyGearSetCustom + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,13 +12,13 @@ public class PropertyGearSetCustom : PropertyGearSetBase, IObservableObject, IDi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyGearSetBase](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md) ← [PropertyGearSetCustom](VM.Managed.DAFUL.GearTrain.PropertyGearSetCustom.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -85,12 +86,12 @@ IPostDeserialized [PropertyGearSetBase.KissSoftInterfaceFilePath](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyGearSetBase\_KissSoftInterfaceFilePath), [PropertyGearSetBase.CreationMethod](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyGearSetBase\_CreationMethod), [PropertyGearSetBase.AdvancedGearGeometry](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyGearSetBase\_AdvancedGearGeometry), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -189,7 +190,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -230,7 +231,7 @@ public int GearProfileType { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -244,11 +245,11 @@ public override bool BuildGear(bool bCreate) #### Parameters -`bCreate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bCreate` bool #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PostBuildGear\(\) @@ -268,7 +269,7 @@ protected override void ReadResultCore(XmlDocument xmlDoc) #### Parameters -`xmlDoc` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDoc` XmlDocument The XML document. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetCycloidPin.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetCycloidPin.md index 66311f508f..d155b59856 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetCycloidPin.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetCycloidPin.md @@ -1,4 +1,5 @@ -# Class PropertyGearSetCycloidPin +# Class PropertyGearSetCycloidPin + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,13 +12,13 @@ public class PropertyGearSetCycloidPin : PropertyGearSetBase, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyGearSetBase](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md) ← [PropertyGearSetCycloidPin](VM.Managed.DAFUL.GearTrain.PropertyGearSetCycloidPin.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -85,12 +86,12 @@ IPostDeserialized [PropertyGearSetBase.KissSoftInterfaceFilePath](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyGearSetBase\_KissSoftInterfaceFilePath), [PropertyGearSetBase.CreationMethod](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyGearSetBase\_CreationMethod), [PropertyGearSetBase.AdvancedGearGeometry](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyGearSetBase\_AdvancedGearGeometry), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -189,7 +190,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -230,7 +231,7 @@ public string CycloidProfile { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Eccentricity @@ -242,7 +243,7 @@ public ExpressionValueVariable Eccentricity { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PinDiameter @@ -254,7 +255,7 @@ public ExpressionValueVariable PinDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PinPitch @@ -266,7 +267,7 @@ public ExpressionValueVariable PinPitch { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -280,11 +281,11 @@ public override bool BuildGear(bool bCreate) #### Parameters -`bCreate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bCreate` bool #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Initialize\(ConvertFactor\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetInternal.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetInternal.md index abfd75e780..40f1c544ab 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetInternal.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetInternal.md @@ -1,4 +1,5 @@ -# Class PropertyGearSetInternal +# Class PropertyGearSetInternal + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,13 +12,13 @@ public class PropertyGearSetInternal : PropertyGearSetBase, IObservableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyGearSetBase](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md) ← [PropertyGearSetInternal](VM.Managed.DAFUL.GearTrain.PropertyGearSetInternal.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -85,12 +86,12 @@ IPostDeserialized [PropertyGearSetBase.KissSoftInterfaceFilePath](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyGearSetBase\_KissSoftInterfaceFilePath), [PropertyGearSetBase.CreationMethod](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyGearSetBase\_CreationMethod), [PropertyGearSetBase.AdvancedGearGeometry](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyGearSetBase\_AdvancedGearGeometry), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -189,7 +190,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -238,7 +239,7 @@ protected override void ReadResultCore(XmlDocument xmlDoc) #### Parameters -`xmlDoc` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDoc` XmlDocument The XML document. @@ -252,31 +253,31 @@ protected override void ReadResultWithKissSoftInterface(uint nNumInvolute, uint #### Parameters -`nNumInvolute` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNumInvolute` uint The number of Involute -`nNumTrochoid` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNumTrochoid` uint The number of trochoid -`nNumSlice` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNumSlice` uint The number of slice -`dNormalModule` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dNormalModule` double The normal module -`dNormalPressureAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dNormalPressureAngle` double The normal pressure angle -`ardCenterDistance` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ardCenterDistance` double\[\] The center distancte -`dAxialCrossingAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAxialCrossingAngle` double The axial crossing angle diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetPlanetary.ContactAnalysisInputType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetPlanetary.ContactAnalysisInputType.md index 25a9b8796e..32e6318f7d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetPlanetary.ContactAnalysisInputType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetPlanetary.ContactAnalysisInputType.md @@ -1,4 +1,5 @@ -# Enum PropertyGearSetPlanetary.ContactAnalysisInputType +# Enum PropertyGearSetPlanetary.ContactAnalysisInputType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetPlanetary.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetPlanetary.md index 4e62500411..3461183b09 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetPlanetary.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetPlanetary.md @@ -1,4 +1,5 @@ -# Class PropertyGearSetPlanetary +# Class PropertyGearSetPlanetary + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,13 +12,13 @@ public class PropertyGearSetPlanetary : PropertyGearSetBase, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyGearSetBase](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md) ← [PropertyGearSetPlanetary](VM.Managed.DAFUL.GearTrain.PropertyGearSetPlanetary.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -85,12 +86,12 @@ IPostDeserialized [PropertyGearSetBase.KissSoftInterfaceFilePath](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyGearSetBase\_KissSoftInterfaceFilePath), [PropertyGearSetBase.CreationMethod](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyGearSetBase\_CreationMethod), [PropertyGearSetBase.AdvancedGearGeometry](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyGearSetBase\_AdvancedGearGeometry), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -189,7 +190,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -244,7 +245,7 @@ public int NumberOfPinion { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Output @@ -269,7 +270,7 @@ public bool UseRingGear { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseSunGear @@ -281,7 +282,7 @@ public bool UseSunGear { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -295,15 +296,15 @@ public void GetGRFAndTRFOrientation(int nP, double dX, double dY, VectorBase vec #### Parameters -`nP` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nP` int The number of pinion. -`dX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dX` double The x position. -`dY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dY` double The y position. @@ -315,39 +316,39 @@ The Z Vector. The X Vector. -`lstSunGRFEx` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstSunGRFEx` List The external sun gear GRF array. -`lstSunTRFEx` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstSunTRFEx` List The external sun gear TRF array. -`lstPinionGRFEx` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstPinionGRFEx` List The external pinion gear GRF array. -`lstPinionTRFEx` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstPinionTRFEx` List The external pinion gear TRF array. -`lstRingGRFIn` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstRingGRFIn` List The internal ring gear GRF array. -`lstRingTRFIn` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstRingTRFIn` List The internal ring gear TRF array. -`lstPinionGRFIn` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstPinionGRFIn` List The internal pinion gear GRF array. -`lstPinionTRFIn` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstPinionTRFIn` List The internal pinion gear TRF array. -`IsContactAnalysis` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`IsContactAnalysis` bool The flag of contact analysis. @@ -361,7 +362,7 @@ public override GearGeometryInfo GetSelectedGearInfo(string strText, GearGeometr #### Parameters -`strText` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strText` string The text @@ -383,7 +384,7 @@ protected override void OnPostDeserializedImpl(StreamingContext context) #### Parameters -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext ### PostBuildGear\(\) @@ -403,7 +404,7 @@ protected override void ReadResultCore(XmlDocument xmlDoc) #### Parameters -`xmlDoc` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDoc` XmlDocument The XML document. @@ -417,31 +418,31 @@ protected override void ReadResultWithKissSoftInterface(uint nNumInvolute, uint #### Parameters -`nNumInvolute` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNumInvolute` uint The number of Involute -`nNumTrochoid` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNumTrochoid` uint The number of trochoid -`nNumSlice` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNumSlice` uint The number of slice -`dNormalModule` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dNormalModule` double The normal module -`dNormalPressureAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dNormalPressureAngle` double The normal pressure angle -`ardCenterDistance` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ardCenterDistance` double\[\] The center distancte -`dAxialCrossingAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAxialCrossingAngle` double The axial crossing angle @@ -473,7 +474,7 @@ public void SetNumberOfPinion(int nNum) #### Parameters -`nNum` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNum` int The number of pinion. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetPlanetaryDP.ContactAnalysisInputType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetPlanetaryDP.ContactAnalysisInputType.md index 98d9869e02..07fe029b4a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetPlanetaryDP.ContactAnalysisInputType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetPlanetaryDP.ContactAnalysisInputType.md @@ -1,4 +1,5 @@ -# Enum PropertyGearSetPlanetaryDP.ContactAnalysisInputType +# Enum PropertyGearSetPlanetaryDP.ContactAnalysisInputType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetPlanetaryDP.DogLegDirectionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetPlanetaryDP.DogLegDirectionType.md index 05739de4e3..bb892cdeea 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetPlanetaryDP.DogLegDirectionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetPlanetaryDP.DogLegDirectionType.md @@ -1,4 +1,5 @@ -# Enum PropertyGearSetPlanetaryDP.DogLegDirectionType +# Enum PropertyGearSetPlanetaryDP.DogLegDirectionType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetPlanetaryDP.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetPlanetaryDP.md index 6b8362ff49..ba267fee6e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetPlanetaryDP.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetPlanetaryDP.md @@ -1,4 +1,5 @@ -# Class PropertyGearSetPlanetaryDP +# Class PropertyGearSetPlanetaryDP + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,13 +12,13 @@ public class PropertyGearSetPlanetaryDP : PropertyGearSetBase, IObservableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyGearSetBase](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md) ← [PropertyGearSetPlanetaryDP](VM.Managed.DAFUL.GearTrain.PropertyGearSetPlanetaryDP.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -85,12 +86,12 @@ IPostDeserialized [PropertyGearSetBase.KissSoftInterfaceFilePath](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyGearSetBase\_KissSoftInterfaceFilePath), [PropertyGearSetBase.CreationMethod](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyGearSetBase\_CreationMethod), [PropertyGearSetBase.AdvancedGearGeometry](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyGearSetBase\_AdvancedGearGeometry), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -189,7 +190,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -256,7 +257,7 @@ public int NumberOfPinion { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Output @@ -283,23 +284,23 @@ public void GetGRFAndTRFOrientation(int nP, double dX, double dY, double distP1P #### Parameters -`nP` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nP` int The number of pinion. -`dX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dX` double The x position. -`dY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dY` double The y position. -`distP1P2` [double](https://learn.microsoft.com/dotnet/api/system.double) +`distP1P2` double The x position. -`rP2` [double](https://learn.microsoft.com/dotnet/api/system.double) +`rP2` double The y position. @@ -311,55 +312,55 @@ The Z Vector. The X Vector. -`lstSunGRFEx` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstSunGRFEx` List The external sun gear GRF array. -`lstSunTRFEx` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstSunTRFEx` List The external sun gear TRF array. -`lstPinionGRFEx` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstPinionGRFEx` List The external pinion gear GRF array. -`lstPinionTRFEx` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstPinionTRFEx` List The external pinion gear TRF array. -`lstPinionInGRFEx` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstPinionInGRFEx` List The external pinion gear GRF array. -`lstPinionInTRFEx` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstPinionInTRFEx` List The external pinion gear TRF array. -`lstPinionOutGRFEx` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstPinionOutGRFEx` List The external pinion gear GRF array. -`lstPinionOutTRFEx` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstPinionOutTRFEx` List The external pinion gear TRF array. -`lstRingGRFIn` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstRingGRFIn` List The internal ring gear GRF array. -`lstRingTRFIn` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstRingTRFIn` List The internal ring gear TRF array. -`lstPinionGRFIn` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstPinionGRFIn` List The internal pinion gear GRF array. -`lstPinionTRFIn` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstPinionTRFIn` List The internal pinion gear TRF array. -`IsContactAnalysis` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`IsContactAnalysis` bool The flag of contact analysis. @@ -373,7 +374,7 @@ public override GearGeometryInfo GetSelectedGearInfo(string strText, GearGeometr #### Parameters -`strText` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strText` string The text @@ -403,7 +404,7 @@ protected override void ReadResultCore(XmlDocument xmlDoc) #### Parameters -`xmlDoc` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDoc` XmlDocument The XML document. @@ -431,7 +432,7 @@ public void SetNumberOfPinion(int nNum) #### Parameters -`nNum` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNum` int The number of pinion. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetRackAndPinion.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetRackAndPinion.md index 0b7131d42c..9d754d3520 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetRackAndPinion.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetRackAndPinion.md @@ -1,4 +1,5 @@ -# Class PropertyGearSetRackAndPinion +# Class PropertyGearSetRackAndPinion + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,13 +12,13 @@ public class PropertyGearSetRackAndPinion : PropertyGearSetBase, IObservableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyGearSetBase](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md) ← [PropertyGearSetRackAndPinion](VM.Managed.DAFUL.GearTrain.PropertyGearSetRackAndPinion.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -85,12 +86,12 @@ IPostDeserialized [PropertyGearSetBase.KissSoftInterfaceFilePath](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyGearSetBase\_KissSoftInterfaceFilePath), [PropertyGearSetBase.CreationMethod](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyGearSetBase\_CreationMethod), [PropertyGearSetBase.AdvancedGearGeometry](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyGearSetBase\_AdvancedGearGeometry), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -189,7 +190,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -231,7 +232,7 @@ public string DatFileForWeb { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RackProperty @@ -257,11 +258,11 @@ public override bool BuildGear(bool bCreate) #### Parameters -`bCreate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bCreate` bool #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### FindLocal\(string\) @@ -273,7 +274,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -291,13 +292,13 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The ob unnamed. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The unnamed object name. @@ -311,11 +312,11 @@ public override void InitChild(int nNum, string[] arName, Unit.ConvertFactor fac #### Parameters -`nNum` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNum` int The n number. -`arName` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arName` string\[\] Name of the ar. @@ -347,7 +348,7 @@ protected override void ReadResultCore(XmlDocument xmlDoc) #### Parameters -`xmlDoc` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDoc` XmlDocument The XML document. @@ -361,11 +362,11 @@ protected override void ReadResultForDatFile(string[] arDatPath, int nIdx) #### Parameters -`arDatPath` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arDatPath` string\[\] The dat path array. -`nIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIdx` int The index. @@ -379,7 +380,7 @@ public void SetDatFileForWeb(string strFile) #### Parameters -`strFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFile` string The dat file for web. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetWormAndWormWheel.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetWormAndWormWheel.md index c4d1cff560..7abaae2a54 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetWormAndWormWheel.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyGearSetWormAndWormWheel.md @@ -1,4 +1,5 @@ -# Class PropertyGearSetWormAndWormWheel +# Class PropertyGearSetWormAndWormWheel + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,13 +12,13 @@ public class PropertyGearSetWormAndWormWheel : PropertyGearSetBase, IObservableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyGearSetBase](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md) ← [PropertyGearSetWormAndWormWheel](VM.Managed.DAFUL.GearTrain.PropertyGearSetWormAndWormWheel.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -85,12 +86,12 @@ IPostDeserialized [PropertyGearSetBase.KissSoftInterfaceFilePath](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyGearSetBase\_KissSoftInterfaceFilePath), [PropertyGearSetBase.CreationMethod](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyGearSetBase\_CreationMethod), [PropertyGearSetBase.AdvancedGearGeometry](VM.Managed.DAFUL.GearTrain.PropertyGearSetBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyGearSetBase\_AdvancedGearGeometry), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -189,7 +190,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -231,7 +232,7 @@ public string DatFileForWeb { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -245,11 +246,11 @@ public override bool BuildGear(bool bCreate) #### Parameters -`bCreate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bCreate` bool #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### FindLocal\(string\) @@ -261,7 +262,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -279,13 +280,13 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The ob unnamed. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The unnamed object name. @@ -299,11 +300,11 @@ public override void InitChild(int nNum, string[] arName, Unit.ConvertFactor fac #### Parameters -`nNum` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNum` int The n number. -`arName` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arName` string\[\] Name of the ar. @@ -343,7 +344,7 @@ protected override void ReadResultCore(XmlDocument xmlDoc) #### Parameters -`xmlDoc` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDoc` XmlDocument The XML document. @@ -357,11 +358,11 @@ protected override void ReadResultForDatFile(string[] arDatPath, int nIdx) #### Parameters -`arDatPath` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arDatPath` string\[\] The dat path array. -`nIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIdx` int The index. @@ -375,31 +376,31 @@ protected override void ReadResultWithKissSoftInterface(uint nNumInvolute, uint #### Parameters -`nNumInvolute` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNumInvolute` uint The number of Involute -`nNumTrochoid` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNumTrochoid` uint The number of trochoid -`nNumSlice` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNumSlice` uint The number of slice -`dNormalModule` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dNormalModule` double The normal module -`dNormalPressureAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dNormalPressureAngle` double The normal pressure angle -`ardCenterDistance` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ardCenterDistance` double\[\] The center distancte -`dAxialCrossingAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAxialCrossingAngle` double The axial crossing angle @@ -417,7 +418,7 @@ public void SetDatFileForWeb(string strFile) #### Parameters -`strFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFile` string The dat file for web. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyHDBearing.AnalysisMethodType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyHDBearing.AnalysisMethodType.md index a6b7dd2d37..b601de5b34 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyHDBearing.AnalysisMethodType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyHDBearing.AnalysisMethodType.md @@ -1,4 +1,5 @@ -# Enum PropertyHDBearing.AnalysisMethodType +# Enum PropertyHDBearing.AnalysisMethodType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyHDBearing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyHDBearing.md index d4c95aa24c..830db6d870 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyHDBearing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyHDBearing.md @@ -1,4 +1,5 @@ -# Class PropertyHDBearing +# Class PropertyHDBearing + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,13 +12,13 @@ public class PropertyHDBearing : Property, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyHDBearing](VM.Managed.DAFUL.GearTrain.PropertyHDBearing.md) #### Implements @@ -31,7 +32,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -40,12 +41,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -144,7 +145,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -199,7 +200,7 @@ public string Color { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ContactInfo @@ -223,7 +224,7 @@ public Color DrawingColor { get; } #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### HDBearingFilePath @@ -235,7 +236,7 @@ public string HDBearingFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### InnerGeomInfo diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md index b2564123ca..2ae7171952 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md @@ -1,4 +1,5 @@ -# Class PropertyHousingBase +# Class PropertyHousingBase + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,13 +12,13 @@ public abstract class PropertyHousingBase : Property, IObservableObject, IDispos #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyHousingBase](VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md) #### Derived @@ -38,7 +39,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -47,12 +48,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -151,7 +152,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -228,7 +229,7 @@ public SubEntity[] PointLoads { get; set; } #### Property Value - SubEntity\[\] + [SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs)\[\] ### UnbalanceMasses @@ -240,7 +241,7 @@ public SubEntity[] UnbalanceMasses { get; set; } #### Property Value - SubEntity\[\] + [SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs)\[\] ## Methods @@ -286,7 +287,7 @@ public IGTBuilder FindAddedBuilderFromGeomInfo(GeometryInfoBase info, string str The information. -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the string category. @@ -304,7 +305,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -346,7 +347,7 @@ protected virtual void GetGlobalAxisCore(Body[] arBody, ref List l The body list. -`lst` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lst` List vector list. @@ -360,17 +361,17 @@ protected string GetNewNameFromChildEntityCore(List lstName, string strP #### Parameters -`lstName` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstName` List Name of the LST. -`strPrefix` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefix` string The string prefix. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetNewNameFromPointLoad\(string\) @@ -382,13 +383,13 @@ public string GetNewNameFromPointLoad(string strPrefix) #### Parameters -`strPrefix` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefix` string The STR prefix. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetNewNameFromUnbalanceMass\(string\) @@ -400,13 +401,13 @@ public string GetNewNameFromUnbalanceMass(string strPrefix) #### Parameters -`strPrefix` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefix` string The STR prefix. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetPointLoadPoint\(\) @@ -418,7 +419,7 @@ public List GetPointLoadPoint() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### GetUnbalanceMassPoint\(\) @@ -430,7 +431,7 @@ public List GetUnbalanceMassPoint() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### GetUnnamedObjectName\(object\) @@ -442,13 +443,13 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The ob unnamed. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Initialize\(ConvertFactor\) @@ -478,7 +479,7 @@ public bool IsAvaiableToAddOrModifyCrossHelicalGearWithAxis(GearTrainDocument do The document gt. -`strExistShaftsetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strExistShaftsetName` string Name of the string exist shaftset. @@ -496,7 +497,7 @@ The added gear information. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsAvaiableToAddOrModifyGearWithAxis\(GearTrainDocument, string, VectorBase, VectorBase, GearGeometryInfo\) @@ -512,7 +513,7 @@ public bool IsAvaiableToAddOrModifyGearWithAxis(GearTrainDocument docGT, string The document gt. -`strExistShaftsetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strExistShaftsetName` string Name of the string exist shaftset. @@ -530,7 +531,7 @@ The added gear information. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsAvaiableToAddOrModifyGearWithCenterDistance\(GearTrainDocument, string, VectorBase, VectorBase, GearGeometryInfo\) @@ -546,7 +547,7 @@ public bool IsAvaiableToAddOrModifyGearWithCenterDistance(GearTrainDocument docG The document gt. -`strExistShaftsetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strExistShaftsetName` string Name of the string exist shaftset. @@ -564,7 +565,7 @@ The gear geometry information. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsContainsNameOfPointLoad\(string\) @@ -576,13 +577,13 @@ public bool IsContainsNameOfPointLoad(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if [is contains name of point load] [the specified STR name]; otherwise, false. @@ -596,13 +597,13 @@ public bool IsContainsNameOfUnbalanceMass(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if [is contains name of unbalance mass] [the specified STR name]; otherwise, false. @@ -616,13 +617,13 @@ public bool IsContainsOffsetOfPointLoad(double dOffset) #### Parameters -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double The d offset. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if [is contains offset of point load] [the specified d offset]; otherwise, false. @@ -636,13 +637,13 @@ public bool IsContainsOffsetOfUnbalanceMass(double dOffset) #### Parameters -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double The d offset. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if [is contains offset of unbalance mass] [the specified d offset]; otherwise, false. @@ -656,7 +657,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyHousingFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyHousingFE.md index 29e2df4a07..8e7c764716 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyHousingFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyHousingFE.md @@ -1,4 +1,5 @@ -# Class PropertyHousingFE +# Class PropertyHousingFE + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,13 +12,13 @@ public class PropertyHousingFE : PropertyHousingBase, IObservableObject, IDispos #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyHousingBase](VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md) ← [PropertyHousingFE](VM.Managed.DAFUL.GearTrain.PropertyHousingFE.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -69,12 +70,12 @@ IHasID [PropertyHousingBase.UnbalanceMasses](VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyHousingBase\_UnbalanceMasses), [PropertyHousingBase.IUnbalanceMasses](VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyHousingBase\_IUnbalanceMasses), [PropertyHousingBase.ComponentAnalysis](VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyHousingBase\_ComponentAnalysis), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -173,7 +174,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyHousingMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyHousingMeshFree.md index b5e7aad464..369a69f71d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyHousingMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyHousingMeshFree.md @@ -1,4 +1,5 @@ -# Class PropertyHousingMeshFree +# Class PropertyHousingMeshFree + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,13 +12,13 @@ public class PropertyHousingMeshFree : PropertyHousingBase, IObservableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyHousingBase](VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md) ← [PropertyHousingMeshFree](VM.Managed.DAFUL.GearTrain.PropertyHousingMeshFree.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -69,12 +70,12 @@ IHasID [PropertyHousingBase.UnbalanceMasses](VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyHousingBase\_UnbalanceMasses), [PropertyHousingBase.IUnbalanceMasses](VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyHousingBase\_IUnbalanceMasses), [PropertyHousingBase.ComponentAnalysis](VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyHousingBase\_ComponentAnalysis), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -173,7 +174,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyRVReducer.BearingInfo.EquipType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyRVReducer.BearingInfo.EquipType.md index 98bc13ad29..6fb4a73469 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyRVReducer.BearingInfo.EquipType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyRVReducer.BearingInfo.EquipType.md @@ -1,4 +1,5 @@ -# Enum PropertyRVReducer.BearingInfo.EquipType +# Enum PropertyRVReducer.BearingInfo.EquipType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyRVReducer.BearingInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyRVReducer.BearingInfo.md index abe9c08660..c44d307c6a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyRVReducer.BearingInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyRVReducer.BearingInfo.md @@ -1,4 +1,5 @@ -# Class PropertyRVReducer.BearingInfo +# Class PropertyRVReducer.BearingInfo + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class PropertyRVReducer.BearingInfo : LinkContainer, IObservableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [PropertyRVReducer.BearingInfo](VM.Managed.DAFUL.GearTrain.PropertyRVReducer.BearingInfo.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,7 +117,7 @@ public bool Direction { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### InnerEquipType @@ -152,7 +153,7 @@ public ExpressionValueVariable Offset { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### OuterEquipType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyRVReducer.CrankShaftSectionInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyRVReducer.CrankShaftSectionInfo.md index a92d10ac0a..544c6d075d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyRVReducer.CrankShaftSectionInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyRVReducer.CrankShaftSectionInfo.md @@ -1,4 +1,5 @@ -# Class PropertyRVReducer.CrankShaftSectionInfo +# Class PropertyRVReducer.CrankShaftSectionInfo + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class PropertyRVReducer.CrankShaftSectionInfo : LinkContainer, IObservabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [PropertyRVReducer.CrankShaftSectionInfo](VM.Managed.DAFUL.GearTrain.PropertyRVReducer.CrankShaftSectionInfo.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -114,15 +115,15 @@ public CrankShaftSectionInfo(string strLength, string strDiameter, string strEcc #### Parameters -`strLength` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strLength` string The length. -`strDiameter` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDiameter` string The diameter. -`strEccentricity` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strEccentricity` string The eccentricity. @@ -138,7 +139,7 @@ public ExpressionValueVariable Diameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Eccentricity @@ -150,7 +151,7 @@ public ExpressionValueVariable Eccentricity { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Length @@ -162,7 +163,7 @@ public ExpressionValueVariable Length { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyRVReducer.RacewayInfoForAssembly.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyRVReducer.RacewayInfoForAssembly.md index 547b3a4554..8bf798dc84 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyRVReducer.RacewayInfoForAssembly.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyRVReducer.RacewayInfoForAssembly.md @@ -1,4 +1,5 @@ -# Class PropertyRVReducer.RacewayInfoForAssembly +# Class PropertyRVReducer.RacewayInfoForAssembly + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class PropertyRVReducer.RacewayInfoForAssembly : LinkContainer, IObservab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [PropertyRVReducer.RacewayInfoForAssembly](VM.Managed.DAFUL.GearTrain.PropertyRVReducer.RacewayInfoForAssembly.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyRVReducer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyRVReducer.md index de84512ab9..60dc70ad02 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyRVReducer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyRVReducer.md @@ -1,4 +1,5 @@ -# Class PropertyRVReducer +# Class PropertyRVReducer + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,13 +12,13 @@ public class PropertyRVReducer : Property, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyRVReducer](VM.Managed.DAFUL.GearTrain.PropertyRVReducer.md) #### Implements @@ -31,7 +32,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -40,12 +41,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -144,7 +145,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -185,7 +186,7 @@ public SolidBody[] BearingBodies { get; set; } #### Property Value - SolidBody\[\] + [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs)\[\] ### CenterOfPinset @@ -281,7 +282,7 @@ public GeneralContact[] GeneralContacts { get; set; } #### Property Value - GeneralContact\[\] + [GeneralContact](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/GeneralContact.cs)\[\] ### NeedleRollerBearingList @@ -305,7 +306,7 @@ public int NumberOfCrankShaft { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfCycloidDisc @@ -317,7 +318,7 @@ public int NumberOfCycloidDisc { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### PlanetaryGearSet @@ -461,7 +462,7 @@ public SetFace[] SetFaces { get; set; } #### Property Value - SetFace\[\] + [SetFace](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SetFace.cs)\[\] ### ShaftSetForSun @@ -497,7 +498,7 @@ public bool SynchronizeBearing { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SynchronizeCrankShaft @@ -509,7 +510,7 @@ public bool SynchronizeCrankShaft { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TaperedRollerBearingList @@ -619,7 +620,7 @@ public void AddBearingBody(SolidBody solidBody) #### Parameters -`solidBody` SolidBody +`solidBody` [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) The solid body @@ -647,7 +648,7 @@ public void AddFaceset(SetFace setFace) #### Parameters -`setFace` SetFace +`setFace` [SetFace](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SetFace.cs) The faceset @@ -661,7 +662,7 @@ public void AddGeneralContact(GeneralContact generalContact) #### Parameters -`generalContact` GeneralContact +`generalContact` [GeneralContact](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/GeneralContact.cs) The general contact @@ -715,13 +716,13 @@ public bool ContainsBearingBody(SolidBody solidBody) #### Parameters -`solidBody` SolidBody +`solidBody` [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) The solidBody #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DefaultCrankShaftSectionInfo\(int\) @@ -733,7 +734,7 @@ public PropertyRVReducer.CrankShaftSectionInfo[] DefaultCrankShaftSectionInfo(in #### Parameters -`nSection` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nSection` int The No. section @@ -765,7 +766,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. @@ -783,7 +784,7 @@ public void RemoveAtForBearing(int nIndex) #### Parameters -`nIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIndex` int The index @@ -797,7 +798,7 @@ public void RemoveCrankShaft(int nIndex) #### Parameters -`nIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIndex` int The shaft set index diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyShaftSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyShaftSet.md index b91fd87abf..2f25315e2d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyShaftSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyShaftSet.md @@ -1,4 +1,5 @@ -# Class PropertyShaftSet +# Class PropertyShaftSet + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,13 +12,13 @@ public class PropertyShaftSet : PropertyShaftSetBase, IObservableObject, IDispos #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyHousingBase](VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md) ← [PropertyShaftSetBase](VM.Managed.DAFUL.GearTrain.PropertyShaftSetBase.md) ← [PropertyShaftSet](VM.Managed.DAFUL.GearTrain.PropertyShaftSet.md) @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -127,12 +128,12 @@ IHasID [PropertyHousingBase.UnbalanceMasses](VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyHousingBase\_UnbalanceMasses), [PropertyHousingBase.IUnbalanceMasses](VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyHousingBase\_IUnbalanceMasses), [PropertyHousingBase.ComponentAnalysis](VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyHousingBase\_ComponentAnalysis), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -231,7 +232,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyShaftSetBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyShaftSetBase.md index 4b404f6abe..8da7cbc1c7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyShaftSetBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyShaftSetBase.md @@ -1,4 +1,5 @@ -# Class PropertyShaftSetBase +# Class PropertyShaftSetBase + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,13 +12,13 @@ public abstract class PropertyShaftSetBase : PropertyHousingBase, IObservableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyHousingBase](VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md) ← [PropertyShaftSetBase](VM.Managed.DAFUL.GearTrain.PropertyShaftSetBase.md) @@ -36,7 +37,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -73,12 +74,12 @@ IHasID [PropertyHousingBase.UnbalanceMasses](VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyHousingBase\_UnbalanceMasses), [PropertyHousingBase.IUnbalanceMasses](VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyHousingBase\_IUnbalanceMasses), [PropertyHousingBase.ComponentAnalysis](VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyHousingBase\_ComponentAnalysis), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -177,7 +178,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -218,7 +219,7 @@ public static double AssemblyTolerance { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### BeamSectionRatio @@ -230,7 +231,7 @@ public ExpressionValueVariable BeamSectionRatio { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Color @@ -243,7 +244,7 @@ public string Color { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### DrawingColor @@ -255,7 +256,7 @@ public Color DrawingColor { get; } #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### EccentricDirection @@ -331,7 +332,7 @@ public SectionInfo[] SectionInfos { get; set; } #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Section Info List is null. or @@ -385,7 +386,7 @@ public double TotalSectionLength { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UseMiddleElementReferenceFrame @@ -397,7 +398,7 @@ public bool UseMiddleElementReferenceFrame { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### WidthForDurabilityAnalysis @@ -409,7 +410,7 @@ public ExpressionValueVariable WidthForDurabilityAnalysis { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -427,7 +428,7 @@ public bool AddGearInfo(GearGeometryInfo info, double dOffset, Document3D doc, I The information. -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double The d offset. @@ -445,7 +446,7 @@ The r information. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### AddGeometryInfo\(GeometryInfoBase, double, Document3D, IOpenDesignerForGearTrain\) @@ -461,7 +462,7 @@ public bool AddGeometryInfo(GeometryInfoBase info, double dOffset, Document3D do The information. -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double The d offset. @@ -475,7 +476,7 @@ The object parent. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### AddGeometryInfo\(GeometryInfoBase, double, Document3D, IOpenDesignerForGearTrain, bool\) @@ -491,7 +492,7 @@ public bool AddGeometryInfo(GeometryInfoBase info, double dOffset, Document3D do The information. -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double The d offset. @@ -503,13 +504,13 @@ The document. The object parent. -`bRack` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bRack` bool The object rack. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### AddMeasurePoint\(MeasurePoint\) @@ -571,7 +572,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -589,11 +590,11 @@ public Section FindRack(double dLength, double dOffset, Document3D doc) #### Parameters -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double Length of the d. -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double The d offset. @@ -615,11 +616,11 @@ public Section FindSection(double dLength, double dOffset, Document3D doc) #### Parameters -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double Length of the d. -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double The d offset. @@ -641,7 +642,7 @@ public SectionInfo FindSection(double dOffset) #### Parameters -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double THe offset @@ -663,7 +664,7 @@ public SectionInfo FindSectionWithGearInfo(GearGeometryInfo info, double dOffset The information. -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double The d offset. @@ -685,7 +686,7 @@ public SectionInfo FindSectionWithRacewayInfo(RacewayGeometryInfo info, double d The information. -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double The d offset. @@ -707,7 +708,7 @@ public SectionInfo FindSectionWithSlidingBearingInfo(SBGeometryInfo info, double The information. -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double The d offset. @@ -725,7 +726,7 @@ public List GetBearingStartEndPoint() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### GetGearStartEndPoint\(\) @@ -737,7 +738,7 @@ public List GetGearStartEndPoint() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### GetGlobalAxisCore\(Body\[\], ref List\) @@ -753,7 +754,7 @@ protected override void GetGlobalAxisCore(Body[] arBody, ref List The body list. -`lst` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lst` List vector list. @@ -773,7 +774,7 @@ The target segment. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double The length until target segment. @@ -787,13 +788,13 @@ public string GetNewNameFromMeasurePoint(string strPrefix) #### Parameters -`strPrefix` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefix` string The string prefix. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetNewNameFromPowerLoad\(string\) @@ -805,13 +806,13 @@ public string GetNewNameFromPowerLoad(string strPrefix) #### Parameters -`strPrefix` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefix` string The string prefix. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetNextLocationPoint\(SectionGeometryBase, Vector, VectorBase\) @@ -849,7 +850,7 @@ public List GetPowerLoadPoint() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### GetShaftStartEndPoint\(\) @@ -861,7 +862,7 @@ public List GetShaftStartEndPoint() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### Initialize\(ConvertFactor\) @@ -905,13 +906,13 @@ public bool IsContainsNameOfMeasurePoint(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsContainsNameOfPowerLoad\(string\) @@ -923,13 +924,13 @@ public bool IsContainsNameOfPowerLoad(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsContainsOffsetOfMeasurePoint\(double\) @@ -941,13 +942,13 @@ public bool IsContainsOffsetOfMeasurePoint(double dOffset) #### Parameters -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double The d offset. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsContainsOffsetOfPowerLoad\(double\) @@ -959,13 +960,13 @@ public bool IsContainsOffsetOfPowerLoad(double dOffset) #### Parameters -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double The d offset. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsLooseSameValue\(double, double\) @@ -977,17 +978,17 @@ public static bool IsLooseSameValue(double dVal1, double dVal2) #### Parameters -`dVal1` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal1` double value. -`dVal2` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal2` double The another value. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsLooseSameVector\(VectorBase, VectorBase\) @@ -1009,7 +1010,7 @@ The another value. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsSameValue\(double, double\) @@ -1021,17 +1022,17 @@ public static bool IsSameValue(double dVal1, double dVal2) #### Parameters -`dVal1` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal1` double value. -`dVal2` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal2` double The another value. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsSameVector\(VectorBase, VectorBase\) @@ -1053,7 +1054,7 @@ The another value. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LinkRequestDestroying\(object, LinkEventArgs\) @@ -1065,7 +1066,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. @@ -1083,7 +1084,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -1101,7 +1102,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -1175,7 +1176,7 @@ public void SetColor(string color) #### Parameters -`color` [string](https://learn.microsoft.com/dotnet/api/system.string) +`color` string The color. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyShaftSetFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyShaftSetFE.md index 88a3387aa1..edb56067e3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyShaftSetFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyShaftSetFE.md @@ -1,4 +1,5 @@ -# Class PropertyShaftSetFE +# Class PropertyShaftSetFE + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,13 +12,13 @@ public class PropertyShaftSetFE : PropertyShaftSetMeshBase, IObservableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyHousingBase](VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md) ← [PropertyShaftSetMeshBase](VM.Managed.DAFUL.GearTrain.PropertyShaftSetMeshBase.md) ← [PropertyShaftSetFE](VM.Managed.DAFUL.GearTrain.PropertyShaftSetFE.md) @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -78,12 +79,12 @@ IHasID [PropertyHousingBase.UnbalanceMasses](VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyHousingBase\_UnbalanceMasses), [PropertyHousingBase.IUnbalanceMasses](VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyHousingBase\_IUnbalanceMasses), [PropertyHousingBase.ComponentAnalysis](VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyHousingBase\_ComponentAnalysis), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -182,7 +183,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyShaftSetMeshBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyShaftSetMeshBase.md index 493679b086..43422379fb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyShaftSetMeshBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyShaftSetMeshBase.md @@ -1,4 +1,5 @@ -# Class PropertyShaftSetMeshBase +# Class PropertyShaftSetMeshBase + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,13 +12,13 @@ public class PropertyShaftSetMeshBase : PropertyHousingBase, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyHousingBase](VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md) ← [PropertyShaftSetMeshBase](VM.Managed.DAFUL.GearTrain.PropertyShaftSetMeshBase.md) @@ -37,7 +38,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -74,12 +75,12 @@ IHasID [PropertyHousingBase.UnbalanceMasses](VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyHousingBase\_UnbalanceMasses), [PropertyHousingBase.IUnbalanceMasses](VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyHousingBase\_IUnbalanceMasses), [PropertyHousingBase.ComponentAnalysis](VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyHousingBase\_ComponentAnalysis), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -178,7 +179,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -271,7 +272,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -291,13 +292,13 @@ public bool IsContainsNameOfPowerLoadOnRBE(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if [is contains name of power load on RBE] [the specified STR name]; otherwise, false. @@ -311,7 +312,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyShaftSetMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyShaftSetMeshFree.md index 728095128b..5fb6e60e19 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyShaftSetMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertyShaftSetMeshFree.md @@ -1,4 +1,5 @@ -# Class PropertyShaftSetMeshFree +# Class PropertyShaftSetMeshFree + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,13 +12,13 @@ public class PropertyShaftSetMeshFree : PropertyShaftSetMeshBase, IObservableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyHousingBase](VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md) ← [PropertyShaftSetMeshBase](VM.Managed.DAFUL.GearTrain.PropertyShaftSetMeshBase.md) ← [PropertyShaftSetMeshFree](VM.Managed.DAFUL.GearTrain.PropertyShaftSetMeshFree.md) @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -78,12 +79,12 @@ IHasID [PropertyHousingBase.UnbalanceMasses](VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyHousingBase\_UnbalanceMasses), [PropertyHousingBase.IUnbalanceMasses](VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyHousingBase\_IUnbalanceMasses), [PropertyHousingBase.ComponentAnalysis](VM.Managed.DAFUL.GearTrain.PropertyHousingBase.md\#VM\_Managed\_DAFUL\_GearTrain\_PropertyHousingBase\_ComponentAnalysis), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -182,7 +183,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertySlidingBearing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertySlidingBearing.md index 66f1b39d69..60ab82e1f9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertySlidingBearing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PropertySlidingBearing.md @@ -1,4 +1,5 @@ -# Class PropertySlidingBearing +# Class PropertySlidingBearing + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,13 +12,13 @@ public class PropertySlidingBearing : Property, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertySlidingBearing](VM.Managed.DAFUL.GearTrain.PropertySlidingBearing.md) #### Implements @@ -31,7 +32,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -40,12 +41,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -144,7 +145,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -186,7 +187,7 @@ public string Color { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ContactInfo @@ -223,7 +224,7 @@ public Color DrawingColor { get; } #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### GeomInfo @@ -262,7 +263,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -296,7 +297,7 @@ public void SetColor(string color) #### Parameters -`color` [string](https://learn.microsoft.com/dotnet/api/system.string) +`color` string The color. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoAssembledBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoAssembledBody.md index dae52674bf..78837723d8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoAssembledBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoAssembledBody.md @@ -1,4 +1,5 @@ -# Class PseudoAssembledBody +# Class PseudoAssembledBody + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,14 +12,14 @@ public class PseudoAssembledBody : AssembledBody, IObservableObject, IDisposable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← -InstanceContainer ← -AssembledBody ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← +[InstanceContainer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs) ← +[AssembledBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs) ← [PseudoAssembledBody](VM.Managed.DAFUL.GearTrain.PseudoAssembledBody.md) #### Implements @@ -28,7 +29,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -79,90 +80,90 @@ IHasMaterial #### Inherited Members -AssembledBody.Initialize\(Unit.ConvertFactor\), -AssembledBody.LinkRequestUpdate\(object, LinkEventArgs\), -AssembledBody.LinkRequestDestroy\(object, LinkEventArgs\), -AssembledBody.FixUp\(ObjectBase\), -AssembledBody.OnDeserialization\(object\), -AssembledBody.TransformImpl\(TMatrix\), -AssembledBody.Redraw\(\), -AssembledBody.GetUnnamedObjectName\(object\), -AssembledBody.FindLocal\(string\), -AssembledBody.GetNewEntityName\(string\), -AssembledBody.GetArgumentList\(LinkedList\), -AssembledBody.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -AssembledBody.GetGeneralMarkerInfo\(XmlDocument, XmlElement, Marker\), -AssembledBody.GetPredefinedMarkerInfo\(XmlDocument, XmlElement, ReferencePartMarker\), -AssembledBody.GetBuilder\(\), -AssembledBody.GetGeometryNavigatorInformation\(XmlDocument, XmlElement\), -AssembledBody.GetPointDirection\(ref VectorBase, ref VectorBase, IReferencable\), -AssembledBody.GetLayerImpl\(\), -AssembledBody.SetLayerImpl\(Layer\), -AssembledBody.MakeReferenceImpl\(LinkedList\), -AssembledBody.GetTargetListForUpdate\(\), -AssembledBody.GetChildListImpl\(\), -AssembledBody.PropertyOfAssembledBody, -AssembledBody.\_MovingReferenceFrame, -AssembledBody.MovingReferenceFrame, -AssembledBody.ModalReferencePosition, -AssembledBody.UseModalReferencePosition, -AssembledBody.UseAdvancedOption, -AssembledBody.UseTMovingReferenceFrame, -AssembledBody.UseRMovingReferenceFrame, -AssembledBody.TopologyEntityTypeName, -AssembledBody.ParentType, -AssembledBody.ReferenceFrameType, -AssembledBody.ConnectableName, -AssembledBody.ConnectableFullName, -AssembledBody.ConnectablePostfixName, -AssembledBody.ConnectablePosition, -AssembledBody.ConnectableBody, -AssembledBody.Body, -AssembledBody.Geometry, -AssembledBody.AnalysisType, -AssembledBody.ModeArray, -AssembledBody.DFMFPath, -AssembledBody.LastModifiedTimeToDFMFFile, -InstanceContainer.InitInterfaceTable\(\), -InstanceContainer.LinkRequestUpdate\(object, LinkEventArgs\), -InstanceContainer.BindInterface\(\), -InstanceContainer.BindInterface\(ObjectBase, ObjectBase\), -InstanceContainer.BindInterface\(InstanceContainer.InterfaceTable\), -InstanceContainer.Find\(string\), -InstanceContainer.FindLocal\(string\), -InstanceContainer.GetNewEntityName\(string\), -InstanceContainer.GetNewEntityName\(string, bool, int\), -InstanceContainer.GetNewEntityName\(string, bool, int, int\), -InstanceContainer.GetUnnamedObjectName\(object\), -InstanceContainer.MakeReferenceImpl\(LinkedList\), -InstanceContainer.PostOpenDocumentAfterHookEvent\(\), -InstanceContainer.TransformImpl\(TMatrix\), -InstanceContainer.Redraw\(\), -InstanceContainer.GetLayerImpl\(\), -InstanceContainer.SetLayerImpl\(Layer\), -InstanceContainer.IsDestroyContainer\(\), -InstanceContainer.GetTargetListForUpdate\(\), -InstanceContainer.ProcessDuplicateReferenceImpl\(Reference\), -InstanceContainer.PostAddToDocument\(\), -InstanceContainer.LinkRequestDestroy\(object, LinkEventArgs\), -InstanceContainer.GetChildListImpl\(\), -InstanceContainer.OnDeserialization\(object\), -InstanceContainer.Instance, -InstanceContainer.InterfaceTableList, -InstanceContainer.InterfaceTables, -InstanceContainer.Layer, -InstanceContainer.IsVisible, -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[AssembledBody.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.TransformImpl\(TMatrix\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.Redraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.GetNewEntityName\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.GetArgumentList\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.GetGeneralMarkerInfo\(XmlDocument, XmlElement, Marker\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.GetPredefinedMarkerInfo\(XmlDocument, XmlElement, ReferencePartMarker\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.GetBuilder\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.GetGeometryNavigatorInformation\(XmlDocument, XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.GetPointDirection\(ref VectorBase, ref VectorBase, IReferencable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.GetChildListImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.PropertyOfAssembledBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.\_MovingReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.MovingReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.ModalReferencePosition](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.UseModalReferencePosition](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.UseAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.UseTMovingReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.UseRMovingReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.TopologyEntityTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.ParentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.ReferenceFrameType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.ConnectableName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.ConnectableFullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.ConnectablePostfixName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.ConnectablePosition](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.ConnectableBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.Body](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.Geometry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.AnalysisType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.ModeArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.DFMFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[AssembledBody.LastModifiedTimeToDFMFFile](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs), +[InstanceContainer.InitInterfaceTable\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.BindInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.BindInterface\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.BindInterface\(InstanceContainer.InterfaceTable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.Find\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetNewEntityName\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetNewEntityName\(string, bool, int\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetNewEntityName\(string, bool, int, int\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.TransformImpl\(TMatrix\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.Redraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.IsDestroyContainer\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.ProcessDuplicateReferenceImpl\(Reference\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetChildListImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.Instance](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.InterfaceTableList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.InterfaceTables](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -255,7 +256,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -294,7 +295,7 @@ public PseudoAssembledBody(string strName, Instance instanceNodalBody) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -314,7 +315,7 @@ public InstanceContainer InstanceContainer { get; set; } #### Property Value - InstanceContainer + [InstanceContainer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs) ## Methods @@ -328,7 +329,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -350,7 +351,7 @@ public static PseudoAssembledBody TemperaryAssembledBodyGeometry(Document meshDo The mesh document. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoEntity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoEntity.md index ec0d36b146..f5c818d619 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoEntity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoEntity.md @@ -1,4 +1,5 @@ -# Class PseudoEntity +# Class PseudoEntity + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public abstract class PseudoEntity : Object, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [PseudoEntity](VM.Managed.DAFUL.GearTrain.PseudoEntity.md) @@ -42,7 +43,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IDraw, IDrawIcon, @@ -143,7 +144,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -184,7 +185,7 @@ public string FullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Hide @@ -196,7 +197,7 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -208,7 +209,7 @@ public abstract string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NonSymmetricName @@ -220,7 +221,7 @@ public string NonSymmetricName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -234,7 +235,7 @@ public virtual void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. @@ -248,21 +249,21 @@ protected virtual bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, XmlE #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XML DOM. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XML ele. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [b has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReDraw\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoGearPair.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoGearPair.md index c36ee6fcde..77114374b9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoGearPair.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoGearPair.md @@ -1,4 +1,5 @@ -# Class PseudoGearPair +# Class PseudoGearPair + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,12 +12,12 @@ public class PseudoGearPair : SubEntity, IObservableObject, IDisposableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [PseudoGearPair](VM.Managed.DAFUL.GearTrain.PseudoGearPair.md) #### Implements @@ -26,7 +27,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -45,17 +46,17 @@ INavigatorItem #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -187,7 +188,7 @@ public PseudoGearPair(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the sub entity. @@ -203,7 +204,7 @@ public override string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### PairedGear diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoMeasurePoint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoMeasurePoint.md index a4b918828c..be8bd975c0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoMeasurePoint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoMeasurePoint.md @@ -1,4 +1,5 @@ -# Class PseudoMeasurePoint +# Class PseudoMeasurePoint + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class PseudoMeasurePoint : PseudoEntity, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [PseudoEntity](VM.Managed.DAFUL.GearTrain.PseudoEntity.md) ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IDraw, IDrawIcon, @@ -142,7 +143,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -195,7 +196,7 @@ public override string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -209,13 +210,13 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ### LinkRequestDestroy\(object, LinkEventArgs\) @@ -227,7 +228,7 @@ protected override void LinkRequestDestroy(object objNotifier, LinkEventArgs arg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoNodalBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoNodalBody.md index 54b374ebbf..43460ff97d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoNodalBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoNodalBody.md @@ -1,4 +1,5 @@ -# Class PseudoNodalBody +# Class PseudoNodalBody + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,13 +12,13 @@ public class PseudoNodalBody : NodalBody, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← -InstanceContainer ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← +[InstanceContainer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs) ← NodalBody ← [PseudoNodalBody](VM.Managed.DAFUL.GearTrain.PseudoNodalBody.md) @@ -28,7 +29,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -146,46 +147,47 @@ NodalBody.ChangedDocument, NodalBody.FilePath, NodalBody.ReferenceFrameType, NodalBody.ParentType, -InstanceContainer.InitInterfaceTable\(\), -InstanceContainer.LinkRequestUpdate\(object, LinkEventArgs\), -InstanceContainer.BindInterface\(\), -InstanceContainer.BindInterface\(ObjectBase, ObjectBase\), -InstanceContainer.BindInterface\(InstanceContainer.InterfaceTable\), -InstanceContainer.Find\(string\), -InstanceContainer.FindLocal\(string\), -InstanceContainer.GetNewEntityName\(string\), -InstanceContainer.GetNewEntityName\(string, bool, int\), -InstanceContainer.GetNewEntityName\(string, bool, int, int\), -InstanceContainer.GetUnnamedObjectName\(object\), -InstanceContainer.MakeReferenceImpl\(LinkedList\), -InstanceContainer.PostOpenDocumentAfterHookEvent\(\), -InstanceContainer.TransformImpl\(TMatrix\), -InstanceContainer.Redraw\(\), -InstanceContainer.GetLayerImpl\(\), -InstanceContainer.SetLayerImpl\(Layer\), -InstanceContainer.IsDestroyContainer\(\), -InstanceContainer.GetTargetListForUpdate\(\), -InstanceContainer.ProcessDuplicateReferenceImpl\(Reference\), -InstanceContainer.PostAddToDocument\(\), -InstanceContainer.LinkRequestDestroy\(object, LinkEventArgs\), -InstanceContainer.GetChildListImpl\(\), -InstanceContainer.OnDeserialization\(object\), -InstanceContainer.Instance, -InstanceContainer.InterfaceTableList, -InstanceContainer.InterfaceTables, -InstanceContainer.Layer, -InstanceContainer.IsVisible, -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +NodalBody.SupportSetMassImpl, +[InstanceContainer.InitInterfaceTable\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.BindInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.BindInterface\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.BindInterface\(InstanceContainer.InterfaceTable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.Find\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetNewEntityName\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetNewEntityName\(string, bool, int\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetNewEntityName\(string, bool, int, int\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.TransformImpl\(TMatrix\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.Redraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.IsDestroyContainer\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.ProcessDuplicateReferenceImpl\(Reference\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetChildListImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.Instance](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.InterfaceTableList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.InterfaceTables](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -278,7 +280,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -317,7 +319,7 @@ public PseudoNodalBody(string strName, Instance instanceNodalBody) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -335,11 +337,11 @@ public PseudoNodalBody(string strName, string strMeshFilePath, TransformBase tra #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. -`strMeshFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMeshFilePath` string The string mesh file path. @@ -359,7 +361,7 @@ public InstanceContainer InstanceContainer { get; set; } #### Property Value - InstanceContainer + [InstanceContainer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs) ## Methods @@ -373,7 +375,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. @@ -403,7 +405,7 @@ public static PseudoNodalBody TemperaryNodalBodyGeometry(Document meshDoc, strin The mesh document. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoPointLoad.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoPointLoad.md index 4eafadeeab..d5b0768ea9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoPointLoad.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoPointLoad.md @@ -1,4 +1,5 @@ -# Class PseudoPointLoad +# Class PseudoPointLoad + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class PseudoPointLoad : PseudoEntity, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [PseudoEntity](VM.Managed.DAFUL.GearTrain.PseudoEntity.md) ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IDraw, IDrawIcon, @@ -142,7 +143,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -183,7 +184,7 @@ public override string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### PointLoadInformation @@ -209,13 +210,13 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ### LinkRequestDestroy\(object, LinkEventArgs\) @@ -227,7 +228,7 @@ protected override void LinkRequestDestroy(object objNotifier, LinkEventArgs arg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoPointLoadOnRBE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoPointLoadOnRBE.md index 7efbf70787..15980dfc6b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoPointLoadOnRBE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoPointLoadOnRBE.md @@ -1,4 +1,5 @@ -# Class PseudoPointLoadOnRBE +# Class PseudoPointLoadOnRBE + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class PseudoPointLoadOnRBE : PseudoEntity, IObservableObject, IDisposable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [PseudoEntity](VM.Managed.DAFUL.GearTrain.PseudoEntity.md) ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IDraw, IDrawIcon, @@ -142,7 +143,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -183,7 +184,7 @@ public override string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### PointLoadOnRBEInformation @@ -209,13 +210,13 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ### LinkRequestDestroy\(object, LinkEventArgs\) @@ -227,7 +228,7 @@ protected override void LinkRequestDestroy(object objNotifier, LinkEventArgs arg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoPowerLoad.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoPowerLoad.md index 73a0243f66..6d63193a03 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoPowerLoad.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoPowerLoad.md @@ -1,4 +1,5 @@ -# Class PseudoPowerLoad +# Class PseudoPowerLoad + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class PseudoPowerLoad : PseudoEntity, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [PseudoEntity](VM.Managed.DAFUL.GearTrain.PseudoEntity.md) ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IDraw, IDrawIcon, @@ -142,7 +143,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -183,7 +184,7 @@ public override string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### PowerLoadInformation @@ -209,13 +210,13 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ### LinkRequestDestroying\(object, LinkEventArgs\) @@ -227,7 +228,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoPowerLoadOnRBE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoPowerLoadOnRBE.md index fbe947e5df..8c71eda4ad 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoPowerLoadOnRBE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoPowerLoadOnRBE.md @@ -1,4 +1,5 @@ -# Class PseudoPowerLoadOnRBE +# Class PseudoPowerLoadOnRBE + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class PseudoPowerLoadOnRBE : PseudoEntity, IObservableObject, IDisposable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [PseudoEntity](VM.Managed.DAFUL.GearTrain.PseudoEntity.md) ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IDraw, IDrawIcon, @@ -142,7 +143,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -183,7 +184,7 @@ public override string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### PowerLoadOnRBEInformation @@ -209,13 +210,13 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ### LinkRequestDestroying\(object, LinkEventArgs\) @@ -227,7 +228,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoUnbalanceMass.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoUnbalanceMass.md index 37a9ac9d09..403f2fe219 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoUnbalanceMass.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoUnbalanceMass.md @@ -1,4 +1,5 @@ -# Class PseudoUnbalanceMass +# Class PseudoUnbalanceMass + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class PseudoUnbalanceMass : PseudoEntity, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [PseudoEntity](VM.Managed.DAFUL.GearTrain.PseudoEntity.md) ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IDraw, IDrawIcon, @@ -142,7 +143,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -183,7 +184,7 @@ public override string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UnbalanceMassInformation @@ -209,13 +210,13 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ### LinkRequestDestroy\(object, LinkEventArgs\) @@ -227,7 +228,7 @@ protected override void LinkRequestDestroy(object objNotifier, LinkEventArgs arg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoUnbalanceMassOnRBE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoUnbalanceMassOnRBE.md index b541fc9a40..49880c91e6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoUnbalanceMassOnRBE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.PseudoUnbalanceMassOnRBE.md @@ -1,4 +1,5 @@ -# Class PseudoUnbalanceMassOnRBE +# Class PseudoUnbalanceMassOnRBE + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class PseudoUnbalanceMassOnRBE : PseudoEntity, IObservableObject, IDispos #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [PseudoEntity](VM.Managed.DAFUL.GearTrain.PseudoEntity.md) ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IDraw, IDrawIcon, @@ -142,7 +143,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -183,7 +184,7 @@ public override string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UnbalanceMassOnRBEInformation @@ -209,13 +210,13 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ### LinkRequestDestroy\(object, LinkEventArgs\) @@ -227,7 +228,7 @@ protected override void LinkRequestDestroy(object objNotifier, LinkEventArgs arg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.RVReducer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.RVReducer.md index 519def142f..1d92cb2210 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.RVReducer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.RVReducer.md @@ -1,4 +1,5 @@ -# Class RVReducer +# Class RVReducer + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,14 +12,14 @@ public class RVReducer : Entity, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [RVReducer](VM.Managed.DAFUL.GearTrain.RVReducer.md) #### Implements @@ -28,7 +29,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -54,34 +55,34 @@ IGroup #### Inherited Members -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -180,7 +181,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -221,7 +222,7 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Housing @@ -283,21 +284,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.RacewayGeometryInfo.RacewayType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.RacewayGeometryInfo.RacewayType.md index 0072cf1f0f..ac259c764e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.RacewayGeometryInfo.RacewayType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.RacewayGeometryInfo.RacewayType.md @@ -1,4 +1,5 @@ -# Enum RacewayGeometryInfo.RacewayType +# Enum RacewayGeometryInfo.RacewayType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.RacewayGeometryInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.RacewayGeometryInfo.md index 010861a1a5..6005a8b976 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.RacewayGeometryInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.RacewayGeometryInfo.md @@ -1,4 +1,5 @@ -# Class RacewayGeometryInfo +# Class RacewayGeometryInfo + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,12 +12,12 @@ public class RacewayGeometryInfo : GeometryInfoBase, IObservableObject, IDisposa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [GeometryInfoBase](VM.Managed.DAFUL.GearTrain.GeometryInfoBase.md) ← [RacewayGeometryInfo](VM.Managed.DAFUL.GearTrain.RacewayGeometryInfo.md) @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -50,17 +51,17 @@ INavigatorItem [GeometryInfoBase.GeometryDepth](VM.Managed.DAFUL.GearTrain.GeometryInfoBase.md\#VM\_Managed\_DAFUL\_GearTrain\_GeometryInfoBase\_GeometryDepth), [GeometryInfoBase.ClearanceInformation](VM.Managed.DAFUL.GearTrain.GeometryInfoBase.md\#VM\_Managed\_DAFUL\_GearTrain\_GeometryInfoBase\_ClearanceInformation), [GeometryInfoBase.TypeOfGeometry](VM.Managed.DAFUL.GearTrain.GeometryInfoBase.md\#VM\_Managed\_DAFUL\_GearTrain\_GeometryInfoBase\_TypeOfGeometry), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -153,7 +154,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -192,7 +193,7 @@ public RacewayGeometryInfo(string strName, RacewayGeometryInfo.RacewayType type) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the sub entity. @@ -212,7 +213,7 @@ public override double GeometryDepth { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### InnerRadius @@ -225,7 +226,7 @@ public double InnerRadius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### OuterRadius @@ -238,7 +239,7 @@ public double OuterRadius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Type @@ -276,7 +277,7 @@ public double Width { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -312,7 +313,7 @@ public static void CreateRacewayInStiffnessDocument(SubSystemDocument doc, Racew #### Parameters -`doc` SubSystemDocument +`doc` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document. @@ -372,7 +373,7 @@ The owner bearing. The transformation. -`IsReverse` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`IsReverse` bool The flag of reverse direction. @@ -416,7 +417,7 @@ public void SetInnerRadius(double dRadius) #### Parameters -`dRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadius` double The inner radius. @@ -430,7 +431,7 @@ public void SetOuterRadius(double dRadius) #### Parameters -`dRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadius` double The outer radius. @@ -458,7 +459,7 @@ public void SetWidth(double dWidth) #### Parameters -`dWidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dWidth` double The width. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Rack.BarType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Rack.BarType.md index a5d4332cdd..5164ac7f1a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Rack.BarType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Rack.BarType.md @@ -1,4 +1,5 @@ -# Enum Rack.BarType +# Enum Rack.BarType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Rack.SimulationType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Rack.SimulationType.md index bd71661c2a..87f8a1e80b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Rack.SimulationType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Rack.SimulationType.md @@ -1,4 +1,5 @@ -# Enum Rack.SimulationType +# Enum Rack.SimulationType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Rack.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Rack.md index 103347ba37..1a2168e385 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Rack.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Rack.md @@ -1,4 +1,5 @@ -# Class Rack +# Class Rack + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class Rack : GearPropertyBase, IObservableObject, IDisposableObject, ILin #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [GearPropertyBase](VM.Managed.DAFUL.GearTrain.GearPropertyBase.md) ← [Rack](VM.Managed.DAFUL.GearTrain.Rack.md) @@ -77,7 +78,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -118,7 +119,7 @@ public PropertyContact3D ContactProperty { get; set; } #### Property Value - PropertyContact3D + [PropertyContact3D](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/Contact3D.cs) ### Diameter @@ -130,7 +131,7 @@ public ExpressionValueVariable Diameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Height @@ -142,7 +143,7 @@ public ExpressionValueVariable Height { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### HelixAngle @@ -154,7 +155,7 @@ public ExpressionValueVariable HelixAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### InputTypeOfBar @@ -190,7 +191,7 @@ public bool IsUseDifferentHelixAngle { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SideLength @@ -202,7 +203,7 @@ public ExpressionValueVariable SideLength { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ToothThickness @@ -214,7 +215,7 @@ public ExpressionValueVariable ToothThickness { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -228,7 +229,7 @@ public void InitChild(int nNum, Unit.ConvertFactor factor) #### Parameters -`nNum` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNum` int The n number. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.RadialInternalClearance.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.RadialInternalClearance.md index 789240d4fd..05a79866f9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.RadialInternalClearance.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.RadialInternalClearance.md @@ -1,4 +1,5 @@ -# Class RadialInternalClearance +# Class RadialInternalClearance + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,7 +12,7 @@ public class RadialInternalClearance #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [RadialInternalClearance](VM.Managed.DAFUL.GearTrain.RadialInternalClearance.md) #### Extension Methods @@ -32,13 +33,13 @@ public static double GetC2(double dBore) #### Parameters -`dBore` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBore` double The bore value. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetC3\(double\) @@ -50,13 +51,13 @@ public static double GetC3(double dBore) #### Parameters -`dBore` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBore` double The bore value. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetC4\(double\) @@ -68,13 +69,13 @@ public static double GetC4(double dBore) #### Parameters -`dBore` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBore` double The bore value. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetC5\(double\) @@ -86,13 +87,13 @@ public static double GetC5(double dBore) #### Parameters -`dBore` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBore` double The bore value. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetCN\(double\) @@ -104,11 +105,11 @@ public static double GetCN(double dBore) #### Parameters -`dBore` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBore` double The bore value. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Rating.CalculateType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Rating.CalculateType.md index 6ccb993549..bd573dcb37 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Rating.CalculateType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Rating.CalculateType.md @@ -1,4 +1,5 @@ -# Enum Rating.CalculateType +# Enum Rating.CalculateType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Rating.GearRatingMethodType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Rating.GearRatingMethodType.md index 194ee7f1ee..6312ea3159 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Rating.GearRatingMethodType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Rating.GearRatingMethodType.md @@ -1,4 +1,5 @@ -# Enum Rating.GearRatingMethodType +# Enum Rating.GearRatingMethodType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Rating.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Rating.md index 7b473a1b98..2e2bb69b86 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Rating.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Rating.md @@ -1,4 +1,5 @@ -# Class Rating +# Class Rating + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class Rating : LinkContainer, IObservableObject, IDisposableObject, ILink #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Rating](VM.Managed.DAFUL.GearTrain.Rating.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,7 +117,7 @@ public ExpressionValueVariable ApplicationFactor { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DynamicFactorCalculateType @@ -188,7 +189,7 @@ public ExpressionValueVariable RequiredServiceLife { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -202,7 +203,7 @@ public void InitChild(int nNum) #### Parameters -`nNum` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNum` int The n number. @@ -216,7 +217,7 @@ public void InitChildForPair(int nNum) #### Parameters -`nNum` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNum` int The n number. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.RatingOutput.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.RatingOutput.md index 1fea1e13f6..cc28ff0034 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.RatingOutput.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.RatingOutput.md @@ -1,4 +1,5 @@ -# Struct RatingOutput +# Struct RatingOutput + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -21,7 +22,7 @@ public double ContactStress #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### FlankSafety @@ -33,7 +34,7 @@ public double FlankSafety #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RootSafety @@ -45,7 +46,7 @@ public double RootSafety #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RootStress @@ -57,7 +58,7 @@ public double RootStress #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ReferenceGearSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ReferenceGearSet.md new file mode 100644 index 0000000000..6851c2b032 --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ReferenceGearSet.md @@ -0,0 +1,220 @@ +# Class ReferenceGearSet + + +Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) +Assembly: VMDGearTrain.dll + +This class is to represent the reference for motor em force. + +```csharp +public class ReferenceGearSet : ReferenceHasMultiBuilder, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IReferencable, INamed, INavigatorItem, IVisible, IReferenceAutoContactable, IAutoContactable, IBody, IMassProp +``` + +#### Inheritance + +object ← +ObservableObject ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← +ObjectBase ← +Object ← +Reference ← +[ReferenceHasMultiBuilder](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ReferenceHasMultiBuilder.cs) ← +[ReferenceGearSet](VM.Managed.DAFUL.GearTrain.ReferenceGearSet.md) + +#### Implements + +IObservableObject, +IDisposableObject, +ILinkable, +IObjectBase, +IObject, +ILinkContainer, +IOwned, +IHasID, +IEventProvider, +IHasKeyObject, +ILinkContainerEvent, +IVerifiable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +IAttributeContainer, +IReferencable, +INamed, +INavigatorItem, +IVisible, +IReferenceAutoContactable, +IAutoContactable, +IBody, +IMassProp + +#### Inherited Members + +Reference.LinkAddedToDocument\(object, AddToDocEventArgs\), +Reference.SetModified\(ModifiedResult.ModifiedType\), +Reference.SetModified\(\), +Reference.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), +Reference.GetContactables\(\), +Reference.IsAutoContactable\(\), +Reference.IsOwner\(Reference\), +Reference.LinkRequestUpdate\(object, LinkEventArgs\), +Reference.LinkRequestDestroy\(object, LinkEventArgs\), +Reference.GetTransform\(Unit\), +Reference.GetFullTransform\(Unit\), +Reference.GetTotalSubSystemName\(Document3D, ObjectBase\), +Reference.GetTotalSubSystemNameCore\(Document3D, Document3D, ref Stack, ref ValueType\), +Reference.IsVisible, +Reference.Layer, +Reference.FullTransformationInKernel, +Reference.FullTransformation, +Reference.Transformation, +Reference.Prototype, +Reference.Object, +Reference.OwnerInstance, +Reference.ClearChildInfoBeforeDeserialize, +Reference.NonSymmetricName, +Reference.FullName, +Reference.Name, +Object.GetKey\(\), +Object.Initialize\(Unit.ConvertFactor\), +Object.SetIconColor\(Canvas\), +Object.OnDeserialization\(object\), +Object.CustomGetObjectData\(SerializationInfo, StreamingContext\), +Object.RollbackEvent\(\), +Object.OnDeserializedCore\(object\), +Object.Key, +Object.UntypedEventCore, +Object.EventCore, +Object.Attributes, +ObjectBase.ReplaceEventCore\(ObjectEventCore\), +ObjectBase.SetModifiedCore\(ModifiedResult.ModifiedType\), +ObjectBase.AddPostDeserialize\(StreamingContext\), +ObjectBase.LinkAddedToDocumentCore\(IOwned, bool\), +ObjectBase.SetModified\(ModifiedResult.ModifiedType\), +ObjectBase.SetModified\(\), +ObjectBase.SetModified\(ModifiedResult.ModifiedType, IDocument\), +ObjectBase.DestroyObject\(object, LinkEventArgs\), +ObjectBase.DestroyObject\(DestroyEventArgs\), +ObjectBase.DestroyObject\(\), +ObjectBase.Initialize\(Unit.ConvertFactor\), +ObjectBase.FixUp\(ObjectBase\), +ObjectBase.DoWorkAfterUpdateContents\(\), +ObjectBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), +ObjectBase.SetIconColor\(Canvas\), +ObjectBase.RemoveFromCreatedList\(\), +ObjectBase.PostAddToDocument\(\), +ObjectBase.PostRemoveFromDocument\(Document\), +ObjectBase.GetArgumentList\(LinkedList\), +ObjectBase.ResetInvalidEntity\(\), +ObjectBase.OnDeserialization\(object\), +ObjectBase.IsSerializableEvent\(Delegate\), +ObjectBase.CustomGetObjectData\(SerializationInfo, StreamingContext\), +ObjectBase.CheckAndUpdateLink\(HashSet\), +ObjectBase.Verify\(VerifiedResult\), +ObjectBase.ConnectProxy\(\), +ObjectBase.RollbackEvent\(\), +ObjectBase.LinkRequestUpdating\(object, LinkEventArgs\), +ObjectBase.LinkRequestUpdate\(object, LinkEventArgs\), +ObjectBase.LinkRequestDestroying\(object, LinkEventArgs\), +ObjectBase.LinkRequestDestroy\(object, LinkEventArgs\), +ObjectBase.LinkAddedToDocument\(object, AddToDocEventArgs\), +ObjectBase.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), +ObjectBase.DisposeManagedResources\(\), +ObjectBase.GetDestroyEventExtraData\(\), +ObjectBase.OnLinkReserved\(ILink, object, EventArgs\), +ObjectBase.CreateEntityWhenUpdateContents\(Action\), +ObjectBase.GetObjectByKey\(UIntPtr\), +ObjectBase.FindObjectOnXmlDeserialize\(string\), +ObjectBase.UpdateContents\(XmlReader, ObjectBase, string\), +ObjectBase.UpdateContents\(XmlReader, ObjectBase\), +ObjectBase.UpdateContents\(string, string\), +ObjectBase.UpdateContents\(string\), +ObjectBase.SetFlagWhenXMLFile\(string, bool\), +ObjectBase.IsEqualArray\(T\[\], T\[\]\), +ObjectBase.IsEqualList\(List, List\), +ObjectBase.SetContainer\(IOwned, bool\), +ObjectBase.GetTargetListForUpdate\(\), +ObjectBase.SkipUpdateObjectImpl\(\), +ObjectBase.raise\_OnUpdating\(object, LinkEventArgs\), +ObjectBase.raise\_OnUpdate\(object, LinkEventArgs\), +ObjectBase.raise\_OnDestroying\(object, LinkEventArgs\), +ObjectBase.raise\_OnDestroy\(object, LinkEventArgs\), +ObjectBase.raise\_Destroying\(object, Identifier\), +ObjectBase.raise\_OnAdded\(object, AddToDocEventArgs\), +ObjectBase.raise\_OnRemoved\(object, RemoveFromDocEventArgs\), +ObjectBase.raise\_OnContentsUpdated\(object, EventArgs\), +ObjectBase.Dispose\(bool\), +ObjectBase.SkipModified, +ObjectBase.ClearChildInfoBeforeDeserialize, +ObjectBase.KeyImpl, +ObjectBase.ID, +ObjectBase.TopologyEntityTypeName, +ObjectBase.ObjectStateForCircularError, +ObjectBase.ObjectState, +ObjectBase.IsChildExternable, +ObjectBase.IsExternable, +ObjectBase.Container, +ObjectBase.Owner, +ObjectBase.Document, +ObjectBase.UntypedEventCore, +ObjectBase.KernelKey, +ObjectBase.Key, +ObjectBase.OnContentsUpdated, +ObjectBase.OnRemoved, +ObjectBase.OnAdded, +ObjectBase.Destroying, +ObjectBase.OnDestroy, +ObjectBase.OnDestroying, +ObjectBase.OnUpdate, +ObjectBase.OnUpdating, +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), +ObservableObject.Dispose\(\), +ObservableObject.RaisePropertyChanged\(string\), +ObservableObject.RaisePropertyChanged\(string, object, object\), +ObservableObject.Dispose\(bool\), +ObservableObject.DisposeManagedResources\(\), +ObservableObject.DisposeUnmanagedResources\(\), +ObservableObject.IsDisposed, +ObservableObject.TryDisposing, +ObservableObject.Disposed, +ObservableObject.Disposing, +ObservableObject.PropertyChanged + +#### Extension Methods + +[LinkPropertyItemCache.GetLinkProperties\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkProperties\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkPropertiesAndValues\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkPropertiesAndValues\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkedObjects\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkedObjects\_\_1\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_) + +## Constructors + +### ReferenceGearSet\(SerializationInfo, StreamingContext\) + +Initializes a new instance of the class. + +```csharp +protected ReferenceGearSet(SerializationInfo info, StreamingContext context) +``` + +#### Parameters + +`info` SerializationInfo + +The info. + +`context` StreamingContext + +The context. + +### ReferenceGearSet\(ObjectBase\) + +Initializes a new instance of the class. + +```csharp +public ReferenceGearSet(ObjectBase obj) +``` + +#### Parameters + +`obj` ObjectBase + +The reference's object. + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Request.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Request.md index 1bfd33cb06..f49ed4d642 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Request.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Request.md @@ -1,4 +1,5 @@ -# Class Request +# Class Request + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class Request : LinkContainer, IObservableObject, IDisposableObject, ILin #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Request](VM.Managed.DAFUL.GearTrain.Request.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -146,7 +147,7 @@ public IConnector[] ForceActionEntitis { get; set; } #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception IMarker list is null. or @@ -164,7 +165,7 @@ public string[] ForceActionEntityNames { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### ForceDisplayEndTime @@ -176,7 +177,7 @@ public ExpressionValueVariable ForceDisplayEndTime { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ForceDisplayStartTime @@ -188,7 +189,7 @@ public ExpressionValueVariable ForceDisplayStartTime { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### KinematicActionEntitis @@ -204,7 +205,7 @@ public ObjectBase[] KinematicActionEntitis { get; set; } #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception ObjectBase list is null. or @@ -247,7 +248,7 @@ public bool SynchronizeSimulationTime { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### \_BaseMarker @@ -275,7 +276,7 @@ public Linker[] _ForceActionEntitis { get; set; } #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception IMarker list is null. or @@ -345,7 +346,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SBContact.InputType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SBContact.InputType.md index b8bf79cb10..e1a63d3be8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SBContact.InputType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SBContact.InputType.md @@ -1,4 +1,5 @@ -# Enum SBContact.InputType +# Enum SBContact.InputType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SBContact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SBContact.md index 58e7535ff5..0bb8a5d64d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SBContact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SBContact.md @@ -1,4 +1,5 @@ -# Class SBContact +# Class SBContact + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,12 +12,12 @@ public class SBContact : SubEntity, IObservableObject, IDisposableObject, ILinka #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [SBContact](VM.Managed.DAFUL.GearTrain.SBContact.md) #### Implements @@ -26,7 +27,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -45,17 +46,17 @@ INavigatorItem #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -190,7 +191,7 @@ public double BoundaryPenetration { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DampCoef @@ -203,7 +204,7 @@ public double DampCoef { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DampingSpline @@ -216,7 +217,7 @@ public string DampingSpline { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### DampingType @@ -242,7 +243,7 @@ public double DynFriCoef { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DynThreshold @@ -255,7 +256,7 @@ public double DynThreshold { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### FrictionSpline @@ -268,7 +269,7 @@ public string FrictionSpline { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### FrictionType @@ -294,7 +295,7 @@ public double NumOfAxial { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NumOfCircular @@ -307,7 +308,7 @@ public double NumOfCircular { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StaFriCoef @@ -320,7 +321,7 @@ public double StaFriCoef { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SticVel @@ -333,7 +334,7 @@ public double SticVel { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StiffCoef @@ -346,7 +347,7 @@ public double StiffCoef { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StiffOrder @@ -359,7 +360,7 @@ public double StiffOrder { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StiffnessSpline @@ -372,7 +373,7 @@ public string StiffnessSpline { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### StiffnessType @@ -399,7 +400,7 @@ public void SetBoundaryPenetration(double dVal) #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The boundary penetration. @@ -413,7 +414,7 @@ public void SetDampCoef(double dVal) #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The damping coefficient. @@ -427,7 +428,7 @@ public void SetDampingSpline(string strPath) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The damping spline path. @@ -455,7 +456,7 @@ public void SetDynFriCoef(double dVal) #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The dynamic friction coefficient. @@ -469,7 +470,7 @@ public void SetDynThreshold(double dVal) #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The dynamic threshold. @@ -483,7 +484,7 @@ public void SetFrictionSpline(string strPath) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The friction spline path. @@ -511,7 +512,7 @@ public void SetNumOfAxial(double dVal) #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The number of axial. @@ -525,7 +526,7 @@ public void SetNumOfCircular(double dVal) #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The number of circular. @@ -539,7 +540,7 @@ public void SetStaFriCoef(double dVal) #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The static friction coefficient. @@ -553,7 +554,7 @@ public void SetSticVel(double dVal) #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The stiction velocity. @@ -567,7 +568,7 @@ public void SetStiffCoef(double dVal) #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The stiffness coefficient. @@ -581,7 +582,7 @@ public void SetStiffOrder(double dVal) #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The stiffness order. @@ -595,7 +596,7 @@ public void SetStiffnessSpline(string strPath) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The stiffness spline path. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SBGeometryInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SBGeometryInfo.md index 91bd52f93e..4f2360bb16 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SBGeometryInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SBGeometryInfo.md @@ -1,4 +1,5 @@ -# Class SBGeometryInfo +# Class SBGeometryInfo + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,12 +12,12 @@ public class SBGeometryInfo : GeometryInfoBase, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [GeometryInfoBase](VM.Managed.DAFUL.GearTrain.GeometryInfoBase.md) ← [SBGeometryInfo](VM.Managed.DAFUL.GearTrain.SBGeometryInfo.md) @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -50,17 +51,17 @@ INavigatorItem [GeometryInfoBase.GeometryDepth](VM.Managed.DAFUL.GearTrain.GeometryInfoBase.md\#VM\_Managed\_DAFUL\_GearTrain\_GeometryInfoBase\_GeometryDepth), [GeometryInfoBase.ClearanceInformation](VM.Managed.DAFUL.GearTrain.GeometryInfoBase.md\#VM\_Managed\_DAFUL\_GearTrain\_GeometryInfoBase\_ClearanceInformation), [GeometryInfoBase.TypeOfGeometry](VM.Managed.DAFUL.GearTrain.GeometryInfoBase.md\#VM\_Managed\_DAFUL\_GearTrain\_GeometryInfoBase\_TypeOfGeometry), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -153,7 +154,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -192,7 +193,7 @@ public SBGeometryInfo(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the sub entity. @@ -209,7 +210,7 @@ public double ArcAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GeometryDepth @@ -221,7 +222,7 @@ public override double GeometryDepth { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### InnerRadius @@ -234,7 +235,7 @@ public double InnerRadius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Length @@ -247,7 +248,7 @@ public double Length { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Thickness @@ -260,7 +261,7 @@ public double Thickness { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TypeOfGeometry @@ -286,7 +287,7 @@ public void SetArcAngle(double dVal) #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The arc angle. @@ -300,7 +301,7 @@ public void SetInnerRadius(double dVal) #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The inner radius. @@ -314,7 +315,7 @@ public void SetLength(double dVal) #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The length. @@ -328,7 +329,7 @@ public void SetThickness(double dVal) #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The thickness. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SectionGeometryBase.GeometryType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SectionGeometryBase.GeometryType.md index 147b74b535..583a639156 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SectionGeometryBase.GeometryType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SectionGeometryBase.GeometryType.md @@ -1,4 +1,5 @@ -# Enum SectionGeometryBase.GeometryType +# Enum SectionGeometryBase.GeometryType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SectionGeometryBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SectionGeometryBase.md index 18f7d9e958..e500ed9d89 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SectionGeometryBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SectionGeometryBase.md @@ -1,4 +1,5 @@ -# Class SectionGeometryBase +# Class SectionGeometryBase + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public abstract class SectionGeometryBase : LinkContainer, IObservableObject, ID #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [SectionGeometryBase](VM.Managed.DAFUL.GearTrain.SectionGeometryBase.md) @@ -83,7 +84,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -204,7 +205,7 @@ protected double GetFactorForLength() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetGeomInfo\(\) @@ -216,7 +217,7 @@ public abstract double[] GetGeomInfo() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GetLengthAndHeight\(ref double, ref double\) @@ -228,11 +229,11 @@ public virtual void GetLengthAndHeight(ref double dLength, ref double dHeight) #### Parameters -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double Length of the d. -`dHeight` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHeight` double Height of the d. @@ -290,11 +291,11 @@ public virtual Builder[] GetSectionBuilder(double dSegLen, List lstGearS #### Parameters -`dSegLen` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dSegLen` double Length of the d seg. -`lstGearSection` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstGearSection` List The LST gear section. @@ -312,17 +313,17 @@ protected List GetSectionBuilderCore(double dSegLen, List lstSec #### Parameters -`dSegLen` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dSegLen` double Length of the d seg. -`lstSection` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstSection` List The LST section. #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### GetSectionName\(HiddenShaftSetDocument, string, int\) @@ -338,17 +339,17 @@ protected string[] GetSectionName(HiddenShaftSetDocument hiddenDoc, string strNa The hidden document. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. -`nNum` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNum` int The n number. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### GetSectionPoint\(double, List, List\) @@ -360,15 +361,15 @@ public Vector[] GetSectionPoint(double dSegLen, List lstDoubleSection, L #### Parameters -`dSegLen` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dSegLen` double Length of the d seg. -`lstDoubleSection` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstDoubleSection` List The LST double section. -`lstSingleSection` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstSingleSection` List The LST single section. @@ -392,7 +393,7 @@ protected abstract BuilderParamBase InnerCreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### InnerFillParameter\(BuilderParamBase, BuilderColor, VectorBase\) @@ -402,7 +403,7 @@ protected abstract void InnerFillParameter(BuilderParamBase parameter, BuilderCo #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) `color` BuilderColor @@ -418,7 +419,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -442,7 +443,7 @@ second vector. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SplitSectionInfo\(HiddenShaftSetDocument, string, int\) @@ -458,11 +459,11 @@ public abstract SectionInfo[] SplitSectionInfo(HiddenShaftSetDocument hiddenDoc, The hidden document. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. -`nNumber` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNumber` int The n number. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SectionGeometryCircular.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SectionGeometryCircular.md index f81ff49803..80098ae8f8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SectionGeometryCircular.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SectionGeometryCircular.md @@ -1,4 +1,5 @@ -# Class SectionGeometryCircular +# Class SectionGeometryCircular + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class SectionGeometryCircular : SectionGeometryBase, IObservableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [SectionGeometryBase](VM.Managed.DAFUL.GearTrain.SectionGeometryBase.md) ← [SectionGeometryCircular](VM.Managed.DAFUL.GearTrain.SectionGeometryCircular.md) @@ -96,7 +97,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -137,7 +138,7 @@ public ExpressionValueVariable Radius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TypeOfGeometry @@ -185,7 +186,7 @@ public override double[] GetGeomInfo() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GetLengthAndHeight\(ref double, ref double\) @@ -197,11 +198,11 @@ public override void GetLengthAndHeight(ref double dLength, ref double dHeight) #### Parameters -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double Length of the d. -`dHeight` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHeight` double Height of the d. @@ -215,11 +216,11 @@ public override Builder[] GetSectionBuilder(double dSegLen, List lstGear #### Parameters -`dSegLen` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dSegLen` double Length of the d seg. -`lstGearSection` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstGearSection` List The LST gear section. @@ -243,7 +244,7 @@ protected override BuilderParamBase InnerCreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### InnerFillParameter\(BuilderParamBase, BuilderColor, VectorBase\) @@ -253,7 +254,7 @@ protected override void InnerFillParameter(BuilderParamBase parameter, BuilderCo #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) `color` BuilderColor @@ -273,11 +274,11 @@ public override SectionInfo[] SplitSectionInfo(HiddenShaftSetDocument hiddenDoc, The hidden document. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. -`nNumber` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNumber` int The n number. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SectionGeometryHollowCircular.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SectionGeometryHollowCircular.md index dc889e1abe..dd5d0461e6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SectionGeometryHollowCircular.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SectionGeometryHollowCircular.md @@ -1,4 +1,5 @@ -# Class SectionGeometryHollowCircular +# Class SectionGeometryHollowCircular + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class SectionGeometryHollowCircular : SectionGeometryBase, IObservableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [SectionGeometryBase](VM.Managed.DAFUL.GearTrain.SectionGeometryBase.md) ← [SectionGeometryHollowCircular](VM.Managed.DAFUL.GearTrain.SectionGeometryHollowCircular.md) @@ -96,7 +97,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -137,7 +138,7 @@ public ExpressionValueVariable InnerRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### OuterRadius @@ -149,7 +150,7 @@ public ExpressionValueVariable OuterRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TypeOfGeometry @@ -197,7 +198,7 @@ public override double[] GetGeomInfo() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GetLengthAndHeight\(ref double, ref double\) @@ -209,11 +210,11 @@ public override void GetLengthAndHeight(ref double dLength, ref double dHeight) #### Parameters -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double Length of the d. -`dHeight` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHeight` double Height of the d. @@ -227,11 +228,11 @@ public override Builder[] GetSectionBuilder(double dSegLen, List lstGear #### Parameters -`dSegLen` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dSegLen` double Length of the d seg. -`lstGearSection` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstGearSection` List The LST gear section. @@ -255,7 +256,7 @@ protected override BuilderParamBase InnerCreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### InnerFillParameter\(BuilderParamBase, BuilderColor, VectorBase\) @@ -265,7 +266,7 @@ protected override void InnerFillParameter(BuilderParamBase parameter, BuilderCo #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) `color` BuilderColor @@ -285,11 +286,11 @@ public override SectionInfo[] SplitSectionInfo(HiddenShaftSetDocument hiddenDoc, The hidden document. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. -`nNumber` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNumber` int The n number. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SectionGeometryHollowTapered.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SectionGeometryHollowTapered.md index 44bd462def..fbfe605738 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SectionGeometryHollowTapered.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SectionGeometryHollowTapered.md @@ -1,4 +1,5 @@ -# Class SectionGeometryHollowTapered +# Class SectionGeometryHollowTapered + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class SectionGeometryHollowTapered : SectionGeometryBase, IObservableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [SectionGeometryBase](VM.Managed.DAFUL.GearTrain.SectionGeometryBase.md) ← [SectionGeometryHollowTapered](VM.Managed.DAFUL.GearTrain.SectionGeometryHollowTapered.md) @@ -96,7 +97,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -137,7 +138,7 @@ public ExpressionValueVariable InnerEndRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### InnerStartRadius @@ -149,7 +150,7 @@ public ExpressionValueVariable InnerStartRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### OuterEndRadius @@ -161,7 +162,7 @@ public ExpressionValueVariable OuterEndRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### OuterStartRadius @@ -173,7 +174,7 @@ public ExpressionValueVariable OuterStartRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TypeOfGeometry @@ -221,7 +222,7 @@ public override double[] GetGeomInfo() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GetLengthAndHeight\(ref double, ref double\) @@ -233,11 +234,11 @@ public override void GetLengthAndHeight(ref double dLength, ref double dHeight) #### Parameters -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double Length of the d. -`dHeight` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHeight` double Height of the d. @@ -257,7 +258,7 @@ protected override BuilderParamBase InnerCreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### InnerFillParameter\(BuilderParamBase, BuilderColor, VectorBase\) @@ -267,7 +268,7 @@ protected override void InnerFillParameter(BuilderParamBase parameter, BuilderCo #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) `color` BuilderColor @@ -287,11 +288,11 @@ public override SectionInfo[] SplitSectionInfo(HiddenShaftSetDocument hiddenDoc, The hidden document. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. -`nNumber` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNumber` int The n number. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SectionGeometryTapered.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SectionGeometryTapered.md index e453d4bb6c..c5453fef14 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SectionGeometryTapered.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SectionGeometryTapered.md @@ -1,4 +1,5 @@ -# Class SectionGeometryTapered +# Class SectionGeometryTapered + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class SectionGeometryTapered : SectionGeometryBase, IObservableObject, ID #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [SectionGeometryBase](VM.Managed.DAFUL.GearTrain.SectionGeometryBase.md) ← [SectionGeometryTapered](VM.Managed.DAFUL.GearTrain.SectionGeometryTapered.md) @@ -96,7 +97,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -137,7 +138,7 @@ public ExpressionValueVariable EndRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### StartRadius @@ -149,7 +150,7 @@ public ExpressionValueVariable StartRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TypeOfGeometry @@ -197,7 +198,7 @@ public override double[] GetGeomInfo() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GetLengthAndHeight\(ref double, ref double\) @@ -209,11 +210,11 @@ public override void GetLengthAndHeight(ref double dLength, ref double dHeight) #### Parameters -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double Length of the d. -`dHeight` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHeight` double Height of the d. @@ -233,7 +234,7 @@ protected override BuilderParamBase InnerCreateParameter() #### Returns - BuilderParamBase + [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) ### InnerFillParameter\(BuilderParamBase, BuilderColor, VectorBase\) @@ -243,7 +244,7 @@ protected override void InnerFillParameter(BuilderParamBase parameter, BuilderCo #### Parameters -`parameter` BuilderParamBase +`parameter` [BuilderParamBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/BuilderParamBase.cs) `color` BuilderColor @@ -263,11 +264,11 @@ public override SectionInfo[] SplitSectionInfo(HiddenShaftSetDocument hiddenDoc, The hidden document. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. -`nNumber` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNumber` int The n number. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SectionInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SectionInfo.md index d030d82010..2d6864bb12 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SectionInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SectionInfo.md @@ -1,4 +1,5 @@ -# Class SectionInfo +# Class SectionInfo + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,12 +12,12 @@ public class SectionInfo : SubEntity, IObservableObject, IDisposableObject, ILin #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [SectionInfo](VM.Managed.DAFUL.GearTrain.SectionInfo.md) #### Implements @@ -26,7 +27,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -45,17 +46,17 @@ INavigatorItem #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -187,7 +188,7 @@ public SectionInfo(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the sub entity. @@ -217,11 +218,11 @@ public void GetLengthAndHeight(ref double dLength, ref double dHeight) #### Parameters -`dLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLength` double Length of the d. -`dHeight` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHeight` double Height of the d. @@ -241,7 +242,7 @@ The vec point. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetSectionBuilder\(List\) @@ -253,7 +254,7 @@ public Builder[] GetSectionBuilder(List lstGearSection) #### Parameters -`lstGearSection` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstGearSection` List The LST gear section. @@ -297,7 +298,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The object notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ShaftSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ShaftSet.md index d8b98c3d04..f948c4d791 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ShaftSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ShaftSet.md @@ -1,4 +1,5 @@ -# Class ShaftSet +# Class ShaftSet + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -6,19 +7,19 @@ Assembly: VMDGearTrain.dll Shaft set for simple ```csharp -public class ShaftSet : ShaftSetBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IOpenDesignerForGearTrain, IOpenDesigner, IReferencable, ITransparentable, IConnectable, IMarkerParent, IEntityRelation, IHasBody, IHasPowerLoad, IShaftSet, IHousing, IHasBuilder, IReportable +public class ShaftSet : ShaftSetBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IOpenDesignerForGearTrain, IOpenDesigner, IReferencable, ITransparentable, IConnectable, IMarkerParent, IEntityRelation, IHasBody, IHasPowerLoad, IShaftSet, IHousing, IHasBuilder, IReportable, IMassProp ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [OpenDesignerBase](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md) ← [ShaftSetBase](VM.Managed.DAFUL.GearTrain.ShaftSetBase\-1.md) ← [ShaftSet](VM.Managed.DAFUL.GearTrain.ShaftSet.md) @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -65,7 +66,8 @@ IHasBody, [IShaftSet](VM.Managed.DAFUL.GearTrain.IShaftSet.md), [IHousing](VM.Managed.DAFUL.GearTrain.IHousing.md), IHasBuilder, -IReportable +IReportable, +IMassProp #### Inherited Members @@ -101,34 +103,34 @@ IReportable [OpenDesignerBase.HasLayerExplicitly](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_HasLayerExplicitly), [OpenDesignerBase.Referencable](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Referencable), [OpenDesignerBase.Visible](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Visible), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -227,7 +229,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -266,7 +268,7 @@ public ShaftSet(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -310,7 +312,7 @@ public void CreateSection(string strSectionName, Section section, string strCros #### Parameters -`strSectionName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSectionName` string The section name @@ -318,19 +320,19 @@ The section name The section -`strCrossSection` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCrossSection` string The cross section -`arCrossSectionValueInfo` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arCrossSectionValueInfo` string\[\] The cross section value information -`strLength` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strLength` string The length -`strEccentricity` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strEccentricity` string The eccentricity @@ -366,7 +368,7 @@ public override Document SetDataToDesignDoc(bool bRecord) #### Parameters -`bRecord` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bRecord` bool #### Returns @@ -382,7 +384,7 @@ public void UpdateBuilder(List lstUpdateBui) #### Parameters -`lstUpdateBui` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstUpdateBui` List The LST update bui. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ShaftSetBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ShaftSetBase-1.md index d5b5268b37..85c3854d38 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ShaftSetBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ShaftSetBase-1.md @@ -1,4 +1,5 @@ -# Class ShaftSetBase +# Class ShaftSetBase + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -17,14 +18,14 @@ The type of the property. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [OpenDesignerBase](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md) ← [ShaftSetBase](VM.Managed.DAFUL.GearTrain.ShaftSetBase\-1.md) @@ -35,7 +36,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -92,34 +93,34 @@ IReportable [OpenDesignerBase.HasLayerExplicitly](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_HasLayerExplicitly), [OpenDesignerBase.Referencable](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Referencable), [OpenDesignerBase.Visible](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Visible), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -218,7 +219,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -257,7 +258,7 @@ public ShaftSetBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -273,7 +274,7 @@ public Dictionary g_dicPositionToName #### Field Value - [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2) + Dictionary ## Properties @@ -299,7 +300,7 @@ protected override string Extension { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Layer @@ -347,7 +348,7 @@ public override string TypeFileName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### \_Material @@ -373,7 +374,7 @@ public override IObjectBase Find(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -405,13 +406,13 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The ob unnamed. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The unnamed object name. @@ -439,7 +440,7 @@ protected override void MakeReferenceImpl(LinkedList lstRef) #### Parameters -`lstRef` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) +`lstRef` LinkedList The container. @@ -453,7 +454,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ShaftSetFE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ShaftSetFE.md index 65dc8ff982..3f1bd7fd70 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ShaftSetFE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ShaftSetFE.md @@ -1,4 +1,5 @@ -# Class ShaftSetFE +# Class ShaftSetFE + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,14 +12,14 @@ public class ShaftSetFE : ShaftSetMeshBase, IObservableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [OpenDesignerBase](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md) ← [HousingBase](VM.Managed.DAFUL.GearTrain.HousingBase\-1.md) ← [ShaftSetMeshBase](VM.Managed.DAFUL.GearTrain.ShaftSetMeshBase\-1.md) ← @@ -31,7 +32,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -101,34 +102,34 @@ IReportable, [OpenDesignerBase.HasLayerExplicitly](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_HasLayerExplicitly), [OpenDesignerBase.Referencable](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Referencable), [OpenDesignerBase.Visible](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Visible), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -227,7 +228,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -266,7 +267,7 @@ public ShaftSetFE(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -282,7 +283,7 @@ protected override string Extension { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeFileName @@ -294,7 +295,7 @@ public override string TypeFileName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeOfCreate @@ -332,7 +333,7 @@ public override Document SetDataToDesignDoc(bool bRecord) #### Parameters -`bRecord` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bRecord` bool #### Returns diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ShaftSetMeshBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ShaftSetMeshBase-1.md index 6ad9f8c7c2..6a60c6eb17 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ShaftSetMeshBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ShaftSetMeshBase-1.md @@ -1,4 +1,5 @@ -# Class ShaftSetMeshBase +# Class ShaftSetMeshBase + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -17,14 +18,14 @@ The type of the property. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [OpenDesignerBase](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md) ← [HousingBase](VM.Managed.DAFUL.GearTrain.HousingBase\-1.md) ← [ShaftSetMeshBase](VM.Managed.DAFUL.GearTrain.ShaftSetMeshBase\-1.md) @@ -36,7 +37,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -103,34 +104,34 @@ IReportable, [OpenDesignerBase.HasLayerExplicitly](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_HasLayerExplicitly), [OpenDesignerBase.Referencable](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Referencable), [OpenDesignerBase.Visible](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Visible), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -229,7 +230,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -268,7 +269,7 @@ public ShaftSetMeshBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -312,7 +313,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ShaftSetMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ShaftSetMeshFree.md index 21cbb1abeb..e5bea592e5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ShaftSetMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ShaftSetMeshFree.md @@ -1,4 +1,5 @@ -# Class ShaftSetMeshFree +# Class ShaftSetMeshFree + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,14 +12,14 @@ public class ShaftSetMeshFree : ShaftSetMeshBase, IObs #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [OpenDesignerBase](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md) ← [HousingBase](VM.Managed.DAFUL.GearTrain.HousingBase\-1.md) ← [ShaftSetMeshBase](VM.Managed.DAFUL.GearTrain.ShaftSetMeshBase\-1.md) ← @@ -31,7 +32,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -101,34 +102,34 @@ IReportable, [OpenDesignerBase.HasLayerExplicitly](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_HasLayerExplicitly), [OpenDesignerBase.Referencable](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Referencable), [OpenDesignerBase.Visible](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Visible), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -227,7 +228,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -266,7 +267,7 @@ public ShaftSetMeshFree(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -282,7 +283,7 @@ protected override string Extension { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeFileName @@ -294,7 +295,7 @@ public override string TypeFileName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeOfCreate @@ -332,7 +333,7 @@ public override Document SetDataToDesignDoc(bool bRecord) #### Parameters -`bRecord` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bRecord` bool #### Returns diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SlidingBearing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SlidingBearing.md index 891b4fb40a..aa04c9ea3d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SlidingBearing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.SlidingBearing.md @@ -1,4 +1,5 @@ -# Class SlidingBearing +# Class SlidingBearing + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -6,19 +7,19 @@ Assembly: VMDGearTrain.dll Sliding Bearing ```csharp -public class SlidingBearing : OpenDesignerBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IOpenDesignerForGearTrain, IOpenDesigner, IReferencable, ITransparentable, IHasGeometryInfo, IBearing, IConnectable, IMarkerParent, IEntityRelation, IHasBody, IHasBuilder, IReportable +public class SlidingBearing : OpenDesignerBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IOpenDesignerForGearTrain, IOpenDesigner, IReferencable, ITransparentable, IHasGeometryInfo, IBearing, IConnectable, IMarkerParent, IEntityRelation, IHasBody, IHasBuilder, IReportable, IMassProp ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [OpenDesignerBase](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md) ← [SlidingBearing](VM.Managed.DAFUL.GearTrain.SlidingBearing.md) @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -63,7 +64,8 @@ IMarkerParent, IEntityRelation, IHasBody, IHasBuilder, -IReportable +IReportable, +IMassProp #### Inherited Members @@ -85,34 +87,34 @@ IReportable [OpenDesignerBase.HasLayerExplicitly](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_HasLayerExplicitly), [OpenDesignerBase.Referencable](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Referencable), [OpenDesignerBase.Visible](VM.Managed.DAFUL.GearTrain.OpenDesignerBase\-1.md\#VM\_Managed\_DAFUL\_GearTrain\_OpenDesignerBase\_1\_Visible), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -211,7 +213,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -250,7 +252,7 @@ public SlidingBearing(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -270,7 +272,7 @@ public GeometryBase[] BearingBodies { get; set; } #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Sliding Bearing Body list is null. or @@ -288,7 +290,7 @@ protected override string Extension { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Layer @@ -324,7 +326,7 @@ public override string TypeFileName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeOfParent @@ -368,25 +370,25 @@ public bool FillBearingData(Document doc, string InnerColor, string OuterColor, The document -`InnerColor` [string](https://learn.microsoft.com/dotnet/api/system.string) +`InnerColor` string The inner color -`OuterColor` [string](https://learn.microsoft.com/dotnet/api/system.string) +`OuterColor` string The outer color -`strPropertyFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPropertyFilePath` string The property file path -`InputArray` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`InputArray` string\[\] The input array #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### FindLocal\(string\) @@ -398,7 +400,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -430,13 +432,13 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The ob unnamed. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The unnamed object name. @@ -450,7 +452,7 @@ protected override void MakeReferenceImpl(LinkedList lstRef) #### Parameters -`lstRef` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) +`lstRef` LinkedList The container. @@ -464,7 +466,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -500,7 +502,7 @@ public override Document SetDataToDesignDoc(bool bRecord) #### Parameters -`bRecord` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bRecord` bool #### Returns diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Tolerance.ToleranceType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Tolerance.ToleranceType.md index 7156f7b92d..9d7ac18375 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Tolerance.ToleranceType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Tolerance.ToleranceType.md @@ -1,4 +1,5 @@ -# Enum Tolerance.ToleranceType +# Enum Tolerance.ToleranceType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Tolerance.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Tolerance.md index 0a4c04603a..670f1782a4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Tolerance.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Tolerance.md @@ -1,4 +1,5 @@ -# Class Tolerance +# Class Tolerance + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class Tolerance : GearPropertyBase, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [GearPropertyBase](VM.Managed.DAFUL.GearTrain.GearPropertyBase.md) ← [Tolerance](VM.Managed.DAFUL.GearTrain.Tolerance.md) @@ -77,7 +78,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -192,7 +193,7 @@ public void InitChild(int nNum, Unit.ConvertFactor factor) #### Parameters -`nNum` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNum` int The n number. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Tool.AddendumInputType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Tool.AddendumInputType.md index 56830d7fd3..ed0add64ca 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Tool.AddendumInputType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Tool.AddendumInputType.md @@ -1,4 +1,5 @@ -# Enum Tool.AddendumInputType +# Enum Tool.AddendumInputType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Tool.DedendumInputType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Tool.DedendumInputType.md index 350d7a538f..a198d0852f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Tool.DedendumInputType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Tool.DedendumInputType.md @@ -1,4 +1,5 @@ -# Enum Tool.DedendumInputType +# Enum Tool.DedendumInputType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Tool.RootRadiusInputType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Tool.RootRadiusInputType.md index a11f31b596..1570e0dd42 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Tool.RootRadiusInputType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Tool.RootRadiusInputType.md @@ -1,4 +1,5 @@ -# Enum Tool.RootRadiusInputType +# Enum Tool.RootRadiusInputType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Tool.ToolDataType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Tool.ToolDataType.md index cb135c62a6..9e939de3de 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Tool.ToolDataType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Tool.ToolDataType.md @@ -1,4 +1,5 @@ -# Enum Tool.ToolDataType +# Enum Tool.ToolDataType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Tool.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Tool.md index ef67afefb0..bd891b5b0e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Tool.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Tool.md @@ -1,4 +1,5 @@ -# Class Tool +# Class Tool + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class Tool : GearPropertyBase, IObservableObject, IDisposableObject, ILin #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [GearPropertyBase](VM.Managed.DAFUL.GearTrain.GearPropertyBase.md) ← [Tool](VM.Managed.DAFUL.GearTrain.Tool.md) @@ -77,7 +78,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -300,7 +301,7 @@ public override void InitChild(int nNum) #### Parameters -`nNum` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNum` int The n number. @@ -314,7 +315,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ToothStiffness.MethodType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ToothStiffness.MethodType.md index e67cc61a3b..f5c3d1bf70 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ToothStiffness.MethodType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ToothStiffness.MethodType.md @@ -1,4 +1,5 @@ -# Enum ToothStiffness.MethodType +# Enum ToothStiffness.MethodType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ToothStiffness.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ToothStiffness.md index 4aa5bc527e..137c663934 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ToothStiffness.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ToothStiffness.md @@ -1,4 +1,5 @@ -# Class ToothStiffness +# Class ToothStiffness + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class ToothStiffness : GearPropertyBase, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [GearPropertyBase](VM.Managed.DAFUL.GearTrain.GearPropertyBase.md) ← [ToothStiffness](VM.Managed.DAFUL.GearTrain.ToothStiffness.md) @@ -77,7 +78,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -118,11 +119,11 @@ public SplineValue[] BeamToothSplineValues { get; set; } #### Property Value - SplineValue\[\] + [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs)\[\] #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception SplineValue list is null. or @@ -140,11 +141,11 @@ public SplineValue[] FEToothSplineValues { get; set; } #### Property Value - SplineValue\[\] + [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs)\[\] #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception SplineValue list is null. or @@ -162,11 +163,11 @@ public SplineValue[] ISO6336ToothSplineValues { get; set; } #### Property Value - SplineValue\[\] + [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs)\[\] #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception SplineValue list is null. or @@ -188,7 +189,7 @@ public ToothStiffness.MethodType[] MethodTypes { get; set; } #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception MethodType list is null. or @@ -204,11 +205,11 @@ public string[] UserInputFilePaths { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception UserInputFilePath list is null. or @@ -224,11 +225,11 @@ public SplineValue[] UserInputToothSplineValues { get; set; } #### Property Value - SplineValue\[\] + [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs)\[\] #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception SplineValue list is null. or @@ -248,7 +249,7 @@ public SplineValue[] GetAllSplineValue() #### Returns - SplineValue\[\] + [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs)\[\] ### GetSplineValue\(MethodType, int\) @@ -264,13 +265,13 @@ public SplineValue GetSplineValue(ToothStiffness.MethodType type, int nIdx) The type. -`nIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIdx` int Index of the n. #### Returns - SplineValue + [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### GetSplineValue\(int\) @@ -282,13 +283,13 @@ public SplineValue GetSplineValue(int nIdx) #### Parameters -`nIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIdx` int Index of the n. #### Returns - SplineValue + [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### InitChild\(int\) @@ -300,7 +301,7 @@ public override void InitChild(int nNum) #### Parameters -`nNum` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNum` int The n number. @@ -314,7 +315,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -332,7 +333,7 @@ public void RemoveSplineValue(ToothStiffness.MethodType type, int nIdx) The type. -`nIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIdx` int Index of the n. @@ -350,11 +351,11 @@ public void ReplaceSplineValue(ToothStiffness.MethodType type, int nIdx, SplineV The type. -`nIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIdx` int Index of the n. -`sv` SplineValue +`sv` [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) The sv. @@ -368,7 +369,7 @@ public void SetMethodType(int nIdx, ToothStiffness.MethodType typeMethod) #### Parameters -`nIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIdx` int Index of the n. @@ -386,11 +387,11 @@ public void SetUserInputFilePath(int nIdx, string strUserInputFilePath) #### Parameters -`nIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIdx` int Index of the n. -`strUserInputFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strUserInputFilePath` string The string user input file path. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ToothThickness.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ToothThickness.md index 431380d3c6..d98ce4bbb1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ToothThickness.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.ToothThickness.md @@ -1,4 +1,5 @@ -# Class ToothThickness +# Class ToothThickness + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class ToothThickness : LinkContainer, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ToothThickness](VM.Managed.DAFUL.GearTrain.ToothThickness.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -142,7 +143,7 @@ public void InitChild(int nNum, Unit.ConvertFactor factor) #### Parameters -`nNum` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNum` int The n number. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.TransmissionError.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.TransmissionError.md index 73c2741fd9..99b44fcb3a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.TransmissionError.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.TransmissionError.md @@ -1,4 +1,5 @@ -# Class TransmissionError +# Class TransmissionError + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,12 +12,12 @@ public class TransmissionError : SubEntity, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [TransmissionError](VM.Managed.DAFUL.GearTrain.TransmissionError.md) #### Implements @@ -26,7 +27,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -45,17 +46,17 @@ INavigatorItem #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -189,5 +190,5 @@ public SplineValue Spline { get; set; } #### Property Value - SplineValue + [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.UnbalanceMass.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.UnbalanceMass.md index f102c1dc3a..ba9f9b3b87 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.UnbalanceMass.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.UnbalanceMass.md @@ -1,4 +1,5 @@ -# Class UnbalanceMass +# Class UnbalanceMass + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,12 +12,12 @@ public class UnbalanceMass : PointEntityOnShaftSet, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [PointEntityOnShaftSet](VM.Managed.DAFUL.GearTrain.PointEntityOnShaftSet.md) ← [UnbalanceMass](VM.Managed.DAFUL.GearTrain.UnbalanceMass.md) @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -57,17 +58,17 @@ INavigatorItem, [PointEntityOnShaftSet.Position](VM.Managed.DAFUL.GearTrain.PointEntityOnShaftSet.md\#VM\_Managed\_DAFUL\_GearTrain\_PointEntityOnShaftSet\_Position), [PointEntityOnShaftSet.OffsetToAxisDirection](VM.Managed.DAFUL.GearTrain.PointEntityOnShaftSet.md\#VM\_Managed\_DAFUL\_GearTrain\_PointEntityOnShaftSet\_OffsetToAxisDirection), [PointEntityOnShaftSet.Width](VM.Managed.DAFUL.GearTrain.PointEntityOnShaftSet.md\#VM\_Managed\_DAFUL\_GearTrain\_PointEntityOnShaftSet\_Width), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -160,7 +161,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -199,7 +200,7 @@ public UnbalanceMass(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the sub entity. @@ -227,7 +228,7 @@ public ExpressionValueVariable Mass { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MomentArm @@ -239,7 +240,7 @@ public ExpressionValueVariable MomentArm { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.UnbalanceMassOnRBE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.UnbalanceMassOnRBE.md index 4f37857abc..846671bcd4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.UnbalanceMassOnRBE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.UnbalanceMassOnRBE.md @@ -1,4 +1,5 @@ -# Class UnbalanceMassOnRBE +# Class UnbalanceMassOnRBE + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,12 +12,12 @@ public class UnbalanceMassOnRBE : PointEntityOnRBE, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [PointEntityOnRBE](VM.Managed.DAFUL.GearTrain.PointEntityOnRBE.md) ← [UnbalanceMassOnRBE](VM.Managed.DAFUL.GearTrain.UnbalanceMassOnRBE.md) @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -51,17 +52,17 @@ INavigatorItem, [PointEntityOnRBE.ConnectableEntity](VM.Managed.DAFUL.GearTrain.PointEntityOnRBE.md\#VM\_Managed\_DAFUL\_GearTrain\_PointEntityOnRBE\_ConnectableEntity), [PointEntityOnRBE.\_ConnectableEntity](VM.Managed.DAFUL.GearTrain.PointEntityOnRBE.md\#VM\_Managed\_DAFUL\_GearTrain\_PointEntityOnRBE\_\_ConnectableEntity), [PointEntityOnRBE.Position](VM.Managed.DAFUL.GearTrain.PointEntityOnRBE.md\#VM\_Managed\_DAFUL\_GearTrain\_PointEntityOnRBE\_Position), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -154,7 +155,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -193,7 +194,7 @@ public UnbalanceMassOnRBE(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the sub entity. @@ -221,7 +222,7 @@ public ExpressionValueVariable Mass { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MomentArm @@ -233,7 +234,7 @@ public ExpressionValueVariable MomentArm { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ZAxis diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.VariableWeb.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.VariableWeb.md index e2059c3d57..5036b35b19 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.VariableWeb.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.VariableWeb.md @@ -1,4 +1,5 @@ -# Class VariableWeb +# Class VariableWeb + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class VariableWeb : ConstantWeb, IObservableObject, IDisposableObject, IL #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ConstantWeb](VM.Managed.DAFUL.GearTrain.ConstantWeb.md) ← [VariableWeb](VM.Managed.DAFUL.GearTrain.VariableWeb.md) @@ -79,7 +80,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -148,7 +149,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Web.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Web.md index 93334cd122..5cfa0c951d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Web.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.Web.md @@ -1,4 +1,5 @@ -# Class Web +# Class Web + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class Web : GearPropertyBase, IObservableObject, IDisposableObject, ILink #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [GearPropertyBase](VM.Managed.DAFUL.GearTrain.GearPropertyBase.md) ← [Web](VM.Managed.DAFUL.GearTrain.Web.md) @@ -77,7 +78,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -122,7 +123,7 @@ public WebPropertyValue[] WebProperties { get; set; } #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception WebPropertyValue list is null. or @@ -142,7 +143,7 @@ public void InitChild(int nNum, Unit.ConvertFactor factor) #### Parameters -`nNum` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNum` int The n number. @@ -160,7 +161,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.WebPropertyValue.WebStiffnessMethodType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.WebPropertyValue.WebStiffnessMethodType.md index 8199798c45..313f4c0748 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.WebPropertyValue.WebStiffnessMethodType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.WebPropertyValue.WebStiffnessMethodType.md @@ -1,4 +1,5 @@ -# Enum WebPropertyValue.WebStiffnessMethodType +# Enum WebPropertyValue.WebStiffnessMethodType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.WebPropertyValue.WebType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.WebPropertyValue.WebType.md index 497bfc08d8..791a8b37aa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.WebPropertyValue.WebType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.WebPropertyValue.WebType.md @@ -1,4 +1,5 @@ -# Enum WebPropertyValue.WebType +# Enum WebPropertyValue.WebType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.WebPropertyValue.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.WebPropertyValue.md index 9b8217f601..6b694c90ee 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.WebPropertyValue.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.WebPropertyValue.md @@ -1,4 +1,5 @@ -# Class WebPropertyValue +# Class WebPropertyValue + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class WebPropertyValue : LinkContainer, IObservableObject, IDisposableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [WebPropertyValue](VM.Managed.DAFUL.GearTrain.WebPropertyValue.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,7 +117,7 @@ public bool AutoCalculationForMassInformation { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CADDataPath @@ -128,7 +129,7 @@ public string CADDataPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ConstantOfWeb @@ -152,7 +153,7 @@ public string FEDataPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### InDiameter @@ -164,7 +165,7 @@ public ExpressionValueVariable InDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### InputTypeOfWeb @@ -200,7 +201,7 @@ public ExpressionValueVariable Mass { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MomentOfInertia @@ -224,7 +225,7 @@ public double[] MomentOfInertiaValue { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### OutDiameter @@ -236,7 +237,7 @@ public ExpressionValueVariable OutDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PointCountPerSection @@ -248,7 +249,7 @@ public ExpressionValueVariable PointCountPerSection { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RepeatingSectionCount @@ -260,7 +261,7 @@ public ExpressionValueVariable RepeatingSectionCount { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### StiffnessScaleFactor @@ -272,7 +273,7 @@ public ExpressionValueVariable StiffnessScaleFactor { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Thickness @@ -284,7 +285,7 @@ public ExpressionValueVariable Thickness { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### VariableOfWeb @@ -310,13 +311,13 @@ public static double[] GetResultAfterCalculateWebStiffness(string[] calculatedRe #### Parameters -`calculatedResults` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`calculatedResults` string\[\] The calculated results #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### InitChild\(ConvertFactor\) @@ -342,7 +343,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.WebStiffness.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.WebStiffness.md index 89dc1715ef..cf9d45329d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.WebStiffness.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.WebStiffness.md @@ -1,4 +1,5 @@ -# Class WebStiffness +# Class WebStiffness + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll @@ -11,9 +12,9 @@ public class WebStiffness : LinkContainer, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [WebStiffness](VM.Managed.DAFUL.GearTrain.WebStiffness.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,7 +117,7 @@ public ExpressionValueVariable Angle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### StiffnessValues @@ -128,7 +129,7 @@ public double[] StiffnessValues { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### Stiffnesses @@ -144,7 +145,7 @@ public Variable[] Stiffnesses { get; set; } #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Stiffnesses list is null. or diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.enHDBGeometrySegmentType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.enHDBGeometrySegmentType.md index 2ba969411e..87f6679174 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.enHDBGeometrySegmentType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.enHDBGeometrySegmentType.md @@ -1,4 +1,5 @@ -# Enum enHDBGeometrySegmentType +# Enum enHDBGeometrySegmentType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.enSBContactType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.enSBContactType.md index 03f267684e..efad813922 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.enSBContactType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.enSBContactType.md @@ -1,4 +1,5 @@ -# Enum enSBContactType +# Enum enSBContactType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.enSlidingBearingType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.enSlidingBearingType.md index adcdaa856e..49af246332 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.enSlidingBearingType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.enSlidingBearingType.md @@ -1,4 +1,5 @@ -# Enum enSlidingBearingType +# Enum enSlidingBearingType + Namespace: [VM.Managed.DAFUL.GearTrain](VM.Managed.DAFUL.GearTrain.md) Assembly: VMDGearTrain.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.md index 76bc8d7e80..38efeb3476 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GearTrain.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.GearTrain +# Namespace VM.Managed.DAFUL.GearTrain + ### Namespaces @@ -512,11 +513,11 @@ Material [MatrixLib](VM.Managed.DAFUL.GearTrain.MatrixLib.md) - [MotorDesigner.StatorSection.MaxwellCreation](VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.MaxwellCreation.md) + [MotorDesigner.RotorSection.MaxwellCreation](VM.Managed.DAFUL.GearTrain.MotorDesigner.RotorSection.MaxwellCreation.md) Maxwell Creation - [MotorDesigner.RotorSection.MaxwellCreation](VM.Managed.DAFUL.GearTrain.MotorDesigner.RotorSection.MaxwellCreation.md) + [MotorDesigner.StatorSection.MaxwellCreation](VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.MaxwellCreation.md) Maxwell Creation @@ -782,6 +783,10 @@ This class is to represent the attribute for Radial Internal Clearance. The rating + [ReferenceGearSet](VM.Managed.DAFUL.GearTrain.ReferenceGearSet.md) + +This class is to represent the reference for motor em force. + [Request](VM.Managed.DAFUL.GearTrain.Request.md) Request in Assembly Manager @@ -866,14 +871,14 @@ The Summary The Summary - [GearShapeBase.Tolerance](VM.Managed.DAFUL.GearTrain.GearShapeBase.Tolerance.md) - -The Tolerance - [Tolerance](VM.Managed.DAFUL.GearTrain.Tolerance.md) Tolerance + [GearShapeBase.Tolerance](VM.Managed.DAFUL.GearTrain.GearShapeBase.Tolerance.md) + +The Tolerance + [Tool](VM.Managed.DAFUL.GearTrain.Tool.md) Reference Profile @@ -898,11 +903,11 @@ Unbalance mass Unbalance mass on RBE class - [MotorDesigner.RotorSection.UserDefinedCreation](VM.Managed.DAFUL.GearTrain.MotorDesigner.RotorSection.UserDefinedCreation.md) + [MotorDesigner.StatorSection.UserDefinedCreation](VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.UserDefinedCreation.md) User defined Creation - [MotorDesigner.StatorSection.UserDefinedCreation](VM.Managed.DAFUL.GearTrain.MotorDesigner.StatorSection.UserDefinedCreation.md) + [MotorDesigner.RotorSection.UserDefinedCreation](VM.Managed.DAFUL.GearTrain.MotorDesigner.RotorSection.UserDefinedCreation.md) User defined Creation @@ -1056,11 +1061,11 @@ Type of Bar The Gear Rating Method type - [PropertyGearSetPlanetary.ContactAnalysisInputType](VM.Managed.DAFUL.GearTrain.PropertyGearSetPlanetary.ContactAnalysisInputType.md) + [PropertyGearSetPlanetaryDP.ContactAnalysisInputType](VM.Managed.DAFUL.GearTrain.PropertyGearSetPlanetaryDP.ContactAnalysisInputType.md) contact analysis input type type - [PropertyGearSetPlanetaryDP.ContactAnalysisInputType](VM.Managed.DAFUL.GearTrain.PropertyGearSetPlanetaryDP.ContactAnalysisInputType.md) + [PropertyGearSetPlanetary.ContactAnalysisInputType](VM.Managed.DAFUL.GearTrain.PropertyGearSetPlanetary.ContactAnalysisInputType.md) contact analysis input type type @@ -1104,26 +1109,26 @@ The Gear Rating Method type Gear set type - [KissSoftInterface.GearType](VM.Managed.DAFUL.GearTrain.KissSoftInterface.GearType.md) - -Gear Type - [BasicInvolute.GearType](VM.Managed.DAFUL.GearTrain.BasicInvolute.GearType.md) The gear type - [MotorDesigner.GeometryCreationType](VM.Managed.DAFUL.GearTrain.MotorDesigner.GeometryCreationType.md) + [KissSoftInterface.GearType](VM.Managed.DAFUL.GearTrain.KissSoftInterface.GearType.md) -Geometry creation type +Gear Type - [GeometryInfoBase.GeometryType](VM.Managed.DAFUL.GearTrain.GeometryInfoBase.GeometryType.md) + [MotorDesigner.GeometryCreationType](VM.Managed.DAFUL.GearTrain.MotorDesigner.GeometryCreationType.md) -Geometry type +Geometry creation type [SectionGeometryBase.GeometryType](VM.Managed.DAFUL.GearTrain.SectionGeometryBase.GeometryType.md) The geometry type + [GeometryInfoBase.GeometryType](VM.Managed.DAFUL.GearTrain.GeometryInfoBase.GeometryType.md) + +Geometry type + [HDBGeometryInfo.HDBearingType](VM.Managed.DAFUL.GearTrain.HDBGeometryInfo.HDBearingType.md) HDBearing Type @@ -1178,14 +1183,14 @@ Type of reference The root radius input type - [Rack.SimulationType](VM.Managed.DAFUL.GearTrain.Rack.SimulationType.md) - -Simulation type - [PowerFlow.SimulationType](VM.Managed.DAFUL.GearTrain.PowerFlow.SimulationType.md) Simulation Type for Power Flow + [Rack.SimulationType](VM.Managed.DAFUL.GearTrain.Rack.SimulationType.md) + +Simulation type + [MotorDesigner.HousingSection.StatorMountingDirection](VM.Managed.DAFUL.GearTrain.MotorDesigner.HousingSection.StatorMountingDirection.md) Stator Mounting Direction diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GeometryType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GeometryType.md index 54c94a8e90..0ab3c286ff 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GeometryType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GeometryType.md @@ -1,4 +1,5 @@ -# Enum GeometryType +# Enum GeometryType + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Ground.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Ground.md index d8f0bed846..4be0150438 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Ground.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Ground.md @@ -1,4 +1,5 @@ -# Class Ground +# Class Ground + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,14 +12,14 @@ public sealed class Ground : BodyBase, IObservableObject, ID #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [BodyBase](VM.Managed.DAFUL.BodyBase\-1.md) ← [Ground](VM.Managed.DAFUL.Ground.md) @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -86,25 +87,25 @@ IGeometryContainer, [BodyBase.Layer](VM.Managed.DAFUL.BodyBase\-1.md\#VM\_Managed\_DAFUL\_BodyBase\_1\_Layer), [BodyBase.IsVisible](VM.Managed.DAFUL.BodyBase\-1.md\#VM\_Managed\_DAFUL\_BodyBase\_1\_IsVisible), [BodyBase.Geometry](VM.Managed.DAFUL.BodyBase\-1.md\#VM\_Managed\_DAFUL\_BodyBase\_1\_Geometry), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.UntypedProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -208,7 +209,7 @@ public Ground(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the ground. @@ -224,7 +225,7 @@ public override List Geometry { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### GroundName @@ -236,7 +237,7 @@ public static string GroundName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ReferencableImpl @@ -248,7 +249,7 @@ protected override sealed bool ReferencableImpl { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -276,11 +277,11 @@ protected override bool GetGeomModelNavigatorInfo(XmlDocument xmlDom, XmlElement #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for geometry. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for geometry. @@ -294,7 +295,7 @@ The geometry. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -322,21 +323,21 @@ public bool GetMarkerArrayModelNavigatorInfo(XmlDocument xmlDom, XmlElement xmlE #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for marker array. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for marker array. -`arMarker` NamedObjectDictionary<[Marker](VM.Managed.DAFUL.Marker.md)\> +`arMarker` [NamedObjectDictionary](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/NamedObjectDictionary.cs)<[Marker](VM.Managed.DAFUL.Marker.md)\> The marker array. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -350,21 +351,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlDocument for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -392,7 +393,7 @@ protected override sealed void MakeReferenceImpl(LinkedList lstRef) #### Parameters -`lstRef` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) +`lstRef` LinkedList The container. @@ -406,7 +407,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GroundBodyProperty.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GroundBodyProperty.md index 724370a550..ee255e0e2c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GroundBodyProperty.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GroundBodyProperty.md @@ -1,4 +1,5 @@ -# Class GroundBodyProperty +# Class GroundBodyProperty + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,13 +12,13 @@ public class GroundBodyProperty : BodyProperty, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [BodyPropertyBase](VM.Managed.DAFUL.BodyPropertyBase.md) ← [BodyProperty](VM.Managed.DAFUL.BodyProperty.md) ← [GroundBodyProperty](VM.Managed.DAFUL.GroundBodyProperty.md) @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -62,12 +63,12 @@ ICheckLinkForCircularReferenceBeforeDeserialize [BodyPropertyBase.MassValue](VM.Managed.DAFUL.BodyPropertyBase.md\#VM\_Managed\_DAFUL\_BodyPropertyBase\_MassValue), [BodyPropertyBase.MomentOfInertiaValue](VM.Managed.DAFUL.BodyPropertyBase.md\#VM\_Managed\_DAFUL\_BodyPropertyBase\_MomentOfInertiaValue), [BodyPropertyBase.IsExternable](VM.Managed.DAFUL.BodyPropertyBase.md\#VM\_Managed\_DAFUL\_BodyPropertyBase\_IsExternable), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -166,7 +167,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -235,7 +236,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -269,13 +270,13 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The unnamed object. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The unnamed object name. @@ -289,7 +290,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -307,7 +308,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -327,7 +328,7 @@ The body. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool Indicates whether this is a success or a fail. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Group.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Group.md index b7b8029ab6..5e46444546 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Group.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Group.md @@ -1,4 +1,5 @@ -# Class Group +# Class Group + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,12 +12,12 @@ public class Group : SubEntity, IObservableObject, IDisposableObject, ILinkable, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [Group](VM.Managed.DAFUL.Group.md) #### Implements @@ -26,7 +27,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -48,17 +49,17 @@ IMultiChangable #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -151,7 +152,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -190,7 +191,7 @@ public Group(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -218,7 +219,7 @@ public override bool IsEnabled { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsVisible @@ -230,7 +231,7 @@ public bool IsVisible { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Objects @@ -254,7 +255,7 @@ public string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -268,7 +269,7 @@ public static string[] ActionNames() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### AddAction\(GroupActionBase\) @@ -312,7 +313,7 @@ public void ExcuteAction(GroupActionBase action, bool bOnOff) The action. -`bOnOff` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bOnOff` bool if set to true [b on off]. @@ -326,11 +327,11 @@ public void ExcuteAction(string actionName, bool bOnOff) #### Parameters -`actionName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`actionName` string Name of the action. -`bOnOff` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bOnOff` bool if set to true [b on off]. @@ -350,7 +351,7 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -368,7 +369,7 @@ protected virtual Layer GetLayerImpl() #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Document of Group object is null. @@ -382,21 +383,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -422,7 +423,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -438,9 +439,9 @@ protected override void OnLinkReserved(ILink reserved, object objNotifier, Event `reserved` ILink -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object -`args` [EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) +`args` EventArgs ### RemoveObject\(ObjectBase\) @@ -458,7 +459,7 @@ The ob. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SetLayerImpl\(Layer\) @@ -484,11 +485,11 @@ public bool StateAction(string actionName) #### Parameters -`actionName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`actionName` string Name of the action. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GroupActionBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GroupActionBase.md index 77d1bf5342..2984481893 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GroupActionBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.GroupActionBase.md @@ -1,4 +1,5 @@ -# Class GroupActionBase +# Class GroupActionBase + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,7 +12,7 @@ public abstract class GroupActionBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [GroupActionBase](VM.Managed.DAFUL.GroupActionBase.md) #### Extension Methods @@ -40,7 +41,7 @@ public abstract string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -58,7 +59,7 @@ public abstract void Action(ObjectBase[] obs, bool bOnOff) The obs. -`bOnOff` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bOnOff` bool if set to true [b on off]. @@ -78,5 +79,5 @@ The obs. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.HiddenCreateInfo.Page.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.HiddenCreateInfo.Page.md index ca9be319bc..9df14e8364 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.HiddenCreateInfo.Page.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.HiddenCreateInfo.Page.md @@ -1,4 +1,5 @@ -# Class HiddenCreateInfo.Page +# Class HiddenCreateInfo.Page + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,7 +12,7 @@ public class HiddenCreateInfo.Page #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [HiddenCreateInfo.Page](VM.Managed.DAFUL.HiddenCreateInfo.Page.md) #### Extension Methods @@ -40,7 +41,7 @@ public string Assembly #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Text @@ -52,7 +53,7 @@ public string Text #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UserControl @@ -64,7 +65,7 @@ public string UserControl #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### XPath @@ -76,5 +77,5 @@ public string XPath #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.HiddenCreateInfo.UserControlInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.HiddenCreateInfo.UserControlInfo.md index 47dd94ea6a..4aec1b00b9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.HiddenCreateInfo.UserControlInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.HiddenCreateInfo.UserControlInfo.md @@ -1,4 +1,5 @@ -# Class HiddenCreateInfo.UserControlInfo +# Class HiddenCreateInfo.UserControlInfo + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,7 +12,7 @@ public class HiddenCreateInfo.UserControlInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [HiddenCreateInfo.UserControlInfo](VM.Managed.DAFUL.HiddenCreateInfo.UserControlInfo.md) #### Extension Methods @@ -40,7 +41,7 @@ public List Pages #### Field Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[HiddenCreateInfo](VM.Managed.DAFUL.HiddenCreateInfo.md).[Page](VM.Managed.DAFUL.HiddenCreateInfo.Page.md)\> + List<[HiddenCreateInfo](VM.Managed.DAFUL.HiddenCreateInfo.md).[Page](VM.Managed.DAFUL.HiddenCreateInfo.Page.md)\> ### Type @@ -52,5 +53,5 @@ public string Type #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.HiddenCreateInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.HiddenCreateInfo.md index ea51cc9a4a..efd1661bbf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.HiddenCreateInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.HiddenCreateInfo.md @@ -1,4 +1,5 @@ -# Class HiddenCreateInfo +# Class HiddenCreateInfo + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,19 +12,19 @@ public class HiddenCreateInfo : DocCreateAnalysisInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← DocCreateInfo ← DocCreate3DInfo ← -DocCreateAnalysisInfo ← +[DocCreateAnalysisInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DocCreate3DInfo.cs) ← [HiddenCreateInfo](VM.Managed.DAFUL.HiddenCreateInfo.md) #### Inherited Members -DocCreateAnalysisInfo.GravityX, -DocCreateAnalysisInfo.GravityY, -DocCreateAnalysisInfo.GravityZ, -DocCreateAnalysisInfo.IncrementTime, -DocCreateAnalysisInfo.UseIncrementTime, +[DocCreateAnalysisInfo.GravityX](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DocCreate3DInfo.cs), +[DocCreateAnalysisInfo.GravityY](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DocCreate3DInfo.cs), +[DocCreateAnalysisInfo.GravityZ](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DocCreate3DInfo.cs), +[DocCreateAnalysisInfo.IncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DocCreate3DInfo.cs), +[DocCreateAnalysisInfo.UseIncrementTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DocCreate3DInfo.cs), DocCreate3DInfo.IconSize, DocCreate3DInfo.IsAdvancedMode, DocCreate3DInfo.UseSymmetric, @@ -60,7 +61,7 @@ public string Assembly #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IsRotation @@ -72,7 +73,7 @@ public bool IsRotation #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UserControls @@ -84,7 +85,7 @@ public List UserControls #### Field Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[HiddenCreateInfo](VM.Managed.DAFUL.HiddenCreateInfo.md).[UserControlInfo](VM.Managed.DAFUL.HiddenCreateInfo.UserControlInfo.md)\> + List<[HiddenCreateInfo](VM.Managed.DAFUL.HiddenCreateInfo.md).[UserControlInfo](VM.Managed.DAFUL.HiddenCreateInfo.UserControlInfo.md)\> ### ViewPlane @@ -96,5 +97,5 @@ public string ViewPlane #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.HiddenDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.HiddenDocument.md index 5ef75ac7dd..d0cc8c8713 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.HiddenDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.HiddenDocument.md @@ -1,4 +1,5 @@ -# Class HiddenDocument +# Class HiddenDocument + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public abstract class HiddenDocument : SubSystemDocument, IObservableObject, IDi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← @@ -32,7 +33,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -241,8 +242,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -253,9 +252,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -269,12 +268,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -552,7 +548,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -583,7 +579,7 @@ public HiddenDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -599,7 +595,7 @@ protected Canvas m_canvas #### Field Value - Canvas + [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) ## Properties @@ -667,7 +663,7 @@ public virtual void DrawCoordinate(double dIconSize) #### Parameters -`dIconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dIconSize` double Size of the d icon. @@ -683,7 +679,7 @@ protected void DrawCoordinateCore(VectorBase vecStartPoint, double dIconSize) `vecStartPoint` VectorBase -`dIconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dIconSize` double ### FindLocal\(string\) @@ -695,7 +691,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -713,13 +709,13 @@ public virtual bool HideSubData(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The sub data name. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### InitializeSimParam\(\) @@ -739,7 +735,7 @@ protected override void OnPostMakeDocumentImpl(DocCreateAnalysisInfo info) #### Parameters -`info` DocCreateAnalysisInfo +`info` [DocCreateAnalysisInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DocCreate3DInfo.cs) The [analysis document create information]. @@ -753,7 +749,7 @@ public override void SetData(XmlNode reader) #### Parameters -`reader` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`reader` XmlNode The reader. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.HighSpeedRotationOption.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.HighSpeedRotationOption.md index 3ebebd74c1..d3b05d768f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.HighSpeedRotationOption.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.HighSpeedRotationOption.md @@ -1,4 +1,5 @@ -# Enum HighSpeedRotationOption +# Enum HighSpeedRotationOption + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.History.AddRemoveBodyToPartEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.History.AddRemoveBodyToPartEvent.md index aaae40fc35..f3b240f6d3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.History.AddRemoveBodyToPartEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.History.AddRemoveBodyToPartEvent.md @@ -1,4 +1,5 @@ -# Class AddRemoveBodyToPartEvent +# Class AddRemoveBodyToPartEvent + Namespace: [VM.Managed.DAFUL.History](VM.Managed.DAFUL.History.md) Assembly: VMDFBase.dll @@ -11,23 +12,23 @@ public class AddRemoveBodyToPartEvent : HistoryEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [AddRemoveBodyToPartEvent](VM.Managed.DAFUL.History.AddRemoveBodyToPartEvent.md) #### Inherited Members -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -49,7 +50,7 @@ public AddRemoveBodyToPartEvent(Document doc, UIntPtr key) `doc` Document -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr ## Methods @@ -63,7 +64,7 @@ protected override void AfterRedo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) The event argument @@ -77,7 +78,7 @@ protected override void AfterUndo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) The event argument @@ -91,7 +92,7 @@ protected override void Clear(bool bReserveReferenceCount) #### Parameters -`bReserveReferenceCount` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReserveReferenceCount` bool true to reserve reference count, otherwise false. @@ -105,7 +106,7 @@ protected override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) The event argument @@ -119,7 +120,7 @@ protected override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) The event argument diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.History.ConfigurationEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.History.ConfigurationEvent.md index 68de2c8aa4..1928f567af 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.History.ConfigurationEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.History.ConfigurationEvent.md @@ -1,4 +1,5 @@ -# Class ConfigurationEvent +# Class ConfigurationEvent + Namespace: [VM.Managed.DAFUL.History](VM.Managed.DAFUL.History.md) Assembly: VMDFBase.dll @@ -11,23 +12,23 @@ public class ConfigurationEvent : HistoryEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [ConfigurationEvent](VM.Managed.DAFUL.History.ConfigurationEvent.md) #### Inherited Members -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -47,7 +48,7 @@ public ConfigurationEvent(string strConfig, Document doc) #### Parameters -`strConfig` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strConfig` string The configuration information @@ -67,7 +68,7 @@ protected override void Clear(bool bReserveReferenceCount) #### Parameters -`bReserveReferenceCount` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReserveReferenceCount` bool reference count flag @@ -81,7 +82,7 @@ protected override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### RegisterConfigurationModified\(Configuration\) @@ -107,5 +108,5 @@ protected override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.History.RecalcMassAddon.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.History.RecalcMassAddon.md index 2973850fc2..3320702608 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.History.RecalcMassAddon.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.History.RecalcMassAddon.md @@ -1,4 +1,5 @@ -# Class RecalcMassAddon +# Class RecalcMassAddon + Namespace: [VM.Managed.DAFUL.History](VM.Managed.DAFUL.History.md) Assembly: VMDFBase.dll @@ -11,8 +12,8 @@ public class RecalcMassAddon : ObjectBaseAddon #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryManagerAddon ← +object ← +[HistoryManagerAddon](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) ← ObjectBaseAddon ← [RecalcMassAddon](VM.Managed.DAFUL.History.RecalcMassAddon.md) @@ -29,20 +30,20 @@ ObjectBaseAddon.Process\(object, HistoryEventArgs\), ObjectBaseAddon.AddEntity\(UIntPtr\), ObjectBaseAddon.RemoveEntity\(UIntPtr\), ObjectBaseAddon.List, -HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.Register\(HistoryManager\), -HistoryManagerAddon.ClearMarkCollection\(ICollection\), -HistoryManagerAddon.ClearMark\(HistoryMark\), -HistoryManagerAddon.Parent, -HistoryManagerAddon.DoneList, -HistoryManagerAddon.UndoneList +[HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Register\(HistoryManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMarkCollection\(ICollection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMark\(HistoryMark\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.DoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.UndoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) #### Extension Methods @@ -72,11 +73,11 @@ protected override void Process(object o, HistoryEventArgs args) #### Parameters -`o` [object](https://learn.microsoft.com/dotnet/api/system.object) +`o` object The object -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) The diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.History.RefreshAssembledBodyAddon.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.History.RefreshAssembledBodyAddon.md index 50d416f76e..3205c55f64 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.History.RefreshAssembledBodyAddon.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.History.RefreshAssembledBodyAddon.md @@ -1,4 +1,5 @@ -# Class RefreshAssembledBodyAddon +# Class RefreshAssembledBodyAddon + Namespace: [VM.Managed.DAFUL.History](VM.Managed.DAFUL.History.md) Assembly: VMDFBase.dll @@ -11,8 +12,8 @@ public class RefreshAssembledBodyAddon : ObjectBaseAddon #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryManagerAddon ← +object ← +[HistoryManagerAddon](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) ← ObjectBaseAddon ← [RefreshAssembledBodyAddon](VM.Managed.DAFUL.History.RefreshAssembledBodyAddon.md) @@ -29,20 +30,20 @@ ObjectBaseAddon.Process\(object, HistoryEventArgs\), ObjectBaseAddon.AddEntity\(UIntPtr\), ObjectBaseAddon.RemoveEntity\(UIntPtr\), ObjectBaseAddon.List, -HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.Register\(HistoryManager\), -HistoryManagerAddon.ClearMarkCollection\(ICollection\), -HistoryManagerAddon.ClearMark\(HistoryMark\), -HistoryManagerAddon.Parent, -HistoryManagerAddon.DoneList, -HistoryManagerAddon.UndoneList +[HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Register\(HistoryManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMarkCollection\(ICollection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMark\(HistoryMark\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.DoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.UndoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) #### Extension Methods @@ -72,11 +73,11 @@ protected override void Process(object o, HistoryEventArgs args) #### Parameters -`o` [object](https://learn.microsoft.com/dotnet/api/system.object) +`o` object The object -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) The diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.History.SetFaceRemoveEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.History.SetFaceRemoveEvent.md index d930442efa..b34903a3c2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.History.SetFaceRemoveEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.History.SetFaceRemoveEvent.md @@ -1,4 +1,5 @@ -# Class SetFaceRemoveEvent +# Class SetFaceRemoveEvent + Namespace: [VM.Managed.DAFUL.History](VM.Managed.DAFUL.History.md) Assembly: VMDFBase.dll @@ -11,23 +12,23 @@ public class SetFaceRemoveEvent : HistoryEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [SetFaceRemoveEvent](VM.Managed.DAFUL.History.SetFaceRemoveEvent.md) #### Inherited Members -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -47,11 +48,11 @@ public SetFaceRemoveEvent(UIntPtr ptrKey, UIntPtr ptrKeyTopology) #### Parameters -`ptrKey` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`ptrKey` UIntPtr key of set -`ptrKeyTopology` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`ptrKeyTopology` UIntPtr key of topology @@ -67,7 +68,7 @@ protected override void Clear(bool bReserveReferenceCount) #### Parameters -`bReserveReferenceCount` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReserveReferenceCount` bool reference count flag @@ -81,7 +82,7 @@ protected override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) The argument @@ -95,7 +96,7 @@ protected override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) The argument diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.History.UpdateAssembledBodyEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.History.UpdateAssembledBodyEvent.md index 8e6ec8f510..8f7c47fabe 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.History.UpdateAssembledBodyEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.History.UpdateAssembledBodyEvent.md @@ -1,4 +1,5 @@ -# Class UpdateAssembledBodyEvent +# Class UpdateAssembledBodyEvent + Namespace: [VM.Managed.DAFUL.History](VM.Managed.DAFUL.History.md) Assembly: VMDFBase.dll @@ -11,23 +12,23 @@ public class UpdateAssembledBodyEvent : HistoryEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [UpdateAssembledBodyEvent](VM.Managed.DAFUL.History.UpdateAssembledBodyEvent.md) #### Inherited Members -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -49,7 +50,7 @@ public UpdateAssembledBodyEvent(PartDocument doc, UIntPtr key) `doc` [PartDocument](VM.Managed.DAFUL.PartDocument.md) -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr ## Methods @@ -63,7 +64,7 @@ protected override void AfterRedo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) The event argument @@ -77,7 +78,7 @@ protected override void AfterUndo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) The event argument @@ -91,7 +92,7 @@ protected override void Clear(bool bReserveReferenceCount) #### Parameters -`bReserveReferenceCount` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReserveReferenceCount` bool true to reserve reference count, otherwise false. @@ -105,7 +106,7 @@ protected override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) The event argument @@ -119,7 +120,7 @@ protected override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) The event argument diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.History.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.History.md index 019da9d175..4aa38ffa56 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.History.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.History.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.History +# Namespace VM.Managed.DAFUL.History + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IApplyInitialVelocity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IApplyInitialVelocity.md index 251829aaa9..0ada8da0da 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IApplyInitialVelocity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IApplyInitialVelocity.md @@ -1,4 +1,5 @@ -# Interface IApplyInitialVelocity +# Interface IApplyInitialVelocity + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -25,7 +26,7 @@ bool ApplyInitialVelocity { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### InitialVelocity @@ -37,5 +38,5 @@ double InitialVelocity { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IBCComponent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IBCComponent.md index a26450a0ce..ba94d32c00 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IBCComponent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IBCComponent.md @@ -1,4 +1,5 @@ -# Interface IBCComponent +# Interface IBCComponent + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IBodyAnalysisType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IBodyAnalysisType.md index cf11037525..41f63998dd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IBodyAnalysisType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IBodyAnalysisType.md @@ -1,4 +1,5 @@ -# Interface IBodyAnalysisType +# Interface IBodyAnalysisType + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IBodySegmentBearing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IBodySegmentBearing.md index 38c892e197..6af0dab322 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IBodySegmentBearing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IBodySegmentBearing.md @@ -1,4 +1,5 @@ -# Interface IBodySegmentBearing +# Interface IBodySegmentBearing + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IBodySegmentShaft.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IBodySegmentShaft.md index 6f4b17fb30..19af26948d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IBodySegmentShaft.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IBodySegmentShaft.md @@ -1,4 +1,5 @@ -# Interface IBodySegmentShaft +# Interface IBodySegmentShaft + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IBodySegmentSpeedGear.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IBodySegmentSpeedGear.md index 7d5e04f1d0..2383509c45 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IBodySegmentSpeedGear.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IBodySegmentSpeedGear.md @@ -1,4 +1,5 @@ -# Interface IBodySegmentSpeedGear +# Interface IBodySegmentSpeedGear + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ICLoadComponent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ICLoadComponent.md index 6360c6a374..36f6f2568f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ICLoadComponent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ICLoadComponent.md @@ -1,4 +1,5 @@ -# Interface ICLoadComponent +# Interface ICLoadComponent + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IChangableAssembly.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IChangableAssembly.md index 9a5613f084..1085f1039e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IChangableAssembly.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IChangableAssembly.md @@ -1,4 +1,5 @@ -# Interface IChangableAssembly +# Interface IChangableAssembly + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -39,7 +40,7 @@ string FilePath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IChildItem.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IChildItem.md index 046b289158..955018f7e8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IChildItem.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IChildItem.md @@ -1,4 +1,5 @@ -# Interface IChildItem +# Interface IChildItem + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IConnectable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IConnectable.md index 3091be628b..67975fdab0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IConnectable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IConnectable.md @@ -1,4 +1,5 @@ -# Interface IConnectable +# Interface IConnectable + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -57,7 +58,7 @@ string ConnectableFullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ConnectableName @@ -69,7 +70,7 @@ string ConnectableName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ConnectablePosition @@ -93,5 +94,5 @@ string ConnectablePostfixName { set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IConnectableHasGeometry.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IConnectableHasGeometry.md index c0713e2f7a..5135a7652f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IConnectableHasGeometry.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IConnectableHasGeometry.md @@ -1,4 +1,5 @@ -# Interface IConnectableHasGeometry +# Interface IConnectableHasGeometry + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -34,5 +35,5 @@ List Geometry { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IConnectableNotReference.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IConnectableNotReference.md index 2f029fca19..0bdb2a3305 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IConnectableNotReference.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IConnectableNotReference.md @@ -1,4 +1,5 @@ -# Interface IConnectableNotReference +# Interface IConnectableNotReference + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IConnector.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IConnector.md index 69568014a6..a625b1cb0f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IConnector.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IConnector.md @@ -1,4 +1,5 @@ -# Interface IConnector +# Interface IConnector + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -92,7 +93,7 @@ bool PreventDuplicatedRBE { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Property @@ -104,5 +105,5 @@ Property Property { get; set; } #### Property Value - Property + [Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactGeometry.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactGeometry.md index ab02e62189..ce21429130 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactGeometry.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactGeometry.md @@ -1,4 +1,5 @@ -# Interface IContactGeometry +# Interface IContactGeometry + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -39,7 +40,7 @@ ExpressionValueVariable MaxPenetration { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ReferenceMarker @@ -87,7 +88,7 @@ The direction. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactGeometry2D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactGeometry2D.md index dae1405ab5..1c8f905c43 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactGeometry2D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactGeometry2D.md @@ -1,4 +1,5 @@ -# Interface IContactGeometry2D +# Interface IContactGeometry2D + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactGeometry3D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactGeometry3D.md index 358d44d3aa..26269c18bb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactGeometry3D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactGeometry3D.md @@ -1,4 +1,5 @@ -# Interface IContactGeometry3D +# Interface IContactGeometry3D + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -31,7 +32,7 @@ ExpressionValueVariable HalfThickness { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### SurfaceSmoothingType @@ -67,7 +68,7 @@ The direction. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactable.md index f2d21d2fc0..8309f4366f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactable.md @@ -1,4 +1,5 @@ -# Interface IContactable +# Interface IContactable + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -34,7 +35,7 @@ string GeometryFullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GeometryNameForMultiContact @@ -46,7 +47,7 @@ string GeometryNameForMultiContact { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IsActionGeometry @@ -58,7 +59,7 @@ bool IsActionGeometry { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsBaseGeometry @@ -70,7 +71,7 @@ bool IsBaseGeometry { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -84,7 +85,7 @@ bool GetDefaultMaxPenetration(ref double dMaxPenetration, IReferencable referenc #### Parameters -`dMaxPenetration` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMaxPenetration` double The d max penetration. @@ -94,7 +95,7 @@ The reference. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactable3D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactable3D.md index d78104f162..27b0416b9d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactable3D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactable3D.md @@ -1,4 +1,5 @@ -# Interface IContactable3D +# Interface IContactable3D + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -35,7 +36,7 @@ ExpressionValueVariable HalfThickness { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MaxPenetration @@ -47,7 +48,7 @@ ExpressionValueVariable MaxPenetration { get; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### SurfaceSmoothingType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactableFlex3D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactableFlex3D.md index 7942748649..b37aade3bc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactableFlex3D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactableFlex3D.md @@ -1,4 +1,5 @@ -# Interface IContactableFlex3D +# Interface IContactableFlex3D + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactableGeometry2Dot5D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactableGeometry2Dot5D.md index bfbe12ec96..964834f1ea 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactableGeometry2Dot5D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactableGeometry2Dot5D.md @@ -1,4 +1,5 @@ -# Interface IContactableGeometry2Dot5D +# Interface IContactableGeometry2Dot5D + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -48,7 +49,7 @@ The reference. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactableRigid.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactableRigid.md index dd2bcda5d4..a2d1c0a1e4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactableRigid.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactableRigid.md @@ -1,4 +1,5 @@ -# Interface IContactableRigid +# Interface IContactableRigid + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactableRigid2D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactableRigid2D.md index ff4b779dcf..befe15271a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactableRigid2D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactableRigid2D.md @@ -1,4 +1,5 @@ -# Interface IContactableRigid2D +# Interface IContactableRigid2D + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -36,7 +37,7 @@ bool IsCloseLoop { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ParentBody @@ -90,17 +91,17 @@ int GetProfilePoint(ref bool bCloseLoop, ref List lst) #### Parameters -`bCloseLoop` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bCloseLoop` bool true if this instance is close loop; otherwise, false. -`lst` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lst` List The points. #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int the profile point. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactableRigid3D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactableRigid3D.md index 6943bc0ea1..d5106bc7e5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactableRigid3D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IContactableRigid3D.md @@ -1,4 +1,5 @@ -# Interface IContactableRigid3D +# Interface IContactableRigid3D + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -37,7 +38,7 @@ bool IsRepresentedAsBSurface { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -65,7 +66,7 @@ The reference. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IConvectionComponent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IConvectionComponent.md index 4b461f1377..dd81995dc4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IConvectionComponent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IConvectionComponent.md @@ -1,4 +1,5 @@ -# Interface IConvectionComponent +# Interface IConvectionComponent + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ICouplerComponent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ICouplerComponent.md index 7aa96b8b83..a49bd88c00 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ICouplerComponent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ICouplerComponent.md @@ -1,4 +1,5 @@ -# Interface ICouplerComponent +# Interface ICouplerComponent + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ICurvesetComponent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ICurvesetComponent.md index be0a11788a..6c3e6b0593 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ICurvesetComponent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ICurvesetComponent.md @@ -1,4 +1,5 @@ -# Interface ICurvesetComponent +# Interface ICurvesetComponent + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ICurvesetCreatable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ICurvesetCreatable.md index 2d4fccf97d..7628b212b8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ICurvesetCreatable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ICurvesetCreatable.md @@ -1,4 +1,5 @@ -# Interface ICurvesetCreatable +# Interface ICurvesetCreatable + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ICustomFullName.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ICustomFullName.md index 91d02aaf17..8da217d250 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ICustomFullName.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ICustomFullName.md @@ -1,4 +1,5 @@ -# Interface ICustomFullName +# Interface ICustomFullName + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -33,5 +34,5 @@ The document #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IFaceSetComponent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IFaceSetComponent.md index 698be30189..8cf0ffa300 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IFaceSetComponent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IFaceSetComponent.md @@ -1,4 +1,5 @@ -# Interface IFaceSetComponent +# Interface IFaceSetComponent + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IFacesetCreatable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IFacesetCreatable.md index 63b7c6fb5d..0f8e522860 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IFacesetCreatable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IFacesetCreatable.md @@ -1,4 +1,5 @@ -# Interface IFacesetCreatable +# Interface IFacesetCreatable + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IFlipImpl.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IFlipImpl.md index 65c14cb90f..84daad3354 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IFlipImpl.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IFlipImpl.md @@ -1,4 +1,5 @@ -# Class IFlipImpl +# Class IFlipImpl + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -9,7 +10,7 @@ public class IFlipImpl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [IFlipImpl](VM.Managed.DAFUL.IFlipImpl.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IForceComponent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IForceComponent.md index e7dcf2fdb0..e2f97d0bba 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IForceComponent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IForceComponent.md @@ -1,4 +1,5 @@ -# Interface IForceComponent +# Interface IForceComponent + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -27,7 +28,7 @@ bool IsAvailable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IGapSupport.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IGapSupport.md index 999da12a24..f39e4b7ef8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IGapSupport.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IGapSupport.md @@ -1,4 +1,5 @@ -# Interface IGapSupport +# Interface IGapSupport + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IGapTarget.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IGapTarget.md index 5c0c4ed3e5..02022c41a5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IGapTarget.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IGapTarget.md @@ -1,4 +1,5 @@ -# Interface IGapTarget +# Interface IGapTarget + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -27,7 +28,7 @@ ExpressionValueVariable Gap { get; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -41,7 +42,7 @@ void SetGap(string strValue) #### Parameters -`strValue` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strValue` string The value diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IGeneralContact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IGeneralContact.md index ebfb0ec25e..beb7ba78e5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IGeneralContact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IGeneralContact.md @@ -1,4 +1,5 @@ -# Interface IGeneralContact +# Interface IGeneralContact + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -33,7 +34,7 @@ The faceset. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if faceset's geometry type is sphere and it will be ignored; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IGeometricalComponent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IGeometricalComponent.md index 61e476be70..4591a9f831 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IGeometricalComponent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IGeometricalComponent.md @@ -1,4 +1,5 @@ -# Interface IGeometricalComponent +# Interface IGeometricalComponent + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -27,17 +28,17 @@ bool GetGeometryNavigatorInformation(XmlDocument xmlDom, XmlElement xmlEle) #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument information. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement information. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -65,7 +66,7 @@ The reference. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IHasCenterMarkerForGround.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IHasCenterMarkerForGround.md index dd13c1d4fb..9fd705d772 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IHasCenterMarkerForGround.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IHasCenterMarkerForGround.md @@ -1,4 +1,5 @@ -# Interface IHasCenterMarkerForGround +# Interface IHasCenterMarkerForGround + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -27,5 +28,5 @@ bool IsZeroPosition { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IHasPlacing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IHasPlacing.md index 374d0e24fe..16fcf4b853 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IHasPlacing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IHasPlacing.md @@ -1,4 +1,5 @@ -# Interface IHasPlacing +# Interface IHasPlacing + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -27,7 +28,7 @@ InstanceContainer[] Paths { get; } #### Property Value - InstanceContainer\[\] + [InstanceContainer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs)\[\] ### Placing diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IHasResult.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IHasResult.md index 298f73bee0..f85747505f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IHasResult.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IHasResult.md @@ -1,4 +1,5 @@ -# Interface IHasResult +# Interface IHasResult + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSP.dll @@ -27,7 +28,7 @@ void AddLargeAmountResult(int nCount) #### Parameters -`nCount` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nCount` int The amount count. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IHasSubChangableEntity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IHasSubChangableEntity.md index cdf9fffe55..16e763f39f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IHasSubChangableEntity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IHasSubChangableEntity.md @@ -1,4 +1,5 @@ -# Interface IHasSubChangableEntity +# Interface IHasSubChangableEntity + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -29,7 +30,7 @@ void GetSubChangableEntity(Dictionary dicObj) #### Parameters -`dicObj` [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), ObjectBase\> +`dicObj` Dictionary The object dictionary. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IHeatFlowComponent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IHeatFlowComponent.md index 0e6541a0f1..ad658fdb19 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IHeatFlowComponent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IHeatFlowComponent.md @@ -1,4 +1,5 @@ -# Interface IHeatFlowComponent +# Interface IHeatFlowComponent + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IHeatFluxComponent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IHeatFluxComponent.md index bfc55b103a..3fc570d81e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IHeatFluxComponent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IHeatFluxComponent.md @@ -1,4 +1,5 @@ -# Interface IHeatFluxComponent +# Interface IHeatFluxComponent + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IHeatGenerationComponent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IHeatGenerationComponent.md index 8f41fd9ad8..8d372f43b3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IHeatGenerationComponent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IHeatGenerationComponent.md @@ -1,4 +1,5 @@ -# Interface IHeatGenerationComponent +# Interface IHeatGenerationComponent + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IMFModalable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IMFModalable.md index 7ab92cd79b..ed6be7d990 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IMFModalable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IMFModalable.md @@ -1,4 +1,5 @@ -# Interface IMFModalable +# Interface IMFModalable + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -27,7 +28,7 @@ string DFMFPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### LastModifiedTimeToDFMFFile @@ -39,7 +40,7 @@ string LastModifiedTimeToDFMFFile { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ModeArray diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IManualTransmissionComponent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IManualTransmissionComponent.md index 661b6f58e6..9059519aeb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IManualTransmissionComponent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IManualTransmissionComponent.md @@ -1,4 +1,5 @@ -# Interface IManualTransmissionComponent +# Interface IManualTransmissionComponent + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IMarkerCreatable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IMarkerCreatable.md index cf03eb2a4f..7f7075c7d8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IMarkerCreatable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IMarkerCreatable.md @@ -1,4 +1,5 @@ -# Interface IMarkerCreatable +# Interface IMarkerCreatable + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IMarkerParent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IMarkerParent.md index 7e2729fca1..f7fd3e18b2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IMarkerParent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IMarkerParent.md @@ -1,4 +1,5 @@ -# Interface IMarkerParent +# Interface IMarkerParent + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.INTSFContactable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.INTSFContactable.md index be54bc0368..b09bf8b3aa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.INTSFContactable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.INTSFContactable.md @@ -1,4 +1,5 @@ -# Interface INTSFContactable +# Interface INTSFContactable + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.INodeSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.INodeSet.md index f59473a64c..dd67088069 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.INodeSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.INodeSet.md @@ -1,4 +1,5 @@ -# Interface INodeSet +# Interface INodeSet + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -31,7 +32,7 @@ uint GetPointCount() #### Returns - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint The count of node point. @@ -45,7 +46,7 @@ VectorBase GetPointPosition(uint index, IReferencable reference) #### Parameters -`index` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`index` uint The index. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IPLoadComponent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IPLoadComponent.md index 24d7e152a4..20dd045375 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IPLoadComponent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IPLoadComponent.md @@ -1,4 +1,5 @@ -# Interface IPLoadComponent +# Interface IPLoadComponent + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -31,7 +32,7 @@ void GetCenterPositionDirection(uint index, ref VectorBase center, ref VectorBas #### Parameters -`index` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`index` uint The index. @@ -57,7 +58,7 @@ uint GetPatchCount() #### Returns - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint The count of patch. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IPointRegion.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IPointRegion.md index 66b0ca6917..971ce4dc12 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IPointRegion.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IPointRegion.md @@ -1,4 +1,5 @@ -# Interface IPointRegion +# Interface IPointRegion + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IPointSetComponent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IPointSetComponent.md index b796085ff1..4ddb7280ce 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IPointSetComponent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IPointSetComponent.md @@ -1,4 +1,5 @@ -# Interface IPointSetComponent +# Interface IPointSetComponent + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IRScalarComponent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IRScalarComponent.md index d550dc1b55..8144c2c39a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IRScalarComponent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IRScalarComponent.md @@ -1,4 +1,5 @@ -# Interface IRScalarComponent +# Interface IRScalarComponent + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IRSpringDamperComponent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IRSpringDamperComponent.md index 9386cfd386..2384d3cbce 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IRSpringDamperComponent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IRSpringDamperComponent.md @@ -1,4 +1,5 @@ -# Interface IRSpringDamperComponent +# Interface IRSpringDamperComponent + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IRegion.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IRegion.md index 90169d905b..81f4e99e72 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IRegion.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IRegion.md @@ -1,4 +1,5 @@ -# Interface IRegion +# Interface IRegion + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IReportable.ReportEntityType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IReportable.ReportEntityType.md index 0e290e5af9..6eba04d7fc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IReportable.ReportEntityType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IReportable.ReportEntityType.md @@ -1,4 +1,5 @@ -# Enum IReportable.ReportEntityType +# Enum IReportable.ReportEntityType + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -121,3 +122,5 @@ public enum IReportable.ReportEntityType `SubentityStructural = 5` +`Unknown = -1` + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IReportable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IReportable.md index 0364c94233..b0c5f90f62 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IReportable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IReportable.md @@ -1,4 +1,5 @@ -# Interface IReportable +# Interface IReportable + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -23,7 +24,7 @@ bool CanWriteToOutFile { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MultiEntityName @@ -33,7 +34,7 @@ List MultiEntityName { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### ReportType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IRotationalMotionComponent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IRotationalMotionComponent.md index 5e228aedfe..3664fef59b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IRotationalMotionComponent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IRotationalMotionComponent.md @@ -1,4 +1,5 @@ -# Interface IRotationalMotionComponent +# Interface IRotationalMotionComponent + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ITemperatureComponent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ITemperatureComponent.md index 4280305e95..d10e38c5dd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ITemperatureComponent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ITemperatureComponent.md @@ -1,4 +1,5 @@ -# Interface ITemperatureComponent +# Interface ITemperatureComponent + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IThermalContactBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IThermalContactBase.md index ee2e5126d9..019a7b47cb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IThermalContactBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IThermalContactBase.md @@ -1,4 +1,5 @@ -# Interface IThermalContactBase +# Interface IThermalContactBase + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IThermalContactable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IThermalContactable.md index 0f22a5e474..36bc7b1562 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IThermalContactable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.IThermalContactable.md @@ -1,4 +1,5 @@ -# Interface IThermalContactable +# Interface IThermalContactable + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ITieContactable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ITieContactable.md index f20919de23..ff1d80603e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ITieContactable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ITieContactable.md @@ -1,4 +1,5 @@ -# Interface ITieContactable +# Interface ITieContactable + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ITorqueReferenceForBearing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ITorqueReferenceForBearing.md index 553eb4bfca..212dc5749b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ITorqueReferenceForBearing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ITorqueReferenceForBearing.md @@ -1,4 +1,5 @@ -# Interface ITorqueReferenceForBearing +# Interface ITorqueReferenceForBearing + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -27,5 +28,5 @@ string TorqueReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ITranslationalMotionComponent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ITranslationalMotionComponent.md index 1f5558f3a1..5b1f03cb6c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ITranslationalMotionComponent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ITranslationalMotionComponent.md @@ -1,4 +1,5 @@ -# Interface ITranslationalMotionComponent +# Interface ITranslationalMotionComponent + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.InterpolationType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.InterpolationType.md index be0a4ab335..1235e4ea04 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.InterpolationType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.InterpolationType.md @@ -1,4 +1,5 @@ -# Enum InterpolationType +# Enum InterpolationType + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSB.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.InvisibleMarker.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.InvisibleMarker.md index 0813d12ea1..a5fbcbe9ce 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.InvisibleMarker.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.InvisibleMarker.md @@ -1,4 +1,5 @@ -# Class InvisibleMarker +# Class InvisibleMarker + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,14 +12,14 @@ public class InvisibleMarker : Marker, IObservableObject, IDisposableObject, ILi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← -DesignSubEntity ← -DesignFrame ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← +[DesignSubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs) ← +[DesignFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs) ← [Marker](VM.Managed.DAFUL.Marker.md) ← [InvisibleMarker](VM.Managed.DAFUL.InvisibleMarker.md) @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, INamed, INavigatorItem, @@ -77,45 +78,45 @@ IMarker [Marker.ReferenceType](VM.Managed.DAFUL.Marker.md\#VM\_Managed\_DAFUL\_Marker\_ReferenceType), [Marker.ArgumentType](VM.Managed.DAFUL.Marker.md\#VM\_Managed\_DAFUL\_Marker\_ArgumentType), [Marker.FrameIconName](VM.Managed.DAFUL.Marker.md\#VM\_Managed\_DAFUL\_Marker\_FrameIconName), -DesignFrame.Initialize\(Unit.ConvertFactor\), -DesignFrame.LinkRequestUpdate\(object, LinkEventArgs\), -DesignFrame.GetDirection\(Coordinate\), -DesignFrame.GetFullName\(\), -DesignFrame.Draw\(Canvas\), -DesignFrame.ReDraw\(\), -DesignFrame.InstantiateImpl\(Reference, Canvas\), -DesignFrame.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\), -DesignFrame.WriteTemplateImpl\(XmlWriter\), -DesignFrame.ReadTemplateImpl\(XmlReader\), -DesignFrame.Transformation, -DesignFrame.Value, -DesignFrame.X, -DesignFrame.Y, -DesignFrame.Z, -DesignFrame.Orientation, -DesignFrame.Position, -DesignFrame.TransformationMatrix, -DesignFrame.Hide, -DesignFrame.FrameIconName, -DesignFrame.Layer, -DesignFrame.IsVisible, -DesignSubEntity.m\_bSkipToUpdateSymmetric, -DesignSubEntity.g\_dicUpdatedDesignSubEntity, -DesignSubEntity.FixUp\(ObjectBase\), -DesignSubEntity.CheckCircularReference\(\), -DesignSubEntity.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\), -DesignSubEntity.IsInterface, -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[DesignFrame.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.GetDirection\(Coordinate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.GetFullName\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.InstantiateImpl\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Transformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Value](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.X](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Y](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Z](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Orientation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Position](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.TransformationMatrix](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.FrameIconName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignSubEntity.m\_bSkipToUpdateSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.g\_dicUpdatedDesignSubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.CheckCircularReference\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.IsInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -208,7 +209,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -249,7 +250,7 @@ public static string RMName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -263,7 +264,7 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -277,21 +278,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.JointType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.JointType.md index 30372f89da..92556d4a56 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.JointType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.JointType.md @@ -1,4 +1,5 @@ -# Enum JointType +# Enum JointType + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.KernelOperationGetPointsOnCurve.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.KernelOperationGetPointsOnCurve.md index 43944e2277..5021f62852 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.KernelOperationGetPointsOnCurve.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.KernelOperationGetPointsOnCurve.md @@ -1,4 +1,5 @@ -# Class KernelOperationGetPointsOnCurve +# Class KernelOperationGetPointsOnCurve + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDBallPlacing.dll @@ -11,7 +12,7 @@ public class KernelOperationGetPointsOnCurve #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [KernelOperationGetPointsOnCurve](VM.Managed.DAFUL.KernelOperationGetPointsOnCurve.md) #### Extension Methods @@ -40,7 +41,7 @@ public string BallSpacingMethod { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Count @@ -52,7 +53,7 @@ public int Count { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Distance @@ -64,7 +65,7 @@ public double Distance { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### IsClosed @@ -76,7 +77,7 @@ public bool IsClosed { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Points @@ -88,7 +89,7 @@ public List Points { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### ShiftOfStartPosition @@ -100,5 +101,5 @@ public double ShiftOfStartPosition { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.KernelOperationGetSlicePoints.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.KernelOperationGetSlicePoints.md index 768cd7e3de..7ff5f0c584 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.KernelOperationGetSlicePoints.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.KernelOperationGetSlicePoints.md @@ -1,4 +1,5 @@ -# Class KernelOperationGetSlicePoints +# Class KernelOperationGetSlicePoints + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDBallPlacing.dll @@ -11,7 +12,7 @@ public class KernelOperationGetSlicePoints #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [KernelOperationGetSlicePoints](VM.Managed.DAFUL.KernelOperationGetSlicePoints.md) #### Extension Methods @@ -40,7 +41,7 @@ public double CuttingPlaneRadius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Points @@ -52,7 +53,7 @@ public List Points { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### SliceInfos @@ -64,7 +65,7 @@ public List SliceInfos { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[XmlSliceInfo](VM.Managed.DAFUL.XmlSliceInfo.md)\> + List<[XmlSliceInfo](VM.Managed.DAFUL.XmlSliceInfo.md)\> ### TargetBody diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.KeyInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.KeyInfo.md index 709cf19474..0d840aef12 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.KeyInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.KeyInfo.md @@ -1,4 +1,5 @@ -# Class KeyInfo +# Class KeyInfo + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDBallPlacing.dll @@ -11,7 +12,7 @@ public class KeyInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [KeyInfo](VM.Managed.DAFUL.KeyInfo.md) #### Extension Methods @@ -40,5 +41,5 @@ public string Key { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Actuator-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Actuator-1.md index 76698f4dae..d373c301d6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Actuator-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Actuator-1.md @@ -1,4 +1,5 @@ -# Class Actuator +# Class Actuator + Namespace: [VM.Managed.DAFUL.Linear](VM.Managed.DAFUL.Linear.md) Assembly: VMDLinear.dll @@ -18,14 +19,14 @@ The type of the property. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [Actuator](VM.Managed.DAFUL.Linear.Actuator\-1.md) #### Implements @@ -35,7 +36,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -61,34 +62,34 @@ IGroup #### Inherited Members -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -187,7 +188,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -226,7 +227,7 @@ public Actuator(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -242,7 +243,7 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TypeOfActuator diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.ActuatorPSD.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.ActuatorPSD.md index 4588ea10d1..c6b202e9b3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.ActuatorPSD.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.ActuatorPSD.md @@ -1,4 +1,5 @@ -# Class ActuatorPSD +# Class ActuatorPSD + Namespace: [VM.Managed.DAFUL.Linear](VM.Managed.DAFUL.Linear.md) Assembly: VMDLinear.dll @@ -11,14 +12,14 @@ public class ActuatorPSD : Actuator, IObservableObject, IDi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [Actuator](VM.Managed.DAFUL.Linear.Actuator\-1.md) ← [ActuatorPSD](VM.Managed.DAFUL.Linear.ActuatorPSD.md) @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -58,34 +59,34 @@ IGroup [Actuator.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.Linear.Actuator\-1.md\#VM\_Managed\_DAFUL\_Linear\_Actuator\_1\_Initialize\_VM\_Unit\_ConvertFactor\_), [Actuator.TypeOfActuator](VM.Managed.DAFUL.Linear.Actuator\-1.md\#VM\_Managed\_DAFUL\_Linear\_Actuator\_1\_TypeOfActuator), [Actuator.HasLayerExplicitly](VM.Managed.DAFUL.Linear.Actuator\-1.md\#VM\_Managed\_DAFUL\_Linear\_Actuator\_1\_HasLayerExplicitly), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -184,7 +185,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -223,7 +224,7 @@ public ActuatorPSD(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.ActuatorRotatingMass.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.ActuatorRotatingMass.md index 58e6852b9a..d8ab300937 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.ActuatorRotatingMass.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.ActuatorRotatingMass.md @@ -1,4 +1,5 @@ -# Class ActuatorRotatingMass +# Class ActuatorRotatingMass + Namespace: [VM.Managed.DAFUL.Linear](VM.Managed.DAFUL.Linear.md) Assembly: VMDLinear.dll @@ -11,14 +12,14 @@ public class ActuatorRotatingMass : Actuator, IObs #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [Actuator](VM.Managed.DAFUL.Linear.Actuator\-1.md) ← [ActuatorRotatingMass](VM.Managed.DAFUL.Linear.ActuatorRotatingMass.md) @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -58,34 +59,34 @@ IGroup [Actuator.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.Linear.Actuator\-1.md\#VM\_Managed\_DAFUL\_Linear\_Actuator\_1\_Initialize\_VM\_Unit\_ConvertFactor\_), [Actuator.TypeOfActuator](VM.Managed.DAFUL.Linear.Actuator\-1.md\#VM\_Managed\_DAFUL\_Linear\_Actuator\_1\_TypeOfActuator), [Actuator.HasLayerExplicitly](VM.Managed.DAFUL.Linear.Actuator\-1.md\#VM\_Managed\_DAFUL\_Linear\_Actuator\_1\_HasLayerExplicitly), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -184,7 +185,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -223,7 +224,7 @@ public ActuatorRotatingMass(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.ActuatorSweptSine.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.ActuatorSweptSine.md index 1d78d3bda2..e5644f02b0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.ActuatorSweptSine.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.ActuatorSweptSine.md @@ -1,4 +1,5 @@ -# Class ActuatorSweptSine +# Class ActuatorSweptSine + Namespace: [VM.Managed.DAFUL.Linear](VM.Managed.DAFUL.Linear.md) Assembly: VMDLinear.dll @@ -11,14 +12,14 @@ public class ActuatorSweptSine : Actuator, IObservabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [Actuator](VM.Managed.DAFUL.Linear.Actuator\-1.md) ← [ActuatorSweptSine](VM.Managed.DAFUL.Linear.ActuatorSweptSine.md) @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -58,34 +59,34 @@ IGroup [Actuator.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.Linear.Actuator\-1.md\#VM\_Managed\_DAFUL\_Linear\_Actuator\_1\_Initialize\_VM\_Unit\_ConvertFactor\_), [Actuator.TypeOfActuator](VM.Managed.DAFUL.Linear.Actuator\-1.md\#VM\_Managed\_DAFUL\_Linear\_Actuator\_1\_TypeOfActuator), [Actuator.HasLayerExplicitly](VM.Managed.DAFUL.Linear.Actuator\-1.md\#VM\_Managed\_DAFUL\_Linear\_Actuator\_1\_HasLayerExplicitly), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -184,7 +185,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -223,7 +224,7 @@ public ActuatorSweptSine(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.ActuatorType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.ActuatorType.md index 1ac6cab916..4c185875d0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.ActuatorType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.ActuatorType.md @@ -1,4 +1,5 @@ -# Enum ActuatorType +# Enum ActuatorType + Namespace: [VM.Managed.DAFUL.Linear](VM.Managed.DAFUL.Linear.md) Assembly: VMDLinear.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.ActuatorUser.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.ActuatorUser.md index 4ca078767f..90263b75e6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.ActuatorUser.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.ActuatorUser.md @@ -1,4 +1,5 @@ -# Class ActuatorUser +# Class ActuatorUser + Namespace: [VM.Managed.DAFUL.Linear](VM.Managed.DAFUL.Linear.md) Assembly: VMDLinear.dll @@ -11,14 +12,14 @@ public class ActuatorUser : Actuator, IObservableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [Actuator](VM.Managed.DAFUL.Linear.Actuator\-1.md) ← [ActuatorUser](VM.Managed.DAFUL.Linear.ActuatorUser.md) @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -58,34 +59,34 @@ IGroup [Actuator.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.Linear.Actuator\-1.md\#VM\_Managed\_DAFUL\_Linear\_Actuator\_1\_Initialize\_VM\_Unit\_ConvertFactor\_), [Actuator.TypeOfActuator](VM.Managed.DAFUL.Linear.Actuator\-1.md\#VM\_Managed\_DAFUL\_Linear\_Actuator\_1\_TypeOfActuator), [Actuator.HasLayerExplicitly](VM.Managed.DAFUL.Linear.Actuator\-1.md\#VM\_Managed\_DAFUL\_Linear\_Actuator\_1\_HasLayerExplicitly), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -184,7 +185,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -223,7 +224,7 @@ public ActuatorUser(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.AttributeEigenvalueAnalysisParameter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.AttributeEigenvalueAnalysisParameter.md index f1f0f0ae73..e1a9a6c6db 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.AttributeEigenvalueAnalysisParameter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.AttributeEigenvalueAnalysisParameter.md @@ -1,4 +1,5 @@ -# Class AttributeEigenvalueAnalysisParameter +# Class AttributeEigenvalueAnalysisParameter + Namespace: [VM.Managed.DAFUL.Linear](VM.Managed.DAFUL.Linear.md) Assembly: VMDLinear.dll @@ -12,9 +13,9 @@ public class AttributeEigenvalueAnalysisParameter : AttributeBase, IObservableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeEigenvalueAnalysisParameter](VM.Managed.DAFUL.Linear.AttributeEigenvalueAnalysisParameter.md) @@ -79,7 +80,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -120,7 +121,7 @@ public string LinearResultPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Parameter @@ -132,7 +133,7 @@ public EigenvalueAnalysisParameter Parameter { get; set; } #### Property Value - EigenvalueAnalysisParameter + [EigenvalueAnalysisParameter](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/EigenvalueAnalysisParameter.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.ChannelInput.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.ChannelInput.md index 41d21a0717..a0984eb1df 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.ChannelInput.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.ChannelInput.md @@ -1,4 +1,5 @@ -# Class ChannelInput +# Class ChannelInput + Namespace: [VM.Managed.DAFUL.Linear](VM.Managed.DAFUL.Linear.md) Assembly: VMDLinear.dll @@ -12,15 +13,15 @@ public class ChannelInput : Marker, IObservableObject, IDisposableObject, ILinka #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← -DesignSubEntity ← -DesignFrame ← -Marker ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← +[DesignSubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs) ← +[DesignFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs) ← +[Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) ← [ChannelInput](VM.Managed.DAFUL.Linear.ChannelInput.md) #### Implements @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, INamed, INavigatorItem, @@ -68,57 +69,57 @@ IHasReplaceableEntity #### Inherited Members -Marker.Initialize\(Unit.ConvertFactor\), -Marker.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -Marker.LinkRequestUpdating\(object, LinkEventArgs\), -Marker.LinkRequestUpdate\(object, LinkEventArgs\), -Marker.LinkRequestDestroy\(object, LinkEventArgs\), -Marker.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Marker.GetModelNavigatorInformationImplCore\(XmlDocument, XmlElement, bool\), -Marker.ParentConnectable, -Marker.\_ParentConnectable, -Marker.ReferenceType, -Marker.ArgumentType, -Marker.FrameIconName, -DesignFrame.Initialize\(Unit.ConvertFactor\), -DesignFrame.LinkRequestUpdate\(object, LinkEventArgs\), -DesignFrame.GetDirection\(Coordinate\), -DesignFrame.GetFullName\(\), -DesignFrame.Draw\(Canvas\), -DesignFrame.ReDraw\(\), -DesignFrame.InstantiateImpl\(Reference, Canvas\), -DesignFrame.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\), -DesignFrame.WriteTemplateImpl\(XmlWriter\), -DesignFrame.ReadTemplateImpl\(XmlReader\), -DesignFrame.Transformation, -DesignFrame.Value, -DesignFrame.X, -DesignFrame.Y, -DesignFrame.Z, -DesignFrame.Orientation, -DesignFrame.Position, -DesignFrame.TransformationMatrix, -DesignFrame.Hide, -DesignFrame.FrameIconName, -DesignFrame.Layer, -DesignFrame.IsVisible, -DesignSubEntity.m\_bSkipToUpdateSymmetric, -DesignSubEntity.g\_dicUpdatedDesignSubEntity, -DesignSubEntity.FixUp\(ObjectBase\), -DesignSubEntity.CheckCircularReference\(\), -DesignSubEntity.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\), -DesignSubEntity.IsInterface, -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[Marker.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs), +[Marker.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs), +[Marker.LinkRequestUpdating\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs), +[Marker.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs), +[Marker.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs), +[Marker.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs), +[Marker.GetModelNavigatorInformationImplCore\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs), +[Marker.ParentConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs), +[Marker.\_ParentConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs), +[Marker.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs), +[Marker.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs), +[Marker.FrameIconName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs), +[DesignFrame.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.GetDirection\(Coordinate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.GetFullName\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.InstantiateImpl\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Transformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Value](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.X](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Y](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Z](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Orientation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Position](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.TransformationMatrix](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.FrameIconName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignSubEntity.m\_bSkipToUpdateSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.g\_dicUpdatedDesignSubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.CheckCircularReference\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.IsInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -211,7 +212,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -250,7 +251,7 @@ public ChannelInput(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -279,7 +280,7 @@ protected override string FrameIconName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Input @@ -324,7 +325,7 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -338,21 +339,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -380,7 +381,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.ChannelOutput.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.ChannelOutput.md index a92f60c28c..0080c0fc62 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.ChannelOutput.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.ChannelOutput.md @@ -1,4 +1,5 @@ -# Class ChannelOutput +# Class ChannelOutput + Namespace: [VM.Managed.DAFUL.Linear](VM.Managed.DAFUL.Linear.md) Assembly: VMDLinear.dll @@ -12,12 +13,12 @@ public class ChannelOutput : SubEntity, IObservableObject, IDisposableObject, IL #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [ChannelOutput](VM.Managed.DAFUL.Linear.ChannelOutput.md) #### Implements @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -50,17 +51,17 @@ IVisible #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -153,7 +154,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -192,7 +193,7 @@ public ChannelOutput(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -246,7 +247,7 @@ protected virtual string FrameIconName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Hide @@ -258,7 +259,7 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Input @@ -282,7 +283,7 @@ public bool IsVisible { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReferenceMarker @@ -306,7 +307,7 @@ public bool UseBaseMarker { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseReferenceMarker @@ -318,7 +319,7 @@ public bool UseReferenceMarker { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### \_ActionMarker @@ -368,7 +369,7 @@ public virtual void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -388,7 +389,7 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -402,21 +403,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -444,9 +445,9 @@ protected override void OnLinkReserved(ILink link, object objNotifier, EventArgs `link` ILink -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object -`args` [EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) +`args` EventArgs ### ReDraw\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.InputModeType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.InputModeType.md index 5415ec7703..22ddc74202 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.InputModeType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.InputModeType.md @@ -1,4 +1,5 @@ -# Enum InputModeType +# Enum InputModeType + Namespace: [VM.Managed.DAFUL.Linear](VM.Managed.DAFUL.Linear.md) Assembly: VMDLinear.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.InputType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.InputType.md index 189a8a3799..8f7685dddd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.InputType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.InputType.md @@ -1,4 +1,5 @@ -# Enum InputType +# Enum InputType + Namespace: [VM.Managed.DAFUL.Linear](VM.Managed.DAFUL.Linear.md) Assembly: VMDLinear.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.ExportDFG.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.ExportDFG.md index 513816fb6b..ceed070673 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.ExportDFG.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.ExportDFG.md @@ -1,4 +1,5 @@ -# Class ExportDFG +# Class ExportDFG + Namespace: [VM.Managed.DAFUL.Linear.Operation](VM.Managed.DAFUL.Linear.Operation.md) Assembly: VMOpLinear.dll @@ -11,9 +12,9 @@ public class ExportDFG : SimulateForComponentEigenvalue, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [SimulateForComponentEigenvalue](VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.md) ← [ExportDFG](VM.Managed.DAFUL.Linear.Operation.ExportDFG.md) @@ -32,28 +33,29 @@ IOperation [SimulateForComponentEigenvalue.AutoSetEigenvalueObject\(\)](VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.md\#VM\_Managed\_DAFUL\_Linear\_Operation\_SimulateForComponentEigenvalue\_AutoSetEigenvalueObject), [SimulateForComponentEigenvalue.Success](VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.md\#VM\_Managed\_DAFUL\_Linear\_Operation\_SimulateForComponentEigenvalue\_Success), [SimulateForComponentEigenvalue.Name](VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.md\#VM\_Managed\_DAFUL\_Linear\_Operation\_SimulateForComponentEigenvalue\_Name), -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -154,7 +156,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -174,5 +176,5 @@ protected override void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.ExportDFS.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.ExportDFS.md index 6eaa7301f8..26b9bc95f0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.ExportDFS.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.ExportDFS.md @@ -1,4 +1,5 @@ -# Class ExportDFS +# Class ExportDFS + Namespace: [VM.Managed.DAFUL.Linear.Operation](VM.Managed.DAFUL.Linear.Operation.md) Assembly: VMOpLinear.dll @@ -11,9 +12,9 @@ public class ExportDFS : SimulateForComponentEigenvalue, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [SimulateForComponentEigenvalue](VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.md) ← [ExportDFS](VM.Managed.DAFUL.Linear.Operation.ExportDFS.md) @@ -32,28 +33,29 @@ IOperation [SimulateForComponentEigenvalue.AutoSetEigenvalueObject\(\)](VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.md\#VM\_Managed\_DAFUL\_Linear\_Operation\_SimulateForComponentEigenvalue\_AutoSetEigenvalueObject), [SimulateForComponentEigenvalue.Success](VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.md\#VM\_Managed\_DAFUL\_Linear\_Operation\_SimulateForComponentEigenvalue\_Success), [SimulateForComponentEigenvalue.Name](VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.md\#VM\_Managed\_DAFUL\_Linear\_Operation\_SimulateForComponentEigenvalue\_Name), -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -154,7 +156,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -174,5 +176,5 @@ protected override void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.ExportFiles.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.ExportFiles.md new file mode 100644 index 0000000000..a4818d300a --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.ExportFiles.md @@ -0,0 +1,232 @@ +# Class ExportFiles + + +Namespace: [VM.Managed.DAFUL.Linear.Operation](VM.Managed.DAFUL.Linear.Operation.md) +Assembly: VMOpLinear.dll + +```csharp +public class ExportFiles : SimulateForComponentEigenvalue, IOperation +``` + +#### Inheritance + +object ← +OperationBase ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[SimulateForComponentEigenvalue](VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.md) ← +[ExportFiles](VM.Managed.DAFUL.Linear.Operation.ExportFiles.md) + +#### Implements + +IOperation + +#### Inherited Members + +[SimulateForComponentEigenvalue.m\_lstObjEigen](VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.md\#VM\_Managed\_DAFUL\_Linear\_Operation\_SimulateForComponentEigenvalue\_m\_lstObjEigen), +[SimulateForComponentEigenvalue.m\_param](VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.md\#VM\_Managed\_DAFUL\_Linear\_Operation\_SimulateForComponentEigenvalue\_m\_param), +[SimulateForComponentEigenvalue.Execute\(\)](VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.md\#VM\_Managed\_DAFUL\_Linear\_Operation\_SimulateForComponentEigenvalue\_Execute), +[SimulateForComponentEigenvalue.ReadExtraJournal\(XmlElement\)](VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.md\#VM\_Managed\_DAFUL\_Linear\_Operation\_SimulateForComponentEigenvalue\_ReadExtraJournal\_System\_Xml\_XmlElement\_), +[SimulateForComponentEigenvalue.WriteExtraJournal\(XmlWriter\)](VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.md\#VM\_Managed\_DAFUL\_Linear\_Operation\_SimulateForComponentEigenvalue\_WriteExtraJournal\_System\_Xml\_XmlWriter\_), +[SimulateForComponentEigenvalue.SimulationRunImpl\(bool\)](VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.md\#VM\_Managed\_DAFUL\_Linear\_Operation\_SimulateForComponentEigenvalue\_SimulationRunImpl\_System\_Boolean\_), +[SimulateForComponentEigenvalue.AutoSetEigenvalueObject\(\)](VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.md\#VM\_Managed\_DAFUL\_Linear\_Operation\_SimulateForComponentEigenvalue\_AutoSetEigenvalueObject), +[SimulateForComponentEigenvalue.Success](VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.md\#VM\_Managed\_DAFUL\_Linear\_Operation\_SimulateForComponentEigenvalue\_Success), +[SimulateForComponentEigenvalue.Name](VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.md\#VM\_Managed\_DAFUL\_Linear\_Operation\_SimulateForComponentEigenvalue\_Name), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +OperationBase.g\_bRedrawKernel, +OperationBase.g\_bVerify, +OperationBase.g\_bSkipAddEvent, +OperationBase.g\_bDupicateMsg, +OperationBase.m\_bIsHistoryMerge, +OperationBase.Execute\(\), +OperationBase.PostExecute\(\), +OperationBase.GetInformation\(XmlWriter\), +OperationBase.Create\(string, View, object\), +OperationBase.Create\(string, IDocument, object\), +OperationBase.Create\(string, object\), +OperationBase.Create\(string\), +OperationBase.StartSession\(\), +OperationBase.StartSession\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSession\(OperationBase\), +OperationBase.StartSessionAndWait\(\), +OperationBase.StartSessionAndWait\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSessionAndWait\(OperationBase\), +OperationBase.Initialize\(OperationBase.ShowVerifyResult\), +OperationBase.RecordJournal\(OperationBase\), +OperationBase.UseSession\(string\), +OperationBase.raise\_OnOperationStatusChanged\(object, OperationStatusEventArgs\), +OperationBase.raise\_OnEndOperation\(object, EventArgs\), +OperationBase.ClearCurrentMark\(string\), +OperationBase.ClearCurrentMark\(IDocument\), +OperationBase.ClearCurrentMark\(\), +OperationBase.GlobalOverride, +OperationBase.IsDoingThread, +OperationBase.ExecuteMacro, +OperationBase.SimStatus, +OperationBase.Status, +OperationBase.autoEvents, +OperationBase.IsHistoryMerge, +OperationBase.SkipClearTemporaryLinkContainer, +OperationBase.PostExecuteClearTemporaryLinkContainer, +OperationBase.SkipEndOperation, +OperationBase.UseMacro, +OperationBase.MarkStatus, +OperationBase.UseThread, +OperationBase.Name, +OperationBase.ExecutableOnHold, +OperationBase.Override, +OperationBase.Parameter, +OperationBase.View, +OperationBase.Document, +OperationBase.OnEndOperation, +OperationBase.OnOperationStatusChanged + +#### Extension Methods + +[LinkPropertyItemCache.GetLinkProperties\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkProperties\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkPropertiesAndValues\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkPropertiesAndValues\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkedObjects\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkedObjects\_\_1\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_) + +## Constructors + +### ExportFiles\(Document3D, string, bool, bool, bool, bool, object\) + +```csharp +public ExportFiles(Document3D doc, string strFilePath, bool bWriteDFS, bool bWriteXML, bool bWriteDFG, bool bIncludeReferenceFiles, object objEigen) +``` + +#### Parameters + +`doc` Document3D + +`strFilePath` string + +`bWriteDFS` bool + +`bWriteXML` bool + +`bWriteDFG` bool + +`bIncludeReferenceFiles` bool + +`objEigen` object + +### ExportFiles\(JournalParameter\) + +```csharp +public ExportFiles(JournalParameter jp) +``` + +#### Parameters + +`jp` JournalParameter + +## Fields + +### m\_bIncludeReferenceFiles + +```csharp +protected bool m_bIncludeReferenceFiles +``` + +#### Field Value + + bool + +### m\_bWriteDFG + +```csharp +protected bool m_bWriteDFG +``` + +#### Field Value + + bool + +### m\_bWriteDFS + +```csharp +protected bool m_bWriteDFS +``` + +#### Field Value + + bool + +### m\_bWriteXML + +```csharp +protected bool m_bWriteXML +``` + +#### Field Value + + bool + +## Properties + +### Name + +Gets the operation name. + +```csharp +public override string Name { get; } +``` + +#### Property Value + + string + +## Methods + +### ReadExtraJournal\(XmlElement\) + +```csharp +public override void ReadExtraJournal(XmlElement nodeArg) +``` + +#### Parameters + +`nodeArg` XmlElement + +### SimulationRunImpl\(bool\) + +```csharp +protected override void SimulationRunImpl(bool bWriteDFG) +``` + +#### Parameters + +`bWriteDFG` bool + +### WriteExtraJournal\(XmlWriter\) + +```csharp +public override void WriteExtraJournal(XmlWriter writer) +``` + +#### Parameters + +`writer` XmlWriter + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.ExportMotionFiles.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.ExportMotionFiles.md new file mode 100644 index 0000000000..85e69e0358 --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.ExportMotionFiles.md @@ -0,0 +1,112 @@ +# Class ExportMotionFiles + + +Namespace: [VM.Managed.DAFUL.Linear.Operation](VM.Managed.DAFUL.Linear.Operation.md) +Assembly: VMOpLinear.dll + +```csharp +public class ExportMotionFiles : ExportMotionFiles, IOperation +``` + +#### Inheritance + +object ← +OperationBase ← +[DialogOperation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs) ← +[ExportMotionFiles](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs) ← +[ExportMotionFiles](VM.Managed.DAFUL.Linear.Operation.ExportMotionFiles.md) + +#### Implements + +IOperation + +#### Inherited Members + +[ExportMotionFiles.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[ExportMotionFiles.GetDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[ExportMotionFiles.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[ExportMotionFiles.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[ExportMotionFiles.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[DialogOperation.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.IsConainOpenedDic\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OpDialog](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +OperationBase.g\_bRedrawKernel, +OperationBase.g\_bVerify, +OperationBase.g\_bSkipAddEvent, +OperationBase.g\_bDupicateMsg, +OperationBase.m\_bIsHistoryMerge, +OperationBase.Execute\(\), +OperationBase.PostExecute\(\), +OperationBase.GetInformation\(XmlWriter\), +OperationBase.Create\(string, View, object\), +OperationBase.Create\(string, IDocument, object\), +OperationBase.Create\(string, object\), +OperationBase.Create\(string\), +OperationBase.StartSession\(\), +OperationBase.StartSession\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSession\(OperationBase\), +OperationBase.StartSessionAndWait\(\), +OperationBase.StartSessionAndWait\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSessionAndWait\(OperationBase\), +OperationBase.Initialize\(OperationBase.ShowVerifyResult\), +OperationBase.RecordJournal\(OperationBase\), +OperationBase.UseSession\(string\), +OperationBase.raise\_OnOperationStatusChanged\(object, OperationStatusEventArgs\), +OperationBase.raise\_OnEndOperation\(object, EventArgs\), +OperationBase.ClearCurrentMark\(string\), +OperationBase.ClearCurrentMark\(IDocument\), +OperationBase.ClearCurrentMark\(\), +OperationBase.GlobalOverride, +OperationBase.IsDoingThread, +OperationBase.ExecuteMacro, +OperationBase.SimStatus, +OperationBase.Status, +OperationBase.autoEvents, +OperationBase.IsHistoryMerge, +OperationBase.SkipClearTemporaryLinkContainer, +OperationBase.PostExecuteClearTemporaryLinkContainer, +OperationBase.SkipEndOperation, +OperationBase.UseMacro, +OperationBase.MarkStatus, +OperationBase.UseThread, +OperationBase.Name, +OperationBase.ExecutableOnHold, +OperationBase.Override, +OperationBase.Parameter, +OperationBase.View, +OperationBase.Document, +OperationBase.OnEndOperation, +OperationBase.OnOperationStatusChanged + +#### Extension Methods + +[LinkPropertyItemCache.GetLinkProperties\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkProperties\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkPropertiesAndValues\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkPropertiesAndValues\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkedObjects\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkedObjects\_\_1\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_) + +## Constructors + +### ExportMotionFiles\(Document\) + +```csharp +public ExportMotionFiles(Document doc) +``` + +#### Parameters + +`doc` Document + +## Methods + +### GetDialog\(\) + +```csharp +protected override OperationDialogBase GetDialog() +``` + +#### Returns + + OperationDialogBase + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.ExportXML.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.ExportXML.md index fe32af751a..259a7ca136 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.ExportXML.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.ExportXML.md @@ -1,4 +1,5 @@ -# Class ExportXML +# Class ExportXML + Namespace: [VM.Managed.DAFUL.Linear.Operation](VM.Managed.DAFUL.Linear.Operation.md) Assembly: VMOpLinear.dll @@ -11,9 +12,9 @@ public class ExportXML : SimulateForComponentEigenvalue, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [SimulateForComponentEigenvalue](VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.md) ← [ExportXML](VM.Managed.DAFUL.Linear.Operation.ExportXML.md) @@ -32,28 +33,29 @@ IOperation [SimulateForComponentEigenvalue.AutoSetEigenvalueObject\(\)](VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.md\#VM\_Managed\_DAFUL\_Linear\_Operation\_SimulateForComponentEigenvalue\_AutoSetEigenvalueObject), [SimulateForComponentEigenvalue.Success](VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.md\#VM\_Managed\_DAFUL\_Linear\_Operation\_SimulateForComponentEigenvalue\_Success), [SimulateForComponentEigenvalue.Name](VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.md\#VM\_Managed\_DAFUL\_Linear\_Operation\_SimulateForComponentEigenvalue\_Name), -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -154,7 +156,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -174,5 +176,5 @@ protected override void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.ShowLinearBodyEigenValue.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.ShowLinearBodyEigenValue.md index 44a2915dad..afee235682 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.ShowLinearBodyEigenValue.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.ShowLinearBodyEigenValue.md @@ -1,4 +1,5 @@ -# Class ShowLinearBodyEigenValue +# Class ShowLinearBodyEigenValue + Namespace: [VM.Managed.DAFUL.Linear.Operation](VM.Managed.DAFUL.Linear.Operation.md) Assembly: VMOpLinear.dll @@ -11,9 +12,9 @@ public class ShowLinearBodyEigenValue : DialogOperation, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -DialogOperation ← +[DialogOperation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs) ← [ShowLinearBodyEigenValue](VM.Managed.DAFUL.Linear.Operation.ShowLinearBodyEigenValue.md) #### Implements @@ -22,11 +23,11 @@ IOperation #### Inherited Members -DialogOperation.Execute\(\), -DialogOperation.OnApply\(object, CancelEventArgs\), -DialogOperation.IsConainOpenedDic\(Document\), -DialogOperation.Name, -DialogOperation.OpDialog, +[DialogOperation.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.IsConainOpenedDic\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OpDialog](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -105,7 +106,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -127,11 +128,11 @@ protected override void OnApply(object sender, CancelEventArgs arg) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. -`arg` [CancelEventArgs](https://learn.microsoft.com/dotnet/api/system.componentmodel.canceleventargs) +`arg` CancelEventArgs The instance containing the event data. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.SimulateForBodyEigenvalue.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.SimulateForBodyEigenvalue.md index bb61173ddb..5a7d4d7f0e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.SimulateForBodyEigenvalue.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.SimulateForBodyEigenvalue.md @@ -1,4 +1,5 @@ -# Class SimulateForBodyEigenvalue +# Class SimulateForBodyEigenvalue + Namespace: [VM.Managed.DAFUL.Linear.Operation](VM.Managed.DAFUL.Linear.Operation.md) Assembly: VMOpLinear.dll @@ -9,9 +10,9 @@ public class SimulateForBodyEigenvalue : SimulateForComponentEigenvalue, IOperat #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [SimulateForComponentEigenvalue](VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.md) ← [SimulateForBodyEigenvalue](VM.Managed.DAFUL.Linear.Operation.SimulateForBodyEigenvalue.md) @@ -30,28 +31,29 @@ IOperation [SimulateForComponentEigenvalue.AutoSetEigenvalueObject\(\)](VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.md\#VM\_Managed\_DAFUL\_Linear\_Operation\_SimulateForComponentEigenvalue\_AutoSetEigenvalueObject), [SimulateForComponentEigenvalue.Success](VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.md\#VM\_Managed\_DAFUL\_Linear\_Operation\_SimulateForComponentEigenvalue\_Success), [SimulateForComponentEigenvalue.Name](VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.md\#VM\_Managed\_DAFUL\_Linear\_Operation\_SimulateForComponentEigenvalue\_Name), -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -160,5 +162,5 @@ protected override void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.SimulationScenario.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.SimulationScenario.md index 9531f8e922..fa0c9af939 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.SimulationScenario.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.SimulationScenario.md @@ -1,4 +1,5 @@ -# Class SimulateForComponentEigenvalue.SimulationScenario +# Class SimulateForComponentEigenvalue.SimulationScenario + Namespace: [VM.Managed.DAFUL.Linear.Operation](VM.Managed.DAFUL.Linear.Operation.md) Assembly: VMOpLinear.dll @@ -9,7 +10,7 @@ public class SimulateForComponentEigenvalue.SimulationScenario #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SimulateForComponentEigenvalue.SimulationScenario](VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.SimulationScenario.md) #### Extension Methods @@ -32,7 +33,7 @@ public SimulationScenario(SimulationScenarioEigenvalue scenario, SimulationScena `param` SimulationScenarioEigenvalue.SolvingParam -`simulationParameter` SimulationRun.SimulationParameter +`simulationParameter` [SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs).[SimulationParameter](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.md index e1b8437b15..ec0f1f9d36 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.md @@ -1,4 +1,5 @@ -# Class SimulateForComponentEigenvalue +# Class SimulateForComponentEigenvalue + Namespace: [VM.Managed.DAFUL.Linear.Operation](VM.Managed.DAFUL.Linear.Operation.md) Assembly: VMOpLinear.dll @@ -11,15 +12,16 @@ public class SimulateForComponentEigenvalue : SimulationRun, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [SimulateForComponentEigenvalue](VM.Managed.DAFUL.Linear.Operation.SimulateForComponentEigenvalue.md) #### Derived [ExportDFG](VM.Managed.DAFUL.Linear.Operation.ExportDFG.md), [ExportDFS](VM.Managed.DAFUL.Linear.Operation.ExportDFS.md), +[ExportFiles](VM.Managed.DAFUL.Linear.Operation.ExportFiles.md), [ExportXML](VM.Managed.DAFUL.Linear.Operation.ExportXML.md), [SimulateForBodyEigenvalue](VM.Managed.DAFUL.Linear.Operation.SimulateForBodyEigenvalue.md) @@ -29,28 +31,29 @@ IOperation #### Inherited Members -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -151,7 +154,7 @@ public SimulateForComponentEigenvalue(Document doc, ObjectBase objSingle, Simula `objSingle` ObjectBase -`simulationParameter` SimulationRun.SimulationParameter +`simulationParameter` [SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs).[SimulationParameter](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ### SimulateForComponentEigenvalue\(JournalParameter\) @@ -173,7 +176,7 @@ protected List m_lstObjEigen #### Field Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### m\_param @@ -197,7 +200,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Success @@ -207,7 +210,7 @@ public bool Success { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -219,7 +222,7 @@ protected bool AutoSetEigenvalueObject() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Execute\(\) @@ -237,7 +240,7 @@ public override void ReadExtraJournal(XmlElement nodeArg) #### Parameters -`nodeArg` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`nodeArg` XmlElement ### SimulationRunImpl\(bool\) @@ -247,7 +250,7 @@ protected override void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool ### WriteExtraJournal\(XmlWriter\) @@ -257,5 +260,5 @@ public override void WriteExtraJournal(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.md index 5de5a911f4..9bf2445783 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Operation.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Linear.Operation +# Namespace VM.Managed.DAFUL.Linear.Operation + ### Classes @@ -10,6 +11,10 @@ The export post dfg file operation The export solver dfs file operation + [ExportFiles](VM.Managed.DAFUL.Linear.Operation.ExportFiles.md) + + [ExportMotionFiles](VM.Managed.DAFUL.Linear.Operation.ExportMotionFiles.md) + [ExportXML](VM.Managed.DAFUL.Linear.Operation.ExportXML.md) The export solver xml file operation diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.PropertyActuator.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.PropertyActuator.md index c27f54e65d..7e85ea36f5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.PropertyActuator.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.PropertyActuator.md @@ -1,4 +1,5 @@ -# Class PropertyActuator +# Class PropertyActuator + Namespace: [VM.Managed.DAFUL.Linear](VM.Managed.DAFUL.Linear.md) Assembly: VMDLinear.dll @@ -11,13 +12,13 @@ public abstract class PropertyActuator : Property, IObservableObject, IDisposabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyActuator](VM.Managed.DAFUL.Linear.PropertyActuator.md) #### Derived @@ -38,7 +39,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -47,12 +48,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -151,7 +152,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.PropertyActuatorPSD.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.PropertyActuatorPSD.md index 99dbbde4d4..24b36fb897 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.PropertyActuatorPSD.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.PropertyActuatorPSD.md @@ -1,4 +1,5 @@ -# Class PropertyActuatorPSD +# Class PropertyActuatorPSD + Namespace: [VM.Managed.DAFUL.Linear](VM.Managed.DAFUL.Linear.md) Assembly: VMDLinear.dll @@ -11,13 +12,13 @@ public class PropertyActuatorPSD : PropertyActuator, IObservableObject, IDisposa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyActuator](VM.Managed.DAFUL.Linear.PropertyActuator.md) ← [PropertyActuatorPSD](VM.Managed.DAFUL.Linear.PropertyActuatorPSD.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -42,12 +43,12 @@ IHasID #### Inherited Members [PropertyActuator.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.Linear.PropertyActuator.md\#VM\_Managed\_DAFUL\_Linear\_PropertyActuator\_Initialize\_VM\_Unit\_ConvertFactor\_), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -146,7 +147,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -212,7 +213,7 @@ public ExpressionValueVariable PhaseAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PhaseAngleSpline @@ -224,7 +225,7 @@ public Spline PhaseAngleSpline { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### PhaseAngleSplineInterpolation @@ -249,7 +250,7 @@ public Spline Spline { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### UsePhaseAngleSpline @@ -262,7 +263,7 @@ public bool UsePhaseAngleSpline { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -318,7 +319,7 @@ public void SetToUsePhaseAngleSpline(bool bFlag) #### Parameters -`bFlag` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bFlag` bool The flag. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.PropertyActuatorRotatingMass.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.PropertyActuatorRotatingMass.md index ccb534f279..7e7607a0ff 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.PropertyActuatorRotatingMass.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.PropertyActuatorRotatingMass.md @@ -1,4 +1,5 @@ -# Class PropertyActuatorRotatingMass +# Class PropertyActuatorRotatingMass + Namespace: [VM.Managed.DAFUL.Linear](VM.Managed.DAFUL.Linear.md) Assembly: VMDLinear.dll @@ -11,13 +12,13 @@ public class PropertyActuatorRotatingMass : PropertyActuator, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyActuator](VM.Managed.DAFUL.Linear.PropertyActuator.md) ← [PropertyActuatorRotatingMass](VM.Managed.DAFUL.Linear.PropertyActuatorRotatingMass.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -42,12 +43,12 @@ IHasID #### Inherited Members [PropertyActuator.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.Linear.PropertyActuator.md\#VM\_Managed\_DAFUL\_Linear\_PropertyActuator\_Initialize\_VM\_Unit\_ConvertFactor\_), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -146,7 +147,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -199,7 +200,7 @@ public ExpressionValueVariable Mass { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### NormalOffset @@ -211,7 +212,7 @@ public ExpressionValueVariable NormalOffset { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RadialOffset @@ -223,7 +224,7 @@ public ExpressionValueVariable RadialOffset { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.PropertyActuatorSweptSine.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.PropertyActuatorSweptSine.md index 9a1f2fa9da..9de1761119 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.PropertyActuatorSweptSine.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.PropertyActuatorSweptSine.md @@ -1,4 +1,5 @@ -# Class PropertyActuatorSweptSine +# Class PropertyActuatorSweptSine + Namespace: [VM.Managed.DAFUL.Linear](VM.Managed.DAFUL.Linear.md) Assembly: VMDLinear.dll @@ -11,13 +12,13 @@ public class PropertyActuatorSweptSine : PropertyActuator, IObservableObject, ID #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyActuator](VM.Managed.DAFUL.Linear.PropertyActuator.md) ← [PropertyActuatorSweptSine](VM.Managed.DAFUL.Linear.PropertyActuatorSweptSine.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -42,12 +43,12 @@ IHasID #### Inherited Members [PropertyActuator.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.Linear.PropertyActuator.md\#VM\_Managed\_DAFUL\_Linear\_PropertyActuator\_Initialize\_VM\_Unit\_ConvertFactor\_), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -146,7 +147,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -187,7 +188,7 @@ public ExpressionValueVariable Magnitude { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PhaseAngle @@ -199,7 +200,7 @@ public ExpressionValueVariable PhaseAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.PropertyActuatorUser.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.PropertyActuatorUser.md index a16d6d6a66..ccf398bb00 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.PropertyActuatorUser.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.PropertyActuatorUser.md @@ -1,4 +1,5 @@ -# Class PropertyActuatorUser +# Class PropertyActuatorUser + Namespace: [VM.Managed.DAFUL.Linear](VM.Managed.DAFUL.Linear.md) Assembly: VMDLinear.dll @@ -11,13 +12,13 @@ public class PropertyActuatorUser : PropertyActuator, IObservableObject, IDispos #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyActuator](VM.Managed.DAFUL.Linear.PropertyActuator.md) ← [PropertyActuatorUser](VM.Managed.DAFUL.Linear.PropertyActuatorUser.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -42,12 +43,12 @@ IHasID #### Inherited Members [PropertyActuator.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.Linear.PropertyActuator.md\#VM\_Managed\_DAFUL\_Linear\_PropertyActuator\_Initialize\_VM\_Unit\_ConvertFactor\_), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -146,7 +147,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -187,7 +188,7 @@ public ExpressionValueVariable F { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PhaseAngle @@ -199,7 +200,7 @@ public ExpressionValueVariable PhaseAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Settings.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Settings.md index c35cc0c4fd..5653ab9811 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Settings.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.Settings.md @@ -1,4 +1,5 @@ -# Class Settings +# Class Settings + Namespace: [VM.Managed.DAFUL.Linear](VM.Managed.DAFUL.Linear.md) Assembly: VMDLinear.dll @@ -11,17 +12,17 @@ public class Settings : SettingsBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[SettingsBase](https://learn.microsoft.com/dotnet/api/system.configuration.settingsbase) ← -[ApplicationSettingsBase](https://learn.microsoft.com/dotnet/api/system.configuration.applicationsettingsbase) ← -SettingsBase ← +object ← +SettingsBase ← +ApplicationSettingsBase ← +[SettingsBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VMManagedUtil/SettingsBase.cs) ← [Settings](VM.Managed.DAFUL.Linear.Settings.md) #### Inherited Members -SettingsBase.GetProperty\(string\), -SettingsBase.Default, -SettingsBase.RootPath +[SettingsBase.GetProperty\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VMManagedUtil/SettingsBase.cs), +[SettingsBase.Default](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VMManagedUtil/SettingsBase.cs), +[SettingsBase.RootPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VMManagedUtil/SettingsBase.cs) #### Extension Methods @@ -50,7 +51,7 @@ public double LowerBoundFrequency { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MaximumNumberOfNormalMode @@ -63,7 +64,7 @@ public uint MaximumNumberOfNormalMode { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### PenaltyValue @@ -76,7 +77,7 @@ public double PenaltyValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ShiftValue @@ -89,7 +90,7 @@ public double ShiftValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UpperBoundFrequency @@ -102,7 +103,7 @@ public double UpperBoundFrequency { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UseAutoPenalty @@ -115,7 +116,7 @@ public bool UseAutoPenalty { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseAutoShift @@ -128,7 +129,7 @@ public bool UseAutoShift { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseBoundFrequency @@ -141,7 +142,7 @@ public bool UseBoundFrequency { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.md index 6e523daae5..f3339c831d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Linear.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Linear +# Namespace VM.Managed.DAFUL.Linear + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MagneticInterface.Group.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MagneticInterface.Group.md index 30fb40e25a..2233ad5bdb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MagneticInterface.Group.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MagneticInterface.Group.md @@ -1,4 +1,5 @@ -# Class MagneticInterface.Group +# Class MagneticInterface.Group + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMAppCore.dll @@ -9,7 +10,7 @@ public class MagneticInterface.Group #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [MagneticInterface.Group](VM.Managed.DAFUL.MagneticInterface.Group.md) #### Extension Methods @@ -36,7 +37,7 @@ public string Name #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Objects @@ -46,7 +47,7 @@ public string[] Objects #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### Transform @@ -56,5 +57,5 @@ public ValueType Transform #### Field Value - [ValueType](https://learn.microsoft.com/dotnet/api/system.valuetype) + ValueType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MagneticInterface.Material.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MagneticInterface.Material.md index 1188db1994..7f27fed8d1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MagneticInterface.Material.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MagneticInterface.Material.md @@ -1,4 +1,5 @@ -# Class MagneticInterface.Material +# Class MagneticInterface.Material + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMAppCore.dll @@ -9,7 +10,7 @@ public class MagneticInterface.Material #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [MagneticInterface.Material](VM.Managed.DAFUL.MagneticInterface.Material.md) #### Extension Methods @@ -36,7 +37,7 @@ public string Name #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### X @@ -46,7 +47,7 @@ public double X #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y @@ -56,7 +57,7 @@ public double Y #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Z @@ -66,5 +67,5 @@ public double Z #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MagneticInterface.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MagneticInterface.md index 8d2bcf6962..011a23881a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MagneticInterface.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MagneticInterface.md @@ -1,4 +1,5 @@ -# Class MagneticInterface +# Class MagneticInterface + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMAppCore.dll @@ -9,7 +10,7 @@ public class MagneticInterface #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [MagneticInterface](VM.Managed.DAFUL.MagneticInterface.md) #### Extension Methods @@ -30,11 +31,11 @@ public MagneticInterface(string strPath, string targetMaxwellVersion) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The interface dll path. -`targetMaxwellVersion` [string](https://learn.microsoft.com/dotnet/api/system.string) +`targetMaxwellVersion` string The target Maxwell version. (eg. 2025.2) @@ -48,7 +49,7 @@ public MagneticInterface(string strPath) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The interface dll path. @@ -62,7 +63,7 @@ public bool CloseProject() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CreateProject\(string, string\) @@ -72,13 +73,13 @@ public bool CreateProject(string projectFilePath, string geometryFilePath) #### Parameters -`projectFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`projectFilePath` string -`geometryFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`geometryFilePath` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Dispose\(bool\) @@ -89,7 +90,7 @@ protected virtual void Dispose(bool A_0) #### Parameters -`A_0` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`A_0` bool ### Dispose\(\) @@ -114,13 +115,13 @@ public bool GetMaxwellDesigns(string projectFilePath, ref string[] designList) #### Parameters -`projectFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`projectFilePath` string -`designList` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`designList` string\[\] #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetMessages\(ref string\[\]\) @@ -130,11 +131,11 @@ public bool GetMessages(ref string[] arMessage) #### Parameters -`arMessage` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arMessage` string\[\] #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### InitGeometry\(string\) @@ -144,11 +145,11 @@ public bool InitGeometry(string geometryFilePath) #### Parameters -`geometryFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`geometryFilePath` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### InitMagneticObjects\(Group\[\], Dictionary\) @@ -160,11 +161,11 @@ public bool InitMagneticObjects(MagneticInterface.Group[] groups, Dictionary +`materialInfo` Dictionary #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### InitMagneticObjects\(Group\[\]\) @@ -178,7 +179,7 @@ public bool InitMagneticObjects(MagneticInterface.Group[] groups) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OpenProject\(string, string\) @@ -188,13 +189,13 @@ public bool OpenProject(string projectFilePath, string designName) #### Parameters -`projectFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`projectFilePath` string -`designName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`designName` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### QuitApplication\(\) @@ -204,7 +205,7 @@ public bool QuitApplication() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReleaseApplication\(\) @@ -214,7 +215,7 @@ public bool ReleaseApplication() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SaveProject\(\) @@ -224,5 +225,5 @@ public bool SaveProject() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Marker.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Marker.md index 77ee495cad..be69d882a2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Marker.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Marker.md @@ -1,4 +1,5 @@ -# Class Marker +# Class Marker + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,14 +12,14 @@ public class Marker : DesignFrame, IObservableObject, IDisposableObject, ILinkab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← -DesignSubEntity ← -DesignFrame ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← +[DesignSubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs) ← +[DesignFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs) ← [Marker](VM.Managed.DAFUL.Marker.md) #### Derived @@ -34,7 +35,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, INamed, INavigatorItem, @@ -70,45 +71,45 @@ IMarker #### Inherited Members -DesignFrame.Initialize\(Unit.ConvertFactor\), -DesignFrame.LinkRequestUpdate\(object, LinkEventArgs\), -DesignFrame.GetDirection\(Coordinate\), -DesignFrame.GetFullName\(\), -DesignFrame.Draw\(Canvas\), -DesignFrame.ReDraw\(\), -DesignFrame.InstantiateImpl\(Reference, Canvas\), -DesignFrame.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\), -DesignFrame.WriteTemplateImpl\(XmlWriter\), -DesignFrame.ReadTemplateImpl\(XmlReader\), -DesignFrame.Transformation, -DesignFrame.Value, -DesignFrame.X, -DesignFrame.Y, -DesignFrame.Z, -DesignFrame.Orientation, -DesignFrame.Position, -DesignFrame.TransformationMatrix, -DesignFrame.Hide, -DesignFrame.FrameIconName, -DesignFrame.Layer, -DesignFrame.IsVisible, -DesignSubEntity.m\_bSkipToUpdateSymmetric, -DesignSubEntity.g\_dicUpdatedDesignSubEntity, -DesignSubEntity.FixUp\(ObjectBase\), -DesignSubEntity.CheckCircularReference\(\), -DesignSubEntity.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\), -DesignSubEntity.IsInterface, -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[DesignFrame.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.GetDirection\(Coordinate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.GetFullName\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.InstantiateImpl\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Transformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Value](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.X](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Y](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Z](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Orientation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Position](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.TransformationMatrix](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.FrameIconName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignSubEntity.m\_bSkipToUpdateSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.g\_dicUpdatedDesignSubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.CheckCircularReference\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.IsInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -201,7 +202,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -240,7 +241,7 @@ public Marker(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the marker. @@ -269,7 +270,7 @@ protected override string FrameIconName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ParentConnectable @@ -293,7 +294,7 @@ public string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### \_ParentConnectable @@ -319,21 +320,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -347,21 +348,21 @@ protected bool GetModelNavigatorInformationImplCore(XmlDocument xmlDom, XmlEleme #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XML DOM. -`xmlMarkerEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlMarkerEle` XmlElement The XML marker ele. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [b has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Initialize\(ConvertFactor\) @@ -387,7 +388,7 @@ protected override void LinkRequestDestroy(object objNotifier, LinkEventArgs arg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -405,7 +406,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -423,7 +424,7 @@ protected override void LinkRequestUpdating(object objNotifier, LinkEventArgs ar #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MarkerParentType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MarkerParentType.md index e33b849bae..92d0b2475c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MarkerParentType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MarkerParentType.md @@ -1,4 +1,5 @@ -# Enum MarkerParentType +# Enum MarkerParentType + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MarkerReferenceFrameType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MarkerReferenceFrameType.md index 48c9488069..4585e8170d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MarkerReferenceFrameType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MarkerReferenceFrameType.md @@ -1,4 +1,5 @@ -# Enum MarkerReferenceFrameType +# Enum MarkerReferenceFrameType + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MassCalculationException.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MassCalculationException.md new file mode 100644 index 0000000000..fb0c442b54 --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MassCalculationException.md @@ -0,0 +1,52 @@ +# Class MassCalculationException + + +Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) +Assembly: VMDFBase.dll + +```csharp +public class MassCalculationException : Exception +``` + +#### Inheritance + +object ← +Exception ← +[MassCalculationException](VM.Managed.DAFUL.MassCalculationException.md) + +#### Extension Methods + +[LinkPropertyItemCache.GetLinkProperties\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkProperties\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkPropertiesAndValues\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkPropertiesAndValues\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkedObjects\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkedObjects\_\_1\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_) + +## Constructors + +### MassCalculationException\(\) + +```csharp +public MassCalculationException() +``` + +### MassCalculationException\(string\) + +```csharp +public MassCalculationException(string message) +``` + +#### Parameters + +`message` string + +### MassCalculationException\(string, Exception\) + +```csharp +public MassCalculationException(string message, Exception innerException) +``` + +#### Parameters + +`message` string + +`innerException` Exception + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.AnalysisLevel.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.AnalysisLevel.md index af8283573b..f7156918c0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.AnalysisLevel.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.AnalysisLevel.md @@ -1,4 +1,5 @@ -# Class AnalysisLevel +# Class AnalysisLevel + Namespace: [VM.Managed.DAFUL.MeshFree](VM.Managed.DAFUL.MeshFree.md) Assembly: VMDMeshFree.dll @@ -11,9 +12,9 @@ public class AnalysisLevel : LinkContainer, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [AnalysisLevel](VM.Managed.DAFUL.MeshFree.AnalysisLevel.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -114,7 +115,7 @@ public AnalysisLevel(uint level) #### Parameters -`level` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`level` uint Level Number. @@ -130,7 +131,7 @@ public uint Level { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### LocalRefinementRatio @@ -142,7 +143,7 @@ public double LocalRefinementRatio { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NodeCount @@ -154,7 +155,7 @@ public uint NodeCount { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### NodeDistance @@ -167,11 +168,11 @@ public double NodeDistance { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The node distance should be same as 0 or bigger than 0. @@ -185,7 +186,7 @@ public double NodeDistanceOriginalX { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NodeDistanceOriginalY @@ -197,11 +198,11 @@ public double NodeDistanceOriginalY { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The node distance should be same as 0 or bigger than 0. @@ -215,7 +216,7 @@ public double NodeDistanceOriginalZ { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NodeDistanceX @@ -227,7 +228,7 @@ public double NodeDistanceX { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NodeDistanceY @@ -239,11 +240,11 @@ public double NodeDistanceY { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The node distance should be same as 0 or bigger than 0. @@ -257,7 +258,7 @@ public double NodeDistanceZ { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UseThisLevel @@ -269,7 +270,7 @@ public bool UseThisLevel { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.AnalysisLevelGroup.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.AnalysisLevelGroup.md index 52dbf928fb..c2e01b788b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.AnalysisLevelGroup.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.AnalysisLevelGroup.md @@ -1,4 +1,5 @@ -# Class AnalysisLevelGroup +# Class AnalysisLevelGroup + Namespace: [VM.Managed.DAFUL.MeshFree](VM.Managed.DAFUL.MeshFree.md) Assembly: VMDMeshFree.dll @@ -11,9 +12,9 @@ public class AnalysisLevelGroup : LinkContainer, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [AnalysisLevelGroup](VM.Managed.DAFUL.MeshFree.AnalysisLevelGroup.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -114,7 +115,7 @@ public AnalysisLevelGroup(uint levelCount) #### Parameters -`levelCount` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`levelCount` uint ## Properties @@ -152,7 +153,7 @@ public int Count { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### IsUseLocalRefinement @@ -164,7 +165,7 @@ public bool IsUseLocalRefinement { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RefineSurface @@ -176,7 +177,7 @@ public int RefineSurface { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### this\[int\] @@ -202,7 +203,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.AttributeMeshFreeBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.AttributeMeshFreeBody.md index 5d8388a720..1c6fc2a58c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.AttributeMeshFreeBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.AttributeMeshFreeBody.md @@ -1,4 +1,5 @@ -# Class AttributeMeshFreeBody +# Class AttributeMeshFreeBody + Namespace: [VM.Managed.DAFUL.MeshFree](VM.Managed.DAFUL.MeshFree.md) Assembly: VMDMeshFree.dll @@ -11,9 +12,9 @@ public class AttributeMeshFreeBody : AttributeMeshFreeGeometryOutputProperty, IO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← AttributeFacetRefinementBase ← @@ -140,7 +141,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -194,7 +195,7 @@ public AttributeEigenvalueAnalysisParameter AnalysisParameter { get; set; } #### Property Value - AttributeEigenvalueAnalysisParameter + [AttributeEigenvalueAnalysisParameter](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AttributeEigenvalueAnalysisParameter.cs) ### DrawGlobalBody @@ -206,7 +207,7 @@ public override bool DrawGlobalBody { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LevelGroupOfAnalysis @@ -228,7 +229,7 @@ public double RecommendDistanceX { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RecommendDistanceY @@ -240,7 +241,7 @@ public double RecommendDistanceY { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RecommendDistanceZ @@ -252,7 +253,7 @@ public double RecommendDistanceZ { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### XScale @@ -264,7 +265,7 @@ public double XScale { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### YScale @@ -276,7 +277,7 @@ public double YScale { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ZScale @@ -288,7 +289,7 @@ public double ZScale { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -318,7 +319,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -358,7 +359,7 @@ public void SetDefaultValue(ObjectBase objContainer, bool useDefault) The container. -`useDefault` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`useDefault` bool The useDefault. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.AttributeMeshFreeGeometryOutputProperty.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.AttributeMeshFreeGeometryOutputProperty.md index 52852fc477..baf060c31f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.AttributeMeshFreeGeometryOutputProperty.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.AttributeMeshFreeGeometryOutputProperty.md @@ -1,4 +1,5 @@ -# Class AttributeMeshFreeGeometryOutputProperty +# Class AttributeMeshFreeGeometryOutputProperty + Namespace: [VM.Managed.DAFUL.MeshFree](VM.Managed.DAFUL.MeshFree.md) Assembly: VMDMeshFree.dll @@ -11,9 +12,9 @@ public abstract class AttributeMeshFreeGeometryOutputProperty : AttributeFacetRe #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← AttributeFacetRefinementBase ← @@ -131,7 +132,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -182,27 +183,27 @@ The var angular tolerance. The var facet aspect ratio. -`bUseMaximumFacetSize` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseMaximumFacetSize` bool if set to true [b use maximum facet size]. -`bUseSurfaceAngularTolerance` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseSurfaceAngularTolerance` bool if set to true [b use surface angular tolerance]. -`bUseFacetAspectRatio` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseFacetAspectRatio` bool if set to true [b use facet aspect ratio]. -`bDoNotUseGRID_TO_EDGES` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDoNotUseGRID_TO_EDGES` bool if set to true [b do not use GRI d_ T o_ EDGES]. -`bDoNotUseApprox_eval` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDoNotUseApprox_eval` bool if set to true [b do not use approx_eval]. -`bUseDefaultSetting` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseDefaultSetting` bool if set to true [b use default setting]. @@ -210,7 +211,7 @@ if set to true [b use default setting]. Type of the e output. -`bUseUserDefinedDistance` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseUserDefinedDistance` bool if set to true [b use user defined distance]. @@ -256,31 +257,31 @@ The var angular tolerance. The var facet aspect ratio. -`bUseMaximumGridLine` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseMaximumGridLine` bool if set to true [b use maximum grid line]. -`bUseMaximumFacetSize` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseMaximumFacetSize` bool if set to true [b use maximum facet size]. -`bUseSurfaceAngularTolerance` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseSurfaceAngularTolerance` bool if set to true [b use surface angular tolerance]. -`bUseFacetAspectRatio` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseFacetAspectRatio` bool if set to true [b use facet aspect ratio]. -`bDoNotUseGRID_TO_EDGES` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDoNotUseGRID_TO_EDGES` bool if set to true [b do not use GRI d_ T o_ EDGES]. -`bDoNotUseApprox_eval` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDoNotUseApprox_eval` bool if set to true [b do not use approx_eval]. -`bUseDefaultSetting` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseDefaultSetting` bool if set to true [b use default setting]. @@ -288,7 +289,7 @@ if set to true [b use default setting]. Type of the e output. -`bUseUserDefinedDistance` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseUserDefinedDistance` bool if set to true [b use user defined distance]. @@ -320,7 +321,7 @@ public string GINFPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GeomPrecision @@ -332,7 +333,7 @@ public uint GeomPrecision { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### IsUseUserDefinedDistance @@ -344,7 +345,7 @@ public bool IsUseUserDefinedDistance { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReferenceFrame @@ -393,7 +394,7 @@ public bool UseDefaultSetting { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UserDefinedDistanceX @@ -405,7 +406,7 @@ public ExpressionValueVariable UserDefinedDistanceX { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### UserDefinedDistanceY @@ -417,7 +418,7 @@ public ExpressionValueVariable UserDefinedDistanceY { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### UserDefinedDistanceZ @@ -429,7 +430,7 @@ public ExpressionValueVariable UserDefinedDistanceZ { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.AttributeSeedPoint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.AttributeSeedPoint.md index 27ec07f4d3..8d2da09015 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.AttributeSeedPoint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.AttributeSeedPoint.md @@ -1,4 +1,5 @@ -# Class AttributeSeedPoint +# Class AttributeSeedPoint + Namespace: [VM.Managed.DAFUL.MeshFree](VM.Managed.DAFUL.MeshFree.md) Assembly: VMDMeshFree.dll @@ -11,9 +12,9 @@ public class AttributeSeedPoint : AttributeBase, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeSeedPoint](VM.Managed.DAFUL.MeshFree.AttributeSeedPoint.md) @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -119,7 +120,7 @@ public bool IsUse { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SeedPointList @@ -131,5 +132,5 @@ public List SeedPointList { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.BodyHelper.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.BodyHelper.md index ce033e58f1..91af1dfcc6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.BodyHelper.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.BodyHelper.md @@ -1,4 +1,5 @@ -# Class BodyHelper +# Class BodyHelper + Namespace: [VM.Managed.DAFUL.MeshFree](VM.Managed.DAFUL.MeshFree.md) Assembly: VMDMeshFree.dll @@ -11,7 +12,7 @@ public static class BodyHelper #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BodyHelper](VM.Managed.DAFUL.MeshFree.BodyHelper.md) #### Extension Methods @@ -36,11 +37,11 @@ public static bool CreateGINFFileV3_2(this Body body, string strMesherPath, stri The body. -`strMesherPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMesherPath` string The STR mesher path. -`strMeshFreePrePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMeshFreePrePath` string The STR mesh free pre path. @@ -52,11 +53,11 @@ The attr geom output prop. The factor. -`nLevel` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nLevel` uint The n level. -`strGINFPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGINFPath` string The STR GINF path. @@ -74,7 +75,7 @@ Type of the res mesh. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CreateGINFFileV3\_2\(Body, string, string, AttributeFacetRefinementBase, ConvertFactor, uint, bool, VectorBase, string, GeometryType, OutputType, ref MeshFreeMeshType, ref VectorBase\[\], ref uint\[\], ref VectorBase\[\], ref uint\[\]\) @@ -90,11 +91,11 @@ public static bool CreateGINFFileV3_2(this Body body, string strMesherPath, stri The body. -`strMesherPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMesherPath` string The STR mesher path. -`strMeshFreePrePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMeshFreePrePath` string The STR mesh free pre path. @@ -106,11 +107,11 @@ The attr geom output prop. The factor. -`nLevel` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nLevel` uint The n level. -`bUserDefinedDistanceFlag` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUserDefinedDistanceFlag` bool The user defined distance flag. @@ -118,7 +119,7 @@ The user defined distance flag. The user defined distance value. -`strGINFPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGINFPath` string The STR GINF path. @@ -138,7 +139,7 @@ Type of the res mesh. The ary pos tria. -`aryConTria` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`aryConTria` uint\[\] The ary con tria. @@ -146,13 +147,13 @@ The ary con tria. The ary pos tetra. -`aryConTetra` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`aryConTetra` uint\[\] The ary con tetra. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CreateGINFFileV3\_2\(IAttributeContainer\) @@ -168,7 +169,7 @@ public static bool CreateGINFFileV3_2(this IAttributeContainer container) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool Whether it's successful. @@ -186,13 +187,13 @@ public static bool CreateGINFFileV3_2(this IAttributeContainer container, string The container. -`strGINFPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGINFPath` string The STR GINF path. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CreateGINFFileV3\_2\(IAttributeContainer, string, VectorBase\[\], uint\[\], VectorBase\[\], uint\[\]\) @@ -208,7 +209,7 @@ public static bool CreateGINFFileV3_2(this IAttributeContainer container, string The container. -`strGINFPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGINFPath` string The STR GINF path. @@ -216,7 +217,7 @@ The STR GINF path. The predefined tria postion. -`aryConTria` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`aryConTria` uint\[\] The predefined tria connection. @@ -224,13 +225,13 @@ The predefined tria connection. The predefined tetra postion. -`aryConTetra` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`aryConTetra` uint\[\] The predefined tetra connection. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GenerateMeshInfo\(IAttributeContainer, ref MeshFreeMeshType, ref VectorBase\[\], ref uint\[\], ref VectorBase\[\], ref uint\[\], bool\) @@ -254,7 +255,7 @@ Type of the res mesh. The ary pos tria. -`aryConTria` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`aryConTria` uint\[\] The ary con tria. @@ -262,11 +263,11 @@ The ary con tria. The ary pos tetra. -`aryConTetra` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`aryConTetra` uint\[\] The ary con tetra. -`bUseDSDL` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseDSDL` bool if set to true [b use DSDL]. @@ -280,7 +281,7 @@ public static string GetDefaultGINFPath(string strBaseDir, ObjectBase objBody) #### Parameters -`strBaseDir` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBaseDir` string The base directory. @@ -290,7 +291,7 @@ The body. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string Default GINF name. @@ -308,7 +309,7 @@ public static double GetMeshFreeDefaultMaxFacetSize(this IAttributeContainer con #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double A default maximum facet size @@ -328,11 +329,11 @@ The container. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The meshfree property is null. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.BoundaryCondition.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.BoundaryCondition.md index c8da4e77e9..f28be4028d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.BoundaryCondition.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.BoundaryCondition.md @@ -1,4 +1,5 @@ -# Class BoundaryCondition +# Class BoundaryCondition + Namespace: [VM.Managed.DAFUL.MeshFree](VM.Managed.DAFUL.MeshFree.md) Assembly: VMDMeshFree.dll @@ -12,15 +13,15 @@ public class BoundaryCondition : BoundaryConditionBase ← ContainerObject ← -EntityBase ← -Entity ← -BoundaryConditionBase ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[BoundaryConditionBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/BoundaryConditionBase.cs) ← [BoundaryCondition](VM.Managed.DAFUL.MeshFree.BoundaryCondition.md) #### Implements @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -64,49 +65,49 @@ IEntityRelation #### Inherited Members -BoundaryConditionBase.FindLocal\(string\), -BoundaryConditionBase.GetUnnamedObjectName\(object\), -BoundaryConditionBase.LinkRequestUpdate\(object, LinkEventArgs\), -BoundaryConditionBase.OnDeserialization\(object\), -BoundaryConditionBase.Draw\(Canvas\), -BoundaryConditionBase.ReDraw\(\), -BoundaryConditionBase.ReplaceEntityImpl\(Document, IGenerable\), -BoundaryConditionBase.BCComponent, -BoundaryConditionBase.\_BCComponent, -BoundaryConditionBase.NameOfBody, -BoundaryConditionBase.ReferenceMarker, -BoundaryConditionBase.\_ReferenceMarker, -BoundaryConditionBase.HasLayerExplicitly, -BoundaryConditionBase.Hide, -BoundaryConditionBase.GenerableImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[BoundaryConditionBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/BoundaryConditionBase.cs), +[BoundaryConditionBase.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/BoundaryConditionBase.cs), +[BoundaryConditionBase.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/BoundaryConditionBase.cs), +[BoundaryConditionBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/BoundaryConditionBase.cs), +[BoundaryConditionBase.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/BoundaryConditionBase.cs), +[BoundaryConditionBase.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/BoundaryConditionBase.cs), +[BoundaryConditionBase.ReplaceEntityImpl\(Document, IGenerable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/BoundaryConditionBase.cs), +[BoundaryConditionBase.BCComponent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/BoundaryConditionBase.cs), +[BoundaryConditionBase.\_BCComponent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/BoundaryConditionBase.cs), +[BoundaryConditionBase.NameOfBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/BoundaryConditionBase.cs), +[BoundaryConditionBase.ReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/BoundaryConditionBase.cs), +[BoundaryConditionBase.\_ReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/BoundaryConditionBase.cs), +[BoundaryConditionBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/BoundaryConditionBase.cs), +[BoundaryConditionBase.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/BoundaryConditionBase.cs), +[BoundaryConditionBase.GenerableImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/BoundaryConditionBase.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -205,7 +206,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -250,7 +251,7 @@ public BoundaryCondition(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -266,7 +267,7 @@ protected override bool GenerableImpl { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -280,21 +281,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -308,7 +309,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.CADOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.CADOperation.md index 8157b7d3ea..41ecbe1554 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.CADOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.CADOperation.md @@ -1,4 +1,5 @@ -# Class CADOperation +# Class CADOperation + Namespace: [VM.Managed.DAFUL.MeshFree](VM.Managed.DAFUL.MeshFree.md) Assembly: VMDMeshFree.dll @@ -11,7 +12,7 @@ public class CADOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CADOperation](VM.Managed.DAFUL.MeshFree.CADOperation.md) #### Extension Methods @@ -66,7 +67,7 @@ The lower point. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UpdateMeshFreeNodePropertyAndMaxFacetSize\(IAttributeContainer\) @@ -84,5 +85,5 @@ The container. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Contact.PropertyTie.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Contact.PropertyTie.md index d37a51470a..44547c524c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Contact.PropertyTie.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Contact.PropertyTie.md @@ -1,4 +1,5 @@ -# Class PropertyTie +# Class PropertyTie + Namespace: [VM.Managed.DAFUL.MeshFree.Contact](VM.Managed.DAFUL.MeshFree.Contact.md) Assembly: VMDMeshFree.dll @@ -12,14 +13,14 @@ public class PropertyTie : PropertyTieBase, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyTieBase ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyTieBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/TieBase.cs) ← [PropertyTie](VM.Managed.DAFUL.MeshFree.Contact.PropertyTie.md) #### Implements @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -42,16 +43,16 @@ IHasID #### Inherited Members -PropertyTieBase.Initialize\(Unit.ConvertFactor\), -PropertyTieBase.PenaltyScale, -PropertyTieBase.UseGap, -PropertyTieBase.UseSlidingTie, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyTieBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/TieBase.cs), +[PropertyTieBase.PenaltyScale](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/TieBase.cs), +[PropertyTieBase.UseGap](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/TieBase.cs), +[PropertyTieBase.UseSlidingTie](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/TieBase.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -150,7 +151,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Contact.Tie.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Contact.Tie.md index 3bc6af190d..d8800751fa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Contact.Tie.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Contact.Tie.md @@ -1,4 +1,5 @@ -# Class Tie +# Class Tie + Namespace: [VM.Managed.DAFUL.MeshFree.Contact](VM.Managed.DAFUL.MeshFree.Contact.md) Assembly: VMDMeshFree.dll @@ -7,20 +8,20 @@ This class is to represent the tie in mesh free. ```csharp [Obsolete] -public class Tie : TieBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IDraw, IDrawIcon, IDrawChangeFacet, IGenerable, IReportable, IFlip, IHasReplaceableEntity, IEntityRelation +public class Tie : TieBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IDraw, IDrawIcon, IDrawChangeFacet, IGenerable, IReportable, IFlip, IHasReplaceableEntity, IEnableForSimulationScenario, IEntityRelation ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -TieBase ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[TieBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/TieBase.cs) ← [Tie](VM.Managed.DAFUL.MeshFree.Contact.Tie.md) #### Implements @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -60,54 +61,55 @@ IGenerable, IReportable, IFlip, IHasReplaceableEntity, +IEnableForSimulationScenario, IEntityRelation #### Inherited Members -TieBase.Initialize\(Unit.ConvertFactor\), -TieBase.GetUnnamedObjectName\(object\), -TieBase.FindLocal\(string\), -TieBase.OnDeserialization\(object\), -TieBase.LinkRequestUpdate\(object, LinkEventArgs\), -TieBase.Draw\(Canvas\), -TieBase.ReDraw\(\), -TieBase.ReplaceEntityImpl\(Document, IGenerable\), -TieBase.BaseGeom, -TieBase.ActionGeom, -TieBase.NameOfBaseBody, -TieBase.NameOfActionBody, -TieBase.HasLayerExplicitly, -TieBase.Hide, -TieBase.GenerableImpl, -TieBase.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[TieBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/TieBase.cs), +[TieBase.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/TieBase.cs), +[TieBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/TieBase.cs), +[TieBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/TieBase.cs), +[TieBase.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/TieBase.cs), +[TieBase.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/TieBase.cs), +[TieBase.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/TieBase.cs), +[TieBase.ReplaceEntityImpl\(Document, IGenerable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/TieBase.cs), +[TieBase.BaseGeom](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/TieBase.cs), +[TieBase.ActionGeom](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/TieBase.cs), +[TieBase.NameOfBaseBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/TieBase.cs), +[TieBase.NameOfActionBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/TieBase.cs), +[TieBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/TieBase.cs), +[TieBase.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/TieBase.cs), +[TieBase.GenerableImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/TieBase.cs), +[TieBase.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/TieBase.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -206,7 +208,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -251,7 +253,7 @@ public Tie(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -267,7 +269,7 @@ protected override bool GenerableImpl { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -281,7 +283,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Contact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Contact.md index ba75c2bd6f..3879dbd22f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Contact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Contact.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.MeshFree.Contact +# Namespace VM.Managed.DAFUL.MeshFree.Contact + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Force.ConcentratedLoad.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Force.ConcentratedLoad.md index 1a2176830d..c4eb854d01 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Force.ConcentratedLoad.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Force.ConcentratedLoad.md @@ -1,4 +1,5 @@ -# Class ConcentratedLoad +# Class ConcentratedLoad + Namespace: [VM.Managed.DAFUL.MeshFree.Force](VM.Managed.DAFUL.MeshFree.Force.md) Assembly: VMDMeshFree.dll @@ -12,15 +13,15 @@ public class ConcentratedLoad : ConcentratedLoadBase, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -ConcentratedLoadBase ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[ConcentratedLoadBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/ConcentratedLoadBase.cs) ← [ConcentratedLoad](VM.Managed.DAFUL.MeshFree.Force.ConcentratedLoad.md) #### Implements @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -63,51 +64,51 @@ IEntityRelation #### Inherited Members -ConcentratedLoadBase.GetUnnamedObjectName\(object\), -ConcentratedLoadBase.FindLocal\(string\), -ConcentratedLoadBase.OnDeserialization\(object\), -ConcentratedLoadBase.LinkRequestUpdate\(object, LinkEventArgs\), -ConcentratedLoadBase.Draw\(Canvas\), -ConcentratedLoadBase.ReDraw\(\), -ConcentratedLoadBase.ReplaceEntityImpl\(Document, IGenerable\), -ConcentratedLoadBase.CLoadComponent, -ConcentratedLoadBase.\_CLoadComponent, -ConcentratedLoadBase.CLoadRangeComponent, -ConcentratedLoadBase.Area, -ConcentratedLoadBase.NameOfBody, -ConcentratedLoadBase.HasLayerExplicitly, -ConcentratedLoadBase.Hide, -ConcentratedLoadBase.ReferenceType, -ConcentratedLoadBase.ArgumentType, -ConcentratedLoadBase.GenerableImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[ConcentratedLoadBase.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/ConcentratedLoadBase.cs), +[ConcentratedLoadBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/ConcentratedLoadBase.cs), +[ConcentratedLoadBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/ConcentratedLoadBase.cs), +[ConcentratedLoadBase.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/ConcentratedLoadBase.cs), +[ConcentratedLoadBase.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/ConcentratedLoadBase.cs), +[ConcentratedLoadBase.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/ConcentratedLoadBase.cs), +[ConcentratedLoadBase.ReplaceEntityImpl\(Document, IGenerable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/ConcentratedLoadBase.cs), +[ConcentratedLoadBase.CLoadComponent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/ConcentratedLoadBase.cs), +[ConcentratedLoadBase.\_CLoadComponent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/ConcentratedLoadBase.cs), +[ConcentratedLoadBase.CLoadRangeComponent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/ConcentratedLoadBase.cs), +[ConcentratedLoadBase.Area](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/ConcentratedLoadBase.cs), +[ConcentratedLoadBase.NameOfBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/ConcentratedLoadBase.cs), +[ConcentratedLoadBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/ConcentratedLoadBase.cs), +[ConcentratedLoadBase.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/ConcentratedLoadBase.cs), +[ConcentratedLoadBase.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/ConcentratedLoadBase.cs), +[ConcentratedLoadBase.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/ConcentratedLoadBase.cs), +[ConcentratedLoadBase.GenerableImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/ConcentratedLoadBase.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -206,7 +207,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -251,7 +252,7 @@ public ConcentratedLoad(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -267,7 +268,7 @@ protected override bool GenerableImpl { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -287,7 +288,7 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -301,7 +302,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Force.PressureLoad.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Force.PressureLoad.md index 0dd281221e..614657aaee 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Force.PressureLoad.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Force.PressureLoad.md @@ -1,4 +1,5 @@ -# Class PressureLoad +# Class PressureLoad + Namespace: [VM.Managed.DAFUL.MeshFree.Force](VM.Managed.DAFUL.MeshFree.Force.md) Assembly: VMDMeshFree.dll @@ -12,15 +13,15 @@ public class PressureLoad : PressureLoadBase, IObservableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -PressureLoadBase ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[PressureLoadBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/PressureLoadBase.cs) ← [PressureLoad](VM.Managed.DAFUL.MeshFree.Force.PressureLoad.md) #### Implements @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -63,50 +64,50 @@ IEntityRelation #### Inherited Members -PressureLoadBase.GetUnnamedObjectName\(object\), -PressureLoadBase.FindLocal\(string\), -PressureLoadBase.OnDeserialization\(object\), -PressureLoadBase.LinkRequestUpdate\(object, LinkEventArgs\), -PressureLoadBase.Draw\(Canvas\), -PressureLoadBase.ReDraw\(\), -PressureLoadBase.ReplaceEntityImpl\(Document, IGenerable\), -PressureLoadBase.PLoadComponent, -PressureLoadBase.\_PLoadComponent, -PressureLoadBase.NameOfBody, -PressureLoadBase.Area, -PressureLoadBase.HasLayerExplicitly, -PressureLoadBase.Hide, -PressureLoadBase.ReferenceType, -PressureLoadBase.ArgumentType, -PressureLoadBase.GenerableImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[PressureLoadBase.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/PressureLoadBase.cs), +[PressureLoadBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/PressureLoadBase.cs), +[PressureLoadBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/PressureLoadBase.cs), +[PressureLoadBase.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/PressureLoadBase.cs), +[PressureLoadBase.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/PressureLoadBase.cs), +[PressureLoadBase.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/PressureLoadBase.cs), +[PressureLoadBase.ReplaceEntityImpl\(Document, IGenerable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/PressureLoadBase.cs), +[PressureLoadBase.PLoadComponent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/PressureLoadBase.cs), +[PressureLoadBase.\_PLoadComponent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/PressureLoadBase.cs), +[PressureLoadBase.NameOfBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/PressureLoadBase.cs), +[PressureLoadBase.Area](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/PressureLoadBase.cs), +[PressureLoadBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/PressureLoadBase.cs), +[PressureLoadBase.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/PressureLoadBase.cs), +[PressureLoadBase.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/PressureLoadBase.cs), +[PressureLoadBase.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/PressureLoadBase.cs), +[PressureLoadBase.GenerableImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/PressureLoadBase.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -205,7 +206,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -250,7 +251,7 @@ public PressureLoad(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -266,7 +267,7 @@ protected override bool GenerableImpl { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -280,7 +281,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Force.PropertyConcentratedLoad.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Force.PropertyConcentratedLoad.md index 63b359045d..0804a003fd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Force.PropertyConcentratedLoad.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Force.PropertyConcentratedLoad.md @@ -1,4 +1,5 @@ -# Class PropertyConcentratedLoad +# Class PropertyConcentratedLoad + Namespace: [VM.Managed.DAFUL.MeshFree.Force](VM.Managed.DAFUL.MeshFree.Force.md) Assembly: VMDMeshFree.dll @@ -12,14 +13,14 @@ public class PropertyConcentratedLoad : PropertyConcentratedLoadBase, IObservabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyConcentratedLoadBase ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyConcentratedLoadBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/ConcentratedLoadBase.cs) ← [PropertyConcentratedLoad](VM.Managed.DAFUL.MeshFree.Force.PropertyConcentratedLoad.md) #### Implements @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -43,17 +44,17 @@ IFlexibleFunctionOwner #### Inherited Members -PropertyConcentratedLoadBase.Initialize\(Unit.ConvertFactor\), -PropertyConcentratedLoadBase.FindLocal\(string\), -PropertyConcentratedLoadBase.GetUnnamedObjectName\(object\), -PropertyConcentratedLoadBase.FunctionDirectionType, -PropertyConcentratedLoadBase.Function, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyConcentratedLoadBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/ConcentratedLoadBase.cs), +[PropertyConcentratedLoadBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/ConcentratedLoadBase.cs), +[PropertyConcentratedLoadBase.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/ConcentratedLoadBase.cs), +[PropertyConcentratedLoadBase.FunctionDirectionType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/ConcentratedLoadBase.cs), +[PropertyConcentratedLoadBase.Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/ConcentratedLoadBase.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -152,7 +153,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -199,7 +200,7 @@ public CompositeFieldUsable Force { get; set; } #### Property Value - CompositeFieldUsable + [CompositeFieldUsable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/CompositeField.cs) ### Orientation @@ -225,7 +226,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Force.PropertyPressureLoad.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Force.PropertyPressureLoad.md index 9a6c142638..48510d2e87 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Force.PropertyPressureLoad.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Force.PropertyPressureLoad.md @@ -1,4 +1,5 @@ -# Class PropertyPressureLoad +# Class PropertyPressureLoad + Namespace: [VM.Managed.DAFUL.MeshFree.Force](VM.Managed.DAFUL.MeshFree.Force.md) Assembly: VMDMeshFree.dll @@ -12,14 +13,14 @@ public class PropertyPressureLoad : PropertyPressureLoadBase, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyPressureLoadBase ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyPressureLoadBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/PressureLoadBase.cs) ← [PropertyPressureLoad](VM.Managed.DAFUL.MeshFree.Force.PropertyPressureLoad.md) #### Implements @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -43,17 +44,17 @@ IFlexibleFunctionOwner #### Inherited Members -PropertyPressureLoadBase.Initialize\(Unit.ConvertFactor\), -PropertyPressureLoadBase.FindLocal\(string\), -PropertyPressureLoadBase.GetUnnamedObjectName\(object\), -PropertyPressureLoadBase.PressureDirection, -PropertyPressureLoadBase.Function, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyPressureLoadBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/PressureLoadBase.cs), +[PropertyPressureLoadBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/PressureLoadBase.cs), +[PropertyPressureLoadBase.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/PressureLoadBase.cs), +[PropertyPressureLoadBase.PressureDirection](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/PressureLoadBase.cs), +[PropertyPressureLoadBase.Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/PressureLoadBase.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -152,7 +153,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -199,7 +200,7 @@ public CompositeFieldUsable Normal { get; set; } #### Property Value - CompositeFieldUsable + [CompositeFieldUsable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/CompositeField.cs) ### PrimaryTangential @@ -211,7 +212,7 @@ public CompositeFieldUsable PrimaryTangential { get; set; } #### Property Value - CompositeFieldUsable + [CompositeFieldUsable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/CompositeField.cs) ### SecondaryTangential @@ -223,7 +224,7 @@ public CompositeFieldUsable SecondaryTangential { get; set; } #### Property Value - CompositeFieldUsable + [CompositeFieldUsable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/CompositeField.cs) ### TangentialSecDirection @@ -249,7 +250,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Force.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Force.md index 6b56efcef9..7fc261f070 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Force.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Force.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.MeshFree.Force +# Namespace VM.Managed.DAFUL.MeshFree.Force + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.GeometryType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.GeometryType.md index 8e096cb3f8..fec459a296 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.GeometryType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.GeometryType.md @@ -1,4 +1,5 @@ -# Enum GeometryType +# Enum GeometryType + Namespace: [VM.Managed.DAFUL.MeshFree](VM.Managed.DAFUL.MeshFree.md) Assembly: VMDMeshFree.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.GetWeldPointOp.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.GetWeldPointOp.md index 4fcb724c51..73fe02d811 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.GetWeldPointOp.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.GetWeldPointOp.md @@ -1,4 +1,5 @@ -# Class GetWeldPointOp +# Class GetWeldPointOp + Namespace: [VM.Managed.DAFUL.MeshFree](VM.Managed.DAFUL.MeshFree.md) Assembly: VMDMeshFree.dll @@ -11,7 +12,7 @@ public class GetWeldPointOp : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [GetWeldPointOp](VM.Managed.DAFUL.MeshFree.GetWeldPointOp.md) @@ -123,7 +124,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LowerPoint @@ -147,7 +148,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Success @@ -159,7 +160,7 @@ public bool Success { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UpperPoint diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.MeshFreeConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.MeshFreeConfiguration.md index ccad0182f3..fe313bb231 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.MeshFreeConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.MeshFreeConfiguration.md @@ -1,4 +1,5 @@ -# Class MeshFreeConfiguration +# Class MeshFreeConfiguration + Namespace: [VM.Managed.DAFUL.MeshFree](VM.Managed.DAFUL.MeshFree.md) Assembly: VMDMeshFree.dll @@ -11,11 +12,11 @@ public class MeshFreeConfiguration : SimulationConfigurationExtraBase, IObservab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -SimulationConfigurationExtraBase ← +[SimulationConfigurationExtraBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SimulationConfigurationExtra.cs) ← [MeshFreeConfiguration](VM.Managed.DAFUL.MeshFree.MeshFreeConfiguration.md) #### Implements @@ -33,8 +34,8 @@ IVerifiable #### Inherited Members -SimulationConfigurationExtraBase.GetExtraInformation\(\), -SimulationConfigurationExtraBase.IsUse, +[SimulationConfigurationExtraBase.GetExtraInformation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SimulationConfigurationExtra.cs), +[SimulationConfigurationExtraBase.IsUse](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SimulationConfigurationExtra.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -132,7 +133,7 @@ public bool IsUseAllBodySettings { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LevelGroupOfAnalysis @@ -158,7 +159,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ConfigModify.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ConfigModify.md index 73a4a59aec..c16e8c5bd5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ConfigModify.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ConfigModify.md @@ -1,4 +1,5 @@ -# Class ConfigModify +# Class ConfigModify + Namespace: [VM.Managed.DAFUL.MeshFree.Operation](VM.Managed.DAFUL.MeshFree.Operation.md) Assembly: VMOpMeshFree.dll @@ -11,9 +12,9 @@ public class ConfigModify : SimulationRun, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [ConfigModify](VM.Managed.DAFUL.MeshFree.Operation.ConfigModify.md) #### Implements @@ -22,28 +23,29 @@ IOperation #### Inherited Members -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -132,7 +134,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.CreateGINFFile.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.CreateGINFFile.md index 91703383e9..ab103d2716 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.CreateGINFFile.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.CreateGINFFile.md @@ -1,4 +1,5 @@ -# Class CreateGINFFile +# Class CreateGINFFile + Namespace: [VM.Managed.DAFUL.MeshFree.Operation](VM.Managed.DAFUL.MeshFree.Operation.md) Assembly: VMOpMeshFree.dll @@ -11,7 +12,7 @@ public class CreateGINFFile #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CreateGINFFile](VM.Managed.DAFUL.MeshFree.Operation.CreateGINFFile.md) #### Extension Methods @@ -32,11 +33,11 @@ public CreateGINFFile(string strMeshFreePrePath, string strGInfFilePath, string #### Parameters -`strMeshFreePrePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMeshFreePrePath` string -`strGInfFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGInfFilePath` string -`strGINFInputPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGINFInputPath` string ## Methods @@ -50,5 +51,5 @@ public bool CreateGINF() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.CreateRBE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.CreateRBE.md index d95c13d053..39d67f4760 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.CreateRBE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.CreateRBE.md @@ -1,4 +1,5 @@ -# Class CreateRBE +# Class CreateRBE + Namespace: [VM.Managed.DAFUL.MeshFree.Operation](VM.Managed.DAFUL.MeshFree.Operation.md) Assembly: VMOpMeshFree.dll @@ -11,7 +12,7 @@ public class CreateRBE #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CreateRBE](VM.Managed.DAFUL.MeshFree.Operation.CreateRBE.md) #### Extension Methods @@ -44,7 +45,7 @@ public static RigidBodyElementSingle CreateRigidBodyElementSingle(Document3D act The document -`setFace` SetFace +`setFace` [SetFace](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SetFace.cs) The setface @@ -52,11 +53,11 @@ The setface The point -`strPrefixName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefixName` string The prefix name #### Returns - RigidBodyElementSingle + [RigidBodyElementSingle](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDMeshFree/RigidBodyElement.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ExportDFG.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ExportDFG.md index 3a62d232c0..59dd92f190 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ExportDFG.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ExportDFG.md @@ -1,4 +1,5 @@ -# Class ExportDFG +# Class ExportDFG + Namespace: [VM.Managed.DAFUL.MeshFree.Operation](VM.Managed.DAFUL.MeshFree.Operation.md) Assembly: VMOpMeshFree.dll @@ -11,10 +12,10 @@ public class ExportDFG : ExportDFG, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ExportDFG ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ExportDFG](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFG.cs) ← [ExportDFG](VM.Managed.DAFUL.MeshFree.Operation.ExportDFG.md) #### Implements @@ -23,31 +24,32 @@ IOperation #### Inherited Members -ExportDFG.Execute\(\), -ExportDFG.ExportDFGImpl\(\), -ExportDFG.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ExportDFG.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFG.cs), +[ExportDFG.ExportDFGImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFG.cs), +[ExportDFG.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFG.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -144,7 +146,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ExportDFGMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ExportDFGMeshFree.md index f4a0b6089e..75edf46f82 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ExportDFGMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ExportDFGMeshFree.md @@ -1,4 +1,5 @@ -# Class ExportDFGMeshFree +# Class ExportDFGMeshFree + Namespace: [VM.Managed.DAFUL.MeshFree.Operation](VM.Managed.DAFUL.MeshFree.Operation.md) Assembly: VMOpMeshFree.dll @@ -11,10 +12,10 @@ public class ExportDFGMeshFree : ExportDFG, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ExportDFG ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ExportDFG](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFG.cs) ← [ExportDFGMeshFree](VM.Managed.DAFUL.MeshFree.Operation.ExportDFGMeshFree.md) #### Implements @@ -23,31 +24,32 @@ IOperation #### Inherited Members -ExportDFG.Execute\(\), -ExportDFG.ExportDFGImpl\(\), -ExportDFG.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ExportDFG.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFG.cs), +[ExportDFG.ExportDFGImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFG.cs), +[ExportDFG.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFG.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -136,5 +138,5 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ExportDFS.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ExportDFS.md index 2a8cae1436..eeb56c6890 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ExportDFS.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ExportDFS.md @@ -1,4 +1,5 @@ -# Class ExportDFS +# Class ExportDFS + Namespace: [VM.Managed.DAFUL.MeshFree.Operation](VM.Managed.DAFUL.MeshFree.Operation.md) Assembly: VMOpMeshFree.dll @@ -11,10 +12,10 @@ public class ExportDFS : ExportDFS, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ExportDFS ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ExportDFS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs) ← [ExportDFS](VM.Managed.DAFUL.MeshFree.Operation.ExportDFS.md) #### Implements @@ -23,31 +24,32 @@ IOperation #### Inherited Members -ExportDFS.Execute\(\), -ExportDFS.ExportDFSImpl\(\), -ExportDFS.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ExportDFS.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs), +[ExportDFS.ExportDFSImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs), +[ExportDFS.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -136,7 +138,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ExportDFSMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ExportDFSMeshFree.md index 3a7e57159b..b99463da8b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ExportDFSMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ExportDFSMeshFree.md @@ -1,4 +1,5 @@ -# Class ExportDFSMeshFree +# Class ExportDFSMeshFree + Namespace: [VM.Managed.DAFUL.MeshFree.Operation](VM.Managed.DAFUL.MeshFree.Operation.md) Assembly: VMOpMeshFree.dll @@ -11,10 +12,10 @@ public class ExportDFSMeshFree : ExportDFS, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ExportDFS ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ExportDFS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs) ← [ExportDFSMeshFree](VM.Managed.DAFUL.MeshFree.Operation.ExportDFSMeshFree.md) #### Implements @@ -23,31 +24,32 @@ IOperation #### Inherited Members -ExportDFS.Execute\(\), -ExportDFS.ExportDFSImpl\(\), -ExportDFS.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ExportDFS.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs), +[ExportDFS.ExportDFSImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs), +[ExportDFS.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -136,5 +138,5 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ExportXML.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ExportXML.md index 2039d9a1da..365b14e736 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ExportXML.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ExportXML.md @@ -1,4 +1,5 @@ -# Class ExportXML +# Class ExportXML + Namespace: [VM.Managed.DAFUL.MeshFree.Operation](VM.Managed.DAFUL.MeshFree.Operation.md) Assembly: VMOpMeshFree.dll @@ -11,10 +12,10 @@ public class ExportXML : ExportXML, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ExportXML ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ExportXML](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportXML.cs) ← [ExportXML](VM.Managed.DAFUL.MeshFree.Operation.ExportXML.md) #### Implements @@ -23,31 +24,32 @@ IOperation #### Inherited Members -ExportXML.Execute\(\), -ExportXML.ExportXMLImpl\(\), -ExportXML.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ExportXML.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportXML.cs), +[ExportXML.ExportXMLImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportXML.cs), +[ExportXML.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportXML.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -136,7 +138,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ExportXMLMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ExportXMLMeshFree.md index 044e8ad9ed..9ea8b3b7d2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ExportXMLMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ExportXMLMeshFree.md @@ -1,4 +1,5 @@ -# Class ExportXMLMeshFree +# Class ExportXMLMeshFree + Namespace: [VM.Managed.DAFUL.MeshFree.Operation](VM.Managed.DAFUL.MeshFree.Operation.md) Assembly: VMOpMeshFree.dll @@ -11,10 +12,10 @@ public class ExportXMLMeshFree : ExportXML, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ExportXML ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ExportXML](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportXML.cs) ← [ExportXMLMeshFree](VM.Managed.DAFUL.MeshFree.Operation.ExportXMLMeshFree.md) #### Implements @@ -23,31 +24,32 @@ IOperation #### Inherited Members -ExportXML.Execute\(\), -ExportXML.ExportXMLImpl\(\), -ExportXML.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ExportXML.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportXML.cs), +[ExportXML.ExportXMLImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportXML.cs), +[ExportXML.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportXML.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -136,5 +138,5 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.MFConfigModify.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.MFConfigModify.md index e856157158..dd24b0d4f5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.MFConfigModify.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.MFConfigModify.md @@ -1,4 +1,5 @@ -# Class MFConfigModify +# Class MFConfigModify + Namespace: [VM.Managed.DAFUL.MeshFree.Operation](VM.Managed.DAFUL.MeshFree.Operation.md) Assembly: VMOpMeshFree.dll @@ -11,10 +12,10 @@ public class MFConfigModify : ShowMeshFreeSimulationDlg, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ShowSimulationDlg ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ShowSimulationDlg](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs) ← [ShowMeshFreeSimulationDlg](VM.Managed.DAFUL.MeshFree.Operation.ShowMeshFreeSimulationDlg.md) ← [MFConfigModify](VM.Managed.DAFUL.MeshFree.Operation.MFConfigModify.md) @@ -29,32 +30,33 @@ IOperation [ShowMeshFreeSimulationDlg.ExecuteImplNotPrePareSimulation\(\)](VM.Managed.DAFUL.MeshFree.Operation.ShowMeshFreeSimulationDlg.md\#VM\_Managed\_DAFUL\_MeshFree\_Operation\_ShowMeshFreeSimulationDlg\_ExecuteImplNotPrePareSimulation), [ShowMeshFreeSimulationDlg.UpdateUI\(IUIUpdate, Document\)](VM.Managed.DAFUL.MeshFree.Operation.ShowMeshFreeSimulationDlg.md\#VM\_Managed\_DAFUL\_MeshFree\_Operation\_ShowMeshFreeSimulationDlg\_UpdateUI\_VM\_Managed\_UI\_IUIUpdate\_VM\_Managed\_Document\_), [ShowMeshFreeSimulationDlg.Name](VM.Managed.DAFUL.MeshFree.Operation.ShowMeshFreeSimulationDlg.md\#VM\_Managed\_DAFUL\_MeshFree\_Operation\_ShowMeshFreeSimulationDlg\_Name), -ShowSimulationDlg.Execute\(\), -ShowSimulationDlg.SimulationRunImpl\(bool\), -ShowSimulationDlg.ExecuteImpl\(\), -ShowSimulationDlg.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ShowSimulationDlg.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[ShowSimulationDlg.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[ShowSimulationDlg.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[ShowSimulationDlg.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -143,7 +145,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.MeshFreeOpUtil.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.MeshFreeOpUtil.md index 302469e9e0..dd694d3eef 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.MeshFreeOpUtil.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.MeshFreeOpUtil.md @@ -1,4 +1,5 @@ -# Class MeshFreeOpUtil +# Class MeshFreeOpUtil + Namespace: [VM.Managed.DAFUL.MeshFree.Operation](VM.Managed.DAFUL.MeshFree.Operation.md) Assembly: VMOpMeshFree.dll @@ -11,7 +12,7 @@ public static class MeshFreeOpUtil #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [MeshFreeOpUtil](VM.Managed.DAFUL.MeshFree.Operation.MeshFreeOpUtil.md) #### Extension Methods @@ -38,7 +39,7 @@ Document to check SolidBody #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool Whether has only 1 lump for all SolidBodies @@ -58,7 +59,7 @@ Document to check SolidBody #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool Whether exist material for all SolidBodies diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ModeChangeOperationMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ModeChangeOperationMeshFree.md index 5c066f0502..82dbef37cb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ModeChangeOperationMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ModeChangeOperationMeshFree.md @@ -1,4 +1,5 @@ -# Class ModeChangeOperationMeshFree +# Class ModeChangeOperationMeshFree + Namespace: [VM.Managed.DAFUL.MeshFree.Operation](VM.Managed.DAFUL.MeshFree.Operation.md) Assembly: VMOpMeshFree.dll @@ -11,7 +12,7 @@ public class ModeChangeOperationMeshFree : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ModeChangeOperationMeshFree](VM.Managed.DAFUL.MeshFree.Operation.ModeChangeOperationMeshFree.md) @@ -109,7 +110,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.PartExportDFG.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.PartExportDFG.md index 070b095151..25313800fb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.PartExportDFG.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.PartExportDFG.md @@ -1,4 +1,5 @@ -# Class PartExportDFG +# Class PartExportDFG + Namespace: [VM.Managed.DAFUL.MeshFree.Operation](VM.Managed.DAFUL.MeshFree.Operation.md) Assembly: VMOpMeshFree.dll @@ -11,9 +12,9 @@ public class PartExportDFG : SimulateForPartComponentEigenvalue, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [SimulateForPartComponentEigenvalue](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md) ← [PartExportDFG](VM.Managed.DAFUL.MeshFree.Operation.PartExportDFG.md) @@ -23,6 +24,7 @@ IOperation #### Inherited Members +[SimulateForPartComponentEigenvalue.m\_lstObjEigen](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md\#VM\_Managed\_DAFUL\_MeshFree\_Operation\_SimulateForPartComponentEigenvalue\_m\_lstObjEigen), [SimulateForPartComponentEigenvalue.m\_param](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md\#VM\_Managed\_DAFUL\_MeshFree\_Operation\_SimulateForPartComponentEigenvalue\_m\_param), [SimulateForPartComponentEigenvalue.Execute\(\)](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md\#VM\_Managed\_DAFUL\_MeshFree\_Operation\_SimulateForPartComponentEigenvalue\_Execute), [SimulateForPartComponentEigenvalue.ReadExtraJournal\(XmlElement\)](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md\#VM\_Managed\_DAFUL\_MeshFree\_Operation\_SimulateForPartComponentEigenvalue\_ReadExtraJournal\_System\_Xml\_XmlElement\_), @@ -30,28 +32,29 @@ IOperation [SimulateForPartComponentEigenvalue.SimulationRunImpl\(bool\)](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md\#VM\_Managed\_DAFUL\_MeshFree\_Operation\_SimulateForPartComponentEigenvalue\_SimulationRunImpl\_System\_Boolean\_), [SimulateForPartComponentEigenvalue.AutoSetEigenvalueObject\(\)](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md\#VM\_Managed\_DAFUL\_MeshFree\_Operation\_SimulateForPartComponentEigenvalue\_AutoSetEigenvalueObject), [SimulateForPartComponentEigenvalue.Name](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md\#VM\_Managed\_DAFUL\_MeshFree\_Operation\_SimulateForPartComponentEigenvalue\_Name), -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -140,7 +143,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -160,5 +163,5 @@ protected override void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.PartExportDFS.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.PartExportDFS.md index 7b22172869..15f244ed74 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.PartExportDFS.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.PartExportDFS.md @@ -1,4 +1,5 @@ -# Class PartExportDFS +# Class PartExportDFS + Namespace: [VM.Managed.DAFUL.MeshFree.Operation](VM.Managed.DAFUL.MeshFree.Operation.md) Assembly: VMOpMeshFree.dll @@ -11,9 +12,9 @@ public class PartExportDFS : SimulateForPartComponentEigenvalue, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [SimulateForPartComponentEigenvalue](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md) ← [PartExportDFS](VM.Managed.DAFUL.MeshFree.Operation.PartExportDFS.md) @@ -23,6 +24,7 @@ IOperation #### Inherited Members +[SimulateForPartComponentEigenvalue.m\_lstObjEigen](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md\#VM\_Managed\_DAFUL\_MeshFree\_Operation\_SimulateForPartComponentEigenvalue\_m\_lstObjEigen), [SimulateForPartComponentEigenvalue.m\_param](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md\#VM\_Managed\_DAFUL\_MeshFree\_Operation\_SimulateForPartComponentEigenvalue\_m\_param), [SimulateForPartComponentEigenvalue.Execute\(\)](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md\#VM\_Managed\_DAFUL\_MeshFree\_Operation\_SimulateForPartComponentEigenvalue\_Execute), [SimulateForPartComponentEigenvalue.ReadExtraJournal\(XmlElement\)](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md\#VM\_Managed\_DAFUL\_MeshFree\_Operation\_SimulateForPartComponentEigenvalue\_ReadExtraJournal\_System\_Xml\_XmlElement\_), @@ -30,28 +32,29 @@ IOperation [SimulateForPartComponentEigenvalue.SimulationRunImpl\(bool\)](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md\#VM\_Managed\_DAFUL\_MeshFree\_Operation\_SimulateForPartComponentEigenvalue\_SimulationRunImpl\_System\_Boolean\_), [SimulateForPartComponentEigenvalue.AutoSetEigenvalueObject\(\)](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md\#VM\_Managed\_DAFUL\_MeshFree\_Operation\_SimulateForPartComponentEigenvalue\_AutoSetEigenvalueObject), [SimulateForPartComponentEigenvalue.Name](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md\#VM\_Managed\_DAFUL\_MeshFree\_Operation\_SimulateForPartComponentEigenvalue\_Name), -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -140,7 +143,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -160,5 +163,5 @@ protected override void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.PartExportFiles.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.PartExportFiles.md new file mode 100644 index 0000000000..188c6f585e --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.PartExportFiles.md @@ -0,0 +1,229 @@ +# Class PartExportFiles + + +Namespace: [VM.Managed.DAFUL.MeshFree.Operation](VM.Managed.DAFUL.MeshFree.Operation.md) +Assembly: VMOpMeshFree.dll + +```csharp +public class PartExportFiles : SimulateForPartComponentEigenvalue, IOperation +``` + +#### Inheritance + +object ← +OperationBase ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[SimulateForPartComponentEigenvalue](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md) ← +[PartExportFiles](VM.Managed.DAFUL.MeshFree.Operation.PartExportFiles.md) + +#### Implements + +IOperation + +#### Inherited Members + +[SimulateForPartComponentEigenvalue.m\_lstObjEigen](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md\#VM\_Managed\_DAFUL\_MeshFree\_Operation\_SimulateForPartComponentEigenvalue\_m\_lstObjEigen), +[SimulateForPartComponentEigenvalue.m\_param](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md\#VM\_Managed\_DAFUL\_MeshFree\_Operation\_SimulateForPartComponentEigenvalue\_m\_param), +[SimulateForPartComponentEigenvalue.Execute\(\)](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md\#VM\_Managed\_DAFUL\_MeshFree\_Operation\_SimulateForPartComponentEigenvalue\_Execute), +[SimulateForPartComponentEigenvalue.ReadExtraJournal\(XmlElement\)](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md\#VM\_Managed\_DAFUL\_MeshFree\_Operation\_SimulateForPartComponentEigenvalue\_ReadExtraJournal\_System\_Xml\_XmlElement\_), +[SimulateForPartComponentEigenvalue.WriteExtraJournal\(XmlWriter\)](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md\#VM\_Managed\_DAFUL\_MeshFree\_Operation\_SimulateForPartComponentEigenvalue\_WriteExtraJournal\_System\_Xml\_XmlWriter\_), +[SimulateForPartComponentEigenvalue.SimulationRunImpl\(bool\)](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md\#VM\_Managed\_DAFUL\_MeshFree\_Operation\_SimulateForPartComponentEigenvalue\_SimulationRunImpl\_System\_Boolean\_), +[SimulateForPartComponentEigenvalue.AutoSetEigenvalueObject\(\)](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md\#VM\_Managed\_DAFUL\_MeshFree\_Operation\_SimulateForPartComponentEigenvalue\_AutoSetEigenvalueObject), +[SimulateForPartComponentEigenvalue.Name](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md\#VM\_Managed\_DAFUL\_MeshFree\_Operation\_SimulateForPartComponentEigenvalue\_Name), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +OperationBase.g\_bRedrawKernel, +OperationBase.g\_bVerify, +OperationBase.g\_bSkipAddEvent, +OperationBase.g\_bDupicateMsg, +OperationBase.m\_bIsHistoryMerge, +OperationBase.Execute\(\), +OperationBase.PostExecute\(\), +OperationBase.GetInformation\(XmlWriter\), +OperationBase.Create\(string, View, object\), +OperationBase.Create\(string, IDocument, object\), +OperationBase.Create\(string, object\), +OperationBase.Create\(string\), +OperationBase.StartSession\(\), +OperationBase.StartSession\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSession\(OperationBase\), +OperationBase.StartSessionAndWait\(\), +OperationBase.StartSessionAndWait\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSessionAndWait\(OperationBase\), +OperationBase.Initialize\(OperationBase.ShowVerifyResult\), +OperationBase.RecordJournal\(OperationBase\), +OperationBase.UseSession\(string\), +OperationBase.raise\_OnOperationStatusChanged\(object, OperationStatusEventArgs\), +OperationBase.raise\_OnEndOperation\(object, EventArgs\), +OperationBase.ClearCurrentMark\(string\), +OperationBase.ClearCurrentMark\(IDocument\), +OperationBase.ClearCurrentMark\(\), +OperationBase.GlobalOverride, +OperationBase.IsDoingThread, +OperationBase.ExecuteMacro, +OperationBase.SimStatus, +OperationBase.Status, +OperationBase.autoEvents, +OperationBase.IsHistoryMerge, +OperationBase.SkipClearTemporaryLinkContainer, +OperationBase.PostExecuteClearTemporaryLinkContainer, +OperationBase.SkipEndOperation, +OperationBase.UseMacro, +OperationBase.MarkStatus, +OperationBase.UseThread, +OperationBase.Name, +OperationBase.ExecutableOnHold, +OperationBase.Override, +OperationBase.Parameter, +OperationBase.View, +OperationBase.Document, +OperationBase.OnEndOperation, +OperationBase.OnOperationStatusChanged + +#### Extension Methods + +[LinkPropertyItemCache.GetLinkProperties\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkProperties\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkPropertiesAndValues\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkPropertiesAndValues\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkedObjects\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkedObjects\_\_1\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_) + +## Constructors + +### PartExportFiles\(Document3D, string, bool, bool, bool, bool\) + +```csharp +public PartExportFiles(Document3D doc, string strFilePath, bool bWriteDFS, bool bWriteXML, bool bWriteDFG, bool bIncludeReferenceFiles) +``` + +#### Parameters + +`doc` Document3D + +`strFilePath` string + +`bWriteDFS` bool + +`bWriteXML` bool + +`bWriteDFG` bool + +`bIncludeReferenceFiles` bool + +### PartExportFiles\(JournalParameter\) + +```csharp +public PartExportFiles(JournalParameter jp) +``` + +#### Parameters + +`jp` JournalParameter + +## Fields + +### m\_bIncludeReferenceFiles + +```csharp +protected bool m_bIncludeReferenceFiles +``` + +#### Field Value + + bool + +### m\_bWriteDFG + +```csharp +protected bool m_bWriteDFG +``` + +#### Field Value + + bool + +### m\_bWriteDFS + +```csharp +protected bool m_bWriteDFS +``` + +#### Field Value + + bool + +### m\_bWriteXML + +```csharp +protected bool m_bWriteXML +``` + +#### Field Value + + bool + +## Properties + +### Name + +Gets the operation name. + +```csharp +public override string Name { get; } +``` + +#### Property Value + + string + +## Methods + +### ReadExtraJournal\(XmlElement\) + +```csharp +public override void ReadExtraJournal(XmlElement nodeArg) +``` + +#### Parameters + +`nodeArg` XmlElement + +### SimulationRunImpl\(bool\) + +```csharp +protected override void SimulationRunImpl(bool bWriteDFG) +``` + +#### Parameters + +`bWriteDFG` bool + +### WriteExtraJournal\(XmlWriter\) + +```csharp +public override void WriteExtraJournal(XmlWriter writer) +``` + +#### Parameters + +`writer` XmlWriter + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.PartExportMotionFiles.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.PartExportMotionFiles.md new file mode 100644 index 0000000000..9dde66af20 --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.PartExportMotionFiles.md @@ -0,0 +1,112 @@ +# Class PartExportMotionFiles + + +Namespace: [VM.Managed.DAFUL.MeshFree.Operation](VM.Managed.DAFUL.MeshFree.Operation.md) +Assembly: VMOpMeshFree.dll + +```csharp +public class PartExportMotionFiles : ExportMotionFiles, IOperation +``` + +#### Inheritance + +object ← +OperationBase ← +[DialogOperation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs) ← +[ExportMotionFiles](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs) ← +[PartExportMotionFiles](VM.Managed.DAFUL.MeshFree.Operation.PartExportMotionFiles.md) + +#### Implements + +IOperation + +#### Inherited Members + +[ExportMotionFiles.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[ExportMotionFiles.GetDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[ExportMotionFiles.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[ExportMotionFiles.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[ExportMotionFiles.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportMotionFiles.cs), +[DialogOperation.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.IsConainOpenedDic\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OpDialog](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +OperationBase.g\_bRedrawKernel, +OperationBase.g\_bVerify, +OperationBase.g\_bSkipAddEvent, +OperationBase.g\_bDupicateMsg, +OperationBase.m\_bIsHistoryMerge, +OperationBase.Execute\(\), +OperationBase.PostExecute\(\), +OperationBase.GetInformation\(XmlWriter\), +OperationBase.Create\(string, View, object\), +OperationBase.Create\(string, IDocument, object\), +OperationBase.Create\(string, object\), +OperationBase.Create\(string\), +OperationBase.StartSession\(\), +OperationBase.StartSession\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSession\(OperationBase\), +OperationBase.StartSessionAndWait\(\), +OperationBase.StartSessionAndWait\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSessionAndWait\(OperationBase\), +OperationBase.Initialize\(OperationBase.ShowVerifyResult\), +OperationBase.RecordJournal\(OperationBase\), +OperationBase.UseSession\(string\), +OperationBase.raise\_OnOperationStatusChanged\(object, OperationStatusEventArgs\), +OperationBase.raise\_OnEndOperation\(object, EventArgs\), +OperationBase.ClearCurrentMark\(string\), +OperationBase.ClearCurrentMark\(IDocument\), +OperationBase.ClearCurrentMark\(\), +OperationBase.GlobalOverride, +OperationBase.IsDoingThread, +OperationBase.ExecuteMacro, +OperationBase.SimStatus, +OperationBase.Status, +OperationBase.autoEvents, +OperationBase.IsHistoryMerge, +OperationBase.SkipClearTemporaryLinkContainer, +OperationBase.PostExecuteClearTemporaryLinkContainer, +OperationBase.SkipEndOperation, +OperationBase.UseMacro, +OperationBase.MarkStatus, +OperationBase.UseThread, +OperationBase.Name, +OperationBase.ExecutableOnHold, +OperationBase.Override, +OperationBase.Parameter, +OperationBase.View, +OperationBase.Document, +OperationBase.OnEndOperation, +OperationBase.OnOperationStatusChanged + +#### Extension Methods + +[LinkPropertyItemCache.GetLinkProperties\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkProperties\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkPropertiesAndValues\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkPropertiesAndValues\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkedObjects\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkedObjects\_\_1\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_) + +## Constructors + +### PartExportMotionFiles\(Document\) + +```csharp +public PartExportMotionFiles(Document doc) +``` + +#### Parameters + +`doc` Document + +## Methods + +### GetDialog\(\) + +```csharp +protected override OperationDialogBase GetDialog() +``` + +#### Returns + + OperationDialogBase + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.PartExportXML.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.PartExportXML.md index 63a0ac6c62..f52cea95cf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.PartExportXML.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.PartExportXML.md @@ -1,4 +1,5 @@ -# Class PartExportXML +# Class PartExportXML + Namespace: [VM.Managed.DAFUL.MeshFree.Operation](VM.Managed.DAFUL.MeshFree.Operation.md) Assembly: VMOpMeshFree.dll @@ -11,9 +12,9 @@ public class PartExportXML : SimulateForPartComponentEigenvalue, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [SimulateForPartComponentEigenvalue](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md) ← [PartExportXML](VM.Managed.DAFUL.MeshFree.Operation.PartExportXML.md) @@ -23,6 +24,7 @@ IOperation #### Inherited Members +[SimulateForPartComponentEigenvalue.m\_lstObjEigen](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md\#VM\_Managed\_DAFUL\_MeshFree\_Operation\_SimulateForPartComponentEigenvalue\_m\_lstObjEigen), [SimulateForPartComponentEigenvalue.m\_param](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md\#VM\_Managed\_DAFUL\_MeshFree\_Operation\_SimulateForPartComponentEigenvalue\_m\_param), [SimulateForPartComponentEigenvalue.Execute\(\)](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md\#VM\_Managed\_DAFUL\_MeshFree\_Operation\_SimulateForPartComponentEigenvalue\_Execute), [SimulateForPartComponentEigenvalue.ReadExtraJournal\(XmlElement\)](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md\#VM\_Managed\_DAFUL\_MeshFree\_Operation\_SimulateForPartComponentEigenvalue\_ReadExtraJournal\_System\_Xml\_XmlElement\_), @@ -30,28 +32,29 @@ IOperation [SimulateForPartComponentEigenvalue.SimulationRunImpl\(bool\)](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md\#VM\_Managed\_DAFUL\_MeshFree\_Operation\_SimulateForPartComponentEigenvalue\_SimulationRunImpl\_System\_Boolean\_), [SimulateForPartComponentEigenvalue.AutoSetEigenvalueObject\(\)](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md\#VM\_Managed\_DAFUL\_MeshFree\_Operation\_SimulateForPartComponentEigenvalue\_AutoSetEigenvalueObject), [SimulateForPartComponentEigenvalue.Name](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md\#VM\_Managed\_DAFUL\_MeshFree\_Operation\_SimulateForPartComponentEigenvalue\_Name), -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -140,7 +143,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -160,5 +163,5 @@ protected override void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ShowMeshFreeBodyPropertyDlg.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ShowMeshFreeBodyPropertyDlg.md index f303df0590..2c0af46b04 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ShowMeshFreeBodyPropertyDlg.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ShowMeshFreeBodyPropertyDlg.md @@ -1,4 +1,5 @@ -# Class ShowMeshFreeBodyPropertyDlg +# Class ShowMeshFreeBodyPropertyDlg + Namespace: [VM.Managed.DAFUL.MeshFree.Operation](VM.Managed.DAFUL.MeshFree.Operation.md) Assembly: VMOpMeshFree.dll @@ -11,7 +12,7 @@ public class ShowMeshFreeBodyPropertyDlg : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ShowMeshFreeBodyPropertyDlg](VM.Managed.DAFUL.MeshFree.Operation.ShowMeshFreeBodyPropertyDlg.md) @@ -99,7 +100,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ShowMeshFreeSimulationDlg.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ShowMeshFreeSimulationDlg.md index f34ae489e0..0c4e3f2f98 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ShowMeshFreeSimulationDlg.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ShowMeshFreeSimulationDlg.md @@ -1,4 +1,5 @@ -# Class ShowMeshFreeSimulationDlg +# Class ShowMeshFreeSimulationDlg + Namespace: [VM.Managed.DAFUL.MeshFree.Operation](VM.Managed.DAFUL.MeshFree.Operation.md) Assembly: VMOpMeshFree.dll @@ -11,10 +12,10 @@ public class ShowMeshFreeSimulationDlg : ShowSimulationDlg, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ShowSimulationDlg ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ShowSimulationDlg](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs) ← [ShowMeshFreeSimulationDlg](VM.Managed.DAFUL.MeshFree.Operation.ShowMeshFreeSimulationDlg.md) #### Derived @@ -27,32 +28,33 @@ IOperation #### Inherited Members -ShowSimulationDlg.Execute\(\), -ShowSimulationDlg.SimulationRunImpl\(bool\), -ShowSimulationDlg.ExecuteImpl\(\), -ShowSimulationDlg.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ShowSimulationDlg.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[ShowSimulationDlg.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[ShowSimulationDlg.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[ShowSimulationDlg.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -141,7 +143,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ShowPartBodyEigenValue.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ShowPartBodyEigenValue.md index 9997ec5953..7feff349ab 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ShowPartBodyEigenValue.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ShowPartBodyEigenValue.md @@ -1,4 +1,5 @@ -# Class ShowPartBodyEigenValue +# Class ShowPartBodyEigenValue + Namespace: [VM.Managed.DAFUL.MeshFree.Operation](VM.Managed.DAFUL.MeshFree.Operation.md) Assembly: VMOpMeshFree.dll @@ -11,9 +12,9 @@ public class ShowPartBodyEigenValue : DialogOperation, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -DialogOperation ← +[DialogOperation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs) ← [ShowPartBodyEigenValue](VM.Managed.DAFUL.MeshFree.Operation.ShowPartBodyEigenValue.md) #### Implements @@ -22,11 +23,11 @@ IOperation #### Inherited Members -DialogOperation.Execute\(\), -DialogOperation.OnApply\(object, CancelEventArgs\), -DialogOperation.IsConainOpenedDic\(Document\), -DialogOperation.Name, -DialogOperation.OpDialog, +[DialogOperation.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.IsConainOpenedDic\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OpDialog](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -105,7 +106,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -127,11 +128,11 @@ protected override void OnApply(object sender, CancelEventArgs arg) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. -`arg` [CancelEventArgs](https://learn.microsoft.com/dotnet/api/system.componentmodel.canceleventargs) +`arg` CancelEventArgs The instance containing the event data. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ShowSimulationDlg.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ShowSimulationDlg.md index ecf6c1d6ee..9ac7209637 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ShowSimulationDlg.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.ShowSimulationDlg.md @@ -1,4 +1,5 @@ -# Class ShowSimulationDlg +# Class ShowSimulationDlg + Namespace: [VM.Managed.DAFUL.MeshFree.Operation](VM.Managed.DAFUL.MeshFree.Operation.md) Assembly: VMOpMeshFree.dll @@ -11,10 +12,10 @@ public class ShowSimulationDlg : ShowSimulationDlg, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ShowSimulationDlg ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ShowSimulationDlg](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs) ← [ShowSimulationDlg](VM.Managed.DAFUL.MeshFree.Operation.ShowSimulationDlg.md) #### Implements @@ -23,32 +24,33 @@ IOperation #### Inherited Members -ShowSimulationDlg.Execute\(\), -ShowSimulationDlg.SimulationRunImpl\(bool\), -ShowSimulationDlg.ExecuteImpl\(\), -ShowSimulationDlg.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ShowSimulationDlg.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[ShowSimulationDlg.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[ShowSimulationDlg.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[ShowSimulationDlg.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ShowSimulationDlg.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -137,7 +139,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -161,7 +163,7 @@ protected override void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool if set to true [write DFG]. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md index e104d70e0c..a3e7e59ebe 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md @@ -1,4 +1,5 @@ -# Class SimulateForPartComponentEigenvalue +# Class SimulateForPartComponentEigenvalue + Namespace: [VM.Managed.DAFUL.MeshFree.Operation](VM.Managed.DAFUL.MeshFree.Operation.md) Assembly: VMOpMeshFree.dll @@ -11,15 +12,16 @@ public class SimulateForPartComponentEigenvalue : SimulationRun, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [SimulateForPartComponentEigenvalue](VM.Managed.DAFUL.MeshFree.Operation.SimulateForPartComponentEigenvalue.md) #### Derived [PartExportDFG](VM.Managed.DAFUL.MeshFree.Operation.PartExportDFG.md), [PartExportDFS](VM.Managed.DAFUL.MeshFree.Operation.PartExportDFS.md), +[PartExportFiles](VM.Managed.DAFUL.MeshFree.Operation.PartExportFiles.md), [PartExportXML](VM.Managed.DAFUL.MeshFree.Operation.PartExportXML.md) #### Implements @@ -28,28 +30,29 @@ IOperation #### Inherited Members -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -128,6 +131,16 @@ public SimulateForPartComponentEigenvalue(JournalParameter jp) ## Fields +### m\_lstObjEigen + +```csharp +protected List m_lstObjEigen +``` + +#### Field Value + + List + ### m\_param ```csharp @@ -150,7 +163,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -162,7 +175,7 @@ protected bool AutoSetEigenvalueObject() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Execute\(\) @@ -180,7 +193,7 @@ public override void ReadExtraJournal(XmlElement nodeArg) #### Parameters -`nodeArg` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`nodeArg` XmlElement ### SimulationRunImpl\(bool\) @@ -190,7 +203,7 @@ protected override void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool ### WriteExtraJournal\(XmlWriter\) @@ -200,5 +213,5 @@ public override void WriteExtraJournal(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.SimulationRun.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.SimulationRun.md index 4597be4665..fd51f7d3f7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.SimulationRun.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.SimulationRun.md @@ -1,4 +1,5 @@ -# Class SimulationRun +# Class SimulationRun + Namespace: [VM.Managed.DAFUL.MeshFree.Operation](VM.Managed.DAFUL.MeshFree.Operation.md) Assembly: VMOpMeshFree.dll @@ -11,9 +12,9 @@ public class SimulationRun : SimulationRun, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [SimulationRun](VM.Managed.DAFUL.MeshFree.Operation.SimulationRun.md) #### Implements @@ -22,28 +23,29 @@ IOperation #### Inherited Members -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -132,7 +134,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -144,7 +146,7 @@ protected override void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool ### UpdateUI\(IUIUpdate, Document\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.SimulationRunMeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.SimulationRunMeshFree.md index 975314e5cd..b0f8fc11a9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.SimulationRunMeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.SimulationRunMeshFree.md @@ -1,4 +1,5 @@ -# Class SimulationRunMeshFree +# Class SimulationRunMeshFree + Namespace: [VM.Managed.DAFUL.MeshFree.Operation](VM.Managed.DAFUL.MeshFree.Operation.md) Assembly: VMOpMeshFree.dll @@ -11,9 +12,9 @@ public class SimulationRunMeshFree : SimulationRun, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [SimulationRunMeshFree](VM.Managed.DAFUL.MeshFree.Operation.SimulationRunMeshFree.md) #### Implements @@ -22,28 +23,29 @@ IOperation #### Inherited Members -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -132,7 +134,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -144,7 +146,7 @@ protected override void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool ### UpdateUI\(IUIUpdate, Document\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.md index ed61877364..8c6abc7906 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Operation.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.MeshFree.Operation +# Namespace VM.Managed.DAFUL.MeshFree.Operation + ### Classes @@ -58,6 +59,10 @@ The export post dfg file operation The export post dfs file operation + [PartExportFiles](VM.Managed.DAFUL.MeshFree.Operation.PartExportFiles.md) + + [PartExportMotionFiles](VM.Managed.DAFUL.MeshFree.Operation.PartExportMotionFiles.md) + [PartExportXML](VM.Managed.DAFUL.MeshFree.Operation.PartExportXML.md) The export post xml file operation diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.OutputType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.OutputType.md index f1ffbb6803..aa89120184 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.OutputType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.OutputType.md @@ -1,4 +1,5 @@ -# Enum OutputType +# Enum OutputType + Namespace: [VM.Managed.DAFUL.MeshFree](VM.Managed.DAFUL.MeshFree.md) Assembly: VMDMeshFree.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.PropertyBoundaryCondition.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.PropertyBoundaryCondition.md index e10355f1ff..29f2b7e394 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.PropertyBoundaryCondition.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.PropertyBoundaryCondition.md @@ -1,4 +1,5 @@ -# Class PropertyBoundaryCondition +# Class PropertyBoundaryCondition + Namespace: [VM.Managed.DAFUL.MeshFree](VM.Managed.DAFUL.MeshFree.md) Assembly: VMDMeshFree.dll @@ -12,14 +13,14 @@ public class PropertyBoundaryCondition : PropertyBoundaryConditionBase, IObserva #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyBoundaryConditionBase ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyBoundaryConditionBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/BoundaryConditionBase.cs) ← [PropertyBoundaryCondition](VM.Managed.DAFUL.MeshFree.PropertyBoundaryCondition.md) #### Implements @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -42,21 +43,21 @@ IHasID #### Inherited Members -PropertyBoundaryConditionBase.Initialize\(Unit.ConvertFactor\), -PropertyBoundaryConditionBase.ConstrainedType, -PropertyBoundaryConditionBase.ElementRX, -PropertyBoundaryConditionBase.ElementRY, -PropertyBoundaryConditionBase.ElementRZ, -PropertyBoundaryConditionBase.ElementTX, -PropertyBoundaryConditionBase.ElementTY, -PropertyBoundaryConditionBase.ElementTZ, -PropertyBoundaryConditionBase.PenaltyScale, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyBoundaryConditionBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/BoundaryConditionBase.cs), +[PropertyBoundaryConditionBase.ConstrainedType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/BoundaryConditionBase.cs), +[PropertyBoundaryConditionBase.ElementRX](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/BoundaryConditionBase.cs), +[PropertyBoundaryConditionBase.ElementRY](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/BoundaryConditionBase.cs), +[PropertyBoundaryConditionBase.ElementRZ](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/BoundaryConditionBase.cs), +[PropertyBoundaryConditionBase.ElementTX](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/BoundaryConditionBase.cs), +[PropertyBoundaryConditionBase.ElementTY](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/BoundaryConditionBase.cs), +[PropertyBoundaryConditionBase.ElementTZ](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/BoundaryConditionBase.cs), +[PropertyBoundaryConditionBase.PenaltyScale](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/BoundaryConditionBase.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -155,7 +156,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.PropertyRigidBodyElementSingle.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.PropertyRigidBodyElementSingle.md index ee32fc295a..70d72dbe85 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.PropertyRigidBodyElementSingle.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.PropertyRigidBodyElementSingle.md @@ -1,4 +1,5 @@ -# Class PropertyRigidBodyElementSingle +# Class PropertyRigidBodyElementSingle + Namespace: [VM.Managed.DAFUL.MeshFree](VM.Managed.DAFUL.MeshFree.md) Assembly: VMDMeshFree.dll @@ -11,13 +12,13 @@ public class PropertyRigidBodyElementSingle : Property, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyRigidBodyElementSingle](VM.Managed.DAFUL.MeshFree.PropertyRigidBodyElementSingle.md) #### Implements @@ -31,7 +32,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -40,12 +41,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -144,7 +145,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -203,7 +204,7 @@ public ExpressionValueVariable PenaltyScale { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RBEType @@ -243,7 +244,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.PropertyWeld.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.PropertyWeld.md index cba6b1f3ec..e705b6dce4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.PropertyWeld.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.PropertyWeld.md @@ -1,4 +1,5 @@ -# Class PropertyWeld +# Class PropertyWeld + Namespace: [VM.Managed.DAFUL.MeshFree](VM.Managed.DAFUL.MeshFree.md) Assembly: VMDMeshFree.dll @@ -11,13 +12,13 @@ public class PropertyWeld : Property, IObservableObject, IDisposableObject, ILin #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyWeld](VM.Managed.DAFUL.MeshFree.PropertyWeld.md) #### Implements @@ -31,7 +32,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -40,12 +41,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -144,7 +145,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.ReferenceRigidBodyElement.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.ReferenceRigidBodyElement.md index 4c103a2566..3ea5976d6a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.ReferenceRigidBodyElement.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.ReferenceRigidBodyElement.md @@ -1,4 +1,5 @@ -# Class ReferenceRigidBodyElement +# Class ReferenceRigidBodyElement + Namespace: [VM.Managed.DAFUL.MeshFree](VM.Managed.DAFUL.MeshFree.md) Assembly: VMDMeshFree.dll @@ -11,9 +12,9 @@ public class ReferenceRigidBodyElement : Reference, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Reference ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, INamed, @@ -168,7 +169,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -205,11 +206,11 @@ protected ReferenceRigidBodyElement(SerializationInfo info, StreamingContext con #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. @@ -323,7 +324,7 @@ public string ConnectableFullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ConnectableName @@ -335,7 +336,7 @@ public string ConnectableName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ConnectablePosition @@ -359,7 +360,7 @@ public string ConnectablePostfixName { set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ParentType @@ -395,7 +396,7 @@ public string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -421,17 +422,17 @@ public bool GetGeometryNavigatorInformation(XmlDocument xmlDom, XmlElement xmlEl #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument information. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement information. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -445,21 +446,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlRootEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlRootEle` XmlElement The XmlDocument for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.RigidBodyElementPair.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.RigidBodyElementPair.md index 889e5896b1..3d707480c8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.RigidBodyElementPair.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.RigidBodyElementPair.md @@ -1,4 +1,5 @@ -# Class RigidBodyElementPair +# Class RigidBodyElementPair + Namespace: [VM.Managed.DAFUL.MeshFree](VM.Managed.DAFUL.MeshFree.md) Assembly: VMDMeshFree.dll @@ -11,14 +12,14 @@ public class RigidBodyElementPair : RigidBodyElementSingle, IObservableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [RigidBodyElementSingle](VM.Managed.DAFUL.MeshFree.RigidBodyElementSingle.md) ← [RigidBodyElementPair](VM.Managed.DAFUL.MeshFree.RigidBodyElementPair.md) @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -93,34 +94,34 @@ IReportable [RigidBodyElementSingle.ConnectablePosition](VM.Managed.DAFUL.MeshFree.RigidBodyElementSingle.md\#VM\_Managed\_DAFUL\_MeshFree\_RigidBodyElementSingle\_ConnectablePosition), [RigidBodyElementSingle.ConnectableBody](VM.Managed.DAFUL.MeshFree.RigidBodyElementSingle.md\#VM\_Managed\_DAFUL\_MeshFree\_RigidBodyElementSingle\_ConnectableBody), [RigidBodyElementSingle.Body](VM.Managed.DAFUL.MeshFree.RigidBodyElementSingle.md\#VM\_Managed\_DAFUL\_MeshFree\_RigidBodyElementSingle\_Body), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -219,7 +220,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -264,7 +265,7 @@ public RigidBodyElementPair(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -306,7 +307,7 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -326,7 +327,7 @@ The target object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if this instance is drawable; otherwise, false. @@ -340,7 +341,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -360,21 +361,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -388,13 +389,13 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The ob unnamed. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### OnDeserialization\(object\) @@ -406,7 +407,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.RigidBodyElementSingle.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.RigidBodyElementSingle.md index a183dce705..f677a9057a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.RigidBodyElementSingle.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.RigidBodyElementSingle.md @@ -1,4 +1,5 @@ -# Class RigidBodyElementSingle +# Class RigidBodyElementSingle + Namespace: [VM.Managed.DAFUL.MeshFree](VM.Managed.DAFUL.MeshFree.md) Assembly: VMDMeshFree.dll @@ -11,14 +12,14 @@ public class RigidBodyElementSingle : Entity, IO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [RigidBodyElementSingle](VM.Managed.DAFUL.MeshFree.RigidBodyElementSingle.md) #### Derived @@ -32,7 +33,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -70,34 +71,34 @@ IReportable #### Inherited Members -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -196,7 +197,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -241,7 +242,7 @@ public RigidBodyElementSingle(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -293,7 +294,7 @@ public string ConnectableFullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ConnectableName @@ -305,7 +306,7 @@ public string ConnectableName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ConnectablePosition @@ -329,7 +330,7 @@ public string ConnectablePostfixName { set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### HasLayerExplicitly @@ -341,7 +342,7 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Hide @@ -353,7 +354,7 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MasterPoint @@ -427,7 +428,7 @@ public virtual void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -447,7 +448,7 @@ The target object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if this instance is drawable; otherwise, false. @@ -461,7 +462,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -481,7 +482,7 @@ protected virtual IEnumerable GetChildListImpl() #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) + IEnumerable ### GetConnectorList\(List\) @@ -493,13 +494,13 @@ protected List GetConnectorList(List target) #### Parameters -`target` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`target` List The target. #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\) @@ -511,21 +512,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -539,13 +540,13 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The ob unnamed. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Initialize\(ConvertFactor\) @@ -571,7 +572,7 @@ public bool IsConnectedConnector() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LinkRequestUpdate\(object, LinkEventArgs\) @@ -583,7 +584,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -601,7 +602,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.UpdateMeshFreeNodePropertyAndMaxFacetSizeOp.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.UpdateMeshFreeNodePropertyAndMaxFacetSizeOp.md index aa9e03c63c..e806683314 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.UpdateMeshFreeNodePropertyAndMaxFacetSizeOp.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.UpdateMeshFreeNodePropertyAndMaxFacetSizeOp.md @@ -1,4 +1,5 @@ -# Class UpdateMeshFreeNodePropertyAndMaxFacetSizeOp +# Class UpdateMeshFreeNodePropertyAndMaxFacetSizeOp + Namespace: [VM.Managed.DAFUL.MeshFree](VM.Managed.DAFUL.MeshFree.md) Assembly: VMDMeshFree.dll @@ -11,7 +12,7 @@ public class UpdateMeshFreeNodePropertyAndMaxFacetSizeOp : OperationBase, IOpera #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [UpdateMeshFreeNodePropertyAndMaxFacetSizeOp](VM.Managed.DAFUL.MeshFree.UpdateMeshFreeNodePropertyAndMaxFacetSizeOp.md) @@ -111,7 +112,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -123,7 +124,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Success @@ -135,7 +136,7 @@ public bool Success { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Weld.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Weld.md index 61687ead4f..7c1dc05cbf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Weld.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.Weld.md @@ -1,4 +1,5 @@ -# Class Weld +# Class Weld + Namespace: [VM.Managed.DAFUL.MeshFree](VM.Managed.DAFUL.MeshFree.md) Assembly: VMDMeshFree.dll @@ -12,14 +13,14 @@ public class Weld : Entity, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [Weld](VM.Managed.DAFUL.MeshFree.Weld.md) #### Implements @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -60,34 +61,34 @@ IEntityRelation #### Inherited Members -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -186,7 +187,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -231,7 +232,7 @@ public Weld(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -259,7 +260,7 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Hide @@ -271,7 +272,7 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PointSetComponent @@ -283,7 +284,7 @@ public SetPoint PointSetComponent { get; set; } #### Property Value - SetPoint + [SetPoint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SetPoint.cs) ## Methods @@ -297,7 +298,7 @@ public virtual void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -311,7 +312,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -331,21 +332,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -359,13 +360,13 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The ob unnamed. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetWeldPoint\(Body, Body, Range, ref VectorBase\[\], ref VectorBase\[\]\) @@ -399,7 +400,7 @@ The vec lower. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetWeldPoint\(Range, ref VectorBase\[\], ref VectorBase\[\]\) @@ -425,7 +426,7 @@ The vec lower. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LinkRequestUpdate\(object, LinkEventArgs\) @@ -437,7 +438,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -455,7 +456,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -481,19 +482,19 @@ public static void ReadFile(Document3D activeDoc, string strFilePath, List +`Points` List The points. -`Directions` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`Directions` List The directions. -`Ranges` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`Ranges` List The ranges. @@ -507,11 +508,11 @@ public static void WriteFile(string strFilePath, string[] arLines) #### Parameters -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string The STR file path. -`arLines` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arLines` string\[\] The ar lines. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.md index 918f630af6..93f2393814 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFree.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.MeshFree +# Namespace VM.Managed.DAFUL.MeshFree + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFreePropertyForSolidBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFreePropertyForSolidBody.md index e1994cf076..4b17cdbb40 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFreePropertyForSolidBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MeshFreePropertyForSolidBody.md @@ -1,4 +1,5 @@ -# Class MeshFreePropertyForSolidBody +# Class MeshFreePropertyForSolidBody + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -12,9 +13,9 @@ public class MeshFreePropertyForSolidBody : LinkContainer, IObservableObject, ID #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MeshFreePropertyForSolidBody](VM.Managed.DAFUL.MeshFreePropertyForSolidBody.md) @@ -76,7 +77,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -129,7 +130,7 @@ public string GINFFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GeometryOutputProperty @@ -153,7 +154,7 @@ public uint GeometryPrecision { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### GeometryType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Mesher.AttributeGeometricMesher.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Mesher.AttributeGeometricMesher.md index d8ddeb0cee..5acfa62544 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Mesher.AttributeGeometricMesher.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Mesher.AttributeGeometricMesher.md @@ -1,4 +1,5 @@ -# Class AttributeGeometricMesher +# Class AttributeGeometricMesher + Namespace: [VM.Managed.DAFUL.Mesher](VM.Managed.DAFUL.Mesher.md) Assembly: VMDMesher.dll @@ -11,9 +12,9 @@ public class AttributeGeometricMesher : AttributeFacetRefinementBase, IObservabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← AttributeFacetRefinementBase ← @@ -127,7 +128,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -168,7 +169,7 @@ public override bool DrawGlobalBody { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -194,7 +195,7 @@ public static void SetDataToAttribute(AttributeGeometricMesher attr, string[] ar The attribute. -`arInput` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arInput` string\[\] The input array. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Mesher.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Mesher.md index 42f267522b..b1ff2730b7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Mesher.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Mesher.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Mesher +# Namespace VM.Managed.DAFUL.Mesher + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ModeForMFModal.DFMFUIInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ModeForMFModal.DFMFUIInfo.md index 2e9542af7b..3660181050 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ModeForMFModal.DFMFUIInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ModeForMFModal.DFMFUIInfo.md @@ -1,4 +1,5 @@ -# Struct ModeForMFModal.DFMFUIInfo +# Struct ModeForMFModal.DFMFUIInfo + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -21,11 +22,11 @@ public DFMFUIInfo(int nNode, int[] arnLevel) #### Parameters -`nNode` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNode` int The n node. -`arnLevel` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`arnLevel` int\[\] The level array. @@ -41,7 +42,7 @@ public int[] Levels { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] + int\[\] ### NumNode @@ -53,5 +54,5 @@ public int NumNode { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ModeForMFModal.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ModeForMFModal.md index 36bc9a1468..58e8eeac4a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ModeForMFModal.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ModeForMFModal.md @@ -1,4 +1,5 @@ -# Class ModeForMFModal +# Class ModeForMFModal + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,7 +12,7 @@ public class ModeForMFModal #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ModeForMFModal](VM.Managed.DAFUL.ModeForMFModal.md) #### Extension Methods @@ -40,7 +41,7 @@ public ModeForMFModal(double dEigenvalue) #### Parameters -`dEigenvalue` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dEigenvalue` double The d eigenvalue. @@ -54,15 +55,15 @@ public ModeForMFModal(double dEigenvalue, double dDamping, bool bUse) #### Parameters -`dEigenvalue` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dEigenvalue` double The d eigenvalue. -`dDamping` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDamping` double The d damping. -`bUse` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUse` bool if set to true [b use]. @@ -78,7 +79,7 @@ public double Damping { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Eigenvalue @@ -90,7 +91,7 @@ public double Eigenvalue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Use @@ -102,7 +103,7 @@ public bool Use { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -116,7 +117,7 @@ public static ModeForMFModal.DFMFUIInfo GetDFMFInfo(string strDFMFFile) #### Parameters -`strDFMFFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDFMFFile` string The string DFMF file. @@ -134,13 +135,13 @@ public static double[] GetMassPropFromDFMFFile(string strDFMFFile) #### Parameters -`strDFMFFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDFMFFile` string The string DFMF file. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GetModesFromDFMFFile\(string\) @@ -152,7 +153,7 @@ public static ModeForMFModal[] GetModesFromDFMFFile(string strDFMFFile) #### Parameters -`strDFMFFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDFMFFile` string The string DFMF file. @@ -170,5 +171,5 @@ public string GetXMLInformation() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MomentOfInertia.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MomentOfInertia.md index 6c5be59232..f3cd5954a6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MomentOfInertia.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MomentOfInertia.md @@ -1,4 +1,5 @@ -# Enum MomentOfInertia +# Enum MomentOfInertia + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiBodyCalculation.BodyInf.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiBodyCalculation.BodyInf.md index f98c1ec44b..4aeac564a0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiBodyCalculation.BodyInf.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiBodyCalculation.BodyInf.md @@ -1,4 +1,5 @@ -# Struct MultiBodyCalculation.BodyInf +# Struct MultiBodyCalculation.BodyInf + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -21,7 +22,7 @@ public BodyInf(double dMass) #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double The d mass. @@ -37,7 +38,7 @@ public double[] Inertia #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### mass @@ -49,7 +50,7 @@ public double mass #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### position @@ -61,5 +62,5 @@ public double[] position #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiBodyCalculation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiBodyCalculation.md index cba5db5913..87b1f34e9c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiBodyCalculation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiBodyCalculation.md @@ -1,4 +1,5 @@ -# Class MultiBodyCalculation +# Class MultiBodyCalculation + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,7 +12,7 @@ public class MultiBodyCalculation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [MultiBodyCalculation](VM.Managed.DAFUL.MultiBodyCalculation.md) #### Extension Methods @@ -40,27 +41,27 @@ public static bool GetTotalMassInertia(List lstGlobalCMPos, List +`lstGlobalCMPos` List The global CM pos. -`lstGlobalTensor` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstGlobalTensor` List The global tensor. -`lstGlobalMass` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> +`lstGlobalMass` List The global mass. -`lstSrcUnit` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstSrcUnit` List The unit of source document. -`lstDstUnit` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstDstUnit` List The unit of current document. -`nNumberOfBody` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNumberOfBody` int The number of body. @@ -74,7 +75,7 @@ The body info. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetTotalMassInertia\(List, List, List, int, VectorBase, ref BodyInf\) @@ -86,19 +87,19 @@ public static bool GetTotalMassInertia(List lstGlobalCMPos, List +`lstGlobalCMPos` List The global CM pos. -`lstGlobalTensor` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstGlobalTensor` List The global tensor. -`lstGlobalMass` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> +`lstGlobalMass` List The global mass. -`nNumberOfBody` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNumberOfBody` int The number of body. @@ -112,5 +113,27 @@ The body info. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool + +### GetTotalMassInertiaForAseembledBody\(List, List, List, int, ref BodyInf\) + +```csharp +public static bool GetTotalMassInertiaForAseembledBody(List lstGlobalCMPos, List lstGlobalTensor, List lstGlobalMass, int nNumberOfBody, ref MultiBodyCalculation.BodyInf bodyInf) +``` + +#### Parameters + +`lstGlobalCMPos` List + +`lstGlobalTensor` List + +`lstGlobalMass` List + +`nNumberOfBody` int + +`bodyInf` [MultiBodyCalculation](VM.Managed.DAFUL.MultiBodyCalculation.md).[BodyInf](VM.Managed.DAFUL.MultiBodyCalculation.BodyInf.md) + +#### Returns + + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiObject.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiObject.md index f008631c00..03acb271ce 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiObject.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiObject.md @@ -1,4 +1,5 @@ -# Class MultiObject +# Class MultiObject + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,12 +12,12 @@ public abstract class MultiObject : SubEntity, IObservableObject, IDisposableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [MultiObject](VM.Managed.DAFUL.MultiObject.md) #### Implements @@ -26,7 +27,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -45,17 +46,17 @@ INavigatorItem #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -187,7 +188,7 @@ public MultiObject(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of this multi object. @@ -215,7 +216,7 @@ public IEnumerable Enumerable { get; } #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) + IEnumerable ### MultiObjectContainer @@ -255,7 +256,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -275,5 +276,5 @@ The connection. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiObjectConnection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiObjectConnection.md index 64bab4cee9..95dcbd35f0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiObjectConnection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiObjectConnection.md @@ -1,4 +1,5 @@ -# Class MultiObjectConnection +# Class MultiObjectConnection + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public abstract class MultiObjectConnection : LinkContainer, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MultiObjectConnection](VM.Managed.DAFUL.MultiObjectConnection.md) @@ -79,7 +80,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -148,11 +149,11 @@ public abstract ObjectBase GetConnection(object obBase, object obAction) #### Parameters -`obBase` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obBase` object The base object for the connection object. -`obAction` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obAction` object The action object for the connection object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiObjectConnectorConnection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiObjectConnectorConnection.md index 48cd1a0fa2..c686785917 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiObjectConnectorConnection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiObjectConnectorConnection.md @@ -1,4 +1,5 @@ -# Class MultiObjectConnectorConnection +# Class MultiObjectConnectorConnection + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class MultiObjectConnectorConnection : MultiObjectConnection, IObservable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MultiObjectConnection](VM.Managed.DAFUL.MultiObjectConnection.md) ← [MultiObjectConnectorConnection](VM.Managed.DAFUL.MultiObjectConnectorConnection.md) @@ -79,7 +80,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -160,11 +161,11 @@ public override ObjectBase GetConnection(object obBase, object obAction) #### Parameters -`obBase` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obBase` object The base object for the connection object. -`obAction` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obAction` object The action object for the connection object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiObjectContainer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiObjectContainer.md index 0773d2c318..9af8239dd7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiObjectContainer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiObjectContainer.md @@ -1,4 +1,5 @@ -# Class MultiObjectContainer +# Class MultiObjectContainer + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public abstract class MultiObjectContainer : LinkContainer, IObservableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MultiObjectContainer](VM.Managed.DAFUL.MultiObjectContainer.md) @@ -81,7 +82,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -120,7 +121,7 @@ public MultiObjectContainer(ICollection collection) #### Parameters -`collection` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.icollection) +`collection` ICollection The collection of action objects. @@ -136,7 +137,7 @@ public ICollection Collection { get; } #### Property Value - [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[MultiObjectTarget](VM.Managed.DAFUL.MultiObjectTarget.md)\> + ICollection<[MultiObjectTarget](VM.Managed.DAFUL.MultiObjectTarget.md)\> ### Count @@ -148,7 +149,7 @@ protected abstract int Count { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### ObjectBaseList @@ -160,7 +161,7 @@ protected IList ObjectBaseList { get; } #### Property Value - [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1) + IList ### ObjectList @@ -173,7 +174,7 @@ protected List\> + List\> ### Objects @@ -197,7 +198,7 @@ public bool SwapActionBase { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -211,7 +212,7 @@ protected abstract IEnumerator GetEnumerator() #### Returns - [IEnumerator](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator\-1)<[MultiObjectTarget](VM.Managed.DAFUL.MultiObjectTarget.md)\> + IEnumerator<[MultiObjectTarget](VM.Managed.DAFUL.MultiObjectTarget.md)\> An object that can be used to iterate through the collection. @@ -223,7 +224,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object `arg` LinkEventArgs @@ -237,7 +238,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiObjectContainer1ToN.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiObjectContainer1ToN.md index a74c163f3d..a2339d8d16 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiObjectContainer1ToN.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiObjectContainer1ToN.md @@ -1,4 +1,5 @@ -# Class MultiObjectContainer1ToN +# Class MultiObjectContainer1ToN + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class MultiObjectContainer1ToN : MultiObjectContainer, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MultiObjectContainer](VM.Managed.DAFUL.MultiObjectContainer.md) ← [MultiObjectContainer1ToN](VM.Managed.DAFUL.MultiObjectContainer1ToN.md) @@ -85,7 +86,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,7 +117,7 @@ public MultiObjectContainer1ToN(ICollection collection, ObjectBase obBase) #### Parameters -`collection` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.icollection) +`collection` ICollection The collection of action objects. @@ -148,7 +149,7 @@ protected override int Count { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -162,7 +163,7 @@ protected override IEnumerator GetEnumerator() #### Returns - [IEnumerator](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator\-1)<[MultiObjectTarget](VM.Managed.DAFUL.MultiObjectTarget.md)\> + IEnumerator<[MultiObjectTarget](VM.Managed.DAFUL.MultiObjectTarget.md)\> An object that can be used to iterate through the collection. @@ -176,7 +177,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiObjectContainerChained.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiObjectContainerChained.md index 4ae1d94d91..c1e551bd8c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiObjectContainerChained.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiObjectContainerChained.md @@ -1,4 +1,5 @@ -# Class MultiObjectContainerChained +# Class MultiObjectContainerChained + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class MultiObjectContainerChained : MultiObjectContainer, IObservableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MultiObjectContainer](VM.Managed.DAFUL.MultiObjectContainer.md) ← [MultiObjectContainerChained](VM.Managed.DAFUL.MultiObjectContainerChained.md) @@ -85,7 +86,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,7 +117,7 @@ public MultiObjectContainerChained(ICollection collection) #### Parameters -`collection` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.icollection) +`collection` ICollection The collection of action objects. @@ -130,11 +131,11 @@ public MultiObjectContainerChained(ICollection collection, bool isClosed) #### Parameters -`collection` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.icollection) +`collection` ICollection The collection of action objects. -`isClosed` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isClosed` bool true if chained object makes closed loop; otherwise, false; @@ -151,7 +152,7 @@ public bool ClosedState { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Count @@ -163,7 +164,7 @@ protected override int Count { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -177,7 +178,7 @@ protected override IEnumerator GetEnumerator() #### Returns - [IEnumerator](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator\-1)<[MultiObjectTarget](VM.Managed.DAFUL.MultiObjectTarget.md)\> + IEnumerator<[MultiObjectTarget](VM.Managed.DAFUL.MultiObjectTarget.md)\> An object that can be used to iterate through the collection. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiObjectContainerNToN.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiObjectContainerNToN.md index cf8d4bceed..e8cf5c3644 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiObjectContainerNToN.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiObjectContainerNToN.md @@ -1,4 +1,5 @@ -# Class MultiObjectContainerNToN +# Class MultiObjectContainerNToN + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class MultiObjectContainerNToN : MultiObjectContainer, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MultiObjectContainer](VM.Managed.DAFUL.MultiObjectContainer.md) ← [MultiObjectContainerNToN](VM.Managed.DAFUL.MultiObjectContainerNToN.md) @@ -85,7 +86,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,7 +117,7 @@ public MultiObjectContainerNToN(ICollection collection, ObjectBase obBase) #### Parameters -`collection` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.icollection) +`collection` ICollection The collection of action objects. @@ -136,7 +137,7 @@ protected override int Count { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -150,7 +151,7 @@ protected override IEnumerator GetEnumerator() #### Returns - [IEnumerator](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator\-1)<[MultiObjectTarget](VM.Managed.DAFUL.MultiObjectTarget.md)\> + IEnumerator<[MultiObjectTarget](VM.Managed.DAFUL.MultiObjectTarget.md)\> An object that can be used to iterate through the collection. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiObjectTarget.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiObjectTarget.md index 6611eab701..a5726d7cac 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiObjectTarget.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.MultiObjectTarget.md @@ -1,4 +1,5 @@ -# Struct MultiObjectTarget +# Struct MultiObjectTarget + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -47,7 +48,7 @@ The base object. The action object. -`bSwapBaseAction` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bSwapBaseAction` bool if set to true [swap base action]. @@ -89,13 +90,13 @@ public override bool Equals(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The to compare with this instance. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the specified is equal to this instance; otherwise, false. @@ -109,7 +110,7 @@ public override int GetHashCode() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. @@ -135,7 +136,7 @@ The right. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool The result of the operator. @@ -159,7 +160,7 @@ The right. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool The result of the operator. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.AddMessage.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.AddMessage.md index e7ec3480a2..60e646b50b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.AddMessage.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.AddMessage.md @@ -1,4 +1,5 @@ -# Class AddMessage +# Class AddMessage + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class AddMessage : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [AddMessage](VM.Managed.DAFUL.Operation.AddMessage.md) @@ -85,7 +86,7 @@ public AddMessage(string strMessage) #### Parameters -`strMessage` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMessage` string ## Properties @@ -97,7 +98,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -109,7 +110,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.AddReportFile.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.AddReportFile.md index 999f66d87e..60f75720c6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.AddReportFile.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.AddReportFile.md @@ -1,4 +1,5 @@ -# Class AddReportFile +# Class AddReportFile + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class AddReportFile : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [AddReportFile](VM.Managed.DAFUL.Operation.AddReportFile.md) @@ -85,9 +86,9 @@ public AddReportFile(string strOutputName, string strFilePath) #### Parameters -`strOutputName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOutputName` string -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string ## Properties @@ -99,7 +100,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -111,7 +112,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ApplyGroup.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ApplyGroup.md index edc1279499..3a96050ba0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ApplyGroup.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ApplyGroup.md @@ -1,4 +1,5 @@ -# Class ApplyGroup +# Class ApplyGroup + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class ApplyGroup : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ApplyGroup](VM.Managed.DAFUL.Operation.ApplyGroup.md) @@ -85,11 +86,11 @@ public ApplyGroup(SubSystemDocument doc, string strName, string[] arObjectName) #### Parameters -`doc` SubSystemDocument +`doc` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string -`arObjectName` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arObjectName` string\[\] ### ApplyGroup\(JournalParameter\) @@ -113,7 +114,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -133,5 +134,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ApplyProperty.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ApplyProperty.md index e2f528104d..54235de16c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ApplyProperty.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ApplyProperty.md @@ -1,4 +1,5 @@ -# Class ApplyProperty +# Class ApplyProperty + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class ApplyProperty : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ApplyProperty](VM.Managed.DAFUL.Operation.ApplyProperty.md) @@ -85,7 +86,7 @@ public ApplyProperty(string xmlString, Document doc) #### Parameters -`xmlString` [string](https://learn.microsoft.com/dotnet/api/system.string) +`xmlString` string `doc` Document @@ -97,17 +98,17 @@ public ApplyProperty(string xmlString, Document doc, TabControl pzTabBase, XmlDo #### Parameters -`xmlString` [string](https://learn.microsoft.com/dotnet/api/system.string) +`xmlString` string `doc` Document -`pzTabBase` [TabControl](https://learn.microsoft.com/dotnet/api/system.windows.forms.tabcontrol) +`pzTabBase` TabControl -`Result` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`Result` XmlDocument -`bCheckSym` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bCheckSym` bool -`bMulti` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bMulti` bool ### ApplyProperty\(string, Document, TabControl, XmlDocument, bool, bool, string, string, bool\) @@ -117,23 +118,23 @@ public ApplyProperty(string xmlString, Document doc, TabControl pzTabBase, XmlDo #### Parameters -`xmlString` [string](https://learn.microsoft.com/dotnet/api/system.string) +`xmlString` string `doc` Document -`pzTabBase` [TabControl](https://learn.microsoft.com/dotnet/api/system.windows.forms.tabcontrol) +`pzTabBase` TabControl -`Result` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`Result` XmlDocument -`bCheckSym` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bCheckSym` bool -`bMulti` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bMulti` bool -`strOppName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOppName` string -`strOldName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOldName` string -`bModified` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bModified` bool ### ApplyProperty\(JournalParameter\) @@ -155,7 +156,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -167,7 +168,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -187,7 +188,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter ### ReloadData\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ApplyPropertyForPartDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ApplyPropertyForPartDocument.md index 27527248e7..16446632db 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ApplyPropertyForPartDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ApplyPropertyForPartDocument.md @@ -1,4 +1,5 @@ -# Class ApplyPropertyForPartDocument +# Class ApplyPropertyForPartDocument + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class ApplyPropertyForPartDocument : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ApplyPropertyForPartDocument](VM.Managed.DAFUL.Operation.ApplyPropertyForPartDocument.md) @@ -85,13 +86,13 @@ public ApplyPropertyForPartDocument(PartDocument doc, string strDFMFFilePath, st #### Parameters -`doc` PartDocument +`doc` [PartDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs) -`strDFMFFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDFMFFilePath` string -`strLastModifiedTimeToDFMFFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strLastModifiedTimeToDFMFFile` string -`strModesXML` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strModesXML` string ### ApplyPropertyForPartDocument\(JournalParameter\) @@ -115,7 +116,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -135,5 +136,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.BallInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.BallInfo.md index 7809f93c36..ba5a3c890b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.BallInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.BallInfo.md @@ -1,4 +1,5 @@ -# Class BallInfo +# Class BallInfo + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOPBallPlacing.dll @@ -9,7 +10,7 @@ public class BallInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BallInfo](VM.Managed.DAFUL.Operation.BallInfo.md) #### Extension Methods @@ -36,7 +37,7 @@ public Color Color { get; set; } #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### Enable @@ -46,7 +47,7 @@ public bool Enable { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -56,7 +57,7 @@ public string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Radius @@ -66,7 +67,7 @@ public double Radius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Show @@ -76,5 +77,5 @@ public bool Show { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CADNameUpdateOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CADNameUpdateOperation.md index 25049f86f0..f88ec92e86 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CADNameUpdateOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CADNameUpdateOperation.md @@ -1,4 +1,5 @@ -# Class CADNameUpdateOperation +# Class CADNameUpdateOperation + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class CADNameUpdateOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [CADNameUpdateOperation](VM.Managed.DAFUL.Operation.CADNameUpdateOperation.md) @@ -87,7 +88,7 @@ public CADNameUpdateOperation(Body cad, string strNewName) `cad` Body -`strNewName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strNewName` string ### CADNameUpdateOperation\(JournalParameter\) @@ -109,7 +110,7 @@ public bool IsSuccess { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -121,7 +122,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -141,5 +142,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ChangeEnableDisableOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ChangeEnableDisableOperation.md index d17ccad79e..6fcb9c8a3a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ChangeEnableDisableOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ChangeEnableDisableOperation.md @@ -1,4 +1,5 @@ -# Class ChangeEnableDisableOperation +# Class ChangeEnableDisableOperation + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class ChangeEnableDisableOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ChangeEnableDisableOperation](VM.Managed.DAFUL.Operation.ChangeEnableDisableOperation.md) @@ -85,9 +86,9 @@ public ChangeEnableDisableOperation(List lstEnableObject, bool bEnable #### Parameters -`lstEnableObject` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstEnableObject` List -`bEnable` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bEnable` bool ### ChangeEnableDisableOperation\(Document3D, IEnumerable, bool\) @@ -99,9 +100,9 @@ public ChangeEnableDisableOperation(Document3D doc3D, IEnumerable lstE `doc3D` Document3D -`lstEnableObject` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`lstEnableObject` IEnumerable -`bEnable` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bEnable` bool ### ChangeEnableDisableOperation\(JournalParameter\) @@ -125,7 +126,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -145,5 +146,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ChangeInterfaceOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ChangeInterfaceOperation.md index 33bb8754e4..2915e6ddfd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ChangeInterfaceOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ChangeInterfaceOperation.md @@ -1,4 +1,5 @@ -# Class ChangeInterfaceOperation +# Class ChangeInterfaceOperation + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class ChangeInterfaceOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ChangeInterfaceOperation](VM.Managed.DAFUL.Operation.ChangeInterfaceOperation.md) @@ -87,7 +88,7 @@ public ChangeInterfaceOperation(IInterface itf, bool bInterface, Document doc) `itf` IInterface -`bInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bInterface` bool `doc` Document @@ -113,7 +114,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -133,5 +134,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ChangeShowHideOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ChangeShowHideOperation.md index bb6be8604a..b4af8cf882 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ChangeShowHideOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ChangeShowHideOperation.md @@ -1,4 +1,5 @@ -# Class ChangeShowHideOperation +# Class ChangeShowHideOperation + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class ChangeShowHideOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ChangeShowHideOperation](VM.Managed.DAFUL.Operation.ChangeShowHideOperation.md) @@ -85,9 +86,9 @@ public ChangeShowHideOperation(bool bVisible, bool bGround) #### Parameters -`bVisible` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bVisible` bool -`bGround` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bGround` bool ### ChangeShowHideOperation\(JournalParameter\) @@ -109,7 +110,7 @@ protected override bool ExecutableOnHold { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -121,7 +122,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -141,5 +142,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ConfigModify.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ConfigModify.md index a2123d05e1..a2ea448574 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ConfigModify.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ConfigModify.md @@ -1,4 +1,5 @@ -# Class ConfigModify +# Class ConfigModify + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class ConfigModify : SimulationRun, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [SimulationRun](VM.Managed.DAFUL.Operation.SimulationRun.md) ← [ConfigModify](VM.Managed.DAFUL.Operation.ConfigModify.md) @@ -37,6 +38,7 @@ IOperation [SimulationRun.ApplySimulation\(SimulationFormBase\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_ApplySimulation\_VM\_Managed\_DAFUL\_Pre\_Forms\_SimulationFormBase\_), [SimulationRun.ExecuteImpl\(\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_ExecuteImpl), [SimulationRun.ExecuteImplNotPrePareSimulation\(\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_ExecuteImplNotPrePareSimulation), +[SimulationRun.WriteJournalCore\(string\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_WriteJournalCore\_System\_String\_), [SimulationRun.Name](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_Name), [SimulationRun.SimulationForm](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_SimulationForm), [SimulationRun.NotPrePareSimulation](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_NotPrePareSimulation), @@ -132,7 +134,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ConversionMessage.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ConversionMessage.md index fb25cdda5c..4a544aa755 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ConversionMessage.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ConversionMessage.md @@ -1,4 +1,5 @@ -# Class ConversionMessage +# Class ConversionMessage + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class ConversionMessage : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ConversionMessage](VM.Managed.DAFUL.Operation.ConversionMessage.md) @@ -85,7 +86,7 @@ public ConversionMessage(string strMessage) #### Parameters -`strMessage` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMessage` string ## Properties @@ -97,7 +98,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -109,7 +110,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateBallOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateBallOperation.md index 08e19763f4..81a6cf8a52 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateBallOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateBallOperation.md @@ -1,4 +1,5 @@ -# Class CreateBallOperation +# Class CreateBallOperation + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOPBallPlacing.dll @@ -9,7 +10,7 @@ public class CreateBallOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [CreateBallOperation](VM.Managed.DAFUL.Operation.CreateBallOperation.md) @@ -105,7 +106,7 @@ public string FacesetKey { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IsHistoryMerge @@ -115,7 +116,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Key @@ -125,7 +126,7 @@ public string Key { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Name @@ -137,7 +138,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateBody.md index a28262ee1e..9a3869f44d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateBody.md @@ -1,4 +1,5 @@ -# Class CreateBody +# Class CreateBody + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class CreateBody #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CreateBody](VM.Managed.DAFUL.Operation.CreateBody.md) #### Extension Methods @@ -40,23 +41,23 @@ public static SolidBody CreateBlockBody(SubSystemDocument docSub, string strName #### Parameters -`docSub` SubSystemDocument +`docSub` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The document -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The name -`dWidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dWidth` double The width -`dHeight` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHeight` double The height -`dDepth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dDepth` double The depth @@ -66,7 +67,7 @@ the position #### Returns - SolidBody + [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ### CreateCylinderBody\(Document, string, PointBase, PointBase, double\) @@ -82,7 +83,7 @@ public static SolidBody CreateCylinderBody(Document document, string strName, Po The document -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The name @@ -94,13 +95,13 @@ The bottom position The top position -`dRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadius` double The radius #### Returns - SolidBody + [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ### CreateCylinderBody\(Document, PointBase, PointBase, double\) @@ -124,7 +125,7 @@ The bottom position The top position -`dRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadius` double The radius @@ -146,11 +147,11 @@ public static SolidBody CreateSphereBody(Document document, string name, double The document -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name -`dRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadius` double The radius @@ -158,17 +159,17 @@ The radius The position -`getNewEntityName` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`getNewEntityName` bool Flag for creating a new entity if there is already an entity with the same name -`addToDocument` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`addToDocument` bool Flag for add created element to document. #### Returns - SolidBody + [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ### CreateSphereBody\(Document, string, string, PointBase, bool, bool\) @@ -184,11 +185,11 @@ public static SolidBody CreateSphereBody(Document document, string name, string The document -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name -`strRadius` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRadius` string The radius @@ -196,15 +197,15 @@ The radius The position -`getNewEntityName` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`getNewEntityName` bool Flag for creating a new entity if there is already an entity with the same name -`addToDocument` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`addToDocument` bool Flag for add created element to document. #### Returns - SolidBody + [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateEntityForJournal.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateEntityForJournal.md index 390cf3bd64..4ea29de8bd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateEntityForJournal.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateEntityForJournal.md @@ -1,4 +1,5 @@ -# Class CreateEntityForJournal +# Class CreateEntityForJournal + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class CreateEntityForJournal : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [CreateEntityForJournal](VM.Managed.DAFUL.Operation.CreateEntityForJournal.md) @@ -85,9 +86,9 @@ public CreateEntityForJournal(string strXML, string strType) #### Parameters -`strXML` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXML` string -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string ### CreateEntityForJournal\(JournalParameter\) @@ -111,7 +112,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -131,5 +132,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateFaceset.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateFaceset.md index 2d86b4c03b..01fc92e6e6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateFaceset.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateFaceset.md @@ -1,4 +1,5 @@ -# Class CreateFaceset +# Class CreateFaceset + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class CreateFaceset : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [CreateFaceset](VM.Managed.DAFUL.Operation.CreateFaceset.md) @@ -109,7 +110,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -123,13 +124,13 @@ public static SetFace CreateSetFace(Document3D document, List lstPID, Objec `document` Document3D -`lstPID` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`lstPID` List `objParent` ObjectBase #### Returns - SetFace + [SetFace](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SetFace.cs) ### CreateSetFace\(Document3D, string, List, ObjectBase\) @@ -141,15 +142,15 @@ public static SetFace CreateSetFace(Document3D document, string strName, List +`lstPID` List `objParent` ObjectBase #### Returns - SetFace + [SetFace](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SetFace.cs) ### CreateSetFaceWithFaceIndex\(Document3D, List, ObjectBase\) @@ -161,13 +162,13 @@ public static SetFace CreateSetFaceWithFaceIndex(Document3D document, List `document` Document3D -`lstFaceIndex` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`lstFaceIndex` List `objParent` ObjectBase #### Returns - SetFace + [SetFace](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SetFace.cs) ### Execute\(\) @@ -185,5 +186,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateFacesetForPart.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateFacesetForPart.md index 25d629401a..d1d80cf9e0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateFacesetForPart.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateFacesetForPart.md @@ -1,4 +1,5 @@ -# Class CreateFacesetForPart +# Class CreateFacesetForPart + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class CreateFacesetForPart : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [CreateFacesetForPart](VM.Managed.DAFUL.Operation.CreateFacesetForPart.md) @@ -107,7 +108,7 @@ protected uint[] m_arnFace #### Field Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] + uint\[\] ### m\_doc @@ -127,7 +128,7 @@ protected string m_strParent #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Properties @@ -141,7 +142,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -161,5 +162,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateInstanceContainerForJournal.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateInstanceContainerForJournal.md index dd586a055d..ab2639b3f3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateInstanceContainerForJournal.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateInstanceContainerForJournal.md @@ -1,4 +1,5 @@ -# Class CreateInstanceContainerForJournal +# Class CreateInstanceContainerForJournal + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class CreateInstanceContainerForJournal : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [CreateInstanceContainerForJournal](VM.Managed.DAFUL.Operation.CreateInstanceContainerForJournal.md) @@ -85,11 +86,11 @@ public CreateInstanceContainerForJournal(string strXML, string strType, string s #### Parameters -`strXML` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXML` string -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string -`strSubFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSubFilePath` string `trans` TransformBase @@ -115,7 +116,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -135,5 +136,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateMagnetic.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateMagnetic.md index a90c6ed7e0..df2349b246 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateMagnetic.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateMagnetic.md @@ -1,4 +1,5 @@ -# Class CreateMagnetic +# Class CreateMagnetic + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class CreateMagnetic : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [CreateMagnetic](VM.Managed.DAFUL.Operation.CreateMagnetic.md) @@ -97,7 +98,7 @@ public CreateMagnetic(Document doc, IEnumerable groupNames) `doc` Document -`groupNames` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`groupNames` IEnumerable ### CreateMagnetic\(JournalParameter\) @@ -121,7 +122,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -141,5 +142,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateMarker.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateMarker.md index 1f621fcd1e..d7a69749ba 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateMarker.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateMarker.md @@ -1,4 +1,5 @@ -# Class CreateMarker +# Class CreateMarker + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class CreateMarker #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CreateMarker](VM.Managed.DAFUL.Operation.CreateMarker.md) #### Extension Methods @@ -52,15 +53,15 @@ The parent body The transform -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name -`isPrefix` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isPrefix` bool #### Returns - Marker + [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) ### CreatePartMarkerOnBody\(Document3D, IPartMarkerParent, TransformBase, string\) @@ -84,11 +85,11 @@ The parent body The transform -`strPrefixName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefixName` string The pre-fix name #### Returns - Marker + [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateMarkerForJournal.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateMarkerForJournal.md index 33bf31c1bd..4b59715012 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateMarkerForJournal.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateMarkerForJournal.md @@ -1,4 +1,5 @@ -# Class CreateMarkerForJournal +# Class CreateMarkerForJournal + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class CreateMarkerForJournal : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [CreateMarkerForJournal](VM.Managed.DAFUL.Operation.CreateMarkerForJournal.md) @@ -85,11 +86,11 @@ public CreateMarkerForJournal(string strXML, string strType, string strBodyName) #### Parameters -`strXML` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXML` string -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string -`strBodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBodyName` string ### CreateMarkerForJournal\(JournalParameter\) @@ -113,7 +114,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -133,5 +134,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateSplineForMaterial.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateSplineForMaterial.md index 5eb3210c27..781ecb1277 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateSplineForMaterial.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.CreateSplineForMaterial.md @@ -1,4 +1,5 @@ -# Class CreateSplineForMaterial +# Class CreateSplineForMaterial + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class CreateSplineForMaterial : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [CreateSplineForMaterial](VM.Managed.DAFUL.Operation.CreateSplineForMaterial.md) @@ -87,11 +88,11 @@ public CreateSplineForMaterial(Document3D doc3D, List lstX, List `doc3D` Document3D -`lstX` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> +`lstX` List -`lstY` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> +`lstY` List -`MaterialName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`MaterialName` string ### CreateSplineForMaterial\(JournalParameter\) @@ -113,7 +114,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -125,7 +126,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Spline @@ -155,5 +156,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.DeleteBallOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.DeleteBallOperation.md index 7fb30ecba3..d74b66ad96 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.DeleteBallOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.DeleteBallOperation.md @@ -1,4 +1,5 @@ -# Class DeleteBallOperation +# Class DeleteBallOperation + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOPBallPlacing.dll @@ -9,7 +10,7 @@ public class DeleteBallOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [DeleteBallOperation](VM.Managed.DAFUL.Operation.DeleteBallOperation.md) @@ -83,7 +84,7 @@ public DeleteBallOperation(string key) #### Parameters -`key` [string](https://learn.microsoft.com/dotnet/api/system.string) +`key` string ### DeleteBallOperation\(UIntPtr\) @@ -93,7 +94,7 @@ public DeleteBallOperation(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr ## Properties @@ -105,7 +106,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -117,7 +118,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.DeleteOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.DeleteOperation.md index 9d24fb9e6d..f5b210bf2a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.DeleteOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.DeleteOperation.md @@ -1,4 +1,5 @@ -# Class DeleteOperation +# Class DeleteOperation + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class DeleteOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [DeleteOperation](VM.Managed.DAFUL.Operation.DeleteOperation.md) @@ -97,7 +98,7 @@ public DeleteOperation(Document3D doc3D, bool bNotDelMsg) `doc3D` Document3D -`bNotDelMsg` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bNotDelMsg` bool ### DeleteOperation\(Document3D, IEnumerable\) @@ -109,7 +110,7 @@ public DeleteOperation(Document3D document3D, IEnumerable objectBase `document3D` Document3D -`objectBases` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`objectBases` IEnumerable ### DeleteOperation\(JournalParameter\) @@ -133,7 +134,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Result @@ -143,7 +144,7 @@ public bool Result { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -163,5 +164,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.DialogOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.DialogOperation.md index 9c857a6d84..10394ad0dd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.DialogOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.DialogOperation.md @@ -1,4 +1,5 @@ -# Class DialogOperation +# Class DialogOperation + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,10 +12,14 @@ public class DialogOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [DialogOperation](VM.Managed.DAFUL.Operation.DialogOperation.md) +#### Derived + +[ExportMotionFiles](VM.Managed.DAFUL.Operation.ExportMotionFiles.md) + #### Implements IOperation @@ -105,7 +110,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### OpDialog @@ -141,7 +146,7 @@ protected static bool IsConainOpenedDic(Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OnApply\(object, CancelEventArgs\) @@ -153,11 +158,11 @@ protected virtual void OnApply(object sender, CancelEventArgs arg) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. -`arg` [CancelEventArgs](https://learn.microsoft.com/dotnet/api/system.componentmodel.canceleventargs) +`arg` CancelEventArgs The instance containing the event data. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.DoubleClickOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.DoubleClickOperation.md index 15b94273ed..d42e5d55c8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.DoubleClickOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.DoubleClickOperation.md @@ -1,4 +1,5 @@ -# Class DoubleClickOperation +# Class DoubleClickOperation + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class DoubleClickOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [DoubleClickOperation](VM.Managed.DAFUL.Operation.DoubleClickOperation.md) @@ -103,7 +104,7 @@ protected override bool ExecutableOnHold { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsHistoryMerge @@ -115,7 +116,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -127,7 +128,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.DuplicateOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.DuplicateOperation.md index 65e3fbdeef..81d82a61f5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.DuplicateOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.DuplicateOperation.md @@ -1,4 +1,5 @@ -# Class DuplicateOperation +# Class DuplicateOperation + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class DuplicateOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [DuplicateOperation](VM.Managed.DAFUL.Operation.DuplicateOperation.md) @@ -87,7 +88,7 @@ public DuplicateOperation(Document3D doc, string[] arDuplicateTargetName) `doc` Document3D -`arDuplicateTargetName` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arDuplicateTargetName` string\[\] ### DuplicateOperation\(JournalParameter\) @@ -111,7 +112,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -131,5 +132,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ExportDFG.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ExportDFG.md index b7b6926c47..0700b8f97f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ExportDFG.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ExportDFG.md @@ -1,4 +1,5 @@ -# Class ExportDFG +# Class ExportDFG + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class ExportDFG : SimulationRun, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [SimulationRun](VM.Managed.DAFUL.Operation.SimulationRun.md) ← [ExportDFG](VM.Managed.DAFUL.Operation.ExportDFG.md) @@ -37,6 +38,7 @@ IOperation [SimulationRun.ApplySimulation\(SimulationFormBase\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_ApplySimulation\_VM\_Managed\_DAFUL\_Pre\_Forms\_SimulationFormBase\_), [SimulationRun.ExecuteImpl\(\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_ExecuteImpl), [SimulationRun.ExecuteImplNotPrePareSimulation\(\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_ExecuteImplNotPrePareSimulation), +[SimulationRun.WriteJournalCore\(string\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_WriteJournalCore\_System\_String\_), [SimulationRun.Name](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_Name), [SimulationRun.SimulationForm](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_SimulationForm), [SimulationRun.NotPrePareSimulation](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_NotPrePareSimulation), @@ -120,7 +122,7 @@ public ExportDFG(Document doc, string strScenarioTypeName) `doc` Document -`strScenarioTypeName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strScenarioTypeName` string ### ExportDFG\(JournalParameter\) @@ -144,7 +146,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ExportDFS.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ExportDFS.md index 8e15e4ba14..99e0e671f8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ExportDFS.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ExportDFS.md @@ -1,4 +1,5 @@ -# Class ExportDFS +# Class ExportDFS + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class ExportDFS : SimulationRun, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [SimulationRun](VM.Managed.DAFUL.Operation.SimulationRun.md) ← [ExportDFS](VM.Managed.DAFUL.Operation.ExportDFS.md) @@ -37,6 +38,7 @@ IOperation [SimulationRun.ApplySimulation\(SimulationFormBase\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_ApplySimulation\_VM\_Managed\_DAFUL\_Pre\_Forms\_SimulationFormBase\_), [SimulationRun.ExecuteImpl\(\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_ExecuteImpl), [SimulationRun.ExecuteImplNotPrePareSimulation\(\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_ExecuteImplNotPrePareSimulation), +[SimulationRun.WriteJournalCore\(string\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_WriteJournalCore\_System\_String\_), [SimulationRun.Name](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_Name), [SimulationRun.SimulationForm](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_SimulationForm), [SimulationRun.NotPrePareSimulation](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_NotPrePareSimulation), @@ -120,7 +122,7 @@ public ExportDFS(Document doc, string strScenarioTypeName) `doc` Document -`strScenarioTypeName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strScenarioTypeName` string ### ExportDFS\(Document, SimulationParameter\) @@ -156,7 +158,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ExportFiles.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ExportFiles.md new file mode 100644 index 0000000000..ca69019eea --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ExportFiles.md @@ -0,0 +1,220 @@ +# Class ExportFiles + + +Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) +Assembly: VMOpCore.dll + +The export files operation + +```csharp +public class ExportFiles : SimulationRun, IOperation +``` + +#### Inheritance + +object ← +OperationBase ← +[SimulationRun](VM.Managed.DAFUL.Operation.SimulationRun.md) ← +[ExportFiles](VM.Managed.DAFUL.Operation.ExportFiles.md) + +#### Implements + +IOperation + +#### Inherited Members + +[SimulationRun.m\_strSimulationConfiguration](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_m\_strSimulationConfiguration), +[SimulationRun.m\_strFilePath](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_m\_strFilePath), +[SimulationRun.m\_strUserDefinedScenarioTypeName](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_m\_strUserDefinedScenarioTypeName), +[SimulationRun.Execute\(\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_Execute), +[SimulationRun.GetInformation\(XmlWriter\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_GetInformation\_System\_Xml\_XmlWriter\_), +[SimulationRun.ReadExtraJournal\(XmlElement\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_ReadExtraJournal\_System\_Xml\_XmlElement\_), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_WriteExtraJournal\_System\_Xml\_XmlWriter\_), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_UpdateUI\_VM\_Managed\_UI\_IUIUpdate\_VM\_Managed\_Document\_), +[SimulationRun.SimulationRunImpl\(bool\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_SimulationRunImpl\_System\_Boolean\_), +[SimulationRun.PrepareSimulationSetting\(\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_PrepareSimulationSetting), +[SimulationRun.ShowDialog\(\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_ShowDialog), +[SimulationRun.PrepareForm\(SimulationFormBase\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_PrepareForm\_VM\_Managed\_DAFUL\_Pre\_Forms\_SimulationFormBase\_), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_ApplySimulation\_VM\_Managed\_DAFUL\_Pre\_Forms\_SimulationFormBase\_), +[SimulationRun.ExecuteImpl\(\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_ExecuteImpl), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_ExecuteImplNotPrePareSimulation), +[SimulationRun.WriteJournalCore\(string\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_WriteJournalCore\_System\_String\_), +[SimulationRun.Name](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_Name), +[SimulationRun.SimulationForm](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_SimulationForm), +[SimulationRun.NotPrePareSimulation](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_NotPrePareSimulation), +[SimulationRun.FormResult](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_FormResult), +[SimulationRun.SimParam](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_SimParam), +[SimulationRun.SkipCheckDirectory](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_SkipCheckDirectory), +[SimulationRun.FilePath](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_FilePath), +OperationBase.g\_bRedrawKernel, +OperationBase.g\_bVerify, +OperationBase.g\_bSkipAddEvent, +OperationBase.g\_bDupicateMsg, +OperationBase.m\_bIsHistoryMerge, +OperationBase.Execute\(\), +OperationBase.PostExecute\(\), +OperationBase.GetInformation\(XmlWriter\), +OperationBase.Create\(string, View, object\), +OperationBase.Create\(string, IDocument, object\), +OperationBase.Create\(string, object\), +OperationBase.Create\(string\), +OperationBase.StartSession\(\), +OperationBase.StartSession\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSession\(OperationBase\), +OperationBase.StartSessionAndWait\(\), +OperationBase.StartSessionAndWait\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSessionAndWait\(OperationBase\), +OperationBase.Initialize\(OperationBase.ShowVerifyResult\), +OperationBase.RecordJournal\(OperationBase\), +OperationBase.UseSession\(string\), +OperationBase.raise\_OnOperationStatusChanged\(object, OperationStatusEventArgs\), +OperationBase.raise\_OnEndOperation\(object, EventArgs\), +OperationBase.ClearCurrentMark\(string\), +OperationBase.ClearCurrentMark\(IDocument\), +OperationBase.ClearCurrentMark\(\), +OperationBase.GlobalOverride, +OperationBase.IsDoingThread, +OperationBase.ExecuteMacro, +OperationBase.SimStatus, +OperationBase.Status, +OperationBase.autoEvents, +OperationBase.IsHistoryMerge, +OperationBase.SkipClearTemporaryLinkContainer, +OperationBase.PostExecuteClearTemporaryLinkContainer, +OperationBase.SkipEndOperation, +OperationBase.UseMacro, +OperationBase.MarkStatus, +OperationBase.UseThread, +OperationBase.Name, +OperationBase.ExecutableOnHold, +OperationBase.Override, +OperationBase.Parameter, +OperationBase.View, +OperationBase.Document, +OperationBase.OnEndOperation, +OperationBase.OnOperationStatusChanged + +#### Extension Methods + +[LinkPropertyItemCache.GetLinkProperties\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkProperties\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkPropertiesAndValues\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkPropertiesAndValues\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkedObjects\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkedObjects\_\_1\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_) + +## Constructors + +### ExportFiles\(Document3D, string, bool, bool, bool, bool\) + +```csharp +public ExportFiles(Document3D doc, string strFilePath, bool bWriteDFS, bool bWriteXML, bool bWriteDFG, bool bIncludeReferenceFiles) +``` + +#### Parameters + +`doc` Document3D + +`strFilePath` string + +`bWriteDFS` bool + +`bWriteXML` bool + +`bWriteDFG` bool + +`bIncludeReferenceFiles` bool + +### ExportFiles\(JournalParameter\) + +```csharp +public ExportFiles(JournalParameter jp) +``` + +#### Parameters + +`jp` JournalParameter + +## Fields + +### m\_bIncludeReferenceFiles + +```csharp +protected bool m_bIncludeReferenceFiles +``` + +#### Field Value + + bool + +### m\_bWriteDFG + +```csharp +protected bool m_bWriteDFG +``` + +#### Field Value + + bool + +### m\_bWriteDFS + +```csharp +protected bool m_bWriteDFS +``` + +#### Field Value + + bool + +### m\_bWriteXML + +```csharp +protected bool m_bWriteXML +``` + +#### Field Value + + bool + +## Properties + +### Name + +Gets the operation name. + +```csharp +public override string Name { get; } +``` + +#### Property Value + + string + +## Methods + +### Execute\(\) + +Execute the operation. + +```csharp +public override void Execute() +``` + +### ReadExtraJournal\(XmlElement\) + +```csharp +public override void ReadExtraJournal(XmlElement nodeArg) +``` + +#### Parameters + +`nodeArg` XmlElement + +### WriteExtraJournal\(XmlWriter\) + +```csharp +public override void WriteExtraJournal(XmlWriter writer) +``` + +#### Parameters + +`writer` XmlWriter + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ExportMotionFiles.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ExportMotionFiles.md new file mode 100644 index 0000000000..857d50e336 --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ExportMotionFiles.md @@ -0,0 +1,164 @@ +# Class ExportMotionFiles + + +Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) +Assembly: VMOpCore.dll + +```csharp +public class ExportMotionFiles : DialogOperation, IOperation +``` + +#### Inheritance + +object ← +OperationBase ← +[DialogOperation](VM.Managed.DAFUL.Operation.DialogOperation.md) ← +[ExportMotionFiles](VM.Managed.DAFUL.Operation.ExportMotionFiles.md) + +#### Implements + +IOperation + +#### Inherited Members + +[DialogOperation.Execute\(\)](VM.Managed.DAFUL.Operation.DialogOperation.md\#VM\_Managed\_DAFUL\_Operation\_DialogOperation\_Execute), +[DialogOperation.OnApply\(object, CancelEventArgs\)](VM.Managed.DAFUL.Operation.DialogOperation.md\#VM\_Managed\_DAFUL\_Operation\_DialogOperation\_OnApply\_System\_Object\_System\_ComponentModel\_CancelEventArgs\_), +[DialogOperation.IsConainOpenedDic\(Document\)](VM.Managed.DAFUL.Operation.DialogOperation.md\#VM\_Managed\_DAFUL\_Operation\_DialogOperation\_IsConainOpenedDic\_VM\_Managed\_Document\_), +[DialogOperation.Name](VM.Managed.DAFUL.Operation.DialogOperation.md\#VM\_Managed\_DAFUL\_Operation\_DialogOperation\_Name), +[DialogOperation.OpDialog](VM.Managed.DAFUL.Operation.DialogOperation.md\#VM\_Managed\_DAFUL\_Operation\_DialogOperation\_OpDialog), +OperationBase.g\_bRedrawKernel, +OperationBase.g\_bVerify, +OperationBase.g\_bSkipAddEvent, +OperationBase.g\_bDupicateMsg, +OperationBase.m\_bIsHistoryMerge, +OperationBase.Execute\(\), +OperationBase.PostExecute\(\), +OperationBase.GetInformation\(XmlWriter\), +OperationBase.Create\(string, View, object\), +OperationBase.Create\(string, IDocument, object\), +OperationBase.Create\(string, object\), +OperationBase.Create\(string\), +OperationBase.StartSession\(\), +OperationBase.StartSession\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSession\(OperationBase\), +OperationBase.StartSessionAndWait\(\), +OperationBase.StartSessionAndWait\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSessionAndWait\(OperationBase\), +OperationBase.Initialize\(OperationBase.ShowVerifyResult\), +OperationBase.RecordJournal\(OperationBase\), +OperationBase.UseSession\(string\), +OperationBase.raise\_OnOperationStatusChanged\(object, OperationStatusEventArgs\), +OperationBase.raise\_OnEndOperation\(object, EventArgs\), +OperationBase.ClearCurrentMark\(string\), +OperationBase.ClearCurrentMark\(IDocument\), +OperationBase.ClearCurrentMark\(\), +OperationBase.GlobalOverride, +OperationBase.IsDoingThread, +OperationBase.ExecuteMacro, +OperationBase.SimStatus, +OperationBase.Status, +OperationBase.autoEvents, +OperationBase.IsHistoryMerge, +OperationBase.SkipClearTemporaryLinkContainer, +OperationBase.PostExecuteClearTemporaryLinkContainer, +OperationBase.SkipEndOperation, +OperationBase.UseMacro, +OperationBase.MarkStatus, +OperationBase.UseThread, +OperationBase.Name, +OperationBase.ExecutableOnHold, +OperationBase.Override, +OperationBase.Parameter, +OperationBase.View, +OperationBase.Document, +OperationBase.OnEndOperation, +OperationBase.OnOperationStatusChanged + +#### Extension Methods + +[LinkPropertyItemCache.GetLinkProperties\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkProperties\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkPropertiesAndValues\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkPropertiesAndValues\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkedObjects\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkedObjects\_\_1\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_) + +## Constructors + +### ExportMotionFiles\(Document\) + +```csharp +public ExportMotionFiles(Document doc) +``` + +#### Parameters + +`doc` Document + +## Properties + +### Name + +Gets the operation name. + +```csharp +public override string Name { get; } +``` + +#### Property Value + + string + +## Methods + +### Execute\(\) + +Execute the operation. + +```csharp +public override void Execute() +``` + +### GetDialog\(\) + +```csharp +protected virtual OperationDialogBase GetDialog() +``` + +#### Returns + + OperationDialogBase + +### OnApply\(object, CancelEventArgs\) + +Called when [apply]. + +```csharp +protected override void OnApply(object sender, CancelEventArgs arg) +``` + +#### Parameters + +`sender` object + +The sender. + +`arg` CancelEventArgs + +The instance containing the event data. + +### UpdateUI\(IUIUpdate, Document\) + +Updates the UI. + +```csharp +public static void UpdateUI(IUIUpdate updater, Document doc) +``` + +#### Parameters + +`updater` IUIUpdate + +The updater. + +`doc` Document + +The doc. + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ExportXML.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ExportXML.md index f8634504c3..459c945471 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ExportXML.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ExportXML.md @@ -1,4 +1,5 @@ -# Class ExportXML +# Class ExportXML + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class ExportXML : SimulationRun, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [SimulationRun](VM.Managed.DAFUL.Operation.SimulationRun.md) ← [ExportXML](VM.Managed.DAFUL.Operation.ExportXML.md) @@ -37,6 +38,7 @@ IOperation [SimulationRun.ApplySimulation\(SimulationFormBase\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_ApplySimulation\_VM\_Managed\_DAFUL\_Pre\_Forms\_SimulationFormBase\_), [SimulationRun.ExecuteImpl\(\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_ExecuteImpl), [SimulationRun.ExecuteImplNotPrePareSimulation\(\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_ExecuteImplNotPrePareSimulation), +[SimulationRun.WriteJournalCore\(string\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_WriteJournalCore\_System\_String\_), [SimulationRun.Name](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_Name), [SimulationRun.SimulationForm](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_SimulationForm), [SimulationRun.NotPrePareSimulation](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_NotPrePareSimulation), @@ -120,7 +122,7 @@ public ExportXML(Document doc, string strScenarioTypeName) `doc` Document -`strScenarioTypeName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strScenarioTypeName` string ### ExportXML\(JournalParameter\) @@ -144,7 +146,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.FlipOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.FlipOperation.md index 9cfeafe8b0..53afcdf13e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.FlipOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.FlipOperation.md @@ -1,4 +1,5 @@ -# Class FlipOperation +# Class FlipOperation + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class FlipOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [FlipOperation](VM.Managed.DAFUL.Operation.FlipOperation.md) @@ -87,7 +88,7 @@ public FlipOperation(Document3D doc, string[] arFlipTargetName) `doc` Document3D -`arFlipTargetName` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arFlipTargetName` string\[\] ### FlipOperation\(JournalParameter\) @@ -111,7 +112,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -131,5 +132,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.GetProperConnector.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.GetProperConnector.md index 6f7ff874cf..cb964b5aa4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.GetProperConnector.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.GetProperConnector.md @@ -1,4 +1,5 @@ -# Class GetProperConnector +# Class GetProperConnector + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class GetProperConnector : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [GetProperConnector](VM.Managed.DAFUL.Operation.GetProperConnector.md) @@ -87,13 +88,13 @@ public GetProperConnector(IDocument doc, bool bAuto, Body bodyFirst, Body bodySe `doc` IDocument -`bAuto` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bAuto` bool `bodyFirst` Body `bodySecond` Body -`dTolerance` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTolerance` double ## Properties @@ -115,7 +116,7 @@ public ICollection ActionFaceIDs { get; } #### Property Value - [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> + ICollection ### ActionPosition @@ -125,7 +126,7 @@ public double[] ActionPosition { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### BaseBody @@ -145,7 +146,7 @@ public ICollection BaseFaceIDs { get; } #### Property Value - [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> + ICollection ### BasePosition @@ -155,7 +156,7 @@ public double[] BasePosition { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### CenterPosition @@ -165,7 +166,7 @@ public double[] CenterPosition { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### ConnectorType @@ -185,7 +186,7 @@ public double[] Direction { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### IsHistoryMerge @@ -195,7 +196,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -207,7 +208,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.GetScenarioOp.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.GetScenarioOp.md index d52852a974..d0e5d6fb4b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.GetScenarioOp.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.GetScenarioOp.md @@ -1,4 +1,5 @@ -# Class GetScenarioOp +# Class GetScenarioOp + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class GetScenarioOp : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [GetScenarioOp](VM.Managed.DAFUL.Operation.GetScenarioOp.md) @@ -95,11 +96,11 @@ public GetScenarioOp(DocumentAnalysis doc, Scenario scenario) #### Parameters -`doc` DocumentAnalysis +`doc` [DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) The document. -`scenario` Scenario +`scenario` [Scenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs) The scenario. @@ -129,7 +130,7 @@ public bool Exist { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsHistoryMerge @@ -141,7 +142,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -153,7 +154,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -175,7 +176,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.GroupAutoConnector.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.GroupAutoConnector.md index 71fd882355..880329517c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.GroupAutoConnector.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.GroupAutoConnector.md @@ -1,4 +1,5 @@ -# Class GroupAutoConnector +# Class GroupAutoConnector + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class GroupAutoConnector : UniteConnector, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [UniteConnector](VM.Managed.DAFUL.Operation.UniteConnector.md) ← [GroupAutoConnector](VM.Managed.DAFUL.Operation.GroupAutoConnector.md) @@ -107,7 +108,7 @@ public GroupAutoConnector(Document doc, IEnumerable groupNames) `doc` Document -`groupNames` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`groupNames` IEnumerable ### GroupAutoConnector\(JournalParameter\) @@ -131,7 +132,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -151,5 +152,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ImprintUtil.FindNearestPointsParam.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ImprintUtil.FindNearestPointsParam.md index aead72e8fa..66fc346ffa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ImprintUtil.FindNearestPointsParam.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ImprintUtil.FindNearestPointsParam.md @@ -1,4 +1,5 @@ -# Class ImprintUtil.FindNearestPointsParam +# Class ImprintUtil.FindNearestPointsParam + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOP.dll @@ -11,7 +12,7 @@ public class ImprintUtil.FindNearestPointsParam #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ImprintUtil.FindNearestPointsParam](VM.Managed.DAFUL.Operation.ImprintUtil.FindNearestPointsParam.md) #### Derived @@ -44,7 +45,7 @@ public KeyInfo Body { get; set; } #### Property Value - KeyInfo + [KeyInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/KeyInfo.cs) ### SeedPoints @@ -56,5 +57,5 @@ public List SeedPoints { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ImprintUtil.FindNearestPointsWithDirectionParam.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ImprintUtil.FindNearestPointsWithDirectionParam.md index ad7ac0a1e2..dd26addd5c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ImprintUtil.FindNearestPointsWithDirectionParam.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ImprintUtil.FindNearestPointsWithDirectionParam.md @@ -1,4 +1,5 @@ -# Class ImprintUtil.FindNearestPointsWithDirectionParam +# Class ImprintUtil.FindNearestPointsWithDirectionParam + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOP.dll @@ -11,7 +12,7 @@ public class ImprintUtil.FindNearestPointsWithDirectionParam : ImprintUtil.FindN #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ImprintUtil.FindNearestPointsParam](VM.Managed.DAFUL.Operation.ImprintUtil.FindNearestPointsParam.md) ← [ImprintUtil.FindNearestPointsWithDirectionParam](VM.Managed.DAFUL.Operation.ImprintUtil.FindNearestPointsWithDirectionParam.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ImprintUtil.GetFacesWithCylinderRangeParam.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ImprintUtil.GetFacesWithCylinderRangeParam.md index ce5dcf0cc8..0ec5e63bc5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ImprintUtil.GetFacesWithCylinderRangeParam.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ImprintUtil.GetFacesWithCylinderRangeParam.md @@ -1,4 +1,5 @@ -# Class ImprintUtil.GetFacesWithCylinderRangeParam +# Class ImprintUtil.GetFacesWithCylinderRangeParam + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOP.dll @@ -11,7 +12,7 @@ public class ImprintUtil.GetFacesWithCylinderRangeParam #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ImprintUtil.GetFacesWithCylinderRangeParam](VM.Managed.DAFUL.Operation.ImprintUtil.GetFacesWithCylinderRangeParam.md) #### Extension Methods @@ -40,7 +41,7 @@ public KeyInfo Body { get; set; } #### Property Value - KeyInfo + [KeyInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/KeyInfo.cs) ### Radius @@ -52,7 +53,7 @@ public double Radius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Transform diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ImprintUtil.ImprintWithCylinderParam.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ImprintUtil.ImprintWithCylinderParam.md index bc3d9f3141..08511ab545 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ImprintUtil.ImprintWithCylinderParam.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ImprintUtil.ImprintWithCylinderParam.md @@ -1,4 +1,5 @@ -# Class ImprintUtil.ImprintWithCylinderParam +# Class ImprintUtil.ImprintWithCylinderParam + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOP.dll @@ -11,7 +12,7 @@ public class ImprintUtil.ImprintWithCylinderParam #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ImprintUtil.ImprintWithCylinderParam](VM.Managed.DAFUL.Operation.ImprintUtil.ImprintWithCylinderParam.md) #### Extension Methods @@ -52,7 +53,7 @@ public double Radius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TargetKey @@ -64,7 +65,7 @@ public KeyInfo TargetKey { get; set; } #### Property Value - KeyInfo + [KeyInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Builders/VM.CAD.Builders/VMAppCore/KeyInfo.cs) ### Top diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ImprintUtil.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ImprintUtil.md index 73d41f8156..62443de1a5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ImprintUtil.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ImprintUtil.md @@ -1,4 +1,5 @@ -# Class ImprintUtil +# Class ImprintUtil + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOP.dll @@ -11,7 +12,7 @@ public class ImprintUtil #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ImprintUtil](VM.Managed.DAFUL.Operation.ImprintUtil.md) #### Extension Methods @@ -44,21 +45,21 @@ public static SetFace CreateFacesetByIndex(Document3D activeDocument, SolidBody The active document -`parentSolidBody` SolidBody +`parentSolidBody` [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) The parent solid body -`lstFaceIndex` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`lstFaceIndex` List The face indexes -`strPrefixName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefixName` string The pre-fix name #### Returns - SetFace + [SetFace](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SetFace.cs) faceset @@ -80,17 +81,17 @@ The active document The body -`lstFaceIndex` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`lstFaceIndex` List The face indexes -`strPrefixName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefixName` string The pre-fix name #### Returns - SetFace + [SetFace](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SetFace.cs) faceset @@ -112,17 +113,17 @@ The active document The body -`lstFaceIndex` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`lstFaceIndex` List The face indexes -`strPrefixName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefixName` string The pre-fix name #### Returns - PartSetFace + [PartSetFace](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartSetFace.cs) faceset @@ -144,17 +145,17 @@ The document The target body -`seedPoints` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)\> +`seedPoints` List\> The seed points -`results` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)\> +`results` List\> The result #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### FindNearestPoints\(Document3D, Body, VectorBase\[\], ref VectorBase\[\]\) @@ -184,7 +185,7 @@ The result #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### FindNearestPointsWithDirection\(Document3D, Body, List\>, VectorBase, ref List\>\) @@ -204,7 +205,7 @@ The document The target body -`seedPoints` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)\> +`seedPoints` List\> The seed points @@ -212,13 +213,13 @@ The seed points The direction -`results` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)\> +`results` List\> The result #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### FindNearestPointsWithDirection\(Document3D, Body, VectorBase\[\], VectorBase, ref VectorBase\[\]\) @@ -252,7 +253,7 @@ The result #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### FindNearestTopologyIndex\(Document3D, Body, VectorBase, ref List, ref VectorBase\) @@ -276,7 +277,7 @@ The target The seed vector -`lstIndex` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`lstIndex` List The index array @@ -286,7 +287,7 @@ The result vector #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### FindNearestTopologyIndex\(Document3D, Body, double, double, double, ref List, ref double, ref double, ref double\) @@ -306,37 +307,37 @@ The document The target -`dSeedX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dSeedX` double The x of seed position -`dSeedY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dSeedY` double The y of seed position -`dSeedZ` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dSeedZ` double The z of seed position -`lstIndex` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`lstIndex` List The index array -`dResX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dResX` double The x of result position -`dResY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dResY` double The y of result position -`dResZ` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dResZ` double The z of result position #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### FindNearestTopologyIndexAdding4Point\(Document3D, Body, VectorBase, TransformBase, double, bool, ref List, ref VectorBase\) @@ -364,15 +365,15 @@ The seed vector The transform -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double The offset -`bSkipCenter` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bSkipCenter` bool The center skip flag -`lstIndex` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`lstIndex` List The index array @@ -382,7 +383,7 @@ The result #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetFacesWithCylinderRange\(Document3D, Body, TMatrix, double, ref List\) @@ -406,17 +407,17 @@ The body The transform -`dRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadius` double The radius -`lstIndex` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`lstIndex` List The index list #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetGearFacesWithCylinderRange\(Document3D, Body, TMatrix, double, ref List\) @@ -440,17 +441,17 @@ The body The transform -`dRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadius` double The radius -`lstIndex` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`lstIndex` List The index list #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ImprintCore\(Document3D, Body, List, TransformBase, double, double\) @@ -470,7 +471,7 @@ The document The target -`lstFaceIndex` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`lstFaceIndex` List The face indexes @@ -478,11 +479,11 @@ The face indexes The transform -`dHeight` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHeight` double The height -`dWidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dWidth` double The width @@ -504,7 +505,7 @@ The document The target -`lstFaceIndex` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`lstFaceIndex` List The face indexes @@ -512,7 +513,7 @@ The face indexes The transform -`dRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadius` double The radius @@ -530,11 +531,11 @@ public static bool ImprintWithCircle(Document3D doc, SolidBody solidBody, double The document -`solidBody` SolidBody +`solidBody` [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) The solid body -`dTestRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTestRadius` double The radius @@ -546,13 +547,13 @@ The seed position The z direction -`dRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadius` double The radius #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ImprintWithCircle\(Document3D, Body, double, VectorBase, DirectionBase, double\) @@ -572,7 +573,7 @@ The document The body -`dTestRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTestRadius` double The radius @@ -584,13 +585,13 @@ The seed vector The z direction -`dRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadius` double The radius #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ImprintWithCylinder\(Document3D, Body, VectorBase, VectorBase, double\) @@ -618,13 +619,13 @@ The bottom The top -`dRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadius` double The radius #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ImprintWithCylinderUsingKernelOperation\(Document3D, Body, VectorBase, VectorBase, double\) @@ -652,13 +653,13 @@ The bottom The top -`dRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRadius` double The radius #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ImprintWithRectangle\(Document3D, SolidBody, double, double, double, double, double, double\) @@ -674,37 +675,37 @@ public static bool ImprintWithRectangle(Document3D doc, SolidBody solidBody, dou The document -`solidBody` SolidBody +`solidBody` [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) The solid body -`dTestRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTestRadius` double The radius -`dSeedX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dSeedX` double The x of seed position -`dSeedY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dSeedY` double The y of seed position -`dSeedZ` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dSeedZ` double The z of seed position -`dHeight` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHeight` double The height -`dWidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dWidth` double The width #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ImprintWithRectangle\(Document3D, Body, double, double, double, double, double, double\) @@ -724,31 +725,31 @@ The document The body -`dTestRadius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTestRadius` double The radius -`dSeedX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dSeedX` double The x of seed position -`dSeedY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dSeedY` double The y of seed position -`dSeedZ` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dSeedZ` double The z of seed position -`dHeight` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dHeight` double The height -`dWidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dWidth` double The width #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.JournalUtility.OperationType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.JournalUtility.OperationType.md index 9701a88344..e28c3dc8a5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.JournalUtility.OperationType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.JournalUtility.OperationType.md @@ -1,4 +1,5 @@ -# Enum JournalUtility.OperationType +# Enum JournalUtility.OperationType + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.JournalUtility.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.JournalUtility.md index 5806bed570..dc4bff666d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.JournalUtility.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.JournalUtility.md @@ -1,4 +1,5 @@ -# Class JournalUtility +# Class JournalUtility + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class JournalUtility #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [JournalUtility](VM.Managed.DAFUL.Operation.JournalUtility.md) #### Extension Methods @@ -58,7 +59,7 @@ public static void ExecuteJournal(string[] arDeleteNames) #### Parameters -`arDeleteNames` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arDeleteNames` string\[\] The ar delete names. @@ -72,7 +73,7 @@ public static void ExecuteJournal(string strDeleteName) #### Parameters -`strDeleteName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDeleteName` string Name of the string delete. @@ -94,7 +95,7 @@ The type op. The object entity. -`arDeleteNames` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arDeleteNames` string\[\] The ar delete names. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ModifyScenarioOp.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ModifyScenarioOp.md index 6860b4cb73..3b4fadd3f4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ModifyScenarioOp.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ModifyScenarioOp.md @@ -1,4 +1,5 @@ -# Class ModifyScenarioOp +# Class ModifyScenarioOp + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class ModifyScenarioOp : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ModifyScenarioOp](VM.Managed.DAFUL.Operation.ModifyScenarioOp.md) @@ -95,15 +96,15 @@ public ModifyScenarioOp(DocumentAnalysis doc, Scenario scenario, bool bUse) #### Parameters -`doc` DocumentAnalysis +`doc` [DocumentAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/DocumentAnalysis.cs) The document. -`scenario` Scenario +`scenario` [Scenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs) The scenario. -`bUse` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUse` bool The use. @@ -133,7 +134,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -145,7 +146,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -167,7 +168,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.NameUpdateOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.NameUpdateOperation.md index e84cd71c13..9dfc6f0229 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.NameUpdateOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.NameUpdateOperation.md @@ -1,4 +1,5 @@ -# Class NameUpdateOperation +# Class NameUpdateOperation + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class NameUpdateOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [NameUpdateOperation](VM.Managed.DAFUL.Operation.NameUpdateOperation.md) @@ -87,7 +88,7 @@ public NameUpdateOperation(INamed nameObject, string strNewName) `nameObject` INamed -`strNewName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strNewName` string ### NameUpdateOperation\(JournalParameter\) @@ -109,7 +110,7 @@ public bool IsSuccess { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -121,7 +122,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -141,5 +142,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.OperationUtility.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.OperationUtility.md index 66a252dbf2..0bbb7c70cb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.OperationUtility.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.OperationUtility.md @@ -1,4 +1,5 @@ -# Class OperationUtility +# Class OperationUtility + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class OperationUtility #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OperationUtility](VM.Managed.DAFUL.Operation.OperationUtility.md) #### Extension Methods @@ -40,5 +41,5 @@ public static string CreateDirectoryInTemporaryPath() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.RefreshSubentity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.RefreshSubentity.md index 3be66267e0..680f545b17 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.RefreshSubentity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.RefreshSubentity.md @@ -1,4 +1,5 @@ -# Class RefreshSubentity +# Class RefreshSubentity + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class RefreshSubentity : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [RefreshSubentity](VM.Managed.DAFUL.Operation.RefreshSubentity.md) @@ -91,9 +92,9 @@ public RefreshSubentity(string strSubentityName, string strSubentityViewName) #### Parameters -`strSubentityName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSubentityName` string -`strSubentityViewName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSubentityViewName` string ### RefreshSubentity\(JournalParameter\) @@ -117,7 +118,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -137,5 +138,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Relation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Relation.md index 1468f366a8..ccac2a2fe9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Relation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Relation.md @@ -1,4 +1,5 @@ -# Class Relation +# Class Relation + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class Relation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [Relation](VM.Managed.DAFUL.Operation.Relation.md) @@ -97,7 +98,7 @@ public Relation(IDocument doc, SolidBody selectedBody) `doc` IDocument -`selectedBody` SolidBody +`selectedBody` [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ### Relation\(IDocument, SolidBody, double\) @@ -109,9 +110,9 @@ public Relation(IDocument doc, SolidBody selectedBody, double dTolerance) `doc` IDocument -`selectedBody` SolidBody +`selectedBody` [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) -`dTolerance` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTolerance` double ## Properties @@ -125,7 +126,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SeedBody @@ -135,7 +136,7 @@ public SolidBody SeedBody { get; set; } #### Property Value - SolidBody + [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ### SelectedBody @@ -145,7 +146,7 @@ public ICollection SelectedBody { get; } #### Property Value - [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1) + ICollection<[SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs)\> ### Tolerance @@ -155,7 +156,7 @@ public double Tolerance { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -177,7 +178,7 @@ protected void ExecuteAutoPicker(Document3D doc3D, string strKey, string strTol) `doc3D` Document3D -`strKey` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strKey` string -`strTol` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strTol` string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.SerialLinkContainer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.SerialLinkContainer.md index b8d6ce1272..ab9a74ab01 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.SerialLinkContainer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.SerialLinkContainer.md @@ -1,4 +1,5 @@ -# Class SerialLinkContainer +# Class SerialLinkContainer + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public static class SerialLinkContainer #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SerialLinkContainer](VM.Managed.DAFUL.Operation.SerialLinkContainer.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ShowHideDeselectedObjects.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ShowHideDeselectedObjects.md index fc59b34705..553e8179ea 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ShowHideDeselectedObjects.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ShowHideDeselectedObjects.md @@ -1,4 +1,5 @@ -# Class ShowHideDeselectedObjects +# Class ShowHideDeselectedObjects + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class ShowHideDeselectedObjects : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ShowHideDeselectedObjects](VM.Managed.DAFUL.Operation.ShowHideDeselectedObjects.md) @@ -85,11 +86,11 @@ public ShowHideDeselectedObjects(bool bVisible, bool bGround, List l #### Parameters -`bVisible` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bVisible` bool -`bGround` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bGround` bool -`lstSel` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstSel` List ### ShowHideDeselectedObjects\(Document3D, bool, bool, IEnumerable\) @@ -101,11 +102,11 @@ public ShowHideDeselectedObjects(Document3D doc3D, bool bVisible, bool bGround, `doc3D` Document3D -`bVisible` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bVisible` bool -`bGround` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bGround` bool -`lstSel` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`lstSel` IEnumerable ### ShowHideDeselectedObjects\(JournalParameter\) @@ -127,7 +128,7 @@ protected override bool ExecutableOnHold { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -139,7 +140,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -159,5 +160,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ShowSimulationDlg.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ShowSimulationDlg.md index dda17f7653..416abdc932 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ShowSimulationDlg.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.ShowSimulationDlg.md @@ -1,4 +1,5 @@ -# Class ShowSimulationDlg +# Class ShowSimulationDlg + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class ShowSimulationDlg : SimulationRun, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [SimulationRun](VM.Managed.DAFUL.Operation.SimulationRun.md) ← [ShowSimulationDlg](VM.Managed.DAFUL.Operation.ShowSimulationDlg.md) @@ -37,6 +38,7 @@ IOperation [SimulationRun.ApplySimulation\(SimulationFormBase\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_ApplySimulation\_VM\_Managed\_DAFUL\_Pre\_Forms\_SimulationFormBase\_), [SimulationRun.ExecuteImpl\(\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_ExecuteImpl), [SimulationRun.ExecuteImplNotPrePareSimulation\(\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_ExecuteImplNotPrePareSimulation), +[SimulationRun.WriteJournalCore\(string\)](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_WriteJournalCore\_System\_String\_), [SimulationRun.Name](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_Name), [SimulationRun.SimulationForm](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_SimulationForm), [SimulationRun.NotPrePareSimulation](VM.Managed.DAFUL.Operation.SimulationRun.md\#VM\_Managed\_DAFUL\_Operation\_SimulationRun\_NotPrePareSimulation), @@ -132,7 +134,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -162,7 +164,7 @@ protected override void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool if set to true [write DFG]. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.SimulationRun.SimulationParameter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.SimulationRun.SimulationParameter.md index 40034fe813..97ae051873 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.SimulationRun.SimulationParameter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.SimulationRun.SimulationParameter.md @@ -1,4 +1,5 @@ -# Class SimulationRun.SimulationParameter +# Class SimulationRun.SimulationParameter + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class SimulationRun.SimulationParameter #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SimulationRun.SimulationParameter](VM.Managed.DAFUL.Operation.SimulationRun.SimulationParameter.md) #### Extension Methods @@ -38,7 +39,7 @@ public string Configuration { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### EndTime @@ -48,7 +49,7 @@ public double EndTime { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ShowResultAfterSimulation @@ -58,7 +59,7 @@ public bool ShowResultAfterSimulation { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Step @@ -68,7 +69,7 @@ public int Step { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### WaitForEndSimulation @@ -78,5 +79,5 @@ public bool WaitForEndSimulation { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.SimulationRun.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.SimulationRun.md index ecdd5a009f..44b8917052 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.SimulationRun.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.SimulationRun.md @@ -1,4 +1,5 @@ -# Class SimulationRun +# Class SimulationRun + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class SimulationRun : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [SimulationRun](VM.Managed.DAFUL.Operation.SimulationRun.md) @@ -20,6 +21,7 @@ OperationBase ← [ConfigModify](VM.Managed.DAFUL.Operation.ConfigModify.md), [ExportDFG](VM.Managed.DAFUL.Operation.ExportDFG.md), [ExportDFS](VM.Managed.DAFUL.Operation.ExportDFS.md), +[ExportFiles](VM.Managed.DAFUL.Operation.ExportFiles.md), [ExportXML](VM.Managed.DAFUL.Operation.ExportXML.md), [ShowSimulationDlg](VM.Managed.DAFUL.Operation.ShowSimulationDlg.md) @@ -121,7 +123,7 @@ public SimulationRun(Document doc, string strSimPar) `doc` Document -`strSimPar` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSimPar` string ### SimulationRun\(Document, string, string\) @@ -133,9 +135,9 @@ public SimulationRun(Document doc, string strSimPar, string strScenarioTypeName) `doc` Document -`strSimPar` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSimPar` string -`strScenarioTypeName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strScenarioTypeName` string ### SimulationRun\(Document, SimulationParameter\) @@ -159,7 +161,7 @@ protected string m_strFilePath #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### m\_strSimulationConfiguration @@ -169,7 +171,7 @@ protected string m_strSimulationConfiguration #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### m\_strUserDefinedScenarioTypeName @@ -179,7 +181,7 @@ protected string m_strUserDefinedScenarioTypeName #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Properties @@ -191,7 +193,7 @@ public string FilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### FormResult @@ -213,7 +215,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NotPrePareSimulation @@ -223,7 +225,7 @@ public bool NotPrePareSimulation { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SimParam @@ -255,7 +257,7 @@ public bool SkipCheckDirectory { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -271,7 +273,7 @@ protected virtual bool ApplySimulation(SimulationFormBase form) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Execute\(\) @@ -303,7 +305,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter ### PrepareForm\(SimulationFormBase\) @@ -329,7 +331,7 @@ public virtual void ReadExtraJournal(XmlElement nodeArg) #### Parameters -`nodeArg` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`nodeArg` XmlElement ### ShowDialog\(\) @@ -345,7 +347,7 @@ protected virtual void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool ### UpdateUI\(IUIUpdate, Document\) @@ -367,5 +369,15 @@ public virtual void WriteExtraJournal(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter + +### WriteJournalCore\(string\) + +```csharp +protected void WriteJournalCore(string strFilePath) +``` + +#### Parameters + +`strFilePath` string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.SymmetricUpdateOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.SymmetricUpdateOperation.md index 4132ec4c09..36ad26bb64 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.SymmetricUpdateOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.SymmetricUpdateOperation.md @@ -1,4 +1,5 @@ -# Class SymmetricUpdateOperation +# Class SymmetricUpdateOperation + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class SymmetricUpdateOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [SymmetricUpdateOperation](VM.Managed.DAFUL.Operation.SymmetricUpdateOperation.md) @@ -85,9 +86,9 @@ public SymmetricUpdateOperation(SymmetricManager symMgr, bool bNonSymmetic) #### Parameters -`symMgr` SymmetricManager +`symMgr` [SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SymmetricManager.cs) -`bNonSymmetic` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bNonSymmetic` bool ### SymmetricUpdateOperation\(JournalParameter\) @@ -111,7 +112,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -131,5 +132,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.TransparencyOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.TransparencyOperation.md index 085fa79aaa..d89872c1c3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.TransparencyOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.TransparencyOperation.md @@ -1,4 +1,5 @@ -# Class TransparencyOperation +# Class TransparencyOperation + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class TransparencyOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [TransparencyOperation](VM.Managed.DAFUL.Operation.TransparencyOperation.md) @@ -85,7 +86,7 @@ public TransparencyOperation(double dTransparency, ObjectBase body, Document3D d #### Parameters -`dTransparency` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTransparency` double `body` ObjectBase @@ -113,7 +114,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -133,5 +134,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.UniteConnector.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.UniteConnector.md index ef976f3fa7..6996f483e0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.UniteConnector.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.UniteConnector.md @@ -1,4 +1,5 @@ -# Class UniteConnector +# Class UniteConnector + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class UniteConnector : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [UniteConnector](VM.Managed.DAFUL.Operation.UniteConnector.md) @@ -107,7 +108,7 @@ public UniteConnector(IDocument doc, IEnumerable selectedBody) `doc` IDocument -`selectedBody` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`selectedBody` IEnumerable ### UniteConnector\(IDocument, IEnumerable, double\) @@ -119,9 +120,9 @@ public UniteConnector(IDocument doc, IEnumerable selectedBody, double d `doc` IDocument -`selectedBody` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`selectedBody` IEnumerable -`dTolerance` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTolerance` double ### UniteConnector\(JournalParameter\) @@ -143,7 +144,7 @@ protected bool m_bSkipWriteJournal #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Properties @@ -155,7 +156,7 @@ public IEnumerable CreatedEntities { get; } #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) + IEnumerable ### Name @@ -167,7 +168,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SelectedBody @@ -177,7 +178,7 @@ public IList SelectedBody { get; set; } #### Property Value - [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1) + IList ### Tolerance @@ -187,7 +188,7 @@ public double Tolerance { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -207,7 +208,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter ### Unite\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.UniteContact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.UniteContact.md index 94ee978bb3..d82e6aab8c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.UniteContact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.UniteContact.md @@ -1,4 +1,5 @@ -# Class UniteContact +# Class UniteContact + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class UniteContact : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [UniteContact](VM.Managed.DAFUL.Operation.UniteContact.md) @@ -97,7 +98,7 @@ public UniteContact(IDocument doc, IEnumerable selectedBody) `doc` IDocument -`selectedBody` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`selectedBody` IEnumerable ### UniteContact\(JournalParameter\) @@ -119,9 +120,9 @@ public UniteContact(IDocument doc, IEnumerable selectedBody, double dTo `doc` IDocument -`selectedBody` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`selectedBody` IEnumerable -`dTolerance` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTolerance` double ## Properties @@ -133,7 +134,7 @@ public IEnumerable CreatedEntities { get; } #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) + IEnumerable ### Name @@ -145,7 +146,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SelectedBody @@ -155,7 +156,7 @@ public IList SelectedBody { get; set; } #### Property Value - [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1) + IList ### Tolerance @@ -165,7 +166,7 @@ public double Tolerance { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -185,5 +186,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.UniteRigid.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.UniteRigid.md index a73099c525..2b92f4e6bd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.UniteRigid.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.UniteRigid.md @@ -1,4 +1,5 @@ -# Class UniteRigid +# Class UniteRigid + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class UniteRigid : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [UniteRigid](VM.Managed.DAFUL.Operation.UniteRigid.md) @@ -97,7 +98,7 @@ public UniteRigid(IDocument doc, IEnumerable selectedBody) `doc` IDocument -`selectedBody` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`selectedBody` IEnumerable ### UniteRigid\(JournalParameter\) @@ -121,7 +122,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SelectedBody @@ -131,7 +132,7 @@ public IList SelectedBody { get; set; } #### Property Value - [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1) + IList<[SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs)\> ## Methods @@ -151,5 +152,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.UpdateBallOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.UpdateBallOperation.md index 13485059d4..3e7d630a9f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.UpdateBallOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.UpdateBallOperation.md @@ -1,4 +1,5 @@ -# Class UpdateBallOperation +# Class UpdateBallOperation + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOPBallPlacing.dll @@ -9,7 +10,7 @@ public class UpdateBallOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [UpdateBallOperation](VM.Managed.DAFUL.Operation.UpdateBallOperation.md) @@ -83,7 +84,7 @@ public UpdateBallOperation(string key, BallInfo ballInfo) #### Parameters -`key` [string](https://learn.microsoft.com/dotnet/api/system.string) +`key` string `ballInfo` [BallInfo](VM.Managed.DAFUL.Operation.BallInfo.md) @@ -95,7 +96,7 @@ public UpdateBallOperation(UIntPtr key, BallInfo ballInfo) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr `ballInfo` [BallInfo](VM.Managed.DAFUL.Operation.BallInfo.md) @@ -109,7 +110,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -121,7 +122,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.UpdateBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.UpdateBody.md index 2fb1a82d27..41b7ec2084 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.UpdateBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.UpdateBody.md @@ -1,4 +1,5 @@ -# Class UpdateBody +# Class UpdateBody + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class UpdateBody : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [UpdateBody](VM.Managed.DAFUL.Operation.UpdateBody.md) @@ -109,7 +110,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -129,5 +130,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.UpdateDocumentInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.UpdateDocumentInfo.md index a4a54f9eb3..9cc076cb2c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.UpdateDocumentInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.UpdateDocumentInfo.md @@ -1,4 +1,5 @@ -# Class UpdateDocumentInfo +# Class UpdateDocumentInfo + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class UpdateDocumentInfo : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [UpdateDocumentInfo](VM.Managed.DAFUL.Operation.UpdateDocumentInfo.md) @@ -85,7 +86,7 @@ public UpdateDocumentInfo(string strResult) #### Parameters -`strResult` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strResult` string ## Properties @@ -97,7 +98,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -109,7 +110,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.UpdateFaceSetOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.UpdateFaceSetOperation.md index b26b289162..1305b01bc9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.UpdateFaceSetOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.UpdateFaceSetOperation.md @@ -1,4 +1,5 @@ -# Class UpdateFaceSetOperation +# Class UpdateFaceSetOperation + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOPBallPlacing.dll @@ -9,7 +10,7 @@ public class UpdateFaceSetOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [UpdateFaceSetOperation](VM.Managed.DAFUL.Operation.UpdateFaceSetOperation.md) @@ -83,11 +84,11 @@ public UpdateFaceSetOperation(SetFace faceset, double dMaxPen, double dOffset) #### Parameters -`faceset` SetFace +`faceset` [SetFace](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SetFace.cs) -`dMaxPen` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMaxPen` double -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double ## Properties @@ -99,7 +100,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -111,7 +112,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.UpdateSurfaceWithCurvesetsOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.UpdateSurfaceWithCurvesetsOperation.md index 0a44943f8a..90d7ea4737 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.UpdateSurfaceWithCurvesetsOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.UpdateSurfaceWithCurvesetsOperation.md @@ -1,4 +1,5 @@ -# Class UpdateSurfaceWithCurvesetsOperation +# Class UpdateSurfaceWithCurvesetsOperation + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOPBallPlacing.dll @@ -9,7 +10,7 @@ public class UpdateSurfaceWithCurvesetsOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [UpdateSurfaceWithCurvesetsOperation](VM.Managed.DAFUL.Operation.UpdateSurfaceWithCurvesetsOperation.md) @@ -83,15 +84,15 @@ public UpdateSurfaceWithCurvesetsOperation(SurfaceWithCurvesets surfaceWithCurve #### Parameters -`surfaceWithCurvesets` SurfaceWithCurvesets +`surfaceWithCurvesets` [SurfaceWithCurvesets](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDBallPlacing/SurfaceWithCurvesets.cs) -`dMaxPen` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMaxPen` double -`dOffset` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dOffset` double -`bIsUp` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bIsUp` bool -`dSlice` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dSlice` double ## Properties @@ -103,7 +104,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -115,7 +116,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateAssembledBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateAssembledBody.md index 7b8ba15ad2..5a6899743d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateAssembledBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateAssembledBody.md @@ -1,4 +1,5 @@ -# Class CreateAssembledBody +# Class CreateAssembledBody + Namespace: [VM.Managed.DAFUL.Operation.Util](VM.Managed.DAFUL.Operation.Util.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class CreateAssembledBody #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CreateAssembledBody](VM.Managed.DAFUL.Operation.Util.CreateAssembledBody.md) #### Extension Methods @@ -44,7 +45,7 @@ public static AssembledBody Create(Document3D activeDocument, string strPartFile The active document. -`strPartFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPartFilePath` string The part file path. @@ -52,13 +53,13 @@ The part file path. The assembled body transformation. -`strPrefixName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefixName` string The assembled body prefix name. #### Returns - AssembledBody + [AssembledBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs) The new assembled body. @@ -76,7 +77,7 @@ public static AssembledBody Create(Document3D activeDocument, PartDocument docPa The active document. -`docPart` PartDocument +`docPart` [PartDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs) The part document. @@ -84,13 +85,13 @@ The part document. The assembled body transformation. -`strPrefixName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefixName` string The assembled body prefix name. #### Returns - AssembledBody + [AssembledBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs) The new assembled body. @@ -104,21 +105,21 @@ public static AssembledBody ImportAssembledBody(SubSystemDocument docSub, PartDo #### Parameters -`docSub` SubSystemDocument +`docSub` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The subsystem document -`docPart` PartDocument +`docPart` [PartDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs) The part document -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The name #### Returns - AssembledBody + [AssembledBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs) nodal body @@ -132,11 +133,11 @@ public static AssembledBody ImportAssembledBody(SubSystemDocument docSub, PartDo #### Parameters -`docSub` SubSystemDocument +`docSub` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The subsystem document -`docPart` PartDocument +`docPart` [PartDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/PartDocument.cs) The part document @@ -144,13 +145,13 @@ The part document The transform -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The name #### Returns - AssembledBody + [AssembledBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/AssembledBody.cs) nodal body diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateConstraint.ParameterType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateConstraint.ParameterType.md index 0a439d09d9..aa14312fb7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateConstraint.ParameterType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateConstraint.ParameterType.md @@ -1,4 +1,5 @@ -# Enum CreateConstraint.ParameterType +# Enum CreateConstraint.ParameterType + Namespace: [VM.Managed.DAFUL.Operation.Util](VM.Managed.DAFUL.Operation.Util.md) Assembly: VMOpCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateConstraint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateConstraint.md index de4f04f652..44a41f851a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateConstraint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateConstraint.md @@ -1,4 +1,5 @@ -# Class CreateConstraint +# Class CreateConstraint + Namespace: [VM.Managed.DAFUL.Operation.Util](VM.Managed.DAFUL.Operation.Util.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class CreateConstraint #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CreateConstraint](VM.Managed.DAFUL.Operation.Util.CreateConstraint.md) #### Extension Methods @@ -50,7 +51,7 @@ public static General CreateBush(Document document, IConnectable baseConnectable `direction` OMatrix -`strPrefixName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefixName` string #### Returns @@ -76,9 +77,9 @@ public static General CreateBush(Document document, IConnectable baseConnectable `dirZ` DirectionBase -`strPrefixName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefixName` string -`getNewEntityName` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`getNewEntityName` bool Flag for creating a new entity if there is already an entity with the same name @@ -110,13 +111,13 @@ The base transform. The action transform. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The fixed joint name. -`isPrefix` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isPrefix` bool -`addToDocument` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`addToDocument` bool Flag for add created element to document. @@ -150,13 +151,13 @@ The action connectable. The location of fixed joint. -`strPrefixName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefixName` string The fixed joint prefix name. #### Returns - Fixed + [Fixed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Fixed.cs) The new fixed joint. @@ -190,13 +191,13 @@ The location of fixed joint. The orientation matrix. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The fixed joint name. -`isPrefix` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isPrefix` bool -`addToDocument` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`addToDocument` bool Flag for add created element to document. @@ -236,13 +237,13 @@ The base transform. The action transform. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The fixed joint name. -`isPrefix` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isPrefix` bool -`addToDocument` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`addToDocument` bool Flag for add created element to document. @@ -274,13 +275,13 @@ The action connectable. The location of fixed joint. -`strPrefixName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefixName` string The fixed joint prefix name. #### Returns - Fixed + [Fixed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Fixed.cs) The new fixed joint. @@ -298,7 +299,7 @@ public static General CreateGeneralConnector(Document3D doc, string strName, ICo The document -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The name @@ -314,11 +315,11 @@ The action connectable The connector type -`bAuto` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bAuto` bool The auto flag -`dTolerance` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTolerance` double The tolerance @@ -340,7 +341,7 @@ public static General CreateGeneralConnector(Document3D doc, string strName, Bod The document -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The name @@ -356,11 +357,11 @@ The action connectable The connector type -`bAuto` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bAuto` bool The auto flag -`dTolerance` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTolerance` double The tolerance @@ -398,7 +399,7 @@ The location of revolute joint. The z-direction of revolute joint. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The revolute joint prefix name. @@ -406,7 +407,7 @@ The revolute joint prefix name. The connector type -`getNewEntityName` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`getNewEntityName` bool Flag for creating a new entity if there is already an entity with the same name @@ -438,11 +439,11 @@ The action connectable. The location of fixed joint. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The fixed joint prefix name. -`isPrefix` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isPrefix` bool #### Returns @@ -480,13 +481,13 @@ The location of revolute joint. The z-direction of revolute joint. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The revolute joint prefix name. -`driverFunction` DriverFunction +`driverFunction` [DriverFunction](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Driver.cs) -`getNewEntityName` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`getNewEntityName` bool Flag for creating a new entity if there is already an entity with the same name @@ -526,15 +527,15 @@ The base transform. The action transform. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The fixed joint name. -`driverFunction` DriverFunction +`driverFunction` [DriverFunction](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Driver.cs) -`isPrefix` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isPrefix` bool -`addToDocument` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`addToDocument` bool Flag for add created element to document. @@ -554,7 +555,7 @@ public static General CreateGeneralRevolute(SubSystemDocument subSystemDocument, #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) `baseBody` IObjectBase @@ -564,15 +565,15 @@ public static General CreateGeneralRevolute(SubSystemDocument subSystemDocument, `direction` DirectionBase -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string -`getNewEntityName` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`getNewEntityName` bool Flag for creating a new entity if there is already an entity with the same name -`function` Function +`function` [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) -`motionType` DriverFunction.MotionType +`motionType` [DriverFunction](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Driver.cs).[MotionType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Driver.cs) #### Returns @@ -608,11 +609,11 @@ The location of translational joint. The z-direction of translational joint. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The translational joint prefix name. -`getNewEntityName` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`getNewEntityName` bool Flag for creating a new entity if there is already an entity with the same name @@ -652,13 +653,13 @@ The location of revolute joint. The z-direction of revolute joint. -`strPrefixName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefixName` string The revolute joint prefix name. #### Returns - Revolute + [Revolute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Revolute.cs) The new revolute joint. @@ -692,13 +693,13 @@ The location of translational joint. The z-direction of translational joint. -`strPrefixName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefixName` string The translational joint prefix name. #### Returns - Translational + [Translational](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Translational.cs) The new translational joint. @@ -712,7 +713,7 @@ public static General CreateTranslational(SubSystemDocument subSystemDocument, I #### Parameters -`subSystemDocument` SubSystemDocument +`subSystemDocument` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) `baseBody` IObjectBase @@ -722,19 +723,19 @@ public static General CreateTranslational(SubSystemDocument subSystemDocument, I `direction` DirectionBase -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string -`functionValue` DesignVariable +`functionValue` [DesignVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignVariable.cs) -`functionZero` Function +`functionZero` [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) -`restrict_k` DesignVariable +`restrict_k` [DesignVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignVariable.cs) -`restrict_c` DesignVariable +`restrict_c` [DesignVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignVariable.cs) -`usePlus` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`usePlus` bool -`getNewEntityName` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`getNewEntityName` bool Flag for creating a new entity if there is already an entity with the same name @@ -754,7 +755,7 @@ public static bool GetConnectorParameter(IDocument doc, string strName, IConnect `doc` IDocument -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string `connectableFirst` IConnectable @@ -762,13 +763,13 @@ public static bool GetConnectorParameter(IDocument doc, string strName, IConnect `parameterType` [CreateConstraint](VM.Managed.DAFUL.Operation.Util.CreateConstraint.md).[ParameterType](VM.Managed.DAFUL.Operation.Util.CreateConstraint.ParameterType.md) -`dTolerance` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTolerance` double -`pickedResults` [object](https://learn.microsoft.com/dotnet/api/system.object)\[\] +`pickedResults` object\[\] #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetConnectorParameter\(IDocument, string, Body, Body, ParameterType, double, ref object\[\]\) @@ -782,7 +783,7 @@ public static bool GetConnectorParameter(IDocument doc, string strName, Body bod `doc` IDocument -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string `bodyFirst` Body @@ -790,11 +791,11 @@ public static bool GetConnectorParameter(IDocument doc, string strName, Body bod `parameterType` [CreateConstraint](VM.Managed.DAFUL.Operation.Util.CreateConstraint.md).[ParameterType](VM.Managed.DAFUL.Operation.Util.CreateConstraint.ParameterType.md) -`dTolerance` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTolerance` double -`pickedResults` [object](https://learn.microsoft.com/dotnet/api/system.object)\[\] +`pickedResults` object\[\] #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateContact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateContact.md index 3722ea8c20..4b58fe5597 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateContact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateContact.md @@ -1,4 +1,5 @@ -# Class CreateContact +# Class CreateContact + Namespace: [VM.Managed.DAFUL.Operation.Util](VM.Managed.DAFUL.Operation.Util.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class CreateContact #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CreateContact](VM.Managed.DAFUL.Operation.Util.CreateContact.md) #### Extension Methods @@ -52,13 +53,13 @@ The base geometry. The action geometry. -`strPrefixName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefixName` string The rigid to rigid 3D contact prefix name. #### Returns - GeneralContact + [GeneralContact](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/GeneralContact.cs) The new rigid to rigid 3D contact. @@ -84,17 +85,17 @@ The base geometry. The action geometry. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The rigid to rigid 3D contact prefix name. -`getNewEntityName` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`getNewEntityName` bool Flag for creating a new entity if there is already an entity with the same name #### Returns - GeneralContact + [GeneralContact](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/GeneralContact.cs) The new rigid to rigid 3D contact. @@ -112,7 +113,7 @@ public static GeneralContact CreateGeneralContact(Document doc, string strName, The document -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The name @@ -124,13 +125,13 @@ The first body The second body -`dTolerance` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTolerance` double The tolerance #### Returns - GeneralContact + [GeneralContact](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/GeneralContact.cs) ### CreateMbyNContactContact\(Document3D, MultipleContactInfo\[\], MultipleContactInfo\[\], string, bool\) @@ -146,25 +147,25 @@ public static MbyNContact CreateMbyNContactContact(Document3D activeDocument, Mu The active document. -`baseGeoms` MultipleContactInfo\[\] +`baseGeoms` [MultipleContactInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MultipleContactBase.cs)\[\] The base geometry. -`actionGeoms` MultipleContactInfo\[\] +`actionGeoms` [MultipleContactInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MultipleContactBase.cs)\[\] The action geometry. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The rigid to rigid 3D contact prefix name. -`getNewEntityName` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`getNewEntityName` bool Flag for creating a new entity if there is already an entity with the same name #### Returns - MbyNContact + [MbyNContact](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MbyNContact.cs) The new rigid to rigid 3D contact. @@ -182,21 +183,21 @@ public static MbyNContact CreateMbyNGeneralContact(Document3D activeDocument, Mu The active document. -`baseGeoms` MultipleContactInfo\[\] +`baseGeoms` [MultipleContactInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MultipleContactBase.cs)\[\] The base geometry. -`actionGeoms` MultipleContactInfo\[\] +`actionGeoms` [MultipleContactInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MultipleContactBase.cs)\[\] The action geometry. -`strPrefixName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefixName` string The rigid to rigid 3D contact prefix name. #### Returns - MbyNContact + [MbyNContact](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MbyNContact.cs) The new rigid to rigid 3D contact. @@ -222,13 +223,13 @@ The base geometry. The action geometry. -`strPrefixName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefixName` string The rigid to rigid 3D contact prefix name. #### Returns - RTR3D + [RTR3D](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/RTR3D.cs) The new rigid to rigid 3D contact. @@ -240,13 +241,13 @@ public static MultipleContactInfo[] GetMultipleInfoList(List lst, #### Parameters -`lst` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lst` List -`isFront` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isFront` bool #### Returns - MultipleContactInfo\[\] + [MultipleContactInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCt/MultipleContactBase.cs)\[\] ### TryGetGeometry\(IObjectBase, out IContactable, Document\) @@ -264,5 +265,5 @@ public static bool TryGetGeometry(IObjectBase objectBase, out IContactable geome #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateDesignParameter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateDesignParameter.md index b573000f13..f7772be80c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateDesignParameter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateDesignParameter.md @@ -1,4 +1,5 @@ -# Class CreateDesignParameter +# Class CreateDesignParameter + Namespace: [VM.Managed.DAFUL.Operation.Util](VM.Managed.DAFUL.Operation.Util.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class CreateDesignParameter #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CreateDesignParameter](VM.Managed.DAFUL.Operation.Util.CreateDesignParameter.md) #### Extension Methods @@ -48,17 +49,17 @@ The active document. The design frame transformation. -`bInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bInterface` bool The flag of interface. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The design frame name. #### Returns - DesignFrame + [DesignFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs) The new design frame. @@ -80,21 +81,21 @@ The active document. The design frame transformation. -`bInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bInterface` bool The flag of interface. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The design frame name. -`strMatchName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMatchName` string Name of the matched object. #### Returns - DesignFrame + [DesignFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs) The new design frame. @@ -116,17 +117,17 @@ The active document. The design point position. -`bInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bInterface` bool The flag of interface. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The design point name. #### Returns - DesignPoint + [DesignPoint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignPoint.cs) The new design point. @@ -148,17 +149,17 @@ The active document. The design point position. -`bInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bInterface` bool The flag of interface. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The design point name. #### Returns - DesignPoint + [DesignPoint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignPoint.cs) The new design point. @@ -180,21 +181,21 @@ The active document. The design point position. -`bInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bInterface` bool The flag of interface -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The design point name -`strMatchName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMatchName` string Name of the matched object. #### Returns - DesignPoint + [DesignPoint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignPoint.cs) The new design point @@ -216,21 +217,21 @@ The active document. The design point position. -`bInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bInterface` bool The flag of interface -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The design point name -`strMatchName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMatchName` string Name of the matched object. #### Returns - DesignPoint + [DesignPoint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignPoint.cs) The new design point @@ -248,21 +249,21 @@ public static DesignVariable CreateDV(Document document, double dValue, bool bIn The active document. -`dValue` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dValue` double The design variable value. -`bInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bInterface` bool The flag of interface. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The design variable name. #### Returns - DesignVariable + [DesignVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignVariable.cs) The new design variable. @@ -280,21 +281,21 @@ public static DesignVariable CreateDV(Document3D activeDocument, string alue, bo The active document. -`alue` [string](https://learn.microsoft.com/dotnet/api/system.string) +`alue` string The design variable value. -`bInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bInterface` bool The flag of interface. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The design variable name. #### Returns - DesignVariable + [DesignVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignVariable.cs) The new design variable. @@ -312,25 +313,25 @@ public static DesignVariable CreateDV(Document3D activeDocument, double dValue, The active document. -`dValue` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dValue` double The design variable value. -`bInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bInterface` bool The flag of interface. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The design variable name. -`strMatchName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMatchName` string Name of the matched object. #### Returns - DesignVariable + [DesignVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignVariable.cs) The new design variable diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateForce.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateForce.md index 181cbfc937..fcde213bf6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateForce.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateForce.md @@ -1,4 +1,5 @@ -# Class CreateForce +# Class CreateForce + Namespace: [VM.Managed.DAFUL.Operation.Util](VM.Managed.DAFUL.Operation.Util.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class CreateForce #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CreateForce](VM.Managed.DAFUL.Operation.Util.CreateForce.md) #### Extension Methods @@ -60,17 +61,17 @@ The pt start. The pt end. -`strPrefixName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefixName` string Name of the string prefix. #### Returns - RScalar + [RScalar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFP/RScalar.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception ### CreateRScalar\(Document3D, IConnectable, IConnectable, PointBase, DirectionBase, string\) @@ -102,17 +103,17 @@ The pt end. The dir z. -`strPrefixName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefixName` string Name of the string prefix. #### Returns - RScalar + [RScalar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFP/RScalar.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception ### CreateRScalar\(Document3D, IObjectBase, IObjectBase, PointBase, DirectionBase, string, Function, bool\) @@ -144,23 +145,23 @@ The pt end. The dir z. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string Name of the string prefix. -`function` Function +`function` [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) -`getNewEntityName` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`getNewEntityName` bool Flag for creating a new entity if there is already an entity with the same name #### Returns - RScalar + [RScalar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFP/RScalar.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception ### CreateRSpringDamper\(Document3D, ObjectBase, string\) @@ -180,13 +181,13 @@ The active document. The object that IRSpringDamperComponent. -`strPrefixName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefixName` string The spring force prefix name. #### Returns - RSpringDamper + [RSpringDamper](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/RSpringDamper.cs) The new rotational spring damper force. @@ -220,13 +221,13 @@ The start location of scalar. The end location of scalar. -`strPrefixName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefixName` string The scalar force prefix name. #### Returns - TScalar + [TScalar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFP/TScalar.cs) The new translational sclar force. @@ -260,13 +261,13 @@ The end location of scalar. The z direction of scalar. -`strPrefixName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefixName` string The scalar force prefix name. #### Returns - TScalar + [TScalar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFP/TScalar.cs) The new translational sclar force. @@ -300,13 +301,13 @@ The start location of spring. The end location of spring. -`strPrefixName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefixName` string The spring force prefix name. #### Returns - TSpringDamper + [TSpringDamper](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/TSpringDamper.cs) The new translational spring damper force. @@ -324,7 +325,7 @@ public static Vector CreateVector(Document document, string name, IConnectable b The active document. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name. @@ -346,7 +347,7 @@ The action posi. #### Returns - Vector + [Vector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFP/Vector.cs) ### CreateVector\(Document, string, IConnectable, IConnectable, TMatrix, TMatrix, bool\) @@ -362,7 +363,7 @@ public static Vector CreateVector(Document document, string name, IConnectable b The active document. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name. @@ -382,13 +383,13 @@ The base posi. The action posi. -`addToDocument` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`addToDocument` bool Flag for add created element to document. #### Returns - Vector + [Vector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFP/Vector.cs) ### CreateVector\(Document, string, IConnectable, IConnectable, PointBase, PointBase, OrientationBase, OrientationBase, IMarker\) @@ -404,7 +405,7 @@ public static Vector CreateVector(Document document, string name, IConnectable b The active document. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The name. @@ -438,5 +439,5 @@ The reference marekr. #### Returns - Vector + [Vector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFP/Vector.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateSubEntity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateSubEntity.md index 035f2da575..5179bf4d7f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateSubEntity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateSubEntity.md @@ -1,4 +1,5 @@ -# Class CreateSubEntity +# Class CreateSubEntity + Namespace: [VM.Managed.DAFUL.Operation.Util](VM.Managed.DAFUL.Operation.Util.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class CreateSubEntity #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CreateSubEntity](VM.Managed.DAFUL.Operation.Util.CreateSubEntity.md) #### Extension Methods @@ -44,17 +45,17 @@ public static Array CreateArray(Document3D document, int size, bool isInterface) The document. -`size` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`size` int The number of array size. -`isInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isInterface` bool The flag of interface. #### Returns - Array + [Array](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSP/Array.cs) The new array. @@ -72,21 +73,21 @@ public static Array CreateArray(Document3D activeDocument, int nSize, bool bInte The active document. -`nSize` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nSize` int The number of array size. -`bInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bInterface` bool The flag of interface. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The array name. #### Returns - Array + [Array](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSP/Array.cs) The new array. @@ -104,29 +105,29 @@ public static Differential1 CreateDifferential1Equation(Document3D activeDocumen The active document. -`function` Function +`function` [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) The function. -`initialDisplacement` [double](https://learn.microsoft.com/dotnet/api/system.double) +`initialDisplacement` double The initial value. -`initialVelocity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`initialVelocity` double The initial velocity. -`differentialFunctionType` EquationFunctionDiff.FunctionEquType +`differentialFunctionType` [EquationFunctionDiff](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDEq/Differential1.cs).[FunctionEquType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDEq/Differential1.cs) The differential function type. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The variable equation name. #### Returns - Differential1 + [Differential1](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDEq/Differential1.cs) The new variable equation. @@ -144,29 +145,29 @@ public static Differential1 CreateDifferential1Equation(Document3D activeDocumen The active document. -`userSubroutine` UserSubroutine +`userSubroutine` [UserSubroutine](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSP/UserSubroutine.cs) The function. -`initialDisplacement` [double](https://learn.microsoft.com/dotnet/api/system.double) +`initialDisplacement` double The initial value. -`initialVelocity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`initialVelocity` double The initial velocity. -`differentialFunctionType` EquationFunctionDiff.FunctionEquType +`differentialFunctionType` [EquationFunctionDiff](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDEq/Differential1.cs).[FunctionEquType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDEq/Differential1.cs) The differential function type. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The variable equation name. #### Returns - Differential1 + [Differential1](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDEq/Differential1.cs) The new variable equation. @@ -184,29 +185,29 @@ public static Differential2 CreateDifferential2Equation(Document3D activeDocumen The active document. -`function` Function +`function` [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) The function. -`initialDisplacement` [double](https://learn.microsoft.com/dotnet/api/system.double) +`initialDisplacement` double The initial value. -`initialVelocity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`initialVelocity` double The initial velocity. -`differentialFunctionType` EquationFunctionDiff.FunctionEquType +`differentialFunctionType` [EquationFunctionDiff](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDEq/Differential1.cs).[FunctionEquType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDEq/Differential1.cs) The differential function type. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The variable equation name. #### Returns - Differential2 + [Differential2](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDEq/Differential2.cs) The new variable equation. @@ -224,29 +225,29 @@ public static Differential2 CreateDifferential2Equation(Document3D activeDocumen The active document. -`userSubroutine` UserSubroutine +`userSubroutine` [UserSubroutine](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSP/UserSubroutine.cs) The function. -`initialDisplacement` [double](https://learn.microsoft.com/dotnet/api/system.double) +`initialDisplacement` double The initial value. -`initialVelocity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`initialVelocity` double The initial velocity. -`differentialFunctionType` EquationFunctionDiff.FunctionEquType +`differentialFunctionType` [EquationFunctionDiff](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDEq/Differential1.cs).[FunctionEquType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDEq/Differential1.cs) The differential function type. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The variable equation name. #### Returns - Differential2 + [Differential2](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDEq/Differential2.cs) The new variable equation. @@ -262,19 +263,19 @@ public static Function CreateFunction(Document3D document, string expression, IA `document` Document3D -`expression` [string](https://learn.microsoft.com/dotnet/api/system.string) +`expression` string `arguments` IArgument\[\] -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string -`getNewEntityName` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`getNewEntityName` bool Flag for creating a new entity if there is already an entity with the same name #### Returns - Function + [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) ### CreateFunction\(Document3D, string, string\) @@ -288,13 +289,13 @@ public static Function CreateFunction(Document3D document, string expression, st `document` Document3D -`expression` [string](https://learn.microsoft.com/dotnet/api/system.string) +`expression` string -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns - Function + [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) ### CreateFunctionSimple\(Document, string, bool, string, bool\) @@ -310,25 +311,25 @@ public static Function CreateFunctionSimple(Document document, string strExpress The active document. -`strExpression` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strExpression` string The expression of function. -`bInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bInterface` bool The flag of interface. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The function name. -`getNewEntityName` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`getNewEntityName` bool Flag for creating a new entity if there is already an entity with the same name #### Returns - Function + [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) The new function. @@ -346,25 +347,25 @@ public static Function CreateFunctionSimple(Document3D activeDocument, string st The active document. -`strExpression` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strExpression` string The expression of function. -`bInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bInterface` bool The flag of interface. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The function name. -`strMatchName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMatchName` string Name of the STR match. #### Returns - Function + [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) The new function. @@ -382,29 +383,29 @@ public static Function CreateFunctionWithArguments(Document document, string str The active document. -`strExpression` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strExpression` string The expression of function. -`lstArgument` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`lstArgument` IEnumerable The list of argument. -`bInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bInterface` bool The flag of interface. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The function name. -`getNewEntityName` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`getNewEntityName` bool Flag for creating a new entity if there is already an entity with the same name #### Returns - Function + [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) The new function. @@ -422,29 +423,29 @@ public static Function CreateFunctionWithArguments(Document document, string str The active document. -`strExpression` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strExpression` string The expression of function. -`lstArgument` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<\([string](https://learn.microsoft.com/dotnet/api/system.string), IArgument\)\> +`lstArgument` IEnumerable<\(string, IArgument\)\> The list of argument. -`bInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bInterface` bool The flag of interface. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The function name. -`getNewEntityName` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`getNewEntityName` bool Flag for creating a new entity if there is already an entity with the same name #### Returns - Function + [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) The new function. @@ -462,13 +463,13 @@ public static Group CreateGroup(Document3D docSub, string strName) The active document -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The group name #### Returns - Group + [Group](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Group.cs) ### CreateScenario\(Document, Sensor, Sign, Action, double, ObjectBase, double, string, ObjectBase, Motion, string\) @@ -484,19 +485,19 @@ public static Scenario CreateScenario(Document document, Scenario.Sensor sensor, The document -`sensor` Scenario.Sensor +`sensor` [Scenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs).[Sensor](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs) The sensor -`sign` Scenario.Sign +`sign` [Scenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs).[Sign](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs) The sign -`action` Scenario.Action +`action` [Scenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs).[Action](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs) The action -`dActionValue` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dActionValue` double The action value @@ -504,11 +505,11 @@ The action value The function -`dValue` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dValue` double The value -`strICFPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strICFPath` string The icf path @@ -516,17 +517,17 @@ The icf path The enable target -`targetOfMotion` Scenario.Motion +`targetOfMotion` [Scenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs).[Motion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs) The motion -`strPrefixName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefixName` string The prefix name #### Returns - Scenario + [Scenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Scenario.cs) ### CreateSpline\(Document3D, IEnumerable, string\) @@ -540,17 +541,17 @@ public static Spline CreateSpline(Document3D document, IEnumerable da The active document. -`dataPoints` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`dataPoints` IEnumerable The spline data -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The spline name. #### Returns - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) The new spline. @@ -566,17 +567,17 @@ public static Spline CreateSpline(Document3D document, SplineValue splineValue, The active document. -`splineValue` SplineValue +`splineValue` [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) The spline value -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The spline name. #### Returns - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) The new spline. @@ -592,17 +593,17 @@ public static Spline CreateSplineFromFile(Document3D activeDocument, string strD The active document. -`strDataFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDataFilePath` string The path of spline data file. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The spline name. #### Returns - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) The new spline. @@ -618,21 +619,21 @@ public static Spline CreateSplineFromValue(Document3D activeDocument, List +`points` List The data of spline value. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The spline name. -`getNewEntityName` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`getNewEntityName` bool Flag for creating a new entity if there is already an entity with the same name #### Returns - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) The new spline. @@ -650,17 +651,17 @@ public static StringValue CreateStringValue(Document3D document, string stringVa The document. -`stringValue` [string](https://learn.microsoft.com/dotnet/api/system.string) +`stringValue` string The string value. -`isInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isInterface` bool The flag of interface. #### Returns - StringValue + [StringValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSP/StringValue.cs) The new string value. @@ -678,21 +679,21 @@ public static StringValue CreateStringValue(Document3D activeDocument, string st The active document. -`stringValue` [string](https://learn.microsoft.com/dotnet/api/system.string) +`stringValue` string The number of array size. -`bInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bInterface` bool The flag of interface. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The array name. #### Returns - StringValue + [StringValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSP/StringValue.cs) The new array. @@ -710,33 +711,33 @@ public static UserSubroutine CreateUserSubroutine(Document3D document, string dl The active document. -`dllName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`dllName` string The DLL file name. -`functionName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`functionName` string The function name. -`resultValue` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`resultValue` int The number of result value. -`expression` [string](https://learn.microsoft.com/dotnet/api/system.string) +`expression` string The expression of user-subroutine. -`interface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`interface` bool The flag of interface. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The user-subroutine name. #### Returns - UserSubroutine + [UserSubroutine](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSP/UserSubroutine.cs) The new user-subroutine. @@ -754,41 +755,41 @@ public static UserSubroutine CreateUserSubroutineWithArguments(Document document The active document. -`dllName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`dllName` string The DLL file name. -`functionName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`functionName` string The function name. -`resultValue` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`resultValue` int The number of result value. -`expression` [string](https://learn.microsoft.com/dotnet/api/system.string) +`expression` string The expression of user-subroutine. -`arguments` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) +`arguments` IEnumerable The list of argument. -`interface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`interface` bool The flag of interface. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The user-subroutine name. -`addToDocument` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`addToDocument` bool Flag for add created element to document. #### Returns - UserSubroutine + [UserSubroutine](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSP/UserSubroutine.cs) The new user-subroutine. @@ -806,21 +807,21 @@ public static VariableEq CreateVariableEquation(Document3D activeDocument, Funct The active document. -`function` Function +`function` [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) The function. -`dInitialValue` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dInitialValue` double The intial value. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The variable equation name. #### Returns - VariableEq + [VariableEq](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDEq/VariableEq.cs) The new variable equation. @@ -838,21 +839,21 @@ public static VariableEq CreateVariableEquation(Document3D document, UserSubrout The active document. -`userSubroutine` UserSubroutine +`userSubroutine` [UserSubroutine](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSP/UserSubroutine.cs) The UserSubroutine. -`initialValue` [double](https://learn.microsoft.com/dotnet/api/system.double) +`initialValue` double The intial value. -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The variable equation name. #### Returns - VariableEq + [VariableEq](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDEq/VariableEq.cs) The new variable equation. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateSubsystem.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateSubsystem.md index bef2ac7acb..56675ab5a1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateSubsystem.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateSubsystem.md @@ -1,4 +1,5 @@ -# Class CreateSubsystem +# Class CreateSubsystem + Namespace: [VM.Managed.DAFUL.Operation.Util](VM.Managed.DAFUL.Operation.Util.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class CreateSubsystem #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CreateSubsystem](VM.Managed.DAFUL.Operation.Util.CreateSubsystem.md) #### Extension Methods @@ -44,7 +45,7 @@ public static SubSystem Create(Document3D activeDocument, string strSubsystemFil The active document. -`strSubsystemFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSubsystemFilePath` string The subsystem file path. @@ -52,13 +53,13 @@ The subsystem file path. The subsystem transformation. -`strPrefixName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefixName` string The subsystem prefix name. #### Returns - SubSystem + [SubSystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystem.cs) The new subsystem. @@ -76,7 +77,7 @@ public static SubSystem Create(Document3D activeDocument, SubSystemDocument docS The active document. -`docSubsystem` SubSystemDocument +`docSubsystem` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The subsystem document. @@ -84,13 +85,13 @@ The subsystem document. The subsystem transformation. -`strPrefixName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefixName` string The subsystem prefix name. #### Returns - SubSystem + [SubSystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystem.cs) The new subsystem. @@ -104,21 +105,21 @@ public static SubSystem ImportSubSystem(SubSystemDocument docParent, SubSystemDo #### Parameters -`docParent` SubSystemDocument +`docParent` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The parent subsystem document -`docChild` SubSystemDocument +`docChild` [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) The child subsystem document -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The name #### Returns - SubSystem + [SubSystem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystem.cs) nodal body diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateUserDefinedMarker.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateUserDefinedMarker.md index 836c17ba95..c60ee534e1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateUserDefinedMarker.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.CreateUserDefinedMarker.md @@ -1,4 +1,5 @@ -# Class CreateUserDefinedMarker +# Class CreateUserDefinedMarker + Namespace: [VM.Managed.DAFUL.Operation.Util](VM.Managed.DAFUL.Operation.Util.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class CreateUserDefinedMarker #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [CreateUserDefinedMarker](VM.Managed.DAFUL.Operation.Util.CreateUserDefinedMarker.md) #### Extension Methods @@ -48,13 +49,13 @@ The active document. The user defined marker transformation. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The user defined marker name. #### Returns - Marker + [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) The new user defined marker. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.ReferenceFinder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.ReferenceFinder.md index 6eb04b8c0d..75163fd6a2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.ReferenceFinder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.ReferenceFinder.md @@ -1,4 +1,5 @@ -# Class ReferenceFinder +# Class ReferenceFinder + Namespace: [VM.Managed.DAFUL.Operation.Util](VM.Managed.DAFUL.Operation.Util.md) Assembly: VMOpCore.dll @@ -11,7 +12,7 @@ public class ReferenceFinder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ReferenceFinder](VM.Managed.DAFUL.Operation.Util.ReferenceFinder.md) #### Extension Methods @@ -40,7 +41,7 @@ public static ReferenceConnectable FindReferenceConnectable(InstanceContainer co #### Parameters -`container` InstanceContainer +`container` [InstanceContainer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs) To find from the instance container. @@ -50,7 +51,7 @@ The prototype of reference connectable. #### Returns - ReferenceConnectable + [ReferenceConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ReferenceConnectable.cs) The reference connectable. @@ -68,7 +69,7 @@ public static void FindReferenceConnectableFromAllSubsystem(Document3D activeDoc The active document. -`lstReferenceConnectable` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstReferenceConnectable` List<[ReferenceConnectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ReferenceConnectable.cs)\> The reference connectables. @@ -82,7 +83,7 @@ public static IContactableRigid3D FindReferenceContactable(InstanceContainer con #### Parameters -`container` InstanceContainer +`container` [InstanceContainer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs) To find from the instance container. @@ -110,7 +111,7 @@ public static void FindReferenceDesignFrameFromAllSubsystem(Document3D activeDoc The active document. -`lstReferenceDF` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstReferenceDF` List<[ReferenceDesignFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs)\> The reference design frames. @@ -124,17 +125,17 @@ public static ReferenceDesignPoint FindReferenceDesignPoint(InstanceContainer co #### Parameters -`container` InstanceContainer +`container` [InstanceContainer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs) To find from the instance container. -`prototype` DesignPoint +`prototype` [DesignPoint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignPoint.cs) The prototype of reference connectable. #### Returns - ReferenceDesignPoint + [ReferenceDesignPoint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignPoint.cs) The reference connectable. @@ -152,7 +153,7 @@ public static void FindReferenceDesignPointFromAllSubsystem(Document3D activeDoc The active document. -`lstReferenceDP` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstReferenceDP` List<[ReferenceDesignPoint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignPoint.cs)\> The reference design points. @@ -170,7 +171,7 @@ public static void FindReferenceDesignVariableFromAllSubsystem(Document3D active The active document. -`lstReferenceDV` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstReferenceDV` List<[ReferenceDesignVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignVariable.cs)\> The reference design variables. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.SubsystemDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.SubsystemDocument.md index 7f50b07980..dcbb37136b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.SubsystemDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.SubsystemDocument.md @@ -1,4 +1,5 @@ -# Class SubsystemDocument +# Class SubsystemDocument + Namespace: [VM.Managed.DAFUL.Operation.Util](VM.Managed.DAFUL.Operation.Util.md) Assembly: VMOpCore.dll @@ -9,7 +10,7 @@ public static class SubsystemDocument #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SubsystemDocument](VM.Managed.DAFUL.Operation.Util.SubsystemDocument.md) #### Extension Methods @@ -28,13 +29,13 @@ public static SubSystemDocument CreateNewSubsystemDocument(string strNewSubsyste #### Parameters -`strNewSubsystemFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strNewSubsystemFilePath` string `unit` Unit -`kernelLengthUnit` [string](https://learn.microsoft.com/dotnet/api/system.string) +`kernelLengthUnit` string #### Returns - SubSystemDocument + [SubSystemDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SubSystemDocument.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.md index 13ca500919..8f851d5551 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.Util.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Operation.Util +# Namespace VM.Managed.DAFUL.Operation.Util + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.WarningMessage.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.WarningMessage.md index a365fd416e..cbc5b126ac 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.WarningMessage.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.WarningMessage.md @@ -1,4 +1,5 @@ -# Class WarningMessage +# Class WarningMessage + Namespace: [VM.Managed.DAFUL.Operation](VM.Managed.DAFUL.Operation.md) Assembly: VMOpCore.dll @@ -9,7 +10,7 @@ public class WarningMessage : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [WarningMessage](VM.Managed.DAFUL.Operation.WarningMessage.md) @@ -83,7 +84,7 @@ public WarningMessage(string strMessage) #### Parameters -`strMessage` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMessage` string ## Properties @@ -95,7 +96,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -107,7 +108,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.md index f75c2af7ab..a1f79ef61c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Operation.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Operation +# Namespace VM.Managed.DAFUL.Operation + ### Namespaces @@ -116,6 +117,12 @@ The DFG Export operation The export solver xml file operation + [ExportFiles](VM.Managed.DAFUL.Operation.ExportFiles.md) + +The export files operation + + [ExportMotionFiles](VM.Managed.DAFUL.Operation.ExportMotionFiles.md) + [ExportXML](VM.Managed.DAFUL.Operation.ExportXML.md) The export solver xml file operation diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PartAssembly.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PartAssembly.md index 29051670a1..3ade90131f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PartAssembly.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PartAssembly.md @@ -1,4 +1,5 @@ -# Class PartAssembly +# Class PartAssembly + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class PartAssembly : Assembly, IObservableObject, IDisposableObject, ILin #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Assembly ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer #### Inherited Members @@ -139,7 +140,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -184,11 +185,11 @@ protected PartAssembly(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PartDocument.MassProperty.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PartDocument.MassProperty.md index 00acce7b2a..e0664adbbf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PartDocument.MassProperty.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PartDocument.MassProperty.md @@ -1,4 +1,5 @@ -# Class PartDocument.MassProperty +# Class PartDocument.MassProperty + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class PartDocument.MassProperty : LinkContainer, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [PartDocument.MassProperty](VM.Managed.DAFUL.PartDocument.MassProperty.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -130,7 +131,7 @@ public ExpressionValueVariable Density { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Mass @@ -142,7 +143,7 @@ public ExpressionValueVariable Mass { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MassCenter @@ -190,7 +191,7 @@ public double MassValue { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MomentOfInertia @@ -214,7 +215,7 @@ public double[] MomentOfInertiaValue { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### SolidPropertyType @@ -254,7 +255,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -272,7 +273,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PartDocument.MassPropertyType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PartDocument.MassPropertyType.md index 6aeca3eeab..f5a971feb7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PartDocument.MassPropertyType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PartDocument.MassPropertyType.md @@ -1,4 +1,5 @@ -# Enum PartDocument.MassPropertyType +# Enum PartDocument.MassPropertyType + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PartDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PartDocument.md index 12d9c03b09..649835c370 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PartDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PartDocument.md @@ -1,4 +1,5 @@ -# Class PartDocument +# Class PartDocument + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class PartDocument : DocumentAnalysis, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← @@ -31,7 +32,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, IDocumentAnalysis, @@ -184,8 +185,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -196,9 +195,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -212,12 +211,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -495,7 +491,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -526,7 +522,7 @@ public PartDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -542,7 +538,7 @@ public string DFMFFilePath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### InitialCategories @@ -554,7 +550,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### LastModifiedTimeToDFMFFile @@ -566,7 +562,7 @@ public string LastModifiedTimeToDFMFFile { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### MassPropertyInfo @@ -590,7 +586,7 @@ public double MaxDistance { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Modes @@ -626,7 +622,7 @@ public static bool SkipCheckDFMFFile { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### \_ReferenceFrame @@ -670,7 +666,7 @@ public void CalcBoundingBox(IDesignFrame designFrame, ref double[] arResult) The design frame. -`arResult` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arResult` double\[\] The ar result. @@ -698,13 +694,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The type. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The category. @@ -718,7 +714,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -736,7 +732,7 @@ public override void GetCADBodyNameAttribute(ref List lstName) #### Parameters -`lstName` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstName` List The output CAD body name attributes. @@ -750,7 +746,7 @@ public override void GetData(XmlNode writer) #### Parameters -`writer` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`writer` XmlNode The writer. @@ -776,7 +772,7 @@ public override string GetSimulationConfigurationType() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The type of the simulation configuration. @@ -790,13 +786,13 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The unnamed object. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The unnamed object name. @@ -824,7 +820,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string The category name. @@ -846,7 +842,7 @@ protected override void LinkRequestUpdate(object obNotifier, LinkEventArgs arg) #### Parameters -`obNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obNotifier` object The ob notifier. @@ -864,7 +860,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -878,7 +874,7 @@ protected override void OnPostMakeDocumentImpl(DocCreateAnalysisInfo info) #### Parameters -`info` DocCreateAnalysisInfo +`info` [DocCreateAnalysisInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DocCreate3DInfo.cs) The information of document creation. @@ -946,7 +942,7 @@ public void SetDFMFFilePath(string strDFMFFilePath) #### Parameters -`strDFMFFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDFMFFilePath` string The dfmf file path. @@ -960,7 +956,7 @@ public override void SetData(XmlNode reader) #### Parameters -`reader` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`reader` XmlNode The reader. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PartMarker.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PartMarker.md index a465b2b96b..867a163623 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PartMarker.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PartMarker.md @@ -1,4 +1,5 @@ -# Class PartMarker +# Class PartMarker + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,14 +12,14 @@ public class PartMarker : Marker, IObservableObject, IDisposableObject, ILinkabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← -DesignSubEntity ← -DesignFrame ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← +[DesignSubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs) ← +[DesignFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs) ← [Marker](VM.Managed.DAFUL.Marker.md) ← [PartMarker](VM.Managed.DAFUL.PartMarker.md) @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, INamed, INavigatorItem, @@ -78,45 +79,45 @@ IReferencable, [Marker.ReferenceType](VM.Managed.DAFUL.Marker.md\#VM\_Managed\_DAFUL\_Marker\_ReferenceType), [Marker.ArgumentType](VM.Managed.DAFUL.Marker.md\#VM\_Managed\_DAFUL\_Marker\_ArgumentType), [Marker.FrameIconName](VM.Managed.DAFUL.Marker.md\#VM\_Managed\_DAFUL\_Marker\_FrameIconName), -DesignFrame.Initialize\(Unit.ConvertFactor\), -DesignFrame.LinkRequestUpdate\(object, LinkEventArgs\), -DesignFrame.GetDirection\(Coordinate\), -DesignFrame.GetFullName\(\), -DesignFrame.Draw\(Canvas\), -DesignFrame.ReDraw\(\), -DesignFrame.InstantiateImpl\(Reference, Canvas\), -DesignFrame.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\), -DesignFrame.WriteTemplateImpl\(XmlWriter\), -DesignFrame.ReadTemplateImpl\(XmlReader\), -DesignFrame.Transformation, -DesignFrame.Value, -DesignFrame.X, -DesignFrame.Y, -DesignFrame.Z, -DesignFrame.Orientation, -DesignFrame.Position, -DesignFrame.TransformationMatrix, -DesignFrame.Hide, -DesignFrame.FrameIconName, -DesignFrame.Layer, -DesignFrame.IsVisible, -DesignSubEntity.m\_bSkipToUpdateSymmetric, -DesignSubEntity.g\_dicUpdatedDesignSubEntity, -DesignSubEntity.FixUp\(ObjectBase\), -DesignSubEntity.CheckCircularReference\(\), -DesignSubEntity.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\), -DesignSubEntity.IsInterface, -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[DesignFrame.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.GetDirection\(Coordinate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.GetFullName\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.InstantiateImpl\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Transformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Value](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.X](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Y](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Z](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Orientation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Position](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.TransformationMatrix](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.FrameIconName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignFrame.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignFrame.cs), +[DesignSubEntity.m\_bSkipToUpdateSymmetric](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.g\_dicUpdatedDesignSubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.CheckCircularReference\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.BindInterfaceImpl\(TMatrix, TMatrix, IInterface\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[DesignSubEntity.IsInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DesignSubEntity.cs), +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -209,7 +210,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -248,7 +249,7 @@ public PartMarker(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the marker. @@ -290,21 +291,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -318,13 +319,13 @@ public bool IsExistNameInAssemblyBody(string strMarName) #### Parameters -`strMarName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMarName` string The marker name. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if exist; otherwise, false. @@ -338,7 +339,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -356,7 +357,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PartSetCurveForEdges.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PartSetCurveForEdges.md index 12aa894560..a899481264 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PartSetCurveForEdges.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PartSetCurveForEdges.md @@ -1,4 +1,5 @@ -# Class PartSetCurveForEdges +# Class PartSetCurveForEdges + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,12 +12,12 @@ public class PartSetCurveForEdges : SetCurveForEdges, IObservableObject, IDispos #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [SetCurveBase](VM.Managed.DAFUL.SetCurveBase.md) ← [SetCurveForEdges](VM.Managed.DAFUL.SetCurveForEdges.md) ← [PartSetCurveForEdges](VM.Managed.DAFUL.PartSetCurveForEdges.md) @@ -28,7 +29,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -109,17 +110,17 @@ IPostDeserialized [SetCurveBase.IsActionGeometry](VM.Managed.DAFUL.SetCurveBase.md\#VM\_Managed\_DAFUL\_SetCurveBase\_IsActionGeometry), [SetCurveBase.AnalysisType](VM.Managed.DAFUL.SetCurveBase.md\#VM\_Managed\_DAFUL\_SetCurveBase\_AnalysisType), [SetCurveBase.Body](VM.Managed.DAFUL.SetCurveBase.md\#VM\_Managed\_DAFUL\_SetCurveBase\_Body), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -212,7 +213,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -251,7 +252,7 @@ public PartSetCurveForEdges(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the face set. @@ -281,7 +282,7 @@ protected override void MakeReferenceImpl(LinkedList lstRef) #### Parameters -`lstRef` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) +`lstRef` LinkedList The container. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PartSetCurveForImport.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PartSetCurveForImport.md index 1646893264..2043900035 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PartSetCurveForImport.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PartSetCurveForImport.md @@ -1,4 +1,5 @@ -# Class PartSetCurveForImport +# Class PartSetCurveForImport + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,12 +12,12 @@ public class PartSetCurveForImport : SetCurveForImport, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [SetCurveBase](VM.Managed.DAFUL.SetCurveBase.md) ← [SetCurveForImport](VM.Managed.DAFUL.SetCurveForImport.md) ← [PartSetCurveForImport](VM.Managed.DAFUL.PartSetCurveForImport.md) @@ -28,7 +29,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -96,17 +97,17 @@ IReferencable [SetCurveBase.IsActionGeometry](VM.Managed.DAFUL.SetCurveBase.md\#VM\_Managed\_DAFUL\_SetCurveBase\_IsActionGeometry), [SetCurveBase.AnalysisType](VM.Managed.DAFUL.SetCurveBase.md\#VM\_Managed\_DAFUL\_SetCurveBase\_AnalysisType), [SetCurveBase.Body](VM.Managed.DAFUL.SetCurveBase.md\#VM\_Managed\_DAFUL\_SetCurveBase\_Body), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -199,7 +200,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -238,7 +239,7 @@ public PartSetCurveForImport(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the face set. @@ -254,7 +255,7 @@ protected override void MakeReferenceImpl(LinkedList lstRef) #### Parameters -`lstRef` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) +`lstRef` LinkedList The container. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PartSetFace.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PartSetFace.md index 86b8a56321..e352201485 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PartSetFace.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PartSetFace.md @@ -1,4 +1,5 @@ -# Class PartSetFace +# Class PartSetFace + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,12 +12,12 @@ public class PartSetFace : SetFace, IObservableObject, IDisposableObject, ILinka #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [SetFace](VM.Managed.DAFUL.SetFace.md) ← [PartSetFace](VM.Managed.DAFUL.PartSetFace.md) @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -103,7 +104,6 @@ IPostOpenDocumentForFaceset [SetFace.GetMinimumDistanceAndDirection\(IFaceInformation, TMatrix, TMatrix, ref VectorBase\[\], double\)](VM.Managed.DAFUL.SetFace.md\#VM\_Managed\_DAFUL\_SetFace\_GetMinimumDistanceAndDirection\_VM\_Managed\_IFaceInformation\_VM\_Managed\_TMatrix\_VM\_Managed\_TMatrix\_VM\_Managed\_VectorBase\_\_\_\_System\_Double\_), [SetFace.GetPointAndConnectivity\(FacetOption, ref VectorBase\[\], ref int\[\], ref int\[\], Reference, double\)](VM.Managed.DAFUL.SetFace.md\#VM\_Managed\_DAFUL\_SetFace\_GetPointAndConnectivity\_VM\_Models\_Pre\_FacetOption\_VM\_Managed\_VectorBase\_\_\_\_System\_Int32\_\_\_\_System\_Int32\_\_\_\_VM\_Managed\_Reference\_System\_Double\_), [SetFace.GetFacetModifiedTimeAttribute\(\)](VM.Managed.DAFUL.SetFace.md\#VM\_Managed\_DAFUL\_SetFace\_GetFacetModifiedTimeAttribute), -[SetFace.GetBodyModifiedTimeAttribute\(\)](VM.Managed.DAFUL.SetFace.md\#VM\_Managed\_DAFUL\_SetFace\_GetBodyModifiedTimeAttribute), [SetFace.AutomaticSelectionGeometryType](VM.Managed.DAFUL.SetFace.md\#VM\_Managed\_DAFUL\_SetFace\_AutomaticSelectionGeometryType), [SetFace.GeometryType](VM.Managed.DAFUL.SetFace.md\#VM\_Managed\_DAFUL\_SetFace\_GeometryType), [SetFace.SphereRadius](VM.Managed.DAFUL.SetFace.md\#VM\_Managed\_DAFUL\_SetFace\_SphereRadius), @@ -134,17 +134,17 @@ IPostOpenDocumentForFaceset [SetFace.AttribType](VM.Managed.DAFUL.SetFace.md\#VM\_Managed\_DAFUL\_SetFace\_AttribType), [SetFace.ReferenceType](VM.Managed.DAFUL.SetFace.md\#VM\_Managed\_DAFUL\_SetFace\_ReferenceType), [SetFace.ArgumentType](VM.Managed.DAFUL.SetFace.md\#VM\_Managed\_DAFUL\_SetFace\_ArgumentType), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -237,7 +237,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -276,7 +276,7 @@ public PartSetFace(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the face set. @@ -306,7 +306,7 @@ protected override void MakeReferenceImpl(LinkedList lstRef) #### Parameters -`lstRef` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) +`lstRef` LinkedList The container. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PathType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PathType.md index 8d2beaf94a..39d789763d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PathType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PathType.md @@ -1,4 +1,5 @@ -# Enum PathType +# Enum PathType + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDBallPlacing.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PlasticMaterialStrain.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PlasticMaterialStrain.md index 0977bbeaad..8091f05b8d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PlasticMaterialStrain.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PlasticMaterialStrain.md @@ -1,4 +1,5 @@ -# Enum PlasticMaterialStrain +# Enum PlasticMaterialStrain + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Api.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Api.md index 5047f6970e..8435d487a9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Api.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Api.md @@ -1,4 +1,5 @@ -# Class Api +# Class Api + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpreAPI.dll @@ -11,7 +12,7 @@ public class Api : IPre, IMainWindow #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Api](VM.Managed.DAFUL.Pre.Api.md) #### Implements @@ -109,7 +110,7 @@ public JournalRecorder GlobalJournal { get; } #### Property Value - JournalRecorder + [JournalRecorder](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMJournal/journalRecorder.cs) ### KerenlTranslatorMessageWriter @@ -119,7 +120,7 @@ public Action KerenlTranslatorMessageWriter { get; set; } #### Property Value - [Action](https://learn.microsoft.com/dotnet/api/system.action\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + Action ### KernelMessageWriter @@ -131,7 +132,7 @@ public Action KernelMessageWriter { get; set; } #### Property Value - [Action](https://learn.microsoft.com/dotnet/api/system.action\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + Action ### LocalJournal @@ -143,7 +144,7 @@ public JournalRecorder LocalJournal { get; } #### Property Value - JournalRecorder + [JournalRecorder](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMJournal/journalRecorder.cs) ### MainWindow @@ -167,7 +168,7 @@ public bool UnUseMRU { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Version @@ -179,7 +180,7 @@ public string Version { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### WriteDFG @@ -191,7 +192,7 @@ public bool WriteDFG { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -229,7 +230,7 @@ public void CanSimulation(bool bCan) #### Parameters -`bCan` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bCan` bool if set to true [can]. @@ -243,7 +244,7 @@ public void ClearMessage(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name. @@ -279,7 +280,7 @@ The #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CloseFile\(string\) @@ -291,13 +292,13 @@ public bool CloseFile(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -311,17 +312,17 @@ public bool CloseFile(string strFileName, bool bUseWork) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the STR file. -`bUseWork` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseWork` bool if set to true [b use work]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CloseFile\(string, bool, bool\) @@ -333,21 +334,21 @@ public bool CloseFile(string strFileName, bool bUseWork, bool bActivate) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the string file. -`bUseWork` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseWork` bool if set to true [b use work]. -`bActivate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bActivate` bool if set to true [b activate]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CloseHiddenFile\(string\) @@ -359,13 +360,13 @@ public bool CloseHiddenFile(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the string file. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CloseWork\(\) @@ -385,7 +386,7 @@ public Document CreateDocument(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. @@ -405,11 +406,11 @@ public Document CreateDocument(string strFileName, bool bActivate) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. -`bActivate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bActivate` bool if set to true [b activate]. @@ -429,15 +430,15 @@ public Document CreateDocument(string strFileName, bool bActivate, string strDoc #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the STR file. -`bActivate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bActivate` bool if set to true [b activate]. -`strDocCreateInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDocCreateInfo` string The STR doc create info. @@ -455,19 +456,19 @@ public Document CreateDocument(string strFileName, bool bActivate, string strDoc #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the string file. -`bActivate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bActivate` bool if set to true [b activate]. -`strDocCreateInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDocCreateInfo` string The string document create information. -`bDesigner` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDesigner` bool if set to true [b designer]. @@ -483,7 +484,7 @@ protected virtual void Dispose(bool disposing) #### Parameters -`disposing` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`disposing` bool ### Dispose\(\) @@ -501,7 +502,7 @@ public void EndOutput(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name. @@ -524,7 +525,7 @@ public void Fit(string strPathName) #### Parameters -`strPathName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPathName` string Name of the string path. @@ -538,7 +539,7 @@ public List GetAllOpenDocument() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### GetDocumentFromOpenedDocument\(string\) @@ -550,7 +551,7 @@ public Document GetDocumentFromOpenedDocument(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. @@ -568,7 +569,7 @@ public string GetMode() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The mode type @@ -582,13 +583,13 @@ public bool IsOpenDocument(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if [is open document] [the specified STR file name]; otherwise, false. @@ -602,7 +603,7 @@ public bool IsRunningSimulation() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### NewFile\(NewFile\) @@ -642,7 +643,7 @@ public Document OpenDocument(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. @@ -662,11 +663,11 @@ public Document OpenDocument(string strFileName, bool bActivate) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. -`bActivate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bActivate` bool if set to true [b activate]. @@ -686,15 +687,15 @@ public Document OpenDocument(string strFileName, string strRelatedPath, bool bAc #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the STR file. -`strRelatedPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRelatedPath` string The STR related path. -`bActivate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bActivate` bool if set to true [b activate]. @@ -712,7 +713,7 @@ public Document OpenDocumentFile(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the STR file. @@ -730,11 +731,11 @@ public GroupItem OpenFile(string strFileName, string strRefDir) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. -`strRefDir` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRefDir` string The reference directory. @@ -760,7 +761,7 @@ The info. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string the file name @@ -774,7 +775,7 @@ public Document OpenHiddenDocument(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The object. @@ -792,7 +793,7 @@ public Model OpenModel(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. @@ -812,7 +813,7 @@ public Work OpenWork(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the STR file. @@ -830,7 +831,7 @@ public bool PrepareSimulation() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -844,11 +845,11 @@ public void ReadAllText(string strPath, string strName) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The path. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name. @@ -862,15 +863,15 @@ public void ReadAllText(string strPath, string strName, bool bDeleteFIle) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The STR path. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. -`bDeleteFIle` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDeleteFIle` bool if set to true [b delete F ile]. @@ -904,7 +905,7 @@ public void SaveFile(string strPath) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The path. @@ -922,7 +923,7 @@ public void SaveFile(Document doc, string strFileName) The doc. -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the STR file. @@ -941,11 +942,11 @@ public void SaveFile(Document doc, string strFileName, bool bIgnoreExternChange) The doc. -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the STR file. -`bIgnoreExternChange` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bIgnoreExternChange` bool if set to true [b ignore extern change]. @@ -979,7 +980,7 @@ The info. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string the file name @@ -993,7 +994,7 @@ public void SaveModel(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. @@ -1007,7 +1008,7 @@ public void SaveWork(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. @@ -1021,11 +1022,11 @@ public void SetEnableOfTabCtrl(object obj, bool bEnable) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The current document. -`bEnable` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bEnable` bool if set to true [is enable]. @@ -1047,11 +1048,11 @@ public void SetPathName(string strOldPath, string strNewPath) #### Parameters -`strOldPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOldPath` string The old path. -`strNewPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strNewPath` string The new path. @@ -1065,7 +1066,7 @@ public void SetProgressState(int nStats) #### Parameters -`nStats` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nStats` int 0x0 : NOPROGRESS, 0x1 : INDETERMINATE, 0x2 : NORMAL, 0x4 : ERROR, 0x8 : PAUSED @@ -1079,11 +1080,11 @@ public void SetProgressValue(ulong nCompleted, ulong nTotal) #### Parameters -`nCompleted` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nCompleted` ulong The completed value. -`nTotal` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nTotal` ulong The total value. @@ -1097,17 +1098,17 @@ public bool SetSimulationParameters(string strEndTime, string strStepSize) #### Parameters -`strEndTime` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strEndTime` string The end time. -`strStepSize` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strStepSize` string Size of the step. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -1121,7 +1122,7 @@ public void SetStatusBar(string strMessage) #### Parameters -`strMessage` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMessage` string The message. @@ -1149,11 +1150,11 @@ public static Api Start(string strKernelPath, string strKernelCoreModulePath) #### Parameters -`strKernelPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strKernelPath` string The kernel path. -`strKernelCoreModulePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strKernelCoreModulePath` string The kernel core module path. @@ -1173,19 +1174,19 @@ public static Api Start(string strKernelPath, string strKernelCoreModulePath, st #### Parameters -`strKernelPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strKernelPath` string The kernel path. -`strKernelCoreModulePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strKernelCoreModulePath` string The kernel core module path. -`strTranslatorDir` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strTranslatorDir` string The translator directory. -`strHoopsExchangeDirectory` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strHoopsExchangeDirectory` string The Hoops Exchange directory. @@ -1233,11 +1234,11 @@ public void StartOutput(string strPath, string strName) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The path. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name. @@ -1251,7 +1252,7 @@ public ISession UseSession(string strSessionName) #### Parameters -`strSessionName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSessionName` string The name of the session @@ -1291,7 +1292,7 @@ public event EventHandler OnActiveDocumentChanged #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler) + EventHandler ### OnActiveViewChanged @@ -1303,5 +1304,5 @@ public event EventHandler OnActiveViewChanged #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler) + EventHandler diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.ApiStartOptions.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.ApiStartOptions.md index a13ee66645..ab29b7176b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.ApiStartOptions.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.ApiStartOptions.md @@ -1,4 +1,5 @@ -# Struct ApiStartOptions +# Struct ApiStartOptions + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpreAPI.dll @@ -21,7 +22,7 @@ public Action ActionOnKernelMessage { readonly get; set; } #### Property Value - [Action](https://learn.microsoft.com/dotnet/api/system.action\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + Action ### ActionOnKernelTranslatorMessage @@ -33,7 +34,7 @@ public readonly Action ActionOnKernelTranslatorMessage { get; } #### Property Value - [Action](https://learn.microsoft.com/dotnet/api/system.action\-1)<[object](https://learn.microsoft.com/dotnet/api/system.object)\> + Action ### ActionOnLicenseError @@ -45,7 +46,7 @@ public Action ActionOnLicenseError { readonly get; set; } #### Property Value - [Action](https://learn.microsoft.com/dotnet/api/system.action\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [string](https://learn.microsoft.com/dotnet/api/system.string)\> + Action ### ActionOnLicenseInformation @@ -57,7 +58,7 @@ public Action ActionOnLicenseInformation { readonly get; set; } #### Property Value - [Action](https://learn.microsoft.com/dotnet/api/system.action\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [string](https://learn.microsoft.com/dotnet/api/system.string)\> + Action ### ActionOnLicenseWarning @@ -69,7 +70,7 @@ public Action ActionOnLicenseWarning { readonly get; set; } #### Property Value - [Action](https://learn.microsoft.com/dotnet/api/system.action\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [string](https://learn.microsoft.com/dotnet/api/system.string)\> + Action ### ConsoleDefault @@ -93,7 +94,7 @@ public string HoopsExchangeDirectory { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### KernelCoreModulePath @@ -105,7 +106,7 @@ public string KernelCoreModulePath { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### KernelPath @@ -117,7 +118,7 @@ public string KernelPath { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TranslatorDirectory @@ -129,5 +130,5 @@ public string TranslatorDirectory { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.AssemblyDocInfo.AddDocTemplatePriorityType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.AssemblyDocInfo.AddDocTemplatePriorityType.md index 71f423eacd..5a42aca44d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.AssemblyDocInfo.AddDocTemplatePriorityType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.AssemblyDocInfo.AddDocTemplatePriorityType.md @@ -1,4 +1,5 @@ -# Enum AssemblyDocInfo.AddDocTemplatePriorityType +# Enum AssemblyDocInfo.AddDocTemplatePriorityType + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.AssemblyDocInfo.AssemblyType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.AssemblyDocInfo.AssemblyType.md index 6ec2f4328d..fe43806b28 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.AssemblyDocInfo.AssemblyType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.AssemblyDocInfo.AssemblyType.md @@ -1,4 +1,5 @@ -# Enum AssemblyDocInfo.AssemblyType +# Enum AssemblyDocInfo.AssemblyType + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.AssemblyDocInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.AssemblyDocInfo.md index 6b7e9897c2..4687441538 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.AssemblyDocInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.AssemblyDocInfo.md @@ -1,4 +1,5 @@ -# Class AssemblyDocInfo +# Class AssemblyDocInfo + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -11,7 +12,7 @@ public class AssemblyDocInfo : DocInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DocInfo](VM.Managed.DAFUL.Pre.DocInfo.md) ← [AssemblyDocInfo](VM.Managed.DAFUL.Pre.AssemblyDocInfo.md) @@ -75,7 +76,7 @@ public string BuilderType #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Format @@ -113,7 +114,7 @@ public string CategoryName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ChangeUsageForCADExport @@ -125,7 +126,7 @@ public bool ChangeUsageForCADExport { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ChangeUsageForCADImport @@ -137,7 +138,7 @@ public bool ChangeUsageForCADImport { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ChangeUsageForFEImport @@ -149,7 +150,7 @@ public bool ChangeUsageForFEImport { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ChangeUsageForMeshAssembly @@ -161,7 +162,7 @@ public bool ChangeUsageForMeshAssembly { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ChangeUsageForPartAssembly @@ -173,7 +174,7 @@ public bool ChangeUsageForPartAssembly { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ChangeUsageForSubsystemAssembly @@ -185,7 +186,7 @@ public bool ChangeUsageForSubsystemAssembly { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IconFiles @@ -197,7 +198,7 @@ public static string[] IconFiles { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### PriorityType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.CancelRibbon.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.CancelRibbon.md index 591c1eb492..323caf664c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.CancelRibbon.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.CancelRibbon.md @@ -1,4 +1,5 @@ -# Enum CancelRibbon +# Enum CancelRibbon + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.ControlDocInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.ControlDocInfo.md index 934bc87e38..f729b83501 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.ControlDocInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.ControlDocInfo.md @@ -1,4 +1,5 @@ -# Class ControlDocInfo +# Class ControlDocInfo + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -11,7 +12,7 @@ public class ControlDocInfo : DocInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DocInfo](VM.Managed.DAFUL.Pre.DocInfo.md) ← [ControlDocInfo](VM.Managed.DAFUL.Pre.ControlDocInfo.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.DocInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.DocInfo.md index b1045f8b6e..f18b09a74a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.DocInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.DocInfo.md @@ -1,4 +1,5 @@ -# Class DocInfo +# Class DocInfo + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -11,7 +12,7 @@ public class DocInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DocInfo](VM.Managed.DAFUL.Pre.DocInfo.md) #### Derived @@ -70,7 +71,7 @@ public string Description { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Designer @@ -82,7 +83,7 @@ public string Designer { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### DocCreateInfo @@ -106,7 +107,7 @@ public Type DocumentType { get; } #### Property Value - [Type](https://learn.microsoft.com/dotnet/api/system.type) + Type ### Extension @@ -118,7 +119,7 @@ public string Extension { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Filter @@ -130,7 +131,7 @@ public string Filter { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Group @@ -142,7 +143,7 @@ public string Group { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Handle @@ -154,7 +155,7 @@ public UIntPtr Handle { get; set; } #### Property Value - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### Helper @@ -178,7 +179,7 @@ public string Hidden { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Icon @@ -190,7 +191,7 @@ public Icon Icon { get; } #### Property Value - [Icon](https://learn.microsoft.com/dotnet/api/system.drawing.icon) + Icon ### IconFile @@ -202,7 +203,7 @@ public string IconFile { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IsFailedLicense @@ -214,7 +215,7 @@ public bool IsFailedLicense { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Mode @@ -226,7 +227,7 @@ public string Mode { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Modules @@ -238,7 +239,7 @@ public string[] Modules { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### Name @@ -250,7 +251,7 @@ public string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Navigator @@ -262,7 +263,7 @@ public string Navigator { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NewDocumentName @@ -274,7 +275,7 @@ public string NewDocumentName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NewFormType @@ -286,7 +287,7 @@ public string NewFormType { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Toolkit @@ -298,7 +299,7 @@ public string Toolkit { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Type @@ -310,7 +311,7 @@ public string Type { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeID @@ -322,7 +323,7 @@ public string TypeID { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeName @@ -334,7 +335,7 @@ public string TypeName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UntitledDocCount @@ -346,5 +347,5 @@ public uint UntitledDocCount { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.DocModifiedInfo.FileStatus.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.DocModifiedInfo.FileStatus.md index 54a7bb6ca4..18f5d45986 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.DocModifiedInfo.FileStatus.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.DocModifiedInfo.FileStatus.md @@ -1,4 +1,5 @@ -# Enum DocModifiedInfo.FileStatus +# Enum DocModifiedInfo.FileStatus + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.DocModifiedInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.DocModifiedInfo.md index 2de5a27902..8c8dc3b287 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.DocModifiedInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.DocModifiedInfo.md @@ -1,4 +1,5 @@ -# Class DocModifiedInfo +# Class DocModifiedInfo + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -11,7 +12,7 @@ public abstract class DocModifiedInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DocModifiedInfo](VM.Managed.DAFUL.Pre.DocModifiedInfo.md) #### Derived @@ -45,7 +46,7 @@ public abstract string FilePath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Status diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.DocModifiedInfoFileGroupDocument-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.DocModifiedInfoFileGroupDocument-1.md index f428cec8de..b57b3eebab 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.DocModifiedInfoFileGroupDocument-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.DocModifiedInfoFileGroupDocument-1.md @@ -1,4 +1,5 @@ -# Class DocModifiedInfoFileGroupDocument +# Class DocModifiedInfoFileGroupDocument + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -15,7 +16,7 @@ public abstract class DocModifiedInfoFileGroupDocument : DocModifiedInfo wher #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DocModifiedInfo](VM.Managed.DAFUL.Pre.DocModifiedInfo.md) ← [DocModifiedInfoFileGroupDocument](VM.Managed.DAFUL.Pre.DocModifiedInfoFileGroupDocument\-1.md) @@ -60,7 +61,7 @@ public override sealed string FilePath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Group diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.DocModifiedInfoModel.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.DocModifiedInfoModel.md index bf102a5b4c..cbe8c6044f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.DocModifiedInfoModel.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.DocModifiedInfoModel.md @@ -1,4 +1,5 @@ -# Class DocModifiedInfoModel +# Class DocModifiedInfoModel + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -11,7 +12,7 @@ public class DocModifiedInfoModel : DocModifiedInfoFileGroupDocument #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DocModifiedInfo](VM.Managed.DAFUL.Pre.DocModifiedInfo.md) ← [DocModifiedInfoFileGroupDocument](VM.Managed.DAFUL.Pre.DocModifiedInfoFileGroupDocument\-1.md) ← [DocModifiedInfoModel](VM.Managed.DAFUL.Pre.DocModifiedInfoModel.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.DocModifiedInfoVMDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.DocModifiedInfoVMDocument.md index 19d4af2984..9ae057acc4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.DocModifiedInfoVMDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.DocModifiedInfoVMDocument.md @@ -1,4 +1,5 @@ -# Class DocModifiedInfoVMDocument +# Class DocModifiedInfoVMDocument + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -11,7 +12,7 @@ public class DocModifiedInfoVMDocument : DocModifiedInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DocModifiedInfo](VM.Managed.DAFUL.Pre.DocModifiedInfo.md) ← [DocModifiedInfoVMDocument](VM.Managed.DAFUL.Pre.DocModifiedInfoVMDocument.md) @@ -56,7 +57,7 @@ public List DependentDocuments { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### Document @@ -80,7 +81,7 @@ public override string FilePath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -102,7 +103,7 @@ public void OnDependentAdded(object o, DependentDocEventArgs args) #### Parameters -`o` [object](https://learn.microsoft.com/dotnet/api/system.object) +`o` object The object. @@ -120,7 +121,7 @@ public void OnDependentRemoved(object o, DependentDocEventArgs args) #### Parameters -`o` [object](https://learn.microsoft.com/dotnet/api/system.object) +`o` object The object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.DocModifiedInfoWork.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.DocModifiedInfoWork.md index 3e618a716a..f6a3b6d318 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.DocModifiedInfoWork.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.DocModifiedInfoWork.md @@ -1,4 +1,5 @@ -# Class DocModifiedInfoWork +# Class DocModifiedInfoWork + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -11,7 +12,7 @@ public class DocModifiedInfoWork : DocModifiedInfoFileGroupDocument #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DocModifiedInfo](VM.Managed.DAFUL.Pre.DocModifiedInfo.md) ← [DocModifiedInfoFileGroupDocument](VM.Managed.DAFUL.Pre.DocModifiedInfoFileGroupDocument\-1.md) ← [DocModifiedInfoWork](VM.Managed.DAFUL.Pre.DocModifiedInfoWork.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.DockableWindowInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.DockableWindowInfo.md index 600eef1c9d..a9e2192121 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.DockableWindowInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.DockableWindowInfo.md @@ -1,4 +1,5 @@ -# Class DockableWindowInfo +# Class DockableWindowInfo + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -11,7 +12,7 @@ public class DockableWindowInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DockableWindowInfo](VM.Managed.DAFUL.Pre.DockableWindowInfo.md) #### Derived @@ -44,7 +45,7 @@ public string Command { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Image @@ -56,7 +57,7 @@ public string Image { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Name @@ -68,7 +69,7 @@ public string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Text @@ -80,7 +81,7 @@ public string Text { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Toolbar @@ -92,7 +93,7 @@ public string Toolbar { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Type @@ -104,5 +105,5 @@ public string Type { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.FileDialogInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.FileDialogInfo.md index 638649d3a9..a936d7bf10 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.FileDialogInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.FileDialogInfo.md @@ -1,4 +1,5 @@ -# Class FileDialogInfo +# Class FileDialogInfo + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -11,7 +12,7 @@ public class FileDialogInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [FileDialogInfo](VM.Managed.DAFUL.Pre.FileDialogInfo.md) #### Derived @@ -47,7 +48,7 @@ public bool AddExtension { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DefaultExt @@ -59,7 +60,7 @@ public string DefaultExt { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### FileName @@ -71,7 +72,7 @@ public string FileName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Filter @@ -83,7 +84,7 @@ public string Filter { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### FilterIndex @@ -95,7 +96,7 @@ public int FilterIndex { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### InitialDirectory @@ -107,7 +108,7 @@ public string InitialDirectory { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RestoreDirectory @@ -119,7 +120,7 @@ public bool RestoreDirectory { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Title @@ -131,5 +132,5 @@ public string Title { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.FileGroup-2.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.FileGroup-2.md index 5cba97c1f8..cd177a4bf6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.FileGroup-2.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.FileGroup-2.md @@ -1,4 +1,5 @@ -# Class FileGroup +# Class FileGroup + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -21,7 +22,7 @@ The type of the item. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Group](VM.Managed.DAFUL.Pre.Group\-2.md) ← [FileGroup](VM.Managed.DAFUL.Pre.FileGroup\-2.md) @@ -62,7 +63,7 @@ public FileGroup(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. @@ -78,5 +79,5 @@ public string Path { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Group-2.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Group-2.md index 4cfdbee845..0b5d4ef2d1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Group-2.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Group-2.md @@ -1,4 +1,5 @@ -# Class Group +# Class Group + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -21,7 +22,7 @@ The type of the item. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Group](VM.Managed.DAFUL.Pre.Group\-2.md) #### Extension Methods @@ -50,7 +51,7 @@ public Group(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of group. @@ -66,7 +67,7 @@ public string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SubGroups @@ -78,7 +79,7 @@ public List SubGroups { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### SubItems @@ -90,7 +91,7 @@ public List SubItems { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.GroupItem.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.GroupItem.md index 03c566ac8d..2e9fd18100 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.GroupItem.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.GroupItem.md @@ -1,4 +1,5 @@ -# Class GroupItem +# Class GroupItem + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -11,7 +12,7 @@ public class GroupItem #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [GroupItem](VM.Managed.DAFUL.Pre.GroupItem.md) #### Extension Methods @@ -42,7 +43,7 @@ public string Extension { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Name @@ -54,7 +55,7 @@ public string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RelativePath @@ -66,7 +67,7 @@ public string RelativePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -80,13 +81,13 @@ public string GetFullPath(string strRefDir) #### Parameters -`strRefDir` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRefDir` string The reference directory. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The full path. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.HiddenDocInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.HiddenDocInfo.md index 80d187c666..7b3349253e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.HiddenDocInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.HiddenDocInfo.md @@ -1,4 +1,5 @@ -# Class HiddenDocInfo +# Class HiddenDocInfo + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -11,7 +12,7 @@ public class HiddenDocInfo : AssemblyDocInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DocInfo](VM.Managed.DAFUL.Pre.DocInfo.md) ← [AssemblyDocInfo](VM.Managed.DAFUL.Pre.AssemblyDocInfo.md) ← [HiddenDocInfo](VM.Managed.DAFUL.Pre.HiddenDocInfo.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IDocInfoHelper.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IDocInfoHelper.md index f4d74727ff..f30abeb312 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IDocInfoHelper.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IDocInfoHelper.md @@ -1,4 +1,5 @@ -# Interface IDocInfoHelper +# Interface IDocInfoHelper + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -27,5 +28,5 @@ uint UntitledDocCount { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IFileGroup.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IFileGroup.md index 8194ea942c..fd8c911bd7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IFileGroup.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IFileGroup.md @@ -1,4 +1,5 @@ -# Interface IFileGroup +# Interface IFileGroup + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -27,5 +28,5 @@ string Path { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IHiddenFormView.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IHiddenFormView.md index 2587e6bc11..bd968b3076 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IHiddenFormView.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IHiddenFormView.md @@ -1,4 +1,5 @@ -# Interface IHiddenFormView +# Interface IHiddenFormView + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -43,7 +44,7 @@ string GetActiveDesignType() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string Design Type @@ -57,7 +58,7 @@ void OnButtonDown(MouseEventArgs arg) #### Parameters -`arg` [MouseEventArgs](https://learn.microsoft.com/dotnet/api/system.windows.forms.mouseeventargs) +`arg` MouseEventArgs The instance containing the event data. @@ -71,7 +72,7 @@ void OnButtonUp(MouseEventArgs arg) #### Parameters -`arg` [MouseEventArgs](https://learn.microsoft.com/dotnet/api/system.windows.forms.mouseeventargs) +`arg` MouseEventArgs The instance containing the event data. @@ -85,7 +86,7 @@ void SelectTabInUserControl(int nIdx) #### Parameters -`nIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIdx` int Index of the n. @@ -99,11 +100,11 @@ void SetActiveUserControl(string strType, object obj) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string Type of the string. -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The object. @@ -117,11 +118,11 @@ void ShowTabInDesigner(int nIdx, bool bShow) #### Parameters -`nIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIdx` int Index of the n. -`bShow` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bShow` bool if set to true [b show]. @@ -135,7 +136,7 @@ void UpdateUserControl(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IMainThread.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IMainThread.md index ea8bcb330c..e056918b81 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IMainThread.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IMainThread.md @@ -1,4 +1,5 @@ -# Interface IMainThread +# Interface IMainThread + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -27,7 +28,7 @@ bool InvokeRequired { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -41,7 +42,7 @@ void InvokeMainThread(Action action) #### Parameters -`action` [Action](https://learn.microsoft.com/dotnet/api/system.action) +`action` Action The to invoke. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IMainWindow.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IMainWindow.md index 4494526a28..63345cacda 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IMainWindow.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IMainWindow.md @@ -1,4 +1,5 @@ -# Interface IMainWindow +# Interface IMainWindow + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IOperationStatus.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IOperationStatus.md index 053a520366..5ad94895c3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IOperationStatus.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IOperationStatus.md @@ -1,4 +1,5 @@ -# Interface IOperationStatus +# Interface IOperationStatus + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -57,7 +58,7 @@ string GetCurrentFilter() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IsVisible\(\) @@ -69,7 +70,7 @@ bool IsVisible() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OnCancel\(\) @@ -113,11 +114,11 @@ void PickOperation(string ContentName, string strType) #### Parameters -`ContentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`ContentName` string Name of the content. -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string Type of the string. @@ -131,15 +132,15 @@ void PickOperation(string ContentName, string strType, bool bShowDialog) #### Parameters -`ContentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`ContentName` string Name of the content. -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string Type of the string. -`bShowDialog` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bShowDialog` bool if set to true [b show dialog]. @@ -153,19 +154,19 @@ void PickOperation(string ContentName, string strType, string strPreviousResult, #### Parameters -`ContentName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`ContentName` string Name of the content. -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string Type of the string. -`strPreviousResult` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPreviousResult` string The string previous result. -`bShowDialog` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bShowDialog` bool if set to true [b show dialog]. @@ -179,7 +180,7 @@ void SetCurrentOperation(string strOpName) #### Parameters -`strOpName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOpName` string Name of the STR op. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IOutputWindow.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IOutputWindow.md index ec08fe0974..2841d491a6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IOutputWindow.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IOutputWindow.md @@ -1,4 +1,5 @@ -# Interface IOutputWindow +# Interface IOutputWindow + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -27,11 +28,11 @@ void AddMessage(string strOutputName, string strMessage) #### Parameters -`strOutputName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOutputName` string Name of the output. -`strMessage` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMessage` string The message. @@ -45,7 +46,7 @@ void ClearMessage(string strOutputName) #### Parameters -`strOutputName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOutputName` string ### ReadAllTextFromFile\(string, string, bool\) @@ -57,15 +58,15 @@ void ReadAllTextFromFile(string strOutputName, string strFileName, bool bDeleteF #### Parameters -`strOutputName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOutputName` string Name of the output. -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. -`bDeleteFile` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDeleteFile` bool if set to true [delete file]. @@ -79,11 +80,11 @@ void ReportFile(string strOutputName, string strFileName) #### Parameters -`strOutputName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOutputName` string Name of the output. -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. @@ -97,7 +98,7 @@ void StopReportFile(string strOutputName) #### Parameters -`strOutputName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOutputName` string Name of the output. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IPickHelper.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IPickHelper.md index 297bd946d4..5eebcb140b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IPickHelper.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IPickHelper.md @@ -1,4 +1,5 @@ -# Interface IPickHelper +# Interface IPickHelper + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -72,7 +73,7 @@ bool ApplyEdge() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -86,7 +87,7 @@ bool ApplyEntityVM() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -100,7 +101,7 @@ bool ApplyFace() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -114,7 +115,7 @@ bool ApplyFaceset() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -128,7 +129,7 @@ bool ApplyHole() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -142,7 +143,7 @@ bool ApplyMesh() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -156,7 +157,7 @@ bool ApplyNode() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -170,7 +171,7 @@ bool ApplyPatchset() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -200,7 +201,7 @@ void SetAdjacentUseFaceNormal(bool bUseFaceNormal) #### Parameters -`bUseFaceNormal` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseFaceNormal` bool true then use face normal angle, else use edge tangential angle. @@ -214,7 +215,7 @@ void SetAdjacentValue(double dValue) #### Parameters -`dValue` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dValue` double the angle value. @@ -228,7 +229,7 @@ void SetDirection(string strDirectionXml) #### Parameters -`strDirectionXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDirectionXml` string The direction XML. @@ -242,35 +243,35 @@ void SetDirection(string strDirectionX, string strDirectionY, string strDirectio #### Parameters -`strDirectionX` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDirectionX` string The direction X. -`strDirectionY` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDirectionY` string The direction Y. -`strDirectionZ` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDirectionZ` string The direction Z. -`strParamU` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strParamU` string The param U. -`strParamV` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strParamV` string The param V. -`strDirectionXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDirectionXml` string The STR direction XML. -`isReverse` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isReverse` bool if set to true [is reverse]. -`isParameterizable` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isParameterizable` bool if set to true [is parameterizable]. @@ -284,7 +285,7 @@ void SetMultiSelectShape_Circle(bool bAlreadyOperation) #### Parameters -`bAlreadyOperation` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bAlreadyOperation` bool the operation flag. @@ -298,7 +299,7 @@ void SetMultiSelectShape_Circle2(bool bAlreadyOperation) #### Parameters -`bAlreadyOperation` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bAlreadyOperation` bool the operation flag. @@ -312,7 +313,7 @@ void SetMultiSelectShape_None(bool bAlreadyOperation) #### Parameters -`bAlreadyOperation` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bAlreadyOperation` bool the operation flag. @@ -326,7 +327,7 @@ void SetMultiSelectShape_Polyline(bool bAlreadyOperation) #### Parameters -`bAlreadyOperation` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bAlreadyOperation` bool the operation flag. @@ -340,7 +341,7 @@ void SetMultiSelectShape_Rectangle(bool bAlreadyOperation) #### Parameters -`bAlreadyOperation` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bAlreadyOperation` bool the operation flag. @@ -378,7 +379,7 @@ void SetPoint(string strPointXml) #### Parameters -`strPointXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPointXml` string The point XML. @@ -392,31 +393,31 @@ void SetPoint(string strPointX, string strPointY, string strPointZ, string strPa #### Parameters -`strPointX` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPointX` string The point X. -`strPointY` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPointY` string The point Y. -`strPointZ` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPointZ` string The point Z. -`strParamU` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strParamU` string The param U. -`strParamV` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strParamV` string The param V. -`strPointXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPointXml` string The point XML. -`isParameterizable` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isParameterizable` bool if set to true [is parameterizable]. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IPickerUI.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IPickerUI.md index 9617279d93..77f813dde3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IPickerUI.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IPickerUI.md @@ -1,4 +1,5 @@ -# Interface IPickerUI +# Interface IPickerUI + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -35,17 +36,17 @@ UserControl GetPickerUI(string strInformation, bool bUseAutoPick) #### Parameters -`strInformation` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInformation` string The STR information. -`bUseAutoPick` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseAutoPick` bool if set to true [b use auto pick]. #### Returns - [UserControl](https://learn.microsoft.com/dotnet/api/system.windows.forms.usercontrol) + UserControl ### OnCancel\(\) @@ -81,7 +82,7 @@ void SetTitleName(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The name. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IPre.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IPre.md index b8c6d015bc..77c02fdd2a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IPre.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IPre.md @@ -1,4 +1,5 @@ -# Interface IPre +# Interface IPre + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -75,7 +76,7 @@ JournalRecorder GlobalJournal { get; } #### Property Value - JournalRecorder + [JournalRecorder](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMJournal/journalRecorder.cs) ### LocalJournal @@ -87,7 +88,7 @@ JournalRecorder LocalJournal { get; } #### Property Value - JournalRecorder + [JournalRecorder](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMJournal/journalRecorder.cs) ### MainWindow @@ -111,7 +112,7 @@ bool UnUseMRU { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Version @@ -123,7 +124,7 @@ string Version { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### WriteDFG @@ -135,7 +136,7 @@ bool WriteDFG { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -157,7 +158,7 @@ void CanSimulation(bool bCan) #### Parameters -`bCan` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bCan` bool if set to true [b can]. @@ -171,7 +172,7 @@ void ClearMessage(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name. @@ -207,7 +208,7 @@ The #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CloseFile\(string\) @@ -219,13 +220,13 @@ bool CloseFile(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -239,17 +240,17 @@ bool CloseFile(string strFileName, bool bUseWork) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the STR file. -`bUseWork` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseWork` bool if set to true [b use work]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CloseFile\(string, bool, bool\) @@ -261,21 +262,21 @@ bool CloseFile(string strFileName, bool bUseWork, bool bActivate) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the string file. -`bUseWork` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseWork` bool if set to true [b use work]. -`bActivate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bActivate` bool if set to true [b activate]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CloseHiddenFile\(string\) @@ -287,13 +288,13 @@ bool CloseHiddenFile(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the string file. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CloseWork\(\) @@ -313,7 +314,7 @@ Document CreateDocument(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. @@ -333,11 +334,11 @@ Document CreateDocument(string strFileName, bool bActivate) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. -`bActivate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bActivate` bool if set to true [b activate]. @@ -357,15 +358,15 @@ Document CreateDocument(string strFileName, bool bActivate, string strDocCreateI #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the STR file. -`bActivate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bActivate` bool if set to true [b activate]. -`strDocCreateInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDocCreateInfo` string The STR doc create info. @@ -383,19 +384,19 @@ Document CreateDocument(string strFileName, bool bActivate, string strDocCreateI #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the string file. -`bActivate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bActivate` bool if set to true [b activate]. -`strDocCreateInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDocCreateInfo` string The string document create information. -`bDesigner` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDesigner` bool if set to true [b designer]. @@ -413,7 +414,7 @@ void EndOutput(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name. @@ -427,7 +428,7 @@ void Fit(string strPathName) #### Parameters -`strPathName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPathName` string Name of the string path. @@ -441,7 +442,7 @@ List GetAllOpenDocument() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### GetDocumentFromOpenedDocument\(string\) @@ -453,7 +454,7 @@ Document GetDocumentFromOpenedDocument(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. @@ -471,7 +472,7 @@ string GetMode() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The mode type @@ -485,13 +486,13 @@ bool IsOpenDocument(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if [is open document] [the specified STR file name]; otherwise, false. @@ -505,7 +506,7 @@ bool IsRunningSimulation() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### NewFile\(NewFile\) @@ -545,7 +546,7 @@ Document OpenDocument(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. @@ -565,11 +566,11 @@ Document OpenDocument(string strFileName, bool bActivate) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. -`bActivate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bActivate` bool if set to true [b activate]. @@ -589,7 +590,7 @@ Document OpenDocumentFile(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the STR file. @@ -607,11 +608,11 @@ GroupItem OpenFile(string strFileName, string strRefDir) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. -`strRefDir` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRefDir` string The reference directory. @@ -637,7 +638,7 @@ The info. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string the file name @@ -651,7 +652,7 @@ Document OpenHiddenDocument(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The object. @@ -669,7 +670,7 @@ Model OpenModel(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. @@ -689,7 +690,7 @@ Work OpenWork(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the STR file. @@ -707,7 +708,7 @@ bool PrepareSimulation() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -721,11 +722,11 @@ void ReadAllText(string strPath, string strName) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The path. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name. @@ -739,15 +740,15 @@ void ReadAllText(string strPath, string strName, bool bDeleteFile) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The path. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name. -`bDeleteFile` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDeleteFile` bool if set to true [b delete file]. @@ -781,7 +782,7 @@ void SaveFile(string strPath) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The path. @@ -799,7 +800,7 @@ void SaveFile(Document doc, string strFileName) The doc. -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the STR file. @@ -817,11 +818,11 @@ void SaveFile(Document doc, string strFileName, bool bIgnoreExternChange) The doc. -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the STR file. -`bIgnoreExternChange` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bIgnoreExternChange` bool if set to true [b ignore extern change]. @@ -841,7 +842,7 @@ The info. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string the file name @@ -855,7 +856,7 @@ void SaveModel(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. @@ -869,7 +870,7 @@ void SaveWork(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. @@ -883,11 +884,11 @@ void SetEnableOfTabCtrl(object obj, bool bEnable) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The current document. -`bEnable` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bEnable` bool if set to true [is enable]. @@ -909,11 +910,11 @@ void SetPathName(string strOldPath, string strNewPath) #### Parameters -`strOldPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOldPath` string The old path. -`strNewPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strNewPath` string The new path. @@ -927,7 +928,7 @@ void SetProgressState(int nStats) #### Parameters -`nStats` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nStats` int 0x0 : NOPROGRESS, 0x1 : INDETERMINATE, 0x2 : NORMAL, 0x4 : ERROR, 0x8 : PAUSED @@ -941,11 +942,11 @@ void SetProgressValue(ulong nCompleted, ulong nTotal) #### Parameters -`nCompleted` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nCompleted` ulong The completed value. -`nTotal` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nTotal` ulong The total value. @@ -959,17 +960,17 @@ bool SetSimulationParameters(string strEndTime, string strStepSize) #### Parameters -`strEndTime` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strEndTime` string The end time. -`strStepSize` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strStepSize` string Size of the step. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -983,7 +984,7 @@ void SetStatusBar(string strMessage) #### Parameters -`strMessage` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMessage` string The message. @@ -1005,11 +1006,11 @@ void StartOutput(string strPath, string strName) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The path. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name. @@ -1023,7 +1024,7 @@ event EventHandler OnActiveDocumentChanged #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler) + EventHandler ### OnActiveViewChanged @@ -1035,5 +1036,5 @@ event EventHandler OnActiveViewChanged #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler) + EventHandler diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IPropertyGrid.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IPropertyGrid.md index 1788a1ec33..8704eca1e4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IPropertyGrid.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IPropertyGrid.md @@ -1,4 +1,5 @@ -# Interface IPropertyGrid +# Interface IPropertyGrid + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -27,25 +28,25 @@ string[] Initialize(string strPropertyGridXML, string strBuilderXml, bool bStart #### Parameters -`strPropertyGridXML` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPropertyGridXML` string The property grid XML. -`strBuilderXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBuilderXml` string The builder XML. -`bStart` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bStart` bool if set to true [create operation start]. -`typeOp` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`typeOp` Type The opeartion type. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] The result informations. @@ -59,7 +60,7 @@ void IsDoingOperation(bool bDoingOp) #### Parameters -`bDoingOp` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDoingOp` bool if set to true [doing operation]. @@ -73,11 +74,11 @@ void IsPGEnableWindow(bool b_Enable, int PickBreakPosition) #### Parameters -`b_Enable` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`b_Enable` bool if set to true [b_ enable]. -`PickBreakPosition` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`PickBreakPosition` int The pick break position. @@ -91,13 +92,13 @@ bool PropertyApply(bool bRestart) #### Parameters -`bRestart` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bRestart` bool if set to true [b restart]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool The sucess state. @@ -111,7 +112,7 @@ void SetBuilderData(string strBuilder) #### Parameters -`strBuilder` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBuilder` string The builder. @@ -125,7 +126,7 @@ void SetGridData(string strBuilder) #### Parameters -`strBuilder` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBuilder` string ### SetValue\(string\[\]\) @@ -137,7 +138,7 @@ void SetValue(string[] strArResult) #### Parameters -`strArResult` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`strArResult` string\[\] The result. @@ -151,11 +152,11 @@ void SetValue(string strPropName, string strValue) #### Parameters -`strPropName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPropName` string Name of the prop. -`strValue` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strValue` string The value. @@ -169,15 +170,15 @@ void SetValue(string strPropName, string strContent, string strResult) #### Parameters -`strPropName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPropName` string Name of the prop. -`strContent` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strContent` string Content of the prop. -`strResult` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strResult` string The result. @@ -199,7 +200,7 @@ void UpdateDocumentInfo(string strXml) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The XML. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IStatusBar.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IStatusBar.md index fbd1d6080f..2aa8fe9398 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IStatusBar.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IStatusBar.md @@ -1,4 +1,5 @@ -# Interface IStatusBar +# Interface IStatusBar + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -27,7 +28,7 @@ void SetValue(string strStatus) #### Parameters -`strStatus` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strStatus` string The status. @@ -41,11 +42,11 @@ void SetValue(string strStatus, bool bLazy) #### Parameters -`strStatus` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strStatus` string The status. -`bLazy` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bLazy` bool if set to true [lazy]. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.ISubEntityGridView.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.ISubEntityGridView.md index 5cd33f82ad..c32598e69a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.ISubEntityGridView.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.ISubEntityGridView.md @@ -1,4 +1,5 @@ -# Interface ISubEntityGridView +# Interface ISubEntityGridView + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -27,7 +28,7 @@ void ActiveSubentityGridView(string strGridViewType) #### Parameters -`strGridViewType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGridViewType` string Type of the grid view. @@ -69,7 +70,7 @@ void RefreshGridView(string strGridViewType, ObjectBase ob) #### Parameters -`strGridViewType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGridViewType` string Type of the grid view. @@ -127,7 +128,7 @@ void SetEnableDisable(string strGridViewType, ObjectBase ob) #### Parameters -`strGridViewType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGridViewType` string Type of the grid view. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IUpdateNavigator.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IUpdateNavigator.md index f689a701b5..eeb7396bbe 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IUpdateNavigator.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IUpdateNavigator.md @@ -1,4 +1,5 @@ -# Interface IUpdateNavigator +# Interface IUpdateNavigator + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IWorkGroup.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IWorkGroup.md index f33caffd05..bc53910643 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IWorkGroup.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IWorkGroup.md @@ -1,4 +1,5 @@ -# Interface IWorkGroup +# Interface IWorkGroup + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -27,5 +28,5 @@ List SubModels { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Model](VM.Managed.DAFUL.Pre.Model.md)\> + List<[Model](VM.Managed.DAFUL.Pre.Model.md)\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IWorkView.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IWorkView.md index 4025327e1d..e4efc517f4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IWorkView.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.IWorkView.md @@ -1,4 +1,5 @@ -# Interface IWorkView +# Interface IWorkView + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -27,7 +28,7 @@ void AddFileInWork(string strPath, Model model) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The string path. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.InputDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.InputDocument.md index 5f6ad15a5d..6caf3f26f2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.InputDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.InputDocument.md @@ -1,4 +1,5 @@ -# Class InputDocument +# Class InputDocument + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -11,7 +12,7 @@ public class InputDocument #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [InputDocument](VM.Managed.DAFUL.Pre.InputDocument.md) #### Extension Methods @@ -40,7 +41,7 @@ public bool IsInterface { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Type @@ -52,5 +53,5 @@ public string Type { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Model.ModelItemGroup.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Model.ModelItemGroup.md index be50de01c1..91f6a960b1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Model.ModelItemGroup.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Model.ModelItemGroup.md @@ -1,4 +1,5 @@ -# Class Model.ModelItemGroup +# Class Model.ModelItemGroup + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -11,7 +12,7 @@ public class Model.ModelItemGroup : Group #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Group](VM.Managed.DAFUL.Pre.Group\-2.md) ← [Model.ModelItemGroup](VM.Managed.DAFUL.Pre.Model.ModelItemGroup.md) @@ -50,7 +51,7 @@ public string Filter { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -64,7 +65,7 @@ public List GetFilterList() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List The filters. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Model.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Model.md index 7438c832f9..89654cebf8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Model.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Model.md @@ -1,4 +1,5 @@ -# Class Model +# Class Model + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -11,7 +12,7 @@ public class Model : FileGroup, IFileGroup #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Group](VM.Managed.DAFUL.Pre.Group\-2.md) ← [FileGroup](VM.Managed.DAFUL.Pre.FileGroup\-2.md) ← [Model](VM.Managed.DAFUL.Pre.Model.md) @@ -56,7 +57,7 @@ public static string DefaultDirectory { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Toolkit @@ -68,7 +69,7 @@ public string Toolkit { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -88,7 +89,7 @@ The item. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -102,7 +103,7 @@ public static void AddInsertedFile(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the STR file. @@ -128,7 +129,7 @@ public Model.ModelItemGroup FindGroup(GroupItem item, List The item. -`groups` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Model](VM.Managed.DAFUL.Pre.Model.md).[ModelItemGroup](VM.Managed.DAFUL.Pre.Model.ModelItemGroup.md)\> +`groups` List<[Model](VM.Managed.DAFUL.Pre.Model.md).[ModelItemGroup](VM.Managed.DAFUL.Pre.Model.ModelItemGroup.md)\> The groups. @@ -146,7 +147,7 @@ public List GetALLFilterList() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List The filters. @@ -160,17 +161,17 @@ public static string GetDefaultLocation(bool bModel, bool bNew) #### Parameters -`bModel` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bModel` bool if set to true [model]. -`bNew` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bNew` bool if set to true [new]. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The name of recent directory if success; otherwise, null. @@ -184,13 +185,13 @@ public string GetFilterName(string filter) #### Parameters -`filter` [string](https://learn.microsoft.com/dotnet/api/system.string) +`filter` string The filter. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The filter name. @@ -204,13 +205,13 @@ public string GetFullPath(string strRefDir) #### Parameters -`strRefDir` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRefDir` string The reference directory. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The full path. @@ -224,7 +225,7 @@ public List GetGroupItemList() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[GroupItem](VM.Managed.DAFUL.Pre.GroupItem.md)\> + List<[GroupItem](VM.Managed.DAFUL.Pre.GroupItem.md)\> The group items. @@ -238,13 +239,13 @@ public List GetGroupItemList(string filter) #### Parameters -`filter` [string](https://learn.microsoft.com/dotnet/api/system.string) +`filter` string The filter. #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[GroupItem](VM.Managed.DAFUL.Pre.GroupItem.md)\> + List<[GroupItem](VM.Managed.DAFUL.Pre.GroupItem.md)\> The group items. @@ -258,7 +259,7 @@ public static List GetInsertedFile() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### IsExistingItem\(GroupItem\) @@ -276,7 +277,7 @@ The group item. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if is existing item; otherwise, false. @@ -290,17 +291,17 @@ public bool IsExistingItem(string strRefDir, string strAbsolutePath) #### Parameters -`strRefDir` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRefDir` string The reference directory. -`strAbsolutePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strAbsolutePath` string The absolute path. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if is existing item; otherwise, false. @@ -314,17 +315,17 @@ public bool IsExistingItemFromDirectory(string strRefDir, string strAbsoluteDire #### Parameters -`strRefDir` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRefDir` string The STR ref dir. -`strAbsoluteDirectory` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strAbsoluteDirectory` string The STR absolute directory. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if [is existing item from directory] [the specified STR ref dir]; otherwise, false. @@ -338,13 +339,13 @@ public bool IsExistingName(string ItemName) #### Parameters -`ItemName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`ItemName` string Name of the item. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if is existing name; otherwise, false. @@ -358,21 +359,21 @@ public static bool SetDefaultLocation(string strPath, bool bModel, bool bNew) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The path of current work. -`bModel` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bModel` bool if set to true [model]. -`bNew` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bNew` bool if set to true [new]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.ModelTemplate.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.ModelTemplate.md index fcc6c29dfb..a6c0b2681d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.ModelTemplate.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.ModelTemplate.md @@ -1,4 +1,5 @@ -# Class ModelTemplate +# Class ModelTemplate + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -11,7 +12,7 @@ public class ModelTemplate : FileGroup, IFileGr #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Group](VM.Managed.DAFUL.Pre.Group\-2.md) ← [FileGroup](VM.Managed.DAFUL.Pre.FileGroup\-2.md) ← [ModelTemplate](VM.Managed.DAFUL.Pre.ModelTemplate.md) @@ -56,7 +57,7 @@ public string DefaultName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Description @@ -68,7 +69,7 @@ public string Description { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Extension @@ -80,7 +81,7 @@ public string Extension { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Folders @@ -92,7 +93,7 @@ public List Folders { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### IconPath @@ -104,7 +105,7 @@ public string IconPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ToolKit @@ -116,7 +117,7 @@ public string ToolKit { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Type @@ -128,7 +129,7 @@ public string Type { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -142,7 +143,7 @@ public Model CreateModel(string strModelFileName) #### Parameters -`strModelFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strModelFileName` string Name of the model. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Module.Command.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Module.Command.md index f331bb36a3..6f29645f4f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Module.Command.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Module.Command.md @@ -1,4 +1,5 @@ -# Class Module.Command +# Class Module.Command + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -11,7 +12,7 @@ public class Module.Command #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Module.Command](VM.Managed.DAFUL.Pre.Module.Command.md) #### Extension Methods @@ -40,7 +41,7 @@ public string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Operation @@ -52,7 +53,7 @@ public string Operation { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Parameters @@ -64,7 +65,7 @@ public XmlElement Parameters { get; set; } #### Property Value - [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) + XmlElement ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Module.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Module.md index 322d4ea12d..ac691c9fb7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Module.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Module.md @@ -1,4 +1,5 @@ -# Class Module +# Class Module + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -11,7 +12,7 @@ public class Module #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Module](VM.Managed.DAFUL.Pre.Module.md) #### Extension Methods @@ -40,7 +41,7 @@ public List DocumentCommands { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Module](VM.Managed.DAFUL.Pre.Module.md).[Command](VM.Managed.DAFUL.Pre.Module.Command.md)\> + List<[Module](VM.Managed.DAFUL.Pre.Module.md).[Command](VM.Managed.DAFUL.Pre.Module.Command.md)\> ### IsOverlap @@ -52,7 +53,7 @@ public bool IsOverlap { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -64,7 +65,7 @@ public string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ParentModule @@ -76,7 +77,7 @@ public string ParentModule { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Toolkit @@ -88,7 +89,7 @@ public string Toolkit { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ViewCommands @@ -100,5 +101,5 @@ public List ViewCommands { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Module](VM.Managed.DAFUL.Pre.Module.md).[Command](VM.Managed.DAFUL.Pre.Module.Command.md)\> + List<[Module](VM.Managed.DAFUL.Pre.Module.md).[Command](VM.Managed.DAFUL.Pre.Module.Command.md)\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.ModuleInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.ModuleInfo.md index a5497636f5..5df1bd740a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.ModuleInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.ModuleInfo.md @@ -1,4 +1,5 @@ -# Class ModuleInfo +# Class ModuleInfo + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -11,7 +12,7 @@ public class ModuleInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ModuleInfo](VM.Managed.DAFUL.Pre.ModuleInfo.md) #### Extension Methods @@ -40,7 +41,7 @@ public static Dictionary GetAllModules() #### Returns - [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [Module](VM.Managed.DAFUL.Pre.Module.md)\> + Dictionary The modules. @@ -54,7 +55,7 @@ public static void LoadAllModuleFiles(string strModuleDir) #### Parameters -`strModuleDir` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strModuleDir` string The STR module dir. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.NewFile.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.NewFile.md index 1c4e37ebfa..71e7f2f461 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.NewFile.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.NewFile.md @@ -1,4 +1,5 @@ -# Class NewFile +# Class NewFile + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -11,7 +12,7 @@ public class NewFile #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [NewFile](VM.Managed.DAFUL.Pre.NewFile.md) #### Extension Methods @@ -40,7 +41,7 @@ public bool AddTomodel { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DocInfo @@ -64,7 +65,7 @@ public string FilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ModelName @@ -76,5 +77,5 @@ public string ModelName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.NewModel.WorkCreateType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.NewModel.WorkCreateType.md index 04ce6b85f4..d2da3d7aee 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.NewModel.WorkCreateType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.NewModel.WorkCreateType.md @@ -1,4 +1,5 @@ -# Enum NewModel.WorkCreateType +# Enum NewModel.WorkCreateType + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.NewModel.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.NewModel.md index e7e88053c0..7a79e35168 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.NewModel.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.NewModel.md @@ -1,4 +1,5 @@ -# Class NewModel +# Class NewModel + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -11,7 +12,7 @@ public class NewModel #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [NewModel](VM.Managed.DAFUL.Pre.NewModel.md) #### Extension Methods @@ -52,7 +53,7 @@ public string ModelPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### WorkCreate @@ -76,5 +77,5 @@ public string WorkPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.OpenFileDialogInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.OpenFileDialogInfo.md index e6d2a8ebbb..0c86348e65 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.OpenFileDialogInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.OpenFileDialogInfo.md @@ -1,4 +1,5 @@ -# Class OpenFileDialogInfo +# Class OpenFileDialogInfo + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -11,7 +12,7 @@ public class OpenFileDialogInfo : FileDialogInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [FileDialogInfo](VM.Managed.DAFUL.Pre.FileDialogInfo.md) ← [OpenFileDialogInfo](VM.Managed.DAFUL.Pre.OpenFileDialogInfo.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Pre.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Pre.md index ddc00720be..9831268d17 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Pre.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Pre.md @@ -1,4 +1,5 @@ -# Class Pre +# Class Pre + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -11,7 +12,7 @@ public class Pre #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Pre](VM.Managed.DAFUL.Pre.Pre.md) #### Extension Methods @@ -88,7 +89,7 @@ public static string CreateFileName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### DialogManager @@ -112,7 +113,7 @@ public static List DocumentInfo { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[DocInfo](VM.Managed.DAFUL.Pre.DocInfo.md)\> + List<[DocInfo](VM.Managed.DAFUL.Pre.DocInfo.md)\> ### GlobalJournal @@ -124,7 +125,7 @@ public static JournalRecorder GlobalJournal { get; } #### Property Value - JournalRecorder + [JournalRecorder](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMJournal/journalRecorder.cs) ### LocalJournal @@ -136,7 +137,7 @@ public static JournalRecorder LocalJournal { get; } #### Property Value - JournalRecorder + [JournalRecorder](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMJournal/journalRecorder.cs) ### MainWindow @@ -172,7 +173,7 @@ public static Dictionary TemplateInfo { get; set; } #### Property Value - [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\> + Dictionary ### UnUseMRU @@ -184,7 +185,7 @@ public static bool UnUseMRU { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Version @@ -196,7 +197,7 @@ public static string Version { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### WriteDFG @@ -208,7 +209,7 @@ public static bool WriteDFG { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -246,13 +247,13 @@ public static bool CloseFile(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -266,17 +267,17 @@ public static bool CloseFile(string strFileName, bool bUseWork) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the STR file. -`bUseWork` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseWork` bool if set to true [b use work]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CloseFile\(string, bool, bool\) @@ -288,21 +289,21 @@ public static bool CloseFile(string strFileName, bool bUseWork, bool bActivate) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the string file. -`bUseWork` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseWork` bool if set to true [b use work]. -`bActivate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bActivate` bool if set to true [b activate]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CloseHiddenFile\(string\) @@ -314,13 +315,13 @@ public static bool CloseHiddenFile(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the string file. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CloseWork\(\) @@ -340,7 +341,7 @@ public static Document CreateDocument(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. @@ -360,11 +361,11 @@ public static Document CreateDocument(string strFileName, bool bActivate) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. -`bActivate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bActivate` bool if set to true [b activate]. @@ -384,15 +385,15 @@ public static Document CreateDocument(string strFileName, bool bActivate, string #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the STR file. -`bActivate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bActivate` bool if set to true [b activate]. -`strDocCreateInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDocCreateInfo` string The STR doc create info. @@ -410,11 +411,11 @@ public static Document CreateDocument(string strFileName, bool bActivate, DocCre #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the STR file. -`bActivate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bActivate` bool if set to true [b activate]. @@ -436,19 +437,19 @@ public static Document CreateDocument(string strFileName, bool bActivate, string #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the string file. -`bActivate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bActivate` bool if set to true [b activate]. -`strDocCreateInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDocCreateInfo` string The string document create information. -`bDesigner` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDesigner` bool if set to true [b designer]. @@ -466,7 +467,7 @@ public static void Fit(string strPathName) #### Parameters -`strPathName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPathName` string Name of the string path. @@ -480,7 +481,7 @@ public static List GetAllOpenDocument() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### GetDocumentFromOpenedDocument\(string\) @@ -492,7 +493,7 @@ public static Document GetDocumentFromOpenedDocument(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the STR file. @@ -510,7 +511,7 @@ public static string GetMode() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The mode type. @@ -524,13 +525,13 @@ public static bool IsOpenDocument(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if is open document; otherwise, false. @@ -572,7 +573,7 @@ public static Document OpenDocument(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. @@ -592,11 +593,11 @@ public static Document OpenDocument(string strFileName, bool bActivate) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. -`bActivate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bActivate` bool if set to true [b activate]. @@ -616,7 +617,7 @@ public static Document OpenDocumentFile(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the STR file. @@ -634,11 +635,11 @@ public static GroupItem OpenFile(string strFileName, string strRefDir) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. -`strRefDir` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRefDir` string The reference directory. @@ -658,7 +659,7 @@ public static Document OpenHiddenDocument(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The object. @@ -676,7 +677,7 @@ public static Model OpenModel(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string The file name. @@ -694,7 +695,7 @@ public static Work OpenWork(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the STR file. @@ -732,7 +733,7 @@ public static void SaveFile(string strPath) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The STR path. @@ -750,7 +751,7 @@ public static void SaveFile(Document doc, string strFileName) The doc. -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the STR file. @@ -768,11 +769,11 @@ public static void SaveFile(Document doc, string strFileName, bool bIgnoreExtern The doc. -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the STR file. -`bIgnoreExternChange` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bIgnoreExternChange` bool if set to true [b ignore extern change]. @@ -786,7 +787,7 @@ public static void SaveModel(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. @@ -800,7 +801,7 @@ public static void SaveWork(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. @@ -814,11 +815,11 @@ public static void SetPathName(string strOldPath, string strNewPath) #### Parameters -`strOldPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOldPath` string The old path. -`strNewPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strNewPath` string The new path. @@ -832,7 +833,7 @@ public static void SetProgressState(int nStats) #### Parameters -`nStats` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nStats` int 0x0 : NOPROGRESS, 0x1 : INDETERMINATE, 0x2 : NORMAL, 0x4 : ERROR, 0x8 : PAUSED @@ -846,11 +847,11 @@ public static void SetProgressValue(ulong nCompleted, ulong nTotal) #### Parameters -`nCompleted` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nCompleted` ulong The completed value. -`nTotal` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nTotal` ulong The total value. @@ -864,7 +865,7 @@ public static void SetStatusBar(string strMessage) #### Parameters -`strMessage` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMessage` string The message. @@ -878,7 +879,7 @@ public static event EventHandler OnActiveDocumentChanged #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler) + EventHandler ### OnActiveViewChanged @@ -890,5 +891,5 @@ public static event EventHandler OnActiveViewChanged #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler) + EventHandler diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.PropertyDocInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.PropertyDocInfo.md index 795d12b20b..011d33b67d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.PropertyDocInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.PropertyDocInfo.md @@ -1,4 +1,5 @@ -# Class PropertyDocInfo +# Class PropertyDocInfo + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -11,7 +12,7 @@ public class PropertyDocInfo : DocInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DocInfo](VM.Managed.DAFUL.Pre.DocInfo.md) ← [PropertyDocInfo](VM.Managed.DAFUL.Pre.PropertyDocInfo.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.SaveAllResult.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.SaveAllResult.md index a8350878cc..648743bb8c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.SaveAllResult.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.SaveAllResult.md @@ -1,4 +1,5 @@ -# Enum SaveAllResult +# Enum SaveAllResult + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.SaveFileDialogInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.SaveFileDialogInfo.md index 160405eb3e..4a0ef1a366 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.SaveFileDialogInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.SaveFileDialogInfo.md @@ -1,4 +1,5 @@ -# Class SaveFileDialogInfo +# Class SaveFileDialogInfo + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -11,7 +12,7 @@ public class SaveFileDialogInfo : FileDialogInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [FileDialogInfo](VM.Managed.DAFUL.Pre.FileDialogInfo.md) ← [SaveFileDialogInfo](VM.Managed.DAFUL.Pre.SaveFileDialogInfo.md) @@ -54,5 +55,5 @@ public bool OverwritePrompt { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.SettingClass.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.SettingClass.md index 2f025e8dd5..55f340bd51 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.SettingClass.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.SettingClass.md @@ -1,4 +1,5 @@ -# Class SettingClass +# Class SettingClass + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpreAPI.dll @@ -11,7 +12,7 @@ public class SettingClass #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SettingClass](VM.Managed.DAFUL.Pre.SettingClass.md) #### Extension Methods @@ -40,7 +41,7 @@ public static string RootPath #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Properties @@ -54,7 +55,7 @@ public static string DlgPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### HoopsExchangeDirectory @@ -66,7 +67,7 @@ public static string HoopsExchangeDirectory { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### KernelCoreModulePath @@ -78,7 +79,7 @@ public static string KernelCoreModulePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### KernelPath @@ -90,7 +91,7 @@ public static string KernelPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TemplatePath @@ -102,7 +103,7 @@ public static string TemplatePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TranslatorDirectory @@ -114,7 +115,7 @@ public static string TranslatorDirectory { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UnitPath @@ -126,5 +127,5 @@ public static string UnitPath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.SettingUISection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.SettingUISection.md index 2969fc0006..20bc4c214a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.SettingUISection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.SettingUISection.md @@ -1,4 +1,5 @@ -# Class SettingUISection +# Class SettingUISection + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -11,7 +12,7 @@ public class SettingUISection #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SettingUISection](VM.Managed.DAFUL.Pre.SettingUISection.md) #### Extension Methods @@ -42,7 +43,7 @@ public string Page { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### PageType @@ -54,7 +55,7 @@ public Type PageType { get; } #### Property Value - [Type](https://learn.microsoft.com/dotnet/api/system.type) + Type ### SettingType @@ -66,7 +67,7 @@ public Type SettingType { get; set; } #### Property Value - [Type](https://learn.microsoft.com/dotnet/api/system.type) + Type ### SubSections diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.SettingUISectionHandler.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.SettingUISectionHandler.md index f674681b96..ca229d07e7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.SettingUISectionHandler.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.SettingUISectionHandler.md @@ -1,4 +1,5 @@ -# Class SettingUISectionHandler +# Class SettingUISectionHandler + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -11,7 +12,7 @@ public class SettingUISectionHandler #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SettingUISectionHandler](VM.Managed.DAFUL.Pre.SettingUISectionHandler.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Settings.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Settings.md index f2ec3aeb50..4d33bc3bc6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Settings.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Settings.md @@ -1,4 +1,5 @@ -# Class Settings +# Class Settings + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -12,17 +13,17 @@ public class Settings : SettingsBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[SettingsBase](https://learn.microsoft.com/dotnet/api/system.configuration.settingsbase) ← -[ApplicationSettingsBase](https://learn.microsoft.com/dotnet/api/system.configuration.applicationsettingsbase) ← -SettingsBase ← +object ← +SettingsBase ← +ApplicationSettingsBase ← +[SettingsBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VMManagedUtil/SettingsBase.cs) ← [Settings](VM.Managed.DAFUL.Pre.Settings.md) #### Inherited Members -SettingsBase.GetProperty\(string\), -SettingsBase.Default, -SettingsBase.RootPath +[SettingsBase.GetProperty\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VMManagedUtil/SettingsBase.cs), +[SettingsBase.Default](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VMManagedUtil/SettingsBase.cs), +[SettingsBase.RootPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VMManagedUtil/SettingsBase.cs) #### Extension Methods @@ -54,7 +55,7 @@ public string ANSYSRstReaderPath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AccuracyForCADImportMassCalculate @@ -69,7 +70,7 @@ public double AccuracyForCADImportMassCalculate { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### AccuracyForMassCalculate @@ -84,7 +85,7 @@ public double AccuracyForMassCalculate { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### AdditionalPythonLibPath @@ -98,7 +99,7 @@ public IEnumerable AdditionalPythonLibPath { get; } #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + IEnumerable ### AutoSaveInterval @@ -113,7 +114,7 @@ public int AutoSaveInterval { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### AxisLocation @@ -143,20 +144,19 @@ public bool AxisUseRotate { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool -### CADConvertPath - -Gets the CAD convert path. +### BodyshopDirectoryName ```csharp [ApplicationScopedSetting] -public string CADConvertPath { get; } +[DefaultSettingValue("Bodyshop*")] +public string BodyshopDirectoryName { get; } ``` #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### CenterMainKey1 @@ -291,7 +291,7 @@ public bool CloseStartPageAfterOpenWork { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ConsoleSolverPath @@ -305,7 +305,7 @@ public string ConsoleSolverPath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ControlsPreset @@ -319,7 +319,7 @@ public string ControlsPreset { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ConversionMethod @@ -347,7 +347,7 @@ public string CopyrightAndOSSLicenseInfoPath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### DbClickMode\_AssembledBody @@ -362,7 +362,7 @@ public int DbClickMode_AssembledBody { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### DbClickMode\_FlexibleBody @@ -377,7 +377,7 @@ public int DbClickMode_FlexibleBody { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### DbClickMode\_Subsystem @@ -392,7 +392,7 @@ public int DbClickMode_Subsystem { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### DebugMode @@ -406,7 +406,7 @@ public bool DebugMode { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Decimals @@ -421,7 +421,7 @@ public int Decimals { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### DefaultMode\_Subsystem @@ -435,7 +435,7 @@ public string DefaultMode_Subsystem { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### DeveloperMode @@ -450,7 +450,7 @@ public bool DeveloperMode { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DialogPath @@ -464,7 +464,7 @@ public string DialogPath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### DocumentPath @@ -477,7 +477,7 @@ public string DocumentPath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### DotNetMinVersion @@ -490,7 +490,7 @@ public Version DotNetMinVersion { get; } #### Property Value - [Version](https://learn.microsoft.com/dotnet/api/system.version) + Version ### FrontViewPlane @@ -519,7 +519,7 @@ public string FunctionExpressionScriptHeader { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GUISolverPath @@ -533,7 +533,7 @@ public string GUISolverPath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### HelpURL @@ -546,7 +546,7 @@ public string HelpURL { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### HighSpeedRotationReferenceValue @@ -560,7 +560,7 @@ public double HighSpeedRotationReferenceValue { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### HoopsExchangeDirectory @@ -574,7 +574,7 @@ public string HoopsExchangeDirectory { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### InterfacePath @@ -587,7 +587,7 @@ public string InterfacePath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### KernelBinaryLocation @@ -601,7 +601,7 @@ public string KernelBinaryLocation { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### KernelCoreModulePath @@ -615,7 +615,7 @@ public string KernelCoreModulePath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### KernelLogMessageLevel @@ -630,7 +630,7 @@ public int KernelLogMessageLevel { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### KernelPath @@ -644,7 +644,31 @@ public string KernelPath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string + +### KernelPaths + +Gets the kernel paths (Parasolid kernel and bodyshop) for environment variable setting. + +```csharp +public IEnumerable KernelPaths { get; } +``` + +#### Property Value + + IEnumerable + +### KernelPathsForEnvironmentVariable + +Gets the kernel paths (Parasolid kernel and bodyshop) for environment variable setting. + +```csharp +public string KernelPathsForEnvironmentVariable { get; } +``` + +#### Property Value + + string ### KernelTranslatorLogMessageLevel @@ -659,7 +683,7 @@ public int KernelTranslatorLogMessageLevel { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Labs @@ -674,7 +698,7 @@ public string Labs { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### LastUsedWorkDirectory @@ -687,7 +711,7 @@ public string LastUsedWorkDirectory { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### LicenseManagerPath @@ -702,7 +726,7 @@ public string LicenseManagerPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### LoadPrior242Sp3Files @@ -717,7 +741,7 @@ public bool LoadPrior242Sp3Files { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Locale @@ -732,7 +756,7 @@ public string Locale { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### LogLicenseEvent @@ -747,7 +771,7 @@ public int LogLicenseEvent { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### MFInterfacePath @@ -761,7 +785,7 @@ public string MFInterfacePath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### MaterialLibraryDirectory @@ -774,7 +798,7 @@ public string MaterialLibraryDirectory { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### MaximumOpenPropertyDialogCount @@ -788,7 +812,7 @@ public int MaximumOpenPropertyDialogCount { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### MaxwellVersion @@ -803,7 +827,7 @@ public string MaxwellVersion { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### MesherCorePath @@ -816,7 +840,7 @@ public string MesherCorePath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### MeshfreePreprocessorPath @@ -829,7 +853,7 @@ public string MeshfreePreprocessorPath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### MouseDownZoomIn1 @@ -844,7 +868,7 @@ public bool MouseDownZoomIn1 { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MouseDownZoomIn2 @@ -859,7 +883,7 @@ public bool MouseDownZoomIn2 { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MouseDownZoomIn3 @@ -874,7 +898,7 @@ public bool MouseDownZoomIn3 { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MouseDownZoomIn4 @@ -889,7 +913,7 @@ public bool MouseDownZoomIn4 { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### NFtoDAFULPath @@ -902,7 +926,7 @@ public string NFtoDAFULPath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NastranOutReaderPath @@ -916,7 +940,7 @@ public string NastranOutReaderPath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NumOfMRUFiles @@ -931,7 +955,7 @@ public int NumOfMRUFiles { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### OEMMode @@ -945,7 +969,7 @@ public bool OEMMode { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OutputTextBoxInterval @@ -958,7 +982,7 @@ public int OutputTextBoxInterval { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### PSBodyshopLocation @@ -970,7 +994,19 @@ public string PSBodyshopLocation { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string + +### PSKernelDirectoryName + +```csharp +[ApplicationScopedSetting] +[DefaultSettingValue("Parasolid*")] +public string PSKernelDirectoryName { get; } +``` + +#### Property Value + + string ### PSKernelLocation @@ -982,7 +1018,7 @@ public string PSKernelLocation { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### PSKernelSchemaLocation @@ -994,7 +1030,7 @@ public string PSKernelSchemaLocation { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### PostPath @@ -1008,7 +1044,7 @@ public string PostPath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### PrePath @@ -1022,7 +1058,7 @@ public string PrePath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### PythonExecutablePath @@ -1036,7 +1072,7 @@ public string PythonExecutablePath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RedrawKernel @@ -1049,7 +1085,7 @@ public bool RedrawKernel { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Rendering @@ -1064,7 +1100,7 @@ public int Rendering { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### RotateMainKey1 @@ -1139,7 +1175,7 @@ public int RotateSpeed { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### RotateSubKey1 @@ -1214,7 +1250,7 @@ public bool RotateTrackball { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RunDllPath @@ -1227,7 +1263,7 @@ public string RunDllPath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ShowFileCompatibilityNotice @@ -1242,7 +1278,7 @@ public bool ShowFileCompatibilityNotice { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ShowStartPageAtStartup @@ -1257,7 +1293,7 @@ public bool ShowStartPageAtStartup { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SolutionPath @@ -1270,7 +1306,7 @@ public string SolutionPath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SolverDirectory @@ -1283,7 +1319,7 @@ public string SolverDirectory { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SplashPath @@ -1296,7 +1332,7 @@ public string SplashPath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### StrideBinaryDirectory @@ -1310,11 +1346,11 @@ public string StrideBinaryDirectory { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### StrideConvertPath -Stride Convert(Convert.exe) location +Stride Convert(StrideConvert.exe) location ```csharp public string StrideConvertPath { get; } @@ -1322,7 +1358,7 @@ public string StrideConvertPath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### StrideDependencies @@ -1336,7 +1372,7 @@ public string StrideDependencies { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TemplatePath @@ -1350,7 +1386,7 @@ public string TemplatePath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TextEditor @@ -1365,7 +1401,7 @@ public string TextEditor { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TextEditorArgument @@ -1380,7 +1416,7 @@ public string TextEditorArgument { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ToolkitInfoPath @@ -1393,7 +1429,7 @@ public string ToolkitInfoPath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TranslateMainKey1 @@ -1527,7 +1563,7 @@ public string TranslatorDirectory { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UseAutoCheckDotNetVersion @@ -1542,7 +1578,7 @@ public bool UseAutoCheckDotNetVersion { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseAutoCreateOK @@ -1557,7 +1593,7 @@ public bool UseAutoCreateOK { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseAutoPickerOK @@ -1570,7 +1606,7 @@ public bool UseAutoPickerOK { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseAutoSave @@ -1585,7 +1621,7 @@ public bool UseAutoSave { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseConsoleSolver @@ -1600,7 +1636,7 @@ public bool UseConsoleSolver { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseDefaultStartPage @@ -1615,7 +1651,7 @@ public bool UseDefaultStartPage { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseDefaultTemp @@ -1630,7 +1666,7 @@ public bool UseDefaultTemp { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseDockableCreateAndPickerWindows @@ -1645,7 +1681,7 @@ public bool UseDockableCreateAndPickerWindows { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UserRibbon @@ -1659,7 +1695,7 @@ public string UserRibbon { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UserStartPage @@ -1674,7 +1710,7 @@ public string UserStartPage { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UserTempPath @@ -1688,7 +1724,7 @@ public string UserTempPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### VMMesherPath @@ -1701,7 +1737,7 @@ public string VMMesherPath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Verify @@ -1714,7 +1750,7 @@ public bool Verify { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### VerifyLevel @@ -1729,7 +1765,7 @@ public int VerifyLevel { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### WheelDownZoomIn1 @@ -1744,7 +1780,7 @@ public bool WheelDownZoomIn1 { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### WheelDownZoomIn2 @@ -1759,7 +1795,7 @@ public bool WheelDownZoomIn2 { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### WheelDownZoomIn3 @@ -1774,7 +1810,7 @@ public bool WheelDownZoomIn3 { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### WheelDownZoomIn4 @@ -1789,7 +1825,7 @@ public bool WheelDownZoomIn4 { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### XmlSolverManagerPath @@ -1802,7 +1838,7 @@ public string XmlSolverManagerPath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ZoomMainKey1 @@ -1877,7 +1913,7 @@ public int ZoomSpeed { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### ZoomSubKey1 @@ -1947,7 +1983,7 @@ public override object this[string propertyName] { get; set; } #### Property Value - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### v242Sp3Exists @@ -1957,7 +1993,7 @@ public static bool v242Sp3Exists { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -1969,11 +2005,11 @@ public string GetMappedVersionString(string version) #### Parameters -`version` [string](https://learn.microsoft.com/dotnet/api/system.string) +`version` string #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IsLabFeatureEnabled\(string\) @@ -1983,11 +2019,11 @@ public bool IsLabFeatureEnabled(string featureName) #### Parameters -`featureName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`featureName` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsValidMaxwellVersion\(string\) @@ -1997,9 +2033,9 @@ public bool IsValidMaxwellVersion(string version) #### Parameters -`version` [string](https://learn.microsoft.com/dotnet/api/system.string) +`version` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.SubEntityInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.SubEntityInfo.md index 3731f411f1..666946ea9a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.SubEntityInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.SubEntityInfo.md @@ -1,4 +1,5 @@ -# Class SubEntityInfo +# Class SubEntityInfo + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -11,7 +12,7 @@ public class SubEntityInfo : DockableWindowInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DockableWindowInfo](VM.Managed.DAFUL.Pre.DockableWindowInfo.md) ← [SubEntityInfo](VM.Managed.DAFUL.Pre.SubEntityInfo.md) @@ -50,7 +51,7 @@ public List InputDocuments { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[InputDocument](VM.Managed.DAFUL.Pre.InputDocument.md)\> + List<[InputDocument](VM.Managed.DAFUL.Pre.InputDocument.md)\> ### RibbonCommand @@ -62,5 +63,5 @@ public string RibbonCommand { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.SubEntityViewType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.SubEntityViewType.md index ad5c67d746..66219a7a05 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.SubEntityViewType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.SubEntityViewType.md @@ -1,4 +1,5 @@ -# Enum SubEntityViewType +# Enum SubEntityViewType + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.TemplateAssemblyDocInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.TemplateAssemblyDocInfo.md index c4e6c2d241..c1d9be8d3c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.TemplateAssemblyDocInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.TemplateAssemblyDocInfo.md @@ -1,4 +1,5 @@ -# Class TemplateAssemblyDocInfo +# Class TemplateAssemblyDocInfo + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -11,7 +12,7 @@ public class TemplateAssemblyDocInfo : AssemblyDocInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DocInfo](VM.Managed.DAFUL.Pre.DocInfo.md) ← [AssemblyDocInfo](VM.Managed.DAFUL.Pre.AssemblyDocInfo.md) ← [TemplateAssemblyDocInfo](VM.Managed.DAFUL.Pre.TemplateAssemblyDocInfo.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Work.ModelSerializer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Work.ModelSerializer.md index abb96abf17..5416926e1d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Work.ModelSerializer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Work.ModelSerializer.md @@ -1,4 +1,5 @@ -# Class Work.ModelSerializer +# Class Work.ModelSerializer + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -11,7 +12,7 @@ public class Work.ModelSerializer #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Work.ModelSerializer](VM.Managed.DAFUL.Pre.Work.ModelSerializer.md) #### Extension Methods @@ -40,7 +41,7 @@ public ModelSerializer(string strModelPath) #### Parameters -`strModelPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strModelPath` string The relative path of model. @@ -56,7 +57,7 @@ public string Path { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Operators diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Work.WorkGroup.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Work.WorkGroup.md index 69c327b996..3fb00b473d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Work.WorkGroup.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Work.WorkGroup.md @@ -1,4 +1,5 @@ -# Class Work.WorkGroup +# Class Work.WorkGroup + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -11,7 +12,7 @@ public class Work.WorkGroup : Group, IWorkGroup #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Group](VM.Managed.DAFUL.Pre.Group\-2.md) ← [Work.WorkGroup](VM.Managed.DAFUL.Pre.Work.WorkGroup.md) @@ -52,5 +53,5 @@ public List SubModels { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Model](VM.Managed.DAFUL.Pre.Model.md)\> + List<[Model](VM.Managed.DAFUL.Pre.Model.md)\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Work.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Work.md index c40984886d..80db41ba2b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Work.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.Work.md @@ -1,4 +1,5 @@ -# Class Work +# Class Work + Namespace: [VM.Managed.DAFUL.Pre](VM.Managed.DAFUL.Pre.md) Assembly: dfpredat.dll @@ -11,7 +12,7 @@ public class Work : FileGroup, IFileGroup, IWorkGroup #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Group](VM.Managed.DAFUL.Pre.Group\-2.md) ← [FileGroup](VM.Managed.DAFUL.Pre.FileGroup\-2.md) ← [Work](VM.Managed.DAFUL.Pre.Work.md) @@ -55,7 +56,7 @@ public Work(string strFileName) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. @@ -69,11 +70,11 @@ public Work(string strFileName, bool IsSettingCurrent) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the file. -`IsSettingCurrent` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`IsSettingCurrent` bool if set to true [is setting current]. @@ -101,7 +102,7 @@ public static string CurrentWorkPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SubModels @@ -113,7 +114,7 @@ public List SubModels { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Model](VM.Managed.DAFUL.Pre.Model.md)\> + List<[Model](VM.Managed.DAFUL.Pre.Model.md)\> ## Methods @@ -133,7 +134,7 @@ The new model. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -156,7 +157,7 @@ public Model GetActiveModel(string strItemPath) #### Parameters -`strItemPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strItemPath` string The item path. @@ -176,7 +177,7 @@ public Model GetActiveModelFromDirectory(string strItemDirectory) #### Parameters -`strItemDirectory` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strItemDirectory` string The STR item directory. @@ -194,7 +195,7 @@ public List GetAllModels() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Model](VM.Managed.DAFUL.Pre.Model.md)\> + List<[Model](VM.Managed.DAFUL.Pre.Model.md)\> The Models @@ -208,7 +209,7 @@ public Model GetModel(string strModelName) #### Parameters -`strModelName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strModelName` string Name of the model. @@ -226,7 +227,7 @@ public List GetModelNameList() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List The name of models. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.md index dd3586bd1c..2143e09b53 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Pre.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Pre +# Namespace VM.Managed.DAFUL.Pre + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PreventDuplicateRBEException.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PreventDuplicateRBEException.md index 34140c23c5..83099c1d26 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PreventDuplicateRBEException.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PreventDuplicateRBEException.md @@ -1,4 +1,5 @@ -# Class PreventDuplicateRBEException +# Class PreventDuplicateRBEException + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -9,8 +10,8 @@ public class PreventDuplicateRBEException : Exception #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Exception](https://learn.microsoft.com/dotnet/api/system.exception) ← +object ← +Exception ← [PreventDuplicateRBEException](VM.Managed.DAFUL.PreventDuplicateRBEException.md) #### Extension Methods @@ -29,5 +30,5 @@ public PreventDuplicateRBEException(string strMessage) #### Parameters -`strMessage` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMessage` string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PropertyBallPlacing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PropertyBallPlacing.md index 81bab936bd..4631fec457 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PropertyBallPlacing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PropertyBallPlacing.md @@ -1,4 +1,5 @@ -# Class PropertyBallPlacing +# Class PropertyBallPlacing + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDBallPlacing.dll @@ -11,13 +12,13 @@ public class PropertyBallPlacing : Property, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyBallPlacing](VM.Managed.DAFUL.PropertyBallPlacing.md) #### Implements @@ -31,7 +32,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -40,12 +41,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -144,7 +145,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PropertyBallScrew.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PropertyBallScrew.md index cc7e1b75ad..6ef8597d86 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PropertyBallScrew.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PropertyBallScrew.md @@ -1,4 +1,5 @@ -# Class PropertyBallScrew +# Class PropertyBallScrew + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDBallPlacing.dll @@ -11,13 +12,13 @@ public class PropertyBallScrew : Property, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyBallScrew](VM.Managed.DAFUL.PropertyBallScrew.md) #### Implements @@ -31,7 +32,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -40,12 +41,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -144,7 +145,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PropertyFEFilm.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PropertyFEFilm.md index 9558f78f2e..ce43ac9458 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PropertyFEFilm.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PropertyFEFilm.md @@ -1,4 +1,5 @@ -# Class PropertyFEFilm +# Class PropertyFEFilm + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFEFilm.dll @@ -9,13 +10,13 @@ public class PropertyFEFilm : Property, IObservableObject, IDisposableObject, IL #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyFEFilm](VM.Managed.DAFUL.PropertyFEFilm.md) #### Implements @@ -29,7 +30,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -38,12 +39,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -142,7 +143,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PropertySurfaceWithCurvesets.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PropertySurfaceWithCurvesets.md index 361b56d23b..2641624da1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PropertySurfaceWithCurvesets.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PropertySurfaceWithCurvesets.md @@ -1,4 +1,5 @@ -# Class PropertySurfaceWithCurvesets +# Class PropertySurfaceWithCurvesets + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDBallPlacing.dll @@ -11,13 +12,13 @@ public class PropertySurfaceWithCurvesets : Property, IObservableObject, IDispos #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertySurfaceWithCurvesets](VM.Managed.DAFUL.PropertySurfaceWithCurvesets.md) #### Implements @@ -31,7 +32,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -40,12 +41,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -144,7 +145,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PythonCode.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PythonCode.md index 7fb0cc9a81..0fa2d25bc8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PythonCode.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.PythonCode.md @@ -1,4 +1,5 @@ -# Class PythonCode +# Class PythonCode + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSB.dll @@ -11,12 +12,12 @@ public class PythonCode : SubEntity, IObservableObject, IDisposableObject, ILink #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [PythonCode](VM.Managed.DAFUL.PythonCode.md) #### Implements @@ -26,7 +27,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, INamed, INavigatorItem, @@ -47,17 +48,17 @@ IMultiChangable #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -150,7 +151,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -189,7 +190,7 @@ public PythonCode(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The name of the new entity @@ -205,7 +206,7 @@ public string CodePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### CodeType @@ -229,7 +230,7 @@ public string DeployLocation { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ImportCommand @@ -242,7 +243,7 @@ public string ImportCommand { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ImportModuleName @@ -254,7 +255,7 @@ public string ImportModuleName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UseDeployLocation @@ -266,7 +267,7 @@ public bool UseDeployLocation { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseImportCommand @@ -278,7 +279,7 @@ public bool UseImportCommand { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -290,15 +291,15 @@ public static string GetImportCommand(string codePath, string deployLocation, st #### Parameters -`codePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`codePath` string -`deployLocation` [string](https://learn.microsoft.com/dotnet/api/system.string) +`deployLocation` string -`importCommand` [string](https://learn.microsoft.com/dotnet/api/system.string) +`importCommand` string #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetImportCommand\(\) @@ -310,7 +311,7 @@ public string GetImportCommand() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The import command @@ -324,7 +325,7 @@ protected override void LinkAddedToDocument(object objNotifier, AddToDocEventArg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -342,7 +343,7 @@ protected override void LinkRemovedFromDocument(object objNotifier, RemoveFromDo #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -358,5 +359,5 @@ public override string ToString() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Range.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Range.md index 48b404d5a4..c02dfb7077 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Range.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Range.md @@ -1,4 +1,5 @@ -# Class Range +# Class Range + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,12 +12,12 @@ public class Range : SubEntity, IObservableObject, IDisposableObject, ILinkable, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [Range](VM.Managed.DAFUL.Range.md) #### Implements @@ -26,7 +27,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -55,17 +56,17 @@ IMultiChangable #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -158,7 +159,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -197,7 +198,7 @@ public Range(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the sub entity. @@ -273,7 +274,7 @@ public string ConnectableFullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ConnectableName @@ -285,7 +286,7 @@ public string ConnectableName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ConnectablePosition @@ -309,7 +310,7 @@ public string ConnectablePostfixName { set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Hide @@ -321,7 +322,7 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ParentBody @@ -385,7 +386,7 @@ public RegionType Type { get; } #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ## Methods @@ -399,7 +400,7 @@ public void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. @@ -421,7 +422,7 @@ The v center point. The vec normal. -`dRange` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRange` double The d range. @@ -439,21 +440,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -479,7 +480,7 @@ public override List GetTargetListForUpdate() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### LinkAddedToDocument\(object, AddToDocEventArgs\) @@ -491,7 +492,7 @@ protected override void LinkAddedToDocument(object objNotifier, AddToDocEventArg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -509,7 +510,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object `arg` LinkEventArgs diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RangeShape.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RangeShape.md index 651c9bbd45..be6ff9de51 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RangeShape.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RangeShape.md @@ -1,4 +1,5 @@ -# Class RangeShape +# Class RangeShape + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public abstract class RangeShape : LinkContainer, IObservableObject, IDisposable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [RangeShape](VM.Managed.DAFUL.RangeShape.md) @@ -79,7 +80,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RangeShapeCircle.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RangeShapeCircle.md index a74f5cfd96..92cc3c4a8a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RangeShapeCircle.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RangeShapeCircle.md @@ -1,4 +1,5 @@ -# Class RangeShapeCircle +# Class RangeShapeCircle + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class RangeShapeCircle : RangeShape, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [RangeShape](VM.Managed.DAFUL.RangeShape.md) ← [RangeShapeCircle](VM.Managed.DAFUL.RangeShapeCircle.md) @@ -80,7 +81,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferenceConnectable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferenceConnectable.md index cb973e832c..dd134c98dc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferenceConnectable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferenceConnectable.md @@ -1,4 +1,5 @@ -# Class ReferenceConnectable +# Class ReferenceConnectable + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class ReferenceConnectable : Reference, IObservableObject, IDisposableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Reference ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, INamed, @@ -170,7 +171,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -201,11 +202,11 @@ protected ReferenceConnectable(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. @@ -259,7 +260,7 @@ public virtual string ConnectableFullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ConnectableName @@ -271,7 +272,7 @@ public virtual string ConnectableName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ConnectablePosition @@ -295,7 +296,7 @@ public virtual string ConnectablePostfixName { set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ParentType @@ -331,7 +332,7 @@ public override string TopologyEntityTypeName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -359,21 +360,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlRootEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlRootEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -401,7 +402,7 @@ The reference [no use]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -415,7 +416,7 @@ public override bool IsAutoContactable() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if auto connectable, otherwise false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferenceHasMultiBuilder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferenceHasMultiBuilder.md new file mode 100644 index 0000000000..b462c34660 --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferenceHasMultiBuilder.md @@ -0,0 +1,219 @@ +# Class ReferenceHasMultiBuilder + + +Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) +Assembly: VMDFBase.dll + +This class is to represent the reference for motor em force. + +```csharp +public class ReferenceHasMultiBuilder : Reference, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IReferencable, INamed, INavigatorItem, IVisible, IReferenceAutoContactable, IAutoContactable, IBody, IMassProp +``` + +#### Inheritance + +object ← +ObservableObject ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← +ObjectBase ← +Object ← +Reference ← +[ReferenceHasMultiBuilder](VM.Managed.DAFUL.ReferenceHasMultiBuilder.md) + +#### Implements + +IObservableObject, +IDisposableObject, +ILinkable, +IObjectBase, +IObject, +ILinkContainer, +IOwned, +IHasID, +IEventProvider, +IHasKeyObject, +ILinkContainerEvent, +IVerifiable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), +IAttributeContainer, +IReferencable, +INamed, +INavigatorItem, +IVisible, +IReferenceAutoContactable, +IAutoContactable, +IBody, +IMassProp + +#### Inherited Members + +Reference.LinkAddedToDocument\(object, AddToDocEventArgs\), +Reference.SetModified\(ModifiedResult.ModifiedType\), +Reference.SetModified\(\), +Reference.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), +Reference.GetContactables\(\), +Reference.IsAutoContactable\(\), +Reference.IsOwner\(Reference\), +Reference.LinkRequestUpdate\(object, LinkEventArgs\), +Reference.LinkRequestDestroy\(object, LinkEventArgs\), +Reference.GetTransform\(Unit\), +Reference.GetFullTransform\(Unit\), +Reference.GetTotalSubSystemName\(Document3D, ObjectBase\), +Reference.GetTotalSubSystemNameCore\(Document3D, Document3D, ref Stack, ref ValueType\), +Reference.IsVisible, +Reference.Layer, +Reference.FullTransformationInKernel, +Reference.FullTransformation, +Reference.Transformation, +Reference.Prototype, +Reference.Object, +Reference.OwnerInstance, +Reference.ClearChildInfoBeforeDeserialize, +Reference.NonSymmetricName, +Reference.FullName, +Reference.Name, +Object.GetKey\(\), +Object.Initialize\(Unit.ConvertFactor\), +Object.SetIconColor\(Canvas\), +Object.OnDeserialization\(object\), +Object.CustomGetObjectData\(SerializationInfo, StreamingContext\), +Object.RollbackEvent\(\), +Object.OnDeserializedCore\(object\), +Object.Key, +Object.UntypedEventCore, +Object.EventCore, +Object.Attributes, +ObjectBase.ReplaceEventCore\(ObjectEventCore\), +ObjectBase.SetModifiedCore\(ModifiedResult.ModifiedType\), +ObjectBase.AddPostDeserialize\(StreamingContext\), +ObjectBase.LinkAddedToDocumentCore\(IOwned, bool\), +ObjectBase.SetModified\(ModifiedResult.ModifiedType\), +ObjectBase.SetModified\(\), +ObjectBase.SetModified\(ModifiedResult.ModifiedType, IDocument\), +ObjectBase.DestroyObject\(object, LinkEventArgs\), +ObjectBase.DestroyObject\(DestroyEventArgs\), +ObjectBase.DestroyObject\(\), +ObjectBase.Initialize\(Unit.ConvertFactor\), +ObjectBase.FixUp\(ObjectBase\), +ObjectBase.DoWorkAfterUpdateContents\(\), +ObjectBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), +ObjectBase.SetIconColor\(Canvas\), +ObjectBase.RemoveFromCreatedList\(\), +ObjectBase.PostAddToDocument\(\), +ObjectBase.PostRemoveFromDocument\(Document\), +ObjectBase.GetArgumentList\(LinkedList\), +ObjectBase.ResetInvalidEntity\(\), +ObjectBase.OnDeserialization\(object\), +ObjectBase.IsSerializableEvent\(Delegate\), +ObjectBase.CustomGetObjectData\(SerializationInfo, StreamingContext\), +ObjectBase.CheckAndUpdateLink\(HashSet\), +ObjectBase.Verify\(VerifiedResult\), +ObjectBase.ConnectProxy\(\), +ObjectBase.RollbackEvent\(\), +ObjectBase.LinkRequestUpdating\(object, LinkEventArgs\), +ObjectBase.LinkRequestUpdate\(object, LinkEventArgs\), +ObjectBase.LinkRequestDestroying\(object, LinkEventArgs\), +ObjectBase.LinkRequestDestroy\(object, LinkEventArgs\), +ObjectBase.LinkAddedToDocument\(object, AddToDocEventArgs\), +ObjectBase.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), +ObjectBase.DisposeManagedResources\(\), +ObjectBase.GetDestroyEventExtraData\(\), +ObjectBase.OnLinkReserved\(ILink, object, EventArgs\), +ObjectBase.CreateEntityWhenUpdateContents\(Action\), +ObjectBase.GetObjectByKey\(UIntPtr\), +ObjectBase.FindObjectOnXmlDeserialize\(string\), +ObjectBase.UpdateContents\(XmlReader, ObjectBase, string\), +ObjectBase.UpdateContents\(XmlReader, ObjectBase\), +ObjectBase.UpdateContents\(string, string\), +ObjectBase.UpdateContents\(string\), +ObjectBase.SetFlagWhenXMLFile\(string, bool\), +ObjectBase.IsEqualArray\(T\[\], T\[\]\), +ObjectBase.IsEqualList\(List, List\), +ObjectBase.SetContainer\(IOwned, bool\), +ObjectBase.GetTargetListForUpdate\(\), +ObjectBase.SkipUpdateObjectImpl\(\), +ObjectBase.raise\_OnUpdating\(object, LinkEventArgs\), +ObjectBase.raise\_OnUpdate\(object, LinkEventArgs\), +ObjectBase.raise\_OnDestroying\(object, LinkEventArgs\), +ObjectBase.raise\_OnDestroy\(object, LinkEventArgs\), +ObjectBase.raise\_Destroying\(object, Identifier\), +ObjectBase.raise\_OnAdded\(object, AddToDocEventArgs\), +ObjectBase.raise\_OnRemoved\(object, RemoveFromDocEventArgs\), +ObjectBase.raise\_OnContentsUpdated\(object, EventArgs\), +ObjectBase.Dispose\(bool\), +ObjectBase.SkipModified, +ObjectBase.ClearChildInfoBeforeDeserialize, +ObjectBase.KeyImpl, +ObjectBase.ID, +ObjectBase.TopologyEntityTypeName, +ObjectBase.ObjectStateForCircularError, +ObjectBase.ObjectState, +ObjectBase.IsChildExternable, +ObjectBase.IsExternable, +ObjectBase.Container, +ObjectBase.Owner, +ObjectBase.Document, +ObjectBase.UntypedEventCore, +ObjectBase.KernelKey, +ObjectBase.Key, +ObjectBase.OnContentsUpdated, +ObjectBase.OnRemoved, +ObjectBase.OnAdded, +ObjectBase.Destroying, +ObjectBase.OnDestroy, +ObjectBase.OnDestroying, +ObjectBase.OnUpdate, +ObjectBase.OnUpdating, +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), +ObservableObject.Dispose\(\), +ObservableObject.RaisePropertyChanged\(string\), +ObservableObject.RaisePropertyChanged\(string, object, object\), +ObservableObject.Dispose\(bool\), +ObservableObject.DisposeManagedResources\(\), +ObservableObject.DisposeUnmanagedResources\(\), +ObservableObject.IsDisposed, +ObservableObject.TryDisposing, +ObservableObject.Disposed, +ObservableObject.Disposing, +ObservableObject.PropertyChanged + +#### Extension Methods + +[LinkPropertyItemCache.GetLinkProperties\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkProperties\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkPropertiesAndValues\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkPropertiesAndValues\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkedObjects\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkedObjects\_\_1\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_) + +## Constructors + +### ReferenceHasMultiBuilder\(SerializationInfo, StreamingContext\) + +Initializes a new instance of the class. + +```csharp +protected ReferenceHasMultiBuilder(SerializationInfo info, StreamingContext context) +``` + +#### Parameters + +`info` SerializationInfo + +The info. + +`context` StreamingContext + +The context. + +### ReferenceHasMultiBuilder\(ObjectBase\) + +Initializes a new instance of the class. + +```csharp +public ReferenceHasMultiBuilder(ObjectBase obj) +``` + +#### Parameters + +`obj` ObjectBase + +The reference's object. + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferenceMarker.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferenceMarker.md index b9bb46f8f8..0f8330bf8f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferenceMarker.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferenceMarker.md @@ -1,4 +1,5 @@ -# Class ReferenceMarker +# Class ReferenceMarker + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,14 +12,14 @@ public class ReferenceMarker : ReferenceDesignFrame, IObservableObject, IDisposa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Reference ← -ReferenceDesignSubEntity ← -ReferenceDesignFrame ← +[ReferenceDesignSubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignSubEntity.cs) ← +[ReferenceDesignFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs) ← [ReferenceMarker](VM.Managed.DAFUL.ReferenceMarker.md) #### Derived @@ -39,7 +40,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, INamed, @@ -59,16 +60,16 @@ IMarker #### Inherited Members -ReferenceDesignFrame.GetDirection\(Coordinate\), -ReferenceDesignFrame.GetFullName\(\), -ReferenceDesignFrame.OriginalPosition, -ReferenceDesignFrame.Value, -ReferenceDesignFrame.X, -ReferenceDesignFrame.Y, -ReferenceDesignFrame.Z, -ReferenceDesignFrame.Position, -ReferenceDesignFrame.Orientation, -ReferenceDesignFrame.TransformationMatrix, +[ReferenceDesignFrame.GetDirection\(Coordinate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs), +[ReferenceDesignFrame.GetFullName\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs), +[ReferenceDesignFrame.OriginalPosition](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs), +[ReferenceDesignFrame.Value](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs), +[ReferenceDesignFrame.X](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs), +[ReferenceDesignFrame.Y](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs), +[ReferenceDesignFrame.Z](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs), +[ReferenceDesignFrame.Position](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs), +[ReferenceDesignFrame.Orientation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs), +[ReferenceDesignFrame.TransformationMatrix](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs), Reference.LinkAddedToDocument\(object, AddToDocEventArgs\), Reference.SetModified\(ModifiedResult.ModifiedType\), Reference.SetModified\(\), @@ -186,7 +187,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -217,11 +218,11 @@ protected ReferenceMarker(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. @@ -277,19 +278,19 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XML DOM. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XML ele. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [b has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferencePartMarker.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferencePartMarker.md index 0c0f77d208..bc060cbae8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferencePartMarker.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferencePartMarker.md @@ -1,4 +1,5 @@ -# Class ReferencePartMarker +# Class ReferencePartMarker + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,14 +12,14 @@ public class ReferencePartMarker : ReferenceMarker, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Reference ← -ReferenceDesignSubEntity ← -ReferenceDesignFrame ← +[ReferenceDesignSubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignSubEntity.cs) ← +[ReferenceDesignFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs) ← [ReferenceMarker](VM.Managed.DAFUL.ReferenceMarker.md) ← [ReferencePartMarker](VM.Managed.DAFUL.ReferencePartMarker.md) @@ -36,7 +37,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, INamed, @@ -59,16 +60,16 @@ IMarker [ReferenceMarker.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](VM.Managed.DAFUL.ReferenceMarker.md\#VM\_Managed\_DAFUL\_ReferenceMarker\_GetModelNavigatorInformationImpl\_System\_Xml\_XmlDocument\_System\_Xml\_XmlElement\_System\_Boolean\_), [ReferenceMarker.ArgumentType](VM.Managed.DAFUL.ReferenceMarker.md\#VM\_Managed\_DAFUL\_ReferenceMarker\_ArgumentType), [ReferenceMarker.ParentConnectable](VM.Managed.DAFUL.ReferenceMarker.md\#VM\_Managed\_DAFUL\_ReferenceMarker\_ParentConnectable), -ReferenceDesignFrame.GetDirection\(Coordinate\), -ReferenceDesignFrame.GetFullName\(\), -ReferenceDesignFrame.OriginalPosition, -ReferenceDesignFrame.Value, -ReferenceDesignFrame.X, -ReferenceDesignFrame.Y, -ReferenceDesignFrame.Z, -ReferenceDesignFrame.Position, -ReferenceDesignFrame.Orientation, -ReferenceDesignFrame.TransformationMatrix, +[ReferenceDesignFrame.GetDirection\(Coordinate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs), +[ReferenceDesignFrame.GetFullName\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs), +[ReferenceDesignFrame.OriginalPosition](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs), +[ReferenceDesignFrame.Value](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs), +[ReferenceDesignFrame.X](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs), +[ReferenceDesignFrame.Y](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs), +[ReferenceDesignFrame.Z](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs), +[ReferenceDesignFrame.Position](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs), +[ReferenceDesignFrame.Orientation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs), +[ReferenceDesignFrame.TransformationMatrix](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/ReferenceDesignFrame.cs), Reference.LinkAddedToDocument\(object, AddToDocEventArgs\), Reference.SetModified\(ModifiedResult.ModifiedType\), Reference.SetModified\(\), @@ -186,7 +187,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -217,11 +218,11 @@ protected ReferencePartMarker(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. @@ -251,7 +252,7 @@ public override string FullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ParentConnectable @@ -275,7 +276,7 @@ public static string PredefinedName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -289,21 +290,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlRootEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlRootEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [b has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -317,7 +318,7 @@ protected override void LinkRequestDestroy(object objNotifier, LinkEventArgs arg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The ob notifier. @@ -335,7 +336,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The ob notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferencePartSetCurve.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferencePartSetCurve.md index 28f01cf71d..5d0894fa66 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferencePartSetCurve.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferencePartSetCurve.md @@ -1,4 +1,5 @@ -# Class ReferencePartSetCurve +# Class ReferencePartSetCurve + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class ReferencePartSetCurve : ReferenceSetCurve, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Reference ← @@ -34,7 +35,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, INamed, @@ -188,7 +189,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -219,11 +220,11 @@ protected ReferencePartSetCurve(SerializationInfo info, StreamingContext context #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferencePartSetFace.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferencePartSetFace.md index 073357e515..e6c7598f09 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferencePartSetFace.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferencePartSetFace.md @@ -1,4 +1,5 @@ -# Class ReferencePartSetFace +# Class ReferencePartSetFace + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class ReferencePartSetFace : ReferenceSetFace, IObservableObject, IDispos #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Reference ← @@ -34,7 +35,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, INamed, @@ -218,7 +219,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -249,11 +250,11 @@ protected ReferencePartSetFace(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. @@ -309,7 +310,7 @@ protected override void LinkRequestDestroy(object objNotifier, LinkEventArgs arg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The ob notifier. @@ -327,7 +328,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The ob notifier. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferenceRange.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferenceRange.md index e5cbedf533..236a3aa097 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferenceRange.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferenceRange.md @@ -1,4 +1,5 @@ -# Class ReferenceRange +# Class ReferenceRange + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class ReferenceRange : Reference, IObservableObject, IDisposableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Reference ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, INamed, @@ -169,7 +170,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -200,11 +201,11 @@ protected ReferenceRange(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. @@ -306,7 +307,7 @@ public string ConnectableFullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ConnectableName @@ -318,7 +319,7 @@ public string ConnectableName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ConnectablePosition @@ -342,7 +343,7 @@ public string ConnectablePostfixName { set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ParentType @@ -378,7 +379,7 @@ public string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Type @@ -394,7 +395,7 @@ public RegionType Type { get; } #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ## Methods @@ -420,17 +421,17 @@ public bool GetGeometryNavigatorInformation(XmlDocument xmlDom, XmlElement xmlEl #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument information. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement information. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -444,21 +445,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlRootEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlRootEle` XmlElement The XmlDocument for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferenceSetCurve.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferenceSetCurve.md index 294fe1fb7c..99f9fd4835 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferenceSetCurve.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferenceSetCurve.md @@ -1,4 +1,5 @@ -# Class ReferenceSetCurve +# Class ReferenceSetCurve + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class ReferenceSetCurve : Reference, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Reference ← @@ -37,7 +38,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, INamed, @@ -175,7 +176,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -206,11 +207,11 @@ protected ReferenceSetCurve(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. @@ -276,7 +277,7 @@ public string GeometryFullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GeometryNameForMultiContact @@ -288,7 +289,7 @@ public string GeometryNameForMultiContact { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IsActionGeometry @@ -300,7 +301,7 @@ public bool IsActionGeometry { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsBaseGeometry @@ -312,7 +313,7 @@ public bool IsBaseGeometry { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsCloseLoop @@ -324,7 +325,7 @@ public bool IsCloseLoop { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ParentBody @@ -362,7 +363,7 @@ public bool GetDefaultMaxPenetration(ref double dMaxPenetration, IReferencable r #### Parameters -`dMaxPenetration` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMaxPenetration` double The maximum penetration. @@ -372,7 +373,7 @@ The reference. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -386,17 +387,17 @@ public bool GetGeometryNavigatorInformation(XmlDocument xmlDom, XmlElement xmlEl #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument information. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement information. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -424,7 +425,7 @@ The reference. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -466,17 +467,17 @@ public int GetProfilePoint(ref bool bCloseLoop, ref List lst) #### Parameters -`bCloseLoop` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bCloseLoop` bool true if this instance is close loop; otherwise, false. -`lst` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lst` List The points. #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int the profile point. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferenceSetFace.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferenceSetFace.md index 375e666275..f7d0a7cdbb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferenceSetFace.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ReferenceSetFace.md @@ -1,4 +1,5 @@ -# Class ReferenceSetFace +# Class ReferenceSetFace + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class ReferenceSetFace : Reference, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Reference ← @@ -37,7 +38,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, INamed, @@ -188,7 +189,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -219,11 +220,11 @@ protected ReferenceSetFace(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. @@ -325,7 +326,7 @@ public string ConnectableFullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ConnectableName @@ -337,7 +338,7 @@ public string ConnectableName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ConnectablePosition @@ -361,7 +362,7 @@ public string ConnectablePostfixName { set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GeometryFullName @@ -373,7 +374,7 @@ public string GeometryFullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GeometryNameForMultiContact @@ -385,7 +386,7 @@ public string GeometryNameForMultiContact { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### HalfThickness @@ -397,7 +398,7 @@ public ExpressionValueVariable HalfThickness { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### IsActionGeometry @@ -409,7 +410,7 @@ public bool IsActionGeometry { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsBaseGeometry @@ -421,7 +422,7 @@ public bool IsBaseGeometry { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsRepresentedAsBSurface @@ -433,7 +434,7 @@ public bool IsRepresentedAsBSurface { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MaxPenetration @@ -445,7 +446,7 @@ public ExpressionValueVariable MaxPenetration { get; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ParentType @@ -481,7 +482,7 @@ public string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SurfaceSmoothingType @@ -533,7 +534,7 @@ public bool GetDefaultMaxPenetration(ref double dMaxPenetration, IReferencable r #### Parameters -`dMaxPenetration` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMaxPenetration` double The maximum penetration. @@ -543,7 +544,7 @@ The reference. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -557,17 +558,17 @@ public bool GetGeometryNavigatorInformation(XmlDocument xmlDom, XmlElement xmlEl #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument information. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement information. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -593,13 +594,13 @@ The transformation matrix The transformation matrix to compare -`dLengthFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLengthFactor` double The length factor. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double The minimum distance @@ -629,13 +630,13 @@ The transformation matrix to compare Directions -`dLengthFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLengthFactor` double The length factor. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double The minimum distance @@ -649,21 +650,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlRootEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlRootEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -689,7 +690,7 @@ public virtual void GetPointAndConnectivity(FacetOption facetOptions, ref Vector #### Parameters -`facetOptions` FacetOption +`facetOptions` [FacetOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/FacetOption.cs) The facet options. @@ -697,11 +698,11 @@ The facet options. The array of points -`arConnectivity` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`arConnectivity` int\[\] The array of connectivities -`arNumOfConnectivity` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`arNumOfConnectivity` int\[\] The number of connectivities @@ -709,7 +710,7 @@ The number of connectivities The reference -`dLengthFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLengthFactor` double The length factor. @@ -737,7 +738,7 @@ The reference. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -765,7 +766,7 @@ The reference. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -783,7 +784,7 @@ public override bool IsOwner(Reference owner) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the specified owner; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RegionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RegionType.md index a63b6c7a9d..b11e5d5abc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RegionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RegionType.md @@ -1,4 +1,5 @@ -# Enum RegionType +# Enum RegionType + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestBase.md index 700b32da0e..56661d8018 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestBase.md @@ -1,4 +1,5 @@ -# Class RequestBase +# Class RequestBase + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSB.dll @@ -11,12 +12,12 @@ public abstract class RequestBase : SubEntity, IObservableObject, IDisposableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [RequestBase](VM.Managed.DAFUL.RequestBase.md) #### Derived @@ -33,7 +34,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -54,17 +55,17 @@ IHasReplaceableEntity #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -157,7 +158,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -196,7 +197,7 @@ public RequestBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the sub entity. @@ -222,7 +223,7 @@ protected virtual string NavigatorEntityName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -236,23 +237,23 @@ protected virtual void AddNavigatorInfo(XmlDocument xmlDom, XmlElement xmlEle, s #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`strGroupName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGroupName` string The Group Name `obj` ObjectBase -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string -`bAddMarker` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bAddMarker` bool ### AddNavigatorInfoForRequestEntity\(XmlDocument, XmlElement, string, ObjectBase, string, bool\) @@ -264,23 +265,23 @@ protected void AddNavigatorInfoForRequestEntity(XmlDocument xmlDom, XmlElement x #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`strGroupName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGroupName` string The Group Name `obj` ObjectBase -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string -`bAddMarker` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bAddMarker` bool ### FixUp\(ObjectBase\) @@ -298,7 +299,7 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -312,21 +313,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [b has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestConnectedEntity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestConnectedEntity.md index f6415dd62e..e77254950a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestConnectedEntity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestConnectedEntity.md @@ -1,4 +1,5 @@ -# Class RequestConnectedEntity +# Class RequestConnectedEntity + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSB.dll @@ -11,12 +12,12 @@ public class RequestConnectedEntity : RequestBase, IObservableObject, IDisposabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [RequestBase](VM.Managed.DAFUL.RequestBase.md) ← [RequestConnectedEntity](VM.Managed.DAFUL.RequestConnectedEntity.md) @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -56,17 +57,17 @@ IRequestEntity [RequestBase.FixUp\(ObjectBase\)](VM.Managed.DAFUL.RequestBase.md\#VM\_Managed\_DAFUL\_RequestBase\_FixUp\_VM\_Managed\_ObjectBase\_), [RequestBase.ActionEntity](VM.Managed.DAFUL.RequestBase.md\#VM\_Managed\_DAFUL\_RequestBase\_ActionEntity), [RequestBase.NavigatorEntityName](VM.Managed.DAFUL.RequestBase.md\#VM\_Managed\_DAFUL\_RequestBase\_NavigatorEntityName), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -159,7 +160,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -198,7 +199,7 @@ public RequestConnectedEntity(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the sub entity. @@ -212,7 +213,7 @@ protected override string NavigatorEntityName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### WriteToOutFile @@ -224,7 +225,7 @@ public bool WriteToOutFile { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -238,23 +239,23 @@ protected override void AddNavigatorInfo(XmlDocument xmlDom, XmlElement xmlEle, #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`strGroupName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGroupName` string The Group Name `obj` ObjectBase -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string -`bAddMarker` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bAddMarker` bool ### EntityFiltering\(object, FilterArgs\) @@ -266,7 +267,7 @@ public static void EntityFiltering(object sender, FilterArgs args) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestEntity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestEntity.md index fa8a12ec5e..2b66fcc0a2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestEntity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestEntity.md @@ -1,4 +1,5 @@ -# Class RequestEntity +# Class RequestEntity + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSB.dll @@ -11,12 +12,12 @@ public class RequestEntity : RequestBase, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [RequestBase](VM.Managed.DAFUL.RequestBase.md) ← [RequestEntity](VM.Managed.DAFUL.RequestEntity.md) @@ -31,7 +32,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -60,17 +61,17 @@ IRequestEntity [RequestBase.FixUp\(ObjectBase\)](VM.Managed.DAFUL.RequestBase.md\#VM\_Managed\_DAFUL\_RequestBase\_FixUp\_VM\_Managed\_ObjectBase\_), [RequestBase.ActionEntity](VM.Managed.DAFUL.RequestBase.md\#VM\_Managed\_DAFUL\_RequestBase\_ActionEntity), [RequestBase.NavigatorEntityName](VM.Managed.DAFUL.RequestBase.md\#VM\_Managed\_DAFUL\_RequestBase\_NavigatorEntityName), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -163,7 +164,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -202,7 +203,7 @@ public RequestEntity(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the sub entity. @@ -216,7 +217,7 @@ protected override string NavigatorEntityName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### WriteToOutFileImpl @@ -226,7 +227,7 @@ protected virtual bool WriteToOutFileImpl { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -240,23 +241,23 @@ protected override void AddNavigatorInfo(XmlDocument xmlDom, XmlElement xmlEle, #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`strGroupName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGroupName` string The Group Name `obj` ObjectBase -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string -`bAddMarker` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bAddMarker` bool ### EntityFiltering\(object, FilterArgs\) @@ -268,7 +269,7 @@ public static void EntityFiltering(object sender, FilterArgs args) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestEntityWithOutFlag.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestEntityWithOutFlag.md index 28352d1f81..5844e74ef3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestEntityWithOutFlag.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestEntityWithOutFlag.md @@ -1,4 +1,5 @@ -# Class RequestEntityWithOutFlag +# Class RequestEntityWithOutFlag + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSB.dll @@ -11,12 +12,12 @@ public class RequestEntityWithOutFlag : RequestEntity, IObservableObject, IDispo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [RequestBase](VM.Managed.DAFUL.RequestBase.md) ← [RequestEntity](VM.Managed.DAFUL.RequestEntity.md) ← [RequestEntityWithOutFlag](VM.Managed.DAFUL.RequestEntityWithOutFlag.md) @@ -28,7 +29,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -62,17 +63,17 @@ IRequestEntity [RequestBase.FixUp\(ObjectBase\)](VM.Managed.DAFUL.RequestBase.md\#VM\_Managed\_DAFUL\_RequestBase\_FixUp\_VM\_Managed\_ObjectBase\_), [RequestBase.ActionEntity](VM.Managed.DAFUL.RequestBase.md\#VM\_Managed\_DAFUL\_RequestBase\_ActionEntity), [RequestBase.NavigatorEntityName](VM.Managed.DAFUL.RequestBase.md\#VM\_Managed\_DAFUL\_RequestBase\_NavigatorEntityName), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -165,7 +166,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -204,7 +205,7 @@ public RequestEntityWithOutFlag(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the sub entity. @@ -220,7 +221,7 @@ public bool WriteToOutFile { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### WriteToOutFileImpl @@ -230,7 +231,7 @@ protected override bool WriteToOutFileImpl { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestKinematic.OutputType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestKinematic.OutputType.md index 35e4800012..03801594ed 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestKinematic.OutputType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestKinematic.OutputType.md @@ -1,4 +1,5 @@ -# Struct RequestKinematic.OutputType +# Struct RequestKinematic.OutputType + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSB.dll @@ -21,7 +22,7 @@ public bool AccelerationMagnitude #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### AccelerationX @@ -33,7 +34,7 @@ public bool AccelerationX #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### AccelerationY @@ -45,7 +46,7 @@ public bool AccelerationY #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### AccelerationZ @@ -57,7 +58,7 @@ public bool AccelerationZ #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### AnglePitch @@ -69,7 +70,7 @@ public bool AnglePitch #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### AngleRoll @@ -81,7 +82,7 @@ public bool AngleRoll #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### AngleX @@ -93,7 +94,7 @@ public bool AngleX #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### AngleY @@ -105,7 +106,7 @@ public bool AngleY #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### AngleYaw @@ -117,7 +118,7 @@ public bool AngleYaw #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### AngleZ @@ -129,7 +130,7 @@ public bool AngleZ #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### AngularAccelerationMagnitude @@ -141,7 +142,7 @@ public bool AngularAccelerationMagnitude #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### AngularAccelerationX @@ -153,7 +154,7 @@ public bool AngularAccelerationX #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### AngularAccelerationY @@ -165,7 +166,7 @@ public bool AngularAccelerationY #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### AngularAccelerationZ @@ -177,7 +178,7 @@ public bool AngularAccelerationZ #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### AngularVelocityMagnitude @@ -189,7 +190,7 @@ public bool AngularVelocityMagnitude #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### AngularVelocityR @@ -201,7 +202,7 @@ public bool AngularVelocityR #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### AngularVelocityX @@ -213,7 +214,7 @@ public bool AngularVelocityX #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### AngularVelocityY @@ -225,7 +226,7 @@ public bool AngularVelocityY #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### AngularVelocityZ @@ -237,7 +238,7 @@ public bool AngularVelocityZ #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DeformationMagnitude @@ -249,7 +250,7 @@ public bool DeformationMagnitude #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DeformationX @@ -261,7 +262,7 @@ public bool DeformationX #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DeformationY @@ -273,7 +274,7 @@ public bool DeformationY #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DeformationZ @@ -285,7 +286,7 @@ public bool DeformationZ #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DisplacementMagnitude @@ -297,7 +298,7 @@ public bool DisplacementMagnitude #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DisplacementX @@ -309,7 +310,7 @@ public bool DisplacementX #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DisplacementY @@ -321,7 +322,7 @@ public bool DisplacementY #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DisplacementZ @@ -333,7 +334,7 @@ public bool DisplacementZ #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### VelocityMagnitude @@ -345,7 +346,7 @@ public bool VelocityMagnitude #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### VelocityR @@ -357,7 +358,7 @@ public bool VelocityR #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### VelocityX @@ -369,7 +370,7 @@ public bool VelocityX #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### VelocityY @@ -381,7 +382,7 @@ public bool VelocityY #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### VelocityZ @@ -393,7 +394,7 @@ public bool VelocityZ #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -407,13 +408,13 @@ public override bool Equals(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object

    Object to compare

    #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool

    true if two objects are equal. Otherwise false.

    @@ -433,7 +434,7 @@ public bool Equals(RequestKinematic.OutputType other) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool

    true if two objects are equal. Otherwise false.

    @@ -447,7 +448,7 @@ public override int GetHashCode() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int

    The hash code

    @@ -473,7 +474,7 @@ public static bool operator ==(RequestKinematic.OutputType left, RequestKinemati #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool

    true if two arguments are same. Otherwise false.

    @@ -497,7 +498,7 @@ public static bool operator !=(RequestKinematic.OutputType left, RequestKinemati #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool

    true if two arguments are not same. Otherwise false.

    diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestKinematic.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestKinematic.md index 6f90742dc7..dcb9ac9174 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestKinematic.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestKinematic.md @@ -1,4 +1,5 @@ -# Class RequestKinematic +# Class RequestKinematic + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSB.dll @@ -11,12 +12,12 @@ public class RequestKinematic : RequestBase, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [RequestBase](VM.Managed.DAFUL.RequestBase.md) ← [RequestKinematic](VM.Managed.DAFUL.RequestKinematic.md) @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -56,17 +57,17 @@ IReportable [RequestBase.FixUp\(ObjectBase\)](VM.Managed.DAFUL.RequestBase.md\#VM\_Managed\_DAFUL\_RequestBase\_FixUp\_VM\_Managed\_ObjectBase\_), [RequestBase.ActionEntity](VM.Managed.DAFUL.RequestBase.md\#VM\_Managed\_DAFUL\_RequestBase\_ActionEntity), [RequestBase.NavigatorEntityName](VM.Managed.DAFUL.RequestBase.md\#VM\_Managed\_DAFUL\_RequestBase\_NavigatorEntityName), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -159,7 +160,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -198,7 +199,7 @@ public RequestKinematic(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the sub entity. @@ -227,7 +228,7 @@ public bool IsUseOfBaseEntity { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsUseOfReferenceMarker @@ -240,7 +241,7 @@ public bool IsUseOfReferenceMarker { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Output @@ -290,21 +291,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [b has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -332,7 +333,7 @@ protected override void OnLinkReserved(ILink link, object objNotifier, EventArgs `link` ILink -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object -`arg` [EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) +`arg` EventArgs diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestStructure.OutputType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestStructure.OutputType.md index 904ffeb347..8e4adb2ca2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestStructure.OutputType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestStructure.OutputType.md @@ -1,4 +1,5 @@ -# Struct RequestStructure.OutputType +# Struct RequestStructure.OutputType + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSB.dll @@ -21,7 +22,7 @@ public bool ContactPressure #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DesignStressIntensity @@ -33,7 +34,7 @@ public bool DesignStressIntensity #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DesignStressMaximumPrinciple @@ -45,7 +46,7 @@ public bool DesignStressMaximumPrinciple #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DesignStressMaximumShear @@ -57,7 +58,7 @@ public bool DesignStressMaximumShear #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DesignStressVonmises @@ -69,7 +70,7 @@ public bool DesignStressVonmises #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DirectionalHeatFluxX @@ -79,7 +80,7 @@ public bool DirectionalHeatFluxX #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DirectionalHeatFluxY @@ -89,7 +90,7 @@ public bool DirectionalHeatFluxY #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DirectionalHeatFluxZ @@ -99,7 +100,7 @@ public bool DirectionalHeatFluxZ #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ElasticDesignStrainIntensity @@ -111,7 +112,7 @@ public bool ElasticDesignStrainIntensity #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ElasticDesignStrainVonmises @@ -123,7 +124,7 @@ public bool ElasticDesignStrainVonmises #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ElasticPrincipleStrainFirst @@ -135,7 +136,7 @@ public bool ElasticPrincipleStrainFirst #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ElasticPrincipleStrainSecond @@ -147,7 +148,7 @@ public bool ElasticPrincipleStrainSecond #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ElasticPrincipleStrainThird @@ -159,7 +160,7 @@ public bool ElasticPrincipleStrainThird #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ElasticStrainTensorX @@ -171,7 +172,7 @@ public bool ElasticStrainTensorX #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ElasticStrainTensorXY @@ -183,7 +184,7 @@ public bool ElasticStrainTensorXY #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ElasticStrainTensorY @@ -195,7 +196,7 @@ public bool ElasticStrainTensorY #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ElasticStrainTensorYZ @@ -207,7 +208,7 @@ public bool ElasticStrainTensorYZ #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ElasticStrainTensorZ @@ -219,7 +220,7 @@ public bool ElasticStrainTensorZ #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ElasticStrainTensorZX @@ -231,7 +232,7 @@ public bool ElasticStrainTensorZX #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PlasticDesignStrainIntensity @@ -243,7 +244,7 @@ public bool PlasticDesignStrainIntensity #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PlasticDesignStrainVonmises @@ -255,7 +256,7 @@ public bool PlasticDesignStrainVonmises #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PlasticPrincipleStrainFirst @@ -267,7 +268,7 @@ public bool PlasticPrincipleStrainFirst #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PlasticPrincipleStrainSecond @@ -279,7 +280,7 @@ public bool PlasticPrincipleStrainSecond #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PlasticPrincipleStrainThird @@ -291,7 +292,7 @@ public bool PlasticPrincipleStrainThird #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PlasticStrainTensorX @@ -303,7 +304,7 @@ public bool PlasticStrainTensorX #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PlasticStrainTensorXY @@ -315,7 +316,7 @@ public bool PlasticStrainTensorXY #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PlasticStrainTensorY @@ -327,7 +328,7 @@ public bool PlasticStrainTensorY #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PlasticStrainTensorYZ @@ -339,7 +340,7 @@ public bool PlasticStrainTensorYZ #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PlasticStrainTensorZ @@ -351,7 +352,7 @@ public bool PlasticStrainTensorZ #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PlasticStrainTensorZX @@ -363,7 +364,7 @@ public bool PlasticStrainTensorZX #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PrincipleStressFirst @@ -375,7 +376,7 @@ public bool PrincipleStressFirst #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PrincipleStressSecond @@ -387,7 +388,7 @@ public bool PrincipleStressSecond #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PrincipleStressThird @@ -399,7 +400,7 @@ public bool PrincipleStressThird #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### StressTensorX @@ -411,7 +412,7 @@ public bool StressTensorX #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### StressTensorXY @@ -423,7 +424,7 @@ public bool StressTensorXY #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### StressTensorY @@ -435,7 +436,7 @@ public bool StressTensorY #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### StressTensorYZ @@ -447,7 +448,7 @@ public bool StressTensorYZ #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### StressTensorZ @@ -459,7 +460,7 @@ public bool StressTensorZ #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### StressTensorZX @@ -471,7 +472,7 @@ public bool StressTensorZX #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Temperature @@ -481,7 +482,7 @@ public bool Temperature #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ThermalStrain @@ -491,7 +492,7 @@ public bool ThermalStrain #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TotalDesignStrainIntensity @@ -503,7 +504,7 @@ public bool TotalDesignStrainIntensity #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TotalDesignStrainVonmises @@ -515,7 +516,7 @@ public bool TotalDesignStrainVonmises #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TotalHeatFlux @@ -525,7 +526,7 @@ public bool TotalHeatFlux #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TotalPrincipleStrainFirst @@ -537,7 +538,7 @@ public bool TotalPrincipleStrainFirst #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TotalPrincipleStrainSecond @@ -549,7 +550,7 @@ public bool TotalPrincipleStrainSecond #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TotalPrincipleStrainThird @@ -561,7 +562,7 @@ public bool TotalPrincipleStrainThird #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TotalStrainTensorX @@ -573,7 +574,7 @@ public bool TotalStrainTensorX #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TotalStrainTensorXY @@ -585,7 +586,7 @@ public bool TotalStrainTensorXY #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TotalStrainTensorY @@ -597,7 +598,7 @@ public bool TotalStrainTensorY #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TotalStrainTensorYZ @@ -609,7 +610,7 @@ public bool TotalStrainTensorYZ #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TotalStrainTensorZ @@ -621,7 +622,7 @@ public bool TotalStrainTensorZ #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TotalStrainTensorZX @@ -633,7 +634,7 @@ public bool TotalStrainTensorZX #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -647,13 +648,13 @@ public override bool Equals(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object

    Object to compare

    #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool

    true if two objects are equal. Otherwise false.

    @@ -673,7 +674,7 @@ public bool Equals(RequestStructure.OutputType other) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool

    true if two objects are equal. Otherwise false.

    @@ -687,7 +688,7 @@ public override int GetHashCode() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int

    The hash code

    @@ -713,7 +714,7 @@ public static bool operator ==(RequestStructure.OutputType left, RequestStructur #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool

    true if two arguments are same. Otherwise false.

    @@ -737,7 +738,7 @@ public static bool operator !=(RequestStructure.OutputType left, RequestStructur #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool

    true if two arguments are not same. Otherwise false.

    diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestStructure.SideFilter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestStructure.SideFilter.md index 8049ada3d8..bcf78dfbd4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestStructure.SideFilter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestStructure.SideFilter.md @@ -1,4 +1,5 @@ -# Enum RequestStructure.SideFilter +# Enum RequestStructure.SideFilter + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSB.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestStructure.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestStructure.md index f9962f6b63..f3a3805d49 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestStructure.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.RequestStructure.md @@ -1,4 +1,5 @@ -# Class RequestStructure +# Class RequestStructure + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSB.dll @@ -11,12 +12,12 @@ public class RequestStructure : RequestBase, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [RequestBase](VM.Managed.DAFUL.RequestBase.md) ← [RequestStructure](VM.Managed.DAFUL.RequestStructure.md) @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -56,17 +57,17 @@ IReportable [RequestBase.FixUp\(ObjectBase\)](VM.Managed.DAFUL.RequestBase.md\#VM\_Managed\_DAFUL\_RequestBase\_FixUp\_VM\_Managed\_ObjectBase\_), [RequestBase.ActionEntity](VM.Managed.DAFUL.RequestBase.md\#VM\_Managed\_DAFUL\_RequestBase\_ActionEntity), [RequestBase.NavigatorEntityName](VM.Managed.DAFUL.RequestBase.md\#VM\_Managed\_DAFUL\_RequestBase\_NavigatorEntityName), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -159,7 +160,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -198,7 +199,7 @@ public RequestStructure(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the sub entity. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Roller.SolidBodyRoller.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Roller.SolidBodyRoller.md index 689f794fac..145271939f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Roller.SolidBodyRoller.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Roller.SolidBodyRoller.md @@ -1,4 +1,5 @@ -# Class SolidBodyRoller +# Class SolidBodyRoller + Namespace: [VM.Managed.DAFUL.Roller](VM.Managed.DAFUL.Roller.md) Assembly: VMDRoller.dll @@ -6,21 +7,21 @@ Assembly: VMDRoller.dll This class is to represent the solid roller body. ```csharp -public class SolidBodyRoller : SolidBody, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IMarkerCreatable, IFacesetCreatable, ICurvesetCreatable, IConnectableNotReference, IReferencable, IConnectableHasGeometry, IBody, IInterface, ITemplateObject, IHasBuilder, IDrawIcon, ITransformable, IGeometryContainer, IMassProp, IChainedSegmentConnector, IArgument, ITransparentable, IMFModalable, IBodyAnalysisType, IAutoContactable, ITemperatureComponent, IHeatGenerationComponent, IGeometricalComponent, IContactableGeometry2Dot5D, IConnectable, IMarkerParent, IEntityRelation, IHasBody, IHasMaterial +public class SolidBodyRoller : SolidBody, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IMarkerCreatable, IFacesetCreatable, ICurvesetCreatable, IConnectableNotReference, IReferencable, IConnectableHasGeometry, IBody, IInterface, ITemplateObject, IHasBuilder, IDrawIcon, ITransformable, IGeometryContainer, IMassProp, IChainedSegmentConnector, IArgument, ITransparentable, IMFModalable, IBodyAnalysisType, IAutoContactable, ITemperatureComponent, IHeatGenerationComponent, IGeometricalComponent, IContactableGeometry2Dot5D, IConnectable, IMarkerParent, IEntityRelation, IHasBody, IHasMaterial, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -BodyBase ← -SolidBody ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[BodyBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ← +[SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ← [SolidBodyRoller](VM.Managed.DAFUL.Roller.SolidBodyRoller.md) #### Implements @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -81,116 +82,117 @@ IConnectable, IMarkerParent, IEntityRelation, IHasBody, -IHasMaterial +IHasMaterial, +IHasReplaceableEntity #### Inherited Members -SolidBody.m\_MeshFreeProperty, -SolidBody.Initialize\(Unit.ConvertFactor\), -SolidBody.FixUp\(ObjectBase\), -SolidBody.DoWorkAfterUpdateContents\(\), -SolidBody.GetMarkerModelNavigatorInfo\(XmlDocument, XmlElement, Marker\), -SolidBody.GetMarkerArrayModelNavigatorInfo\(XmlDocument, XmlElement, NamedObjectDictionary\), -SolidBody.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SolidBody.MakeReferenceImpl\(LinkedList\), -SolidBody.WriteTemplateImpl\(XmlWriter\), -SolidBody.ReadTemplateImpl\(XmlReader\), -SolidBody.GetBuilder\(\), -SolidBody.FindLocal\(string\), -SolidBody.GetUnnamedObjectName\(object\), -SolidBody.PostAddToDocument\(\), -SolidBody.ResetInvalidEntity\(\), -SolidBody.ReDraw\(\), -SolidBody.GetGeometryNavigatorInformation\(XmlDocument, XmlElement\), -SolidBody.GetPointDirection\(ref VectorBase, ref VectorBase, IReferencable\), -SolidBody.GetPointDirectionOnGeometry\(ref VectorBase, ref VectorBase, IReferencable\), -SolidBody.GetDefaultMaxPenetration\(ref double, IReferencable\), -SolidBody.GetLayerImpl\(\), -SolidBody.SetLayerImpl\(Layer\), -SolidBody.OnDeserialization\(object\), -SolidBody.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -SolidBody.LinkRequestDestroy\(object, LinkEventArgs\), -SolidBody.GetAnalysisLevelInfo\(ref List, ref List\), -SolidBody.IsAutoContactable\(\), -SolidBody.GetContactables\(\), -SolidBody.IsInterface, -SolidBody.ModeArray, -SolidBody.DFMFPath, -SolidBody.LastModifiedTimeToDFMFFile, -SolidBody.\_MovingReferenceFrame, -SolidBody.MovingReferenceFrame, -SolidBody.ModalReferencePosition, -SolidBody.UseModalReferencePosition, -SolidBody.UseAdvancedOption, -SolidBody.UseTMovingReferenceFrame, -SolidBody.UseRMovingReferenceFrame, -SolidBody.ParentTypeImpl, -SolidBody.IsEditCM, -SolidBody.IsBaseGeometry, -SolidBody.IsActionGeometry, -SolidBody.MaxPenetration, -SolidBody.HalfThickness, -SolidBody.SurfaceSmoothingType, -SolidBody.Connectable, -SolidBody.IsRepresentedAsBSurface, -SolidBody.ReferenceType, -SolidBody.ArgumentType, -SolidBody.Geometry, -SolidBody.MeshFreeProperty, -SolidBody.AnalysisType, -SolidBody.TopologyEntityTypeName, -BodyBase.Initialize\(Unit.ConvertFactor\), -BodyBase.GetGeomModelNavigatorInfo\(XmlDocument, XmlElement, BodyProperty, Body\), -BodyBase.GetGeneralMarkerInfo\(XmlDocument, XmlElement, Marker\), -BodyBase.MakeReferenceImpl\(LinkedList\), -BodyBase.FixUp\(ObjectBase\), -BodyBase.GetArgumentList\(LinkedList\), -BodyBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -BodyBase.GetLayerImpl\(\), -BodyBase.SetLayerImpl\(Layer\), -BodyBase.GetTargetListForUpdate\(\), -BodyBase.HasLayerExplicitly, -BodyBase.ParentType, -BodyBase.ParentTypeImpl, -BodyBase.ReferenceFrameType, -BodyBase.ConnectableName, -BodyBase.ConnectableFullName, -BodyBase.ConnectablePostfixName, -BodyBase.ConnectablePosition, -BodyBase.ConnectableBody, -BodyBase.Body, -BodyBase.Layer, -BodyBase.IsVisible, -BodyBase.ReferencableImpl, -BodyBase.Geometry, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[SolidBody.m\_MeshFreeProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.DoWorkAfterUpdateContents\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetMarkerModelNavigatorInfo\(XmlDocument, XmlElement, Marker\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetMarkerArrayModelNavigatorInfo\(XmlDocument, XmlElement, NamedObjectDictionary\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetBuilder\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetGeometryNavigatorInformation\(XmlDocument, XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetPointDirection\(ref VectorBase, ref VectorBase, IReferencable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetPointDirectionOnGeometry\(ref VectorBase, ref VectorBase, IReferencable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetDefaultMaxPenetration\(ref double, IReferencable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetAnalysisLevelInfo\(ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsAutoContactable\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetContactables\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ModeArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.DFMFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.LastModifiedTimeToDFMFFile](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.\_MovingReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.MovingReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ModalReferencePosition](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.UseModalReferencePosition](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.UseAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.UseTMovingReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.UseRMovingReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ParentTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsEditCM](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsBaseGeometry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsActionGeometry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.MaxPenetration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.HalfThickness](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.SurfaceSmoothingType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.Connectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsRepresentedAsBSurface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.Geometry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.MeshFreeProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.AnalysisType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.TopologyEntityTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetGeomModelNavigatorInfo\(XmlDocument, XmlElement, BodyProperty, Body\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetGeneralMarkerInfo\(XmlDocument, XmlElement, Marker\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetArgumentList\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ParentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ParentTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ReferenceFrameType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectableName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectableFullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectablePostfixName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectablePosition](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectableBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.Body](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ReferencableImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.Geometry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -289,7 +291,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -328,7 +330,7 @@ public SolidBodyRoller(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the solid roller body. @@ -342,7 +344,7 @@ public SolidBodyRoller(string strName, Builder builder) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the solid roller body. @@ -362,7 +364,7 @@ public SolidBodyRoller ReGenerateBodyInformation(XmlDocument dom) #### Parameters -`dom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`dom` XmlDocument The data xml of roller diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Roller.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Roller.md index 968d14e9bc..d2d95c4126 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Roller.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Roller.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Roller +# Namespace VM.Managed.DAFUL.Roller + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SetCurveBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SetCurveBase.md index 63d09cd99b..4cfa5f8020 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SetCurveBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SetCurveBase.md @@ -1,4 +1,5 @@ -# Class SetCurveBase +# Class SetCurveBase + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -12,12 +13,12 @@ public class SetCurveBase : SubEntity, IObservableObject, IDisposableObject, ILi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [SetCurveBase](VM.Managed.DAFUL.SetCurveBase.md) #### Derived @@ -32,7 +33,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -63,17 +64,17 @@ IMultiChangable #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -166,7 +167,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -205,7 +206,7 @@ public SetCurveBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the face set. @@ -219,11 +220,11 @@ public SetCurveBase(string strName, string strProxyName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the face set. -`strProxyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strProxyName` string Name of the proxy. @@ -299,7 +300,7 @@ public string GeometryFullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GeometryNameForMultiContact @@ -311,7 +312,7 @@ public string GeometryNameForMultiContact { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IsActionGeometry @@ -323,7 +324,7 @@ public bool IsActionGeometry { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsBaseGeometry @@ -335,7 +336,7 @@ public bool IsBaseGeometry { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsCloseLoop @@ -347,7 +348,7 @@ public bool IsCloseLoop { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ParentBody @@ -371,7 +372,7 @@ public string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -385,21 +386,21 @@ public static List GetAkimaSpline(double[] position_x, double[] posi #### Parameters -`position_x` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`position_x` double\[\] The array of X position -`position_y` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`position_y` double\[\] The array of Y position -`position_z` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`position_z` double\[\] The array of Z position #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List The list of points @@ -417,13 +418,13 @@ public static List GetAkimaSpline(VectorBase[] lstVec, int nprintpoi The array of points -`nprintpoints` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nprintpoints` int The number of result points. #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List The list of points @@ -437,25 +438,25 @@ public static List GetAkimaSpline(double[] position_x, double[] posi #### Parameters -`position_x` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`position_x` double\[\] The array of X position -`position_y` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`position_y` double\[\] The array of Y position -`position_z` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`position_z` double\[\] The array of Z position -`nprintpoints` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nprintpoints` int The number of result points. #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List The list of points @@ -481,7 +482,7 @@ public bool GetDefaultMaxPenetration(ref double dMaxPenetration, IReferencable r #### Parameters -`dMaxPenetration` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMaxPenetration` double The maximum penetration. @@ -491,7 +492,7 @@ The reference. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -505,17 +506,17 @@ public bool GetGeometryNavigatorInformation(XmlDocument xmlDom, XmlElement xmlEl #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument information. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement information. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -529,21 +530,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -571,7 +572,7 @@ The reference. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -613,17 +614,17 @@ public virtual int GetProfilePoint(ref bool bCloseLoop, ref List lst #### Parameters -`bCloseLoop` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bCloseLoop` bool true if closed loop, otherwise false. -`lst` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lst` List The list of points #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Initialize\(ConvertFactor\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SetCurveForEdges.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SetCurveForEdges.md index f22dee0ce8..3f91af6b34 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SetCurveForEdges.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SetCurveForEdges.md @@ -1,4 +1,5 @@ -# Class SetCurveForEdges +# Class SetCurveForEdges + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,12 +12,12 @@ public class SetCurveForEdges : SetCurveBase, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [SetCurveBase](VM.Managed.DAFUL.SetCurveBase.md) ← [SetCurveForEdges](VM.Managed.DAFUL.SetCurveForEdges.md) @@ -31,7 +32,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -89,17 +90,17 @@ IPostDeserialized [SetCurveBase.IsActionGeometry](VM.Managed.DAFUL.SetCurveBase.md\#VM\_Managed\_DAFUL\_SetCurveBase\_IsActionGeometry), [SetCurveBase.AnalysisType](VM.Managed.DAFUL.SetCurveBase.md\#VM\_Managed\_DAFUL\_SetCurveBase\_AnalysisType), [SetCurveBase.Body](VM.Managed.DAFUL.SetCurveBase.md\#VM\_Managed\_DAFUL\_SetCurveBase\_Body), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -192,7 +193,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -231,7 +232,7 @@ public SetCurveForEdges(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the face set. @@ -247,7 +248,7 @@ public IList EdgeList { get; } #### Property Value - [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1) + IList ### IsReverseCurveDirection @@ -259,7 +260,7 @@ public bool IsReverseCurveDirection { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MaximumAngle @@ -271,7 +272,7 @@ public ExpressionValueVariable MaximumAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MaximumLength @@ -283,7 +284,7 @@ public ExpressionValueVariable MaximumLength { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MaximumTolerance @@ -295,7 +296,7 @@ public ExpressionValueVariable MaximumTolerance { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TopologyList @@ -341,7 +342,7 @@ The old object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success, otherwise false. @@ -355,7 +356,7 @@ public int GetCount() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int The edge's count. @@ -369,13 +370,13 @@ public UIntPtr GetElementKey(int nIndex) #### Parameters -`nIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIndex` int The Index. #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr The element(edge) key. @@ -389,7 +390,7 @@ public Type GetElementType() #### Returns - [Type](https://learn.microsoft.com/dotnet/api/system.type) + Type The type of the element(edge). @@ -417,7 +418,7 @@ The reference entity #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetPoints\(\) @@ -443,17 +444,17 @@ public override int GetProfilePoint(ref bool bCloseLoop, ref List ls #### Parameters -`bCloseLoop` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bCloseLoop` bool close loop flag -`lst` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lst` List The position list #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Initialize\(ConvertFactor\) @@ -479,7 +480,7 @@ protected override void LinkRequestDestroy(object objNotifier, LinkEventArgs arg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -497,7 +498,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The notifier @@ -515,7 +516,7 @@ protected virtual void MakeReferenceImpl(LinkedList lstRef) #### Parameters -`lstRef` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) +`lstRef` LinkedList The container. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SetCurveForImport.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SetCurveForImport.md index 29b88c3122..23e8a4f55f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SetCurveForImport.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SetCurveForImport.md @@ -1,4 +1,5 @@ -# Class SetCurveForImport +# Class SetCurveForImport + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,12 +12,12 @@ public class SetCurveForImport : SetCurveBase, IObservableObject, IDisposableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [SetCurveBase](VM.Managed.DAFUL.SetCurveBase.md) ← [SetCurveForImport](VM.Managed.DAFUL.SetCurveForImport.md) @@ -31,7 +32,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -88,17 +89,17 @@ IReferencable [SetCurveBase.IsActionGeometry](VM.Managed.DAFUL.SetCurveBase.md\#VM\_Managed\_DAFUL\_SetCurveBase\_IsActionGeometry), [SetCurveBase.AnalysisType](VM.Managed.DAFUL.SetCurveBase.md\#VM\_Managed\_DAFUL\_SetCurveBase\_AnalysisType), [SetCurveBase.Body](VM.Managed.DAFUL.SetCurveBase.md\#VM\_Managed\_DAFUL\_SetCurveBase\_Body), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -191,7 +192,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -230,7 +231,7 @@ public SetCurveForImport(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the face set. @@ -246,7 +247,7 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ImportPath @@ -258,7 +259,7 @@ public string ImportPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NumberOfPoints @@ -270,7 +271,7 @@ public int NumberOfPoints { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Points @@ -286,7 +287,7 @@ public PointBase[] Points { get; set; } #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The Point list is null. or @@ -320,7 +321,7 @@ public virtual void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -348,7 +349,7 @@ The reference entity #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetPoints\(\) @@ -372,17 +373,17 @@ public override int GetProfilePoint(ref bool bCloseLoop, ref List ls #### Parameters -`bCloseLoop` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bCloseLoop` bool The close loop flag -`lst` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lst` List The point list #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### MakeReferenceImpl\(LinkedList\) @@ -394,7 +395,7 @@ protected virtual void MakeReferenceImpl(LinkedList lstRef) #### Parameters -`lstRef` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) +`lstRef` LinkedList The container. @@ -408,7 +409,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SetFace.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SetFace.md index 3df41655be..eb43e78a4e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SetFace.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SetFace.md @@ -1,4 +1,5 @@ -# Class SetFace +# Class SetFace + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,12 +12,12 @@ public class SetFace : SubEntity, IObservableObject, IDisposableObject, ILinkabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [SetFace](VM.Managed.DAFUL.SetFace.md) #### Derived @@ -31,7 +32,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -78,17 +79,17 @@ IPostOpenDocumentForFaceset #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -181,7 +182,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -220,7 +221,7 @@ public SetFace(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the face set. @@ -272,7 +273,7 @@ public bool AutomaticSelectionGeometryType { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Body @@ -332,7 +333,7 @@ public string ConnectableFullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ConnectableName @@ -344,7 +345,7 @@ public string ConnectableName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ConnectablePosition @@ -368,7 +369,7 @@ public string ConnectablePostfixName { set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### FaceList @@ -380,7 +381,7 @@ public IList FaceList { get; } #### Property Value - [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1) + IList ### GeometryFullName @@ -392,7 +393,7 @@ public string GeometryFullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GeometryNameForMultiContact @@ -404,7 +405,7 @@ public string GeometryNameForMultiContact { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GeometryType @@ -428,7 +429,7 @@ public ExpressionValueVariable HalfThickness { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### IsActionGeometry @@ -440,7 +441,7 @@ public bool IsActionGeometry { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsBaseGeometry @@ -452,7 +453,7 @@ public bool IsBaseGeometry { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsFacetingForGeometryRepresentation @@ -464,7 +465,7 @@ public bool IsFacetingForGeometryRepresentation { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsRepresentedAsBSurface @@ -476,7 +477,7 @@ public bool IsRepresentedAsBSurface { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsSphereTreatedAsSurface @@ -488,7 +489,7 @@ public bool IsSphereTreatedAsSurface { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MaxPenetration @@ -500,7 +501,7 @@ public ExpressionValueVariable MaxPenetration { get; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ParentBody @@ -548,7 +549,7 @@ public string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SphereRadius @@ -560,7 +561,7 @@ public ExpressionValueVariable SphereRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### SurfaceSmoothingType @@ -618,20 +619,10 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. -### GetBodyModifiedTimeAttribute\(\) - -```csharp -public AttributeBodyModifiedTime GetBodyModifiedTimeAttribute() -``` - -#### Returns - - AttributeBodyModifiedTime - ### GetCADBody\(\)

    Gets the cad body from parent body.

    @@ -654,7 +645,7 @@ public int GetCount() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int The face's count. @@ -668,7 +659,7 @@ public bool GetDefaultMaxPenetration(ref double dMaxPenetration, IReferencable r #### Parameters -`dMaxPenetration` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMaxPenetration` double The maximum penetration. @@ -678,7 +669,7 @@ The reference. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -692,13 +683,13 @@ public UIntPtr GetElementKey(int nIndex) #### Parameters -`nIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIndex` int The Index. #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr The element(face) key. @@ -712,7 +703,7 @@ public Type GetElementType() #### Returns - [Type](https://learn.microsoft.com/dotnet/api/system.type) + Type The type of the element(face). @@ -736,7 +727,7 @@ public FacetOption GetFacetOption() #### Returns - FacetOption + [FacetOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/FacetOption.cs) The facet option @@ -750,17 +741,17 @@ public bool GetGeometryNavigatorInformation(XmlDocument xmlDom, XmlElement xmlEl #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument information. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement information. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -786,13 +777,13 @@ The transform The compare entity transform -`dLengthFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLengthFactor` double The length factor. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetMinimumDistanceAndDirection\(IFaceInformation, TMatrix, TMatrix, ref VectorBase\[\], double\) @@ -820,13 +811,13 @@ The compare entity transform The direction array -`dLengthFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLengthFactor` double The length factor. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\) @@ -838,21 +829,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -866,7 +857,7 @@ public virtual void GetPointAndConnectivity(FacetOption facetOptions, ref Vector #### Parameters -`facetOptions` FacetOption +`facetOptions` [FacetOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/FacetOption.cs) The facet options. @@ -874,11 +865,11 @@ The facet options. The points -`arConnectivity` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`arConnectivity` int\[\] The connectivity -`arNumOfConnectivity` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`arNumOfConnectivity` int\[\] The number of connectivity @@ -886,7 +877,7 @@ The number of connectivity The reference entity -`dLengthFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLengthFactor` double The length factor. @@ -914,7 +905,7 @@ The reference. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -942,7 +933,7 @@ The reference. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -956,7 +947,7 @@ public override List GetTargetListForUpdate() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### Initialize\(ConvertFactor\) @@ -992,7 +983,7 @@ tool direction #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LinkRequestDestroy\(object, LinkEventArgs\) @@ -1004,7 +995,7 @@ protected override void LinkRequestDestroy(object objNotifier, LinkEventArgs arg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -1022,7 +1013,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -1040,7 +1031,7 @@ protected virtual void MakeReferenceImpl(LinkedList lstRef) #### Parameters -`lstRef` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) +`lstRef` LinkedList The container. @@ -1075,7 +1066,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -1119,7 +1110,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SetPoint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SetPoint.md index fba1cd98f2..9e12561702 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SetPoint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SetPoint.md @@ -1,4 +1,5 @@ -# Class SetPoint +# Class SetPoint + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,12 +12,12 @@ public class SetPoint : SetPointBase, IObservableObject, IDisposableObject, ILin #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [SetFace](VM.Managed.DAFUL.SetFace.md) ← [SetPointBase](VM.Managed.DAFUL.SetPointBase.md) ← [SetPoint](VM.Managed.DAFUL.SetPoint.md) @@ -28,7 +29,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -110,7 +111,6 @@ IPostOpenDocumentForFaceset, [SetFace.GetMinimumDistanceAndDirection\(IFaceInformation, TMatrix, TMatrix, ref VectorBase\[\], double\)](VM.Managed.DAFUL.SetFace.md\#VM\_Managed\_DAFUL\_SetFace\_GetMinimumDistanceAndDirection\_VM\_Managed\_IFaceInformation\_VM\_Managed\_TMatrix\_VM\_Managed\_TMatrix\_VM\_Managed\_VectorBase\_\_\_\_System\_Double\_), [SetFace.GetPointAndConnectivity\(FacetOption, ref VectorBase\[\], ref int\[\], ref int\[\], Reference, double\)](VM.Managed.DAFUL.SetFace.md\#VM\_Managed\_DAFUL\_SetFace\_GetPointAndConnectivity\_VM\_Models\_Pre\_FacetOption\_VM\_Managed\_VectorBase\_\_\_\_System\_Int32\_\_\_\_System\_Int32\_\_\_\_VM\_Managed\_Reference\_System\_Double\_), [SetFace.GetFacetModifiedTimeAttribute\(\)](VM.Managed.DAFUL.SetFace.md\#VM\_Managed\_DAFUL\_SetFace\_GetFacetModifiedTimeAttribute), -[SetFace.GetBodyModifiedTimeAttribute\(\)](VM.Managed.DAFUL.SetFace.md\#VM\_Managed\_DAFUL\_SetFace\_GetBodyModifiedTimeAttribute), [SetFace.AutomaticSelectionGeometryType](VM.Managed.DAFUL.SetFace.md\#VM\_Managed\_DAFUL\_SetFace\_AutomaticSelectionGeometryType), [SetFace.GeometryType](VM.Managed.DAFUL.SetFace.md\#VM\_Managed\_DAFUL\_SetFace\_GeometryType), [SetFace.SphereRadius](VM.Managed.DAFUL.SetFace.md\#VM\_Managed\_DAFUL\_SetFace\_SphereRadius), @@ -141,17 +141,17 @@ IPostOpenDocumentForFaceset, [SetFace.AttribType](VM.Managed.DAFUL.SetFace.md\#VM\_Managed\_DAFUL\_SetFace\_AttribType), [SetFace.ReferenceType](VM.Managed.DAFUL.SetFace.md\#VM\_Managed\_DAFUL\_SetFace\_ReferenceType), [SetFace.ArgumentType](VM.Managed.DAFUL.SetFace.md\#VM\_Managed\_DAFUL\_SetFace\_ArgumentType), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -244,7 +244,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -283,7 +283,7 @@ public SetPoint(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the point set. @@ -305,7 +305,7 @@ The SetPoint object. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The formatted data. @@ -325,7 +325,7 @@ The Face object. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The formatted data. @@ -345,7 +345,7 @@ The Range object. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The formatted data. @@ -369,7 +369,7 @@ The radius. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The formatted data. @@ -383,7 +383,7 @@ public static SetPoint GetObject(ref string strFormattedData) #### Parameters -`strFormattedData` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFormattedData` string The formatted data. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SetPointBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SetPointBase.md index 0bf5bfe6d3..e12a388884 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SetPointBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SetPointBase.md @@ -1,4 +1,5 @@ -# Class SetPointBase +# Class SetPointBase + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,12 +12,12 @@ public abstract class SetPointBase : SetFace, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [SetFace](VM.Managed.DAFUL.SetFace.md) ← [SetPointBase](VM.Managed.DAFUL.SetPointBase.md) @@ -31,7 +32,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -108,7 +109,6 @@ IPostOpenDocumentForFaceset, [SetFace.GetMinimumDistanceAndDirection\(IFaceInformation, TMatrix, TMatrix, ref VectorBase\[\], double\)](VM.Managed.DAFUL.SetFace.md\#VM\_Managed\_DAFUL\_SetFace\_GetMinimumDistanceAndDirection\_VM\_Managed\_IFaceInformation\_VM\_Managed\_TMatrix\_VM\_Managed\_TMatrix\_VM\_Managed\_VectorBase\_\_\_\_System\_Double\_), [SetFace.GetPointAndConnectivity\(FacetOption, ref VectorBase\[\], ref int\[\], ref int\[\], Reference, double\)](VM.Managed.DAFUL.SetFace.md\#VM\_Managed\_DAFUL\_SetFace\_GetPointAndConnectivity\_VM\_Models\_Pre\_FacetOption\_VM\_Managed\_VectorBase\_\_\_\_System\_Int32\_\_\_\_System\_Int32\_\_\_\_VM\_Managed\_Reference\_System\_Double\_), [SetFace.GetFacetModifiedTimeAttribute\(\)](VM.Managed.DAFUL.SetFace.md\#VM\_Managed\_DAFUL\_SetFace\_GetFacetModifiedTimeAttribute), -[SetFace.GetBodyModifiedTimeAttribute\(\)](VM.Managed.DAFUL.SetFace.md\#VM\_Managed\_DAFUL\_SetFace\_GetBodyModifiedTimeAttribute), [SetFace.AutomaticSelectionGeometryType](VM.Managed.DAFUL.SetFace.md\#VM\_Managed\_DAFUL\_SetFace\_AutomaticSelectionGeometryType), [SetFace.GeometryType](VM.Managed.DAFUL.SetFace.md\#VM\_Managed\_DAFUL\_SetFace\_GeometryType), [SetFace.SphereRadius](VM.Managed.DAFUL.SetFace.md\#VM\_Managed\_DAFUL\_SetFace\_SphereRadius), @@ -139,17 +139,17 @@ IPostOpenDocumentForFaceset, [SetFace.AttribType](VM.Managed.DAFUL.SetFace.md\#VM\_Managed\_DAFUL\_SetFace\_AttribType), [SetFace.ReferenceType](VM.Managed.DAFUL.SetFace.md\#VM\_Managed\_DAFUL\_SetFace\_ReferenceType), [SetFace.ArgumentType](VM.Managed.DAFUL.SetFace.md\#VM\_Managed\_DAFUL\_SetFace\_ArgumentType), -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -242,7 +242,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -281,7 +281,7 @@ public SetPointBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the point set. @@ -298,7 +298,7 @@ protected List> m_lstRange #### Field Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)\> + List\> ## Properties @@ -332,7 +332,7 @@ The range. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool Return false, if already added. @@ -346,7 +346,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -364,7 +364,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object

    The sender.

    diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ShoulderType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ShoulderType.md index fb84a5d95e..4f444d6024 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ShoulderType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ShoulderType.md @@ -1,4 +1,5 @@ -# Enum ShoulderType +# Enum ShoulderType + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDBallPlacing.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SliceInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SliceInfo.md index 0f44874f60..aaf828483c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SliceInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SliceInfo.md @@ -1,4 +1,5 @@ -# Class SliceInfo +# Class SliceInfo + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDBallPlacing.dll @@ -11,9 +12,9 @@ public class SliceInfo : LinkContainer, IObservableObject, IDisposableObject, IL #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [SliceInfo](VM.Managed.DAFUL.SliceInfo.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -114,7 +115,7 @@ public SliceInfo(string name) #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string ## Properties @@ -128,7 +129,7 @@ public ExpressionValueVariable MaxAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MaxLength @@ -140,7 +141,7 @@ public ExpressionValueVariable MaxLength { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MaxTolerance @@ -152,7 +153,7 @@ public ExpressionValueVariable MaxTolerance { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Name @@ -164,5 +165,5 @@ public string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SolidBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SolidBody.md index 244c1ae243..8ddd096990 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SolidBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SolidBody.md @@ -1,4 +1,5 @@ -# Class SolidBody +# Class SolidBody + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -6,19 +7,19 @@ Assembly: VMDFBase.dll This class is to represent the solid body. ```csharp -public class SolidBody : BodyBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IMarkerCreatable, IFacesetCreatable, ICurvesetCreatable, IConnectableNotReference, IReferencable, IConnectableHasGeometry, IBody, IInterface, ITemplateObject, IHasBuilder, IDrawIcon, ITransformable, IGeometryContainer, IMassProp, IChainedSegmentConnector, IArgument, ITransparentable, IMFModalable, IBodyAnalysisType, IAutoContactable, ITemperatureComponent, IHeatGenerationComponent, IGeometricalComponent, IContactableGeometry2Dot5D, IConnectable, IMarkerParent, IEntityRelation, IHasBody, IHasMaterial +public class SolidBody : BodyBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IMarkerCreatable, IFacesetCreatable, ICurvesetCreatable, IConnectableNotReference, IReferencable, IConnectableHasGeometry, IBody, IInterface, ITemplateObject, IHasBuilder, IDrawIcon, ITransformable, IGeometryContainer, IMassProp, IChainedSegmentConnector, IArgument, ITransparentable, IMFModalable, IBodyAnalysisType, IAutoContactable, ITemperatureComponent, IHeatGenerationComponent, IGeometricalComponent, IContactableGeometry2Dot5D, IConnectable, IMarkerParent, IEntityRelation, IHasBody, IHasMaterial, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [BodyBase](VM.Managed.DAFUL.BodyBase\-1.md) ← [SolidBody](VM.Managed.DAFUL.SolidBody.md) @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -80,7 +81,8 @@ IAutoContactable, [IMarkerParent](VM.Managed.DAFUL.IMarkerParent.md), IEntityRelation, IHasBody, -IHasMaterial +IHasMaterial, +IHasReplaceableEntity #### Inherited Members @@ -108,34 +110,34 @@ IHasMaterial [BodyBase.IsVisible](VM.Managed.DAFUL.BodyBase\-1.md\#VM\_Managed\_DAFUL\_BodyBase\_1\_IsVisible), [BodyBase.ReferencableImpl](VM.Managed.DAFUL.BodyBase\-1.md\#VM\_Managed\_DAFUL\_BodyBase\_1\_ReferencableImpl), [BodyBase.Geometry](VM.Managed.DAFUL.BodyBase\-1.md\#VM\_Managed\_DAFUL\_BodyBase\_1\_Geometry), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -234,7 +236,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -273,7 +275,7 @@ public SolidBody(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the solid body. @@ -287,7 +289,7 @@ public SolidBody(string strName, Builder builder) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the solid body. @@ -358,7 +360,7 @@ public string DFMFPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Geometry @@ -370,7 +372,7 @@ public override List Geometry { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### HalfThickness @@ -382,7 +384,7 @@ public ExpressionValueVariable HalfThickness { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### IsActionGeometry @@ -394,7 +396,7 @@ public bool IsActionGeometry { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsBaseGeometry @@ -406,7 +408,7 @@ public bool IsBaseGeometry { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsEditCM @@ -418,7 +420,7 @@ public virtual bool IsEditCM { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsInterface @@ -430,7 +432,7 @@ public bool IsInterface { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsRepresentedAsBSurface @@ -442,7 +444,7 @@ public bool IsRepresentedAsBSurface { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LastModifiedTimeToDFMFFile @@ -454,7 +456,7 @@ public string LastModifiedTimeToDFMFFile { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### MaxPenetration @@ -466,7 +468,7 @@ public ExpressionValueVariable MaxPenetration { get; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MeshFreeProperty @@ -539,7 +541,7 @@ public virtual string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SurfaceSmoothingType @@ -563,7 +565,7 @@ public override string TopologyEntityTypeName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UseAdvancedOption @@ -575,7 +577,7 @@ public bool UseAdvancedOption { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseModalReferencePosition @@ -587,7 +589,7 @@ public bool UseModalReferencePosition { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseRMovingReferenceFrame @@ -599,7 +601,7 @@ public bool UseRMovingReferenceFrame { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseTMovingReferenceFrame @@ -611,7 +613,7 @@ public bool UseTMovingReferenceFrame { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### \_MovingReferenceFrame @@ -645,7 +647,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -671,7 +673,7 @@ The ob. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetAnalysisLevelInfo\(ref List, ref List\) @@ -683,17 +685,17 @@ public bool GetAnalysisLevelInfo(ref List lstNodeDistance, ref List +`lstNodeDistance` List Node distance list -`lstNodeCount` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[uint](https://learn.microsoft.com/dotnet/api/system.uint32)\> +`lstNodeCount` List Node count list #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool Whether it's successful. @@ -735,7 +737,7 @@ public bool GetDefaultMaxPenetration(ref double dMaxPenetration, IReferencable r #### Parameters -`dMaxPenetration` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMaxPenetration` double The max penetration. @@ -745,7 +747,7 @@ The reference [no use]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -759,17 +761,17 @@ public bool GetGeometryNavigatorInformation(XmlDocument xmlDom, XmlElement xmlEl #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for geometry. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for geometry. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -797,21 +799,21 @@ public bool GetMarkerArrayModelNavigatorInfo(XmlDocument xmlDom, XmlElement xmlE #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for marker array. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for marker array. -`arMarker` NamedObjectDictionary<[Marker](VM.Managed.DAFUL.Marker.md)\> +`arMarker` [NamedObjectDictionary](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/NamedObjectDictionary.cs)<[Marker](VM.Managed.DAFUL.Marker.md)\> The marker array. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -825,11 +827,11 @@ protected bool GetMarkerModelNavigatorInfo(XmlDocument xmlDom, XmlElement xmlEle #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for marker. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for marker. @@ -839,7 +841,7 @@ The marker. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -853,21 +855,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -895,7 +897,7 @@ The reference [no use]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -923,7 +925,7 @@ The reference [no use]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -937,13 +939,13 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The ob unnamed. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The unnamed object name. @@ -971,7 +973,7 @@ public bool IsAutoContactable() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the specified auto contactable; otherwise, false. @@ -985,7 +987,7 @@ protected override void LinkRemovedFromDocument(object objNotifier, RemoveFromDo #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -1003,7 +1005,7 @@ protected override void LinkRequestDestroy(object objNotifier, LinkEventArgs arg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -1021,7 +1023,7 @@ protected override void MakeReferenceImpl(LinkedList lstRef) #### Parameters -`lstRef` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) +`lstRef` LinkedList The container. @@ -1035,7 +1037,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -1065,7 +1067,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -1101,7 +1103,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SolidBodyAnalysisSetting.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SolidBodyAnalysisSetting.md index b77ec39733..41c0b685cd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SolidBodyAnalysisSetting.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SolidBodyAnalysisSetting.md @@ -1,4 +1,5 @@ -# Class SolidBodyAnalysisSetting +# Class SolidBodyAnalysisSetting + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -12,9 +13,9 @@ public class SolidBodyAnalysisSetting : ToolkitMultiSelectionSettingBase](VM.Managed.DAFUL.ToolkitMultiSelectionSettingBase\-1.md) ← @@ -91,7 +92,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -132,7 +133,7 @@ public string[] SolidBodyAnalysisArray { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -170,7 +171,7 @@ The SolidBody object to find. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool Whether it contains the SolidBody object. @@ -224,7 +225,7 @@ The SolidBody object to remove. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool Whether it is success to remove the SolidBody object. @@ -244,7 +245,7 @@ Analysis type to set #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool Whether it's success. @@ -268,7 +269,7 @@ The SolidBodyAnalysisType of the SolidBody object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool Whether it is success to set the SolidBodyAnalysisType. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SolidBodyProperty.MassPropertyType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SolidBodyProperty.MassPropertyType.md index 3ae01ef28a..4230f99960 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SolidBodyProperty.MassPropertyType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SolidBodyProperty.MassPropertyType.md @@ -1,4 +1,5 @@ -# Enum SolidBodyProperty.MassPropertyType +# Enum SolidBodyProperty.MassPropertyType + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SolidBodyProperty.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SolidBodyProperty.md index 2c3deb0474..17c022f74b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SolidBodyProperty.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SolidBodyProperty.md @@ -1,4 +1,5 @@ -# Class SolidBodyProperty +# Class SolidBodyProperty + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,13 +12,13 @@ public class SolidBodyProperty : BodyProperty, IObservableObject, IDisposableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [BodyPropertyBase](VM.Managed.DAFUL.BodyPropertyBase.md) ← [BodyProperty](VM.Managed.DAFUL.BodyProperty.md) ← [SolidBodyProperty](VM.Managed.DAFUL.SolidBodyProperty.md) @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -62,12 +63,12 @@ ICheckLinkForCircularReferenceBeforeDeserialize [BodyPropertyBase.MassValue](VM.Managed.DAFUL.BodyPropertyBase.md\#VM\_Managed\_DAFUL\_BodyPropertyBase\_MassValue), [BodyPropertyBase.MomentOfInertiaValue](VM.Managed.DAFUL.BodyPropertyBase.md\#VM\_Managed\_DAFUL\_BodyPropertyBase\_MomentOfInertiaValue), [BodyPropertyBase.IsExternable](VM.Managed.DAFUL.BodyPropertyBase.md\#VM\_Managed\_DAFUL\_BodyPropertyBase\_IsExternable), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -166,7 +167,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -221,7 +222,7 @@ public static string GeometryName #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Properties @@ -235,7 +236,7 @@ public ExpressionValueVariable Density { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Geometry @@ -271,7 +272,7 @@ public double Volume { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -313,7 +314,7 @@ protected override void LinkAddedToDocument(object objNotifier, AddToDocEventArg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -331,7 +332,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -349,7 +350,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Spline.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Spline.md index e884b977ad..5fb5032b03 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Spline.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Spline.md @@ -1,4 +1,5 @@ -# Class Spline +# Class Spline + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSB.dll @@ -11,12 +12,12 @@ public class Spline : SubEntity, IObservableObject, IDisposableObject, ILinkable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [Spline](VM.Managed.DAFUL.Spline.md) #### Implements @@ -26,7 +27,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -49,17 +50,17 @@ IChangeData #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -152,7 +153,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -191,7 +192,7 @@ public Spline(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the spline. @@ -219,7 +220,7 @@ public string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SplineData @@ -243,7 +244,7 @@ public ExpressionValueVariable XScale { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### YScale @@ -255,7 +256,7 @@ public ExpressionValueVariable YScale { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -269,17 +270,17 @@ public static int CompareDouble(string x, string y) #### Parameters -`x` [string](https://learn.microsoft.com/dotnet/api/system.string) +`x` string The first value -`y` [string](https://learn.microsoft.com/dotnet/api/system.string) +`y` string The second value #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Initialize\(ConvertFactor\) @@ -305,7 +306,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -323,7 +324,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -337,7 +338,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -365,7 +366,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Spline3D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Spline3D.md index 3001e94598..1844f0adfc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Spline3D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Spline3D.md @@ -1,4 +1,5 @@ -# Class Spline3D +# Class Spline3D + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSB.dll @@ -11,12 +12,12 @@ public class Spline3D : SubEntity, IObservableObject, IDisposableObject, ILinkab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [Spline3D](VM.Managed.DAFUL.Spline3D.md) #### Implements @@ -26,7 +27,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, INamed, INavigatorItem, @@ -48,17 +49,17 @@ IHasComment #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -151,7 +152,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -190,7 +191,7 @@ public Spline3D(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the spline. @@ -218,7 +219,7 @@ public string[] Points { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### PointsMatrix @@ -230,7 +231,7 @@ public double[,] PointsMatrix { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[,\] + double\[,\] ### ReferenceType @@ -242,7 +243,7 @@ public string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### XScale @@ -254,7 +255,7 @@ public ExpressionValueVariable XScale { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### YScale @@ -266,7 +267,7 @@ public ExpressionValueVariable YScale { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ZScale @@ -278,7 +279,7 @@ public ExpressionValueVariable ZScale { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -290,7 +291,7 @@ public double[] GetDataX() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GetDataY\(\) @@ -300,7 +301,7 @@ public double[] GetDataY() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GetDataZ\(\) @@ -310,7 +311,7 @@ public double[] GetDataZ() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### Initialize\(ConvertFactor\) @@ -336,7 +337,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -354,7 +355,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -368,7 +369,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SplineData.DataType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SplineData.DataType.md index e0c26d44a0..4a53b92ba1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SplineData.DataType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SplineData.DataType.md @@ -1,4 +1,5 @@ -# Enum SplineData.DataType +# Enum SplineData.DataType + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSB.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SplineData.Point.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SplineData.Point.md index 2fd322d894..408d995718 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SplineData.Point.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SplineData.Point.md @@ -1,4 +1,5 @@ -# Struct SplineData.Point +# Struct SplineData.Point + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSB.dll @@ -25,11 +26,11 @@ public Point(double dx, double dy) #### Parameters -`dx` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dx` double

    The dx.

    -`dy` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dy` double

    The dy.

    @@ -39,17 +40,17 @@ public Point(double dx, double dy)

    Gets or sets the X value.

    - Type : double - LinkRequestUpdate 시 처리 : N/A - Read/Write : N/A - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : No - 변경 시 DFS 재생성 여부 : No - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : double +LinkRequestUpdate 시 처리 : N/A +Read/Write : N/A +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : No +변경 시 DFS 재생성 여부 : No +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public double X { get; set; } @@ -57,23 +58,23 @@ public double X { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y

    Gets or sets the Y value.

    - Type : double - LinkRequestUpdate 시 처리 : N/A - Read/Write : N/A - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : No - 변경 시 DFS 재생성 여부 : No - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : double +LinkRequestUpdate 시 처리 : N/A +Read/Write : N/A +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : No +변경 시 DFS 재생성 여부 : No +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public double Y { get; set; } @@ -81,7 +82,7 @@ public double Y { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Operators diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SplineData.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SplineData.md index 89f18c1907..2ae373ec5f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SplineData.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SplineData.md @@ -1,4 +1,5 @@ -# Class SplineData +# Class SplineData + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSB.dll @@ -11,9 +12,9 @@ public abstract class SplineData : LinkContainer, IObservableObject, IDisposable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [SplineData](VM.Managed.DAFUL.SplineData.md) @@ -80,7 +81,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -135,7 +136,7 @@ public abstract bool ContainsNegativeNumber { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Type @@ -161,7 +162,7 @@ public abstract IEnumerable GetPoints() #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[SplineData](VM.Managed.DAFUL.SplineData.md).[Point](VM.Managed.DAFUL.SplineData.Point.md)\> + IEnumerable<[SplineData](VM.Managed.DAFUL.SplineData.md).[Point](VM.Managed.DAFUL.SplineData.Point.md)\> The point list. @@ -175,13 +176,13 @@ public abstract IEnumerable GetPoints(string documentFilePath) #### Parameters -`documentFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentFilePath` string The Document file path. #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[SplineData](VM.Managed.DAFUL.SplineData.md).[Point](VM.Managed.DAFUL.SplineData.Point.md)\> + IEnumerable<[SplineData](VM.Managed.DAFUL.SplineData.md).[Point](VM.Managed.DAFUL.SplineData.Point.md)\> The point list. @@ -195,11 +196,11 @@ public abstract void GetPoints(List lstX, List lstY) #### Parameters -`lstX` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> +`lstX` List The LST X. -`lstY` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> +`lstY` List The LST Y. @@ -213,15 +214,15 @@ public abstract void GetPoints(List lstX, List lstY, string strD #### Parameters -`lstX` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> +`lstX` List The LST X. -`lstY` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> +`lstY` List The LST Y. -`strDocumentFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDocumentFilePath` string The Document file path. @@ -235,7 +236,7 @@ public virtual XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -249,7 +250,7 @@ public virtual void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The stream from which the object is deserialized. @@ -263,7 +264,7 @@ public virtual void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SplineFile.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SplineFile.md index 3b5f0d0359..526c7f632c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SplineFile.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SplineFile.md @@ -1,4 +1,5 @@ -# Class SplineFile +# Class SplineFile + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSB.dll @@ -11,9 +12,9 @@ public sealed class SplineFile : SplineData, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [SplineData](VM.Managed.DAFUL.SplineData.md) ← [SplineFile](VM.Managed.DAFUL.SplineFile.md) @@ -103,7 +104,7 @@ public override bool ContainsNegativeNumber { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### FilePath @@ -115,7 +116,7 @@ public string FilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SelectedSplineName @@ -127,7 +128,7 @@ public string SelectedSplineName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Type @@ -153,7 +154,7 @@ public override IEnumerable GetPoints() #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[SplineData](VM.Managed.DAFUL.SplineData.md).[Point](VM.Managed.DAFUL.SplineData.Point.md)\> + IEnumerable<[SplineData](VM.Managed.DAFUL.SplineData.md).[Point](VM.Managed.DAFUL.SplineData.Point.md)\> The point list. @@ -167,13 +168,13 @@ public override IEnumerable GetPoints(string documentFilePath) #### Parameters -`documentFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentFilePath` string The Document file path. #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[SplineData](VM.Managed.DAFUL.SplineData.md).[Point](VM.Managed.DAFUL.SplineData.Point.md)\> + IEnumerable<[SplineData](VM.Managed.DAFUL.SplineData.md).[Point](VM.Managed.DAFUL.SplineData.Point.md)\> The point list. @@ -187,11 +188,11 @@ public override void GetPoints(List lstX, List lstY) #### Parameters -`lstX` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> +`lstX` List The LST X. -`lstY` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> +`lstY` List The LST Y. @@ -205,15 +206,15 @@ public override void GetPoints(List lstX, List lstY, string strD #### Parameters -`lstX` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> +`lstX` List The LST X. -`lstY` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> +`lstY` List The LST Y. -`strDocumentFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDocumentFilePath` string The Document file path. @@ -227,7 +228,7 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -241,7 +242,7 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The stream from which the object is deserialized. @@ -255,7 +256,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SplineValue.TwoPoint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SplineValue.TwoPoint.md index 54a11dcf57..ed93600e7e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SplineValue.TwoPoint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SplineValue.TwoPoint.md @@ -1,4 +1,5 @@ -# Struct SplineValue.TwoPoint +# Struct SplineValue.TwoPoint + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSB.dll @@ -21,11 +22,11 @@ public TwoPoint(double dx, double dy) #### Parameters -`dx` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dx` double The dx. -`dy` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dy` double The dy. @@ -41,7 +42,7 @@ public double m_dX #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### m\_dY @@ -53,5 +54,5 @@ public double m_dY #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SplineValue.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SplineValue.md index f301fdb4b3..bc35f0f152 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SplineValue.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SplineValue.md @@ -1,4 +1,5 @@ -# Class SplineValue +# Class SplineValue + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSB.dll @@ -11,9 +12,9 @@ public sealed class SplineValue : SplineData, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [SplineData](VM.Managed.DAFUL.SplineData.md) ← [SplineValue](VM.Managed.DAFUL.SplineValue.md) @@ -103,7 +104,7 @@ public override bool ContainsNegativeNumber { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TwoPoints @@ -115,7 +116,7 @@ public List TwoPoints { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[SplineValue](VM.Managed.DAFUL.SplineValue.md).[TwoPoint](VM.Managed.DAFUL.SplineValue.TwoPoint.md)\> + List<[SplineValue](VM.Managed.DAFUL.SplineValue.md).[TwoPoint](VM.Managed.DAFUL.SplineValue.TwoPoint.md)\> ### Type @@ -141,13 +142,13 @@ public (double, double) GetPoint(int nIndex) #### Parameters -`nIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIndex` int The index #### Returns - \([double](https://learn.microsoft.com/dotnet/api/system.double), [double](https://learn.microsoft.com/dotnet/api/system.double)\) + \(double, double\) ### GetPoints\(\) @@ -159,7 +160,7 @@ public override IEnumerable GetPoints() #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[SplineData](VM.Managed.DAFUL.SplineData.md).[Point](VM.Managed.DAFUL.SplineData.Point.md)\> + IEnumerable<[SplineData](VM.Managed.DAFUL.SplineData.md).[Point](VM.Managed.DAFUL.SplineData.Point.md)\> The point list. @@ -173,13 +174,13 @@ public override IEnumerable GetPoints(string documentFilePath) #### Parameters -`documentFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentFilePath` string The Document file path. #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[SplineData](VM.Managed.DAFUL.SplineData.md).[Point](VM.Managed.DAFUL.SplineData.Point.md)\> + IEnumerable<[SplineData](VM.Managed.DAFUL.SplineData.md).[Point](VM.Managed.DAFUL.SplineData.Point.md)\> The point list. @@ -193,11 +194,11 @@ public override void GetPoints(List lstX, List lstY) #### Parameters -`lstX` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> +`lstX` List The LST X. -`lstY` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> +`lstY` List The LST Y. @@ -211,15 +212,15 @@ public override void GetPoints(List lstX, List lstY, string strD #### Parameters -`lstX` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> +`lstX` List The LST X. -`lstY` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> +`lstY` List The LST Y. -`strDocumentFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDocumentFilePath` string The Document file path. @@ -233,7 +234,7 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -247,7 +248,7 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The stream from which the object is deserialized. @@ -261,11 +262,11 @@ public void SetPoints(List lstX, List lstY) #### Parameters -`lstX` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> +`lstX` List The LST X. -`lstY` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> +`lstY` List The LST Y. @@ -279,7 +280,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Sprocket.SolidBodySprocket.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Sprocket.SolidBodySprocket.md index 3e891d3fe1..04cf2efd85 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Sprocket.SolidBodySprocket.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Sprocket.SolidBodySprocket.md @@ -1,4 +1,5 @@ -# Class SolidBodySprocket +# Class SolidBodySprocket + Namespace: [VM.Managed.DAFUL.Sprocket](VM.Managed.DAFUL.Sprocket.md) Assembly: VMDSprocket.dll @@ -6,21 +7,21 @@ Assembly: VMDSprocket.dll This class is to represent the solid sprocket body. ```csharp -public class SolidBodySprocket : SolidBody, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IMarkerCreatable, IFacesetCreatable, ICurvesetCreatable, IConnectableNotReference, IReferencable, IConnectableHasGeometry, IBody, IInterface, ITemplateObject, IHasBuilder, IDrawIcon, ITransformable, IGeometryContainer, IMassProp, IChainedSegmentConnector, IArgument, ITransparentable, IMFModalable, IBodyAnalysisType, IAutoContactable, ITemperatureComponent, IHeatGenerationComponent, IGeometricalComponent, IContactableGeometry2Dot5D, IConnectable, IMarkerParent, IEntityRelation, IHasBody, IHasMaterial +public class SolidBodySprocket : SolidBody, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IMarkerCreatable, IFacesetCreatable, ICurvesetCreatable, IConnectableNotReference, IReferencable, IConnectableHasGeometry, IBody, IInterface, ITemplateObject, IHasBuilder, IDrawIcon, ITransformable, IGeometryContainer, IMassProp, IChainedSegmentConnector, IArgument, ITransparentable, IMFModalable, IBodyAnalysisType, IAutoContactable, ITemperatureComponent, IHeatGenerationComponent, IGeometricalComponent, IContactableGeometry2Dot5D, IConnectable, IMarkerParent, IEntityRelation, IHasBody, IHasMaterial, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -BodyBase ← -SolidBody ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[BodyBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ← +[SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ← [SolidBodySprocket](VM.Managed.DAFUL.Sprocket.SolidBodySprocket.md) #### Implements @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -81,116 +82,117 @@ IConnectable, IMarkerParent, IEntityRelation, IHasBody, -IHasMaterial +IHasMaterial, +IHasReplaceableEntity #### Inherited Members -SolidBody.m\_MeshFreeProperty, -SolidBody.Initialize\(Unit.ConvertFactor\), -SolidBody.FixUp\(ObjectBase\), -SolidBody.DoWorkAfterUpdateContents\(\), -SolidBody.GetMarkerModelNavigatorInfo\(XmlDocument, XmlElement, Marker\), -SolidBody.GetMarkerArrayModelNavigatorInfo\(XmlDocument, XmlElement, NamedObjectDictionary\), -SolidBody.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SolidBody.MakeReferenceImpl\(LinkedList\), -SolidBody.WriteTemplateImpl\(XmlWriter\), -SolidBody.ReadTemplateImpl\(XmlReader\), -SolidBody.GetBuilder\(\), -SolidBody.FindLocal\(string\), -SolidBody.GetUnnamedObjectName\(object\), -SolidBody.PostAddToDocument\(\), -SolidBody.ResetInvalidEntity\(\), -SolidBody.ReDraw\(\), -SolidBody.GetGeometryNavigatorInformation\(XmlDocument, XmlElement\), -SolidBody.GetPointDirection\(ref VectorBase, ref VectorBase, IReferencable\), -SolidBody.GetPointDirectionOnGeometry\(ref VectorBase, ref VectorBase, IReferencable\), -SolidBody.GetDefaultMaxPenetration\(ref double, IReferencable\), -SolidBody.GetLayerImpl\(\), -SolidBody.SetLayerImpl\(Layer\), -SolidBody.OnDeserialization\(object\), -SolidBody.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -SolidBody.LinkRequestDestroy\(object, LinkEventArgs\), -SolidBody.GetAnalysisLevelInfo\(ref List, ref List\), -SolidBody.IsAutoContactable\(\), -SolidBody.GetContactables\(\), -SolidBody.IsInterface, -SolidBody.ModeArray, -SolidBody.DFMFPath, -SolidBody.LastModifiedTimeToDFMFFile, -SolidBody.\_MovingReferenceFrame, -SolidBody.MovingReferenceFrame, -SolidBody.ModalReferencePosition, -SolidBody.UseModalReferencePosition, -SolidBody.UseAdvancedOption, -SolidBody.UseTMovingReferenceFrame, -SolidBody.UseRMovingReferenceFrame, -SolidBody.ParentTypeImpl, -SolidBody.IsEditCM, -SolidBody.IsBaseGeometry, -SolidBody.IsActionGeometry, -SolidBody.MaxPenetration, -SolidBody.HalfThickness, -SolidBody.SurfaceSmoothingType, -SolidBody.Connectable, -SolidBody.IsRepresentedAsBSurface, -SolidBody.ReferenceType, -SolidBody.ArgumentType, -SolidBody.Geometry, -SolidBody.MeshFreeProperty, -SolidBody.AnalysisType, -SolidBody.TopologyEntityTypeName, -BodyBase.Initialize\(Unit.ConvertFactor\), -BodyBase.GetGeomModelNavigatorInfo\(XmlDocument, XmlElement, BodyProperty, Body\), -BodyBase.GetGeneralMarkerInfo\(XmlDocument, XmlElement, Marker\), -BodyBase.MakeReferenceImpl\(LinkedList\), -BodyBase.FixUp\(ObjectBase\), -BodyBase.GetArgumentList\(LinkedList\), -BodyBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -BodyBase.GetLayerImpl\(\), -BodyBase.SetLayerImpl\(Layer\), -BodyBase.GetTargetListForUpdate\(\), -BodyBase.HasLayerExplicitly, -BodyBase.ParentType, -BodyBase.ParentTypeImpl, -BodyBase.ReferenceFrameType, -BodyBase.ConnectableName, -BodyBase.ConnectableFullName, -BodyBase.ConnectablePostfixName, -BodyBase.ConnectablePosition, -BodyBase.ConnectableBody, -BodyBase.Body, -BodyBase.Layer, -BodyBase.IsVisible, -BodyBase.ReferencableImpl, -BodyBase.Geometry, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[SolidBody.m\_MeshFreeProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.DoWorkAfterUpdateContents\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetMarkerModelNavigatorInfo\(XmlDocument, XmlElement, Marker\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetMarkerArrayModelNavigatorInfo\(XmlDocument, XmlElement, NamedObjectDictionary\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetBuilder\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetGeometryNavigatorInformation\(XmlDocument, XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetPointDirection\(ref VectorBase, ref VectorBase, IReferencable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetPointDirectionOnGeometry\(ref VectorBase, ref VectorBase, IReferencable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetDefaultMaxPenetration\(ref double, IReferencable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetAnalysisLevelInfo\(ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsAutoContactable\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetContactables\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ModeArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.DFMFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.LastModifiedTimeToDFMFFile](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.\_MovingReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.MovingReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ModalReferencePosition](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.UseModalReferencePosition](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.UseAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.UseTMovingReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.UseRMovingReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ParentTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsEditCM](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsBaseGeometry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsActionGeometry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.MaxPenetration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.HalfThickness](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.SurfaceSmoothingType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.Connectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsRepresentedAsBSurface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.Geometry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.MeshFreeProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.AnalysisType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.TopologyEntityTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetGeomModelNavigatorInfo\(XmlDocument, XmlElement, BodyProperty, Body\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetGeneralMarkerInfo\(XmlDocument, XmlElement, Marker\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetArgumentList\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ParentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ParentTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ReferenceFrameType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectableName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectableFullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectablePostfixName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectablePosition](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectableBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.Body](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ReferencableImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.Geometry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -289,7 +291,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -328,7 +330,7 @@ public SolidBodySprocket(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the solid sprocket body. @@ -342,7 +344,7 @@ public SolidBodySprocket(string strName, Builder builder) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the solid sprocket body. @@ -362,7 +364,7 @@ public SolidBodySprocket ReGenerateBodyInformation(XmlDocument dom) #### Parameters -`dom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`dom` XmlDocument The data xml of sprocket diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Sprocket.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Sprocket.md index 574a9dfa01..fe21a6f583 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Sprocket.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Sprocket.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Sprocket +# Namespace VM.Managed.DAFUL.Sprocket + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.StressStrainReport.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.StressStrainReport.md index d396806e7a..6ee97d592a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.StressStrainReport.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.StressStrainReport.md @@ -1,4 +1,5 @@ -# Enum StressStrainReport +# Enum StressStrainReport + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.StringValue.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.StringValue.md index 3397e96592..1b7f75151c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.StringValue.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.StringValue.md @@ -1,4 +1,5 @@ -# Class StringValue +# Class StringValue + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSP.dll @@ -11,12 +12,12 @@ public class StringValue : SubEntity, IObservableObject, IDisposableObject, ILin #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [StringValue](VM.Managed.DAFUL.StringValue.md) #### Implements @@ -26,7 +27,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -48,17 +49,17 @@ ITemplateObject #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -151,7 +152,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -190,7 +191,7 @@ public StringValue(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -204,7 +205,7 @@ protected bool m_bSkipToUpdateSymmetric #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Properties @@ -230,7 +231,7 @@ public bool FolderPath { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsInterface @@ -242,7 +243,7 @@ public bool IsInterface { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReferenceType @@ -254,7 +255,7 @@ public string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### StringVal @@ -266,7 +267,7 @@ public string StringVal { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -294,7 +295,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -308,7 +309,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SubSystem.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SubSystem.md index be663b25bc..dcd913df47 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SubSystem.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SubSystem.md @@ -1,4 +1,5 @@ -# Class SubSystem +# Class SubSystem + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,13 +12,13 @@ public class SubSystem : InstanceContainer, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← -InstanceContainer ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← +[InstanceContainer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs) ← [SubSystem](VM.Managed.DAFUL.SubSystem.md) #### Implements @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -58,46 +59,46 @@ IChainable #### Inherited Members -InstanceContainer.InitInterfaceTable\(\), -InstanceContainer.LinkRequestUpdate\(object, LinkEventArgs\), -InstanceContainer.BindInterface\(\), -InstanceContainer.BindInterface\(ObjectBase, ObjectBase\), -InstanceContainer.BindInterface\(InstanceContainer.InterfaceTable\), -InstanceContainer.Find\(string\), -InstanceContainer.FindLocal\(string\), -InstanceContainer.GetNewEntityName\(string\), -InstanceContainer.GetNewEntityName\(string, bool, int\), -InstanceContainer.GetNewEntityName\(string, bool, int, int\), -InstanceContainer.GetUnnamedObjectName\(object\), -InstanceContainer.MakeReferenceImpl\(LinkedList\), -InstanceContainer.PostOpenDocumentAfterHookEvent\(\), -InstanceContainer.TransformImpl\(TMatrix\), -InstanceContainer.Redraw\(\), -InstanceContainer.GetLayerImpl\(\), -InstanceContainer.SetLayerImpl\(Layer\), -InstanceContainer.IsDestroyContainer\(\), -InstanceContainer.GetTargetListForUpdate\(\), -InstanceContainer.ProcessDuplicateReferenceImpl\(Reference\), -InstanceContainer.PostAddToDocument\(\), -InstanceContainer.LinkRequestDestroy\(object, LinkEventArgs\), -InstanceContainer.GetChildListImpl\(\), -InstanceContainer.OnDeserialization\(object\), -InstanceContainer.Instance, -InstanceContainer.InterfaceTableList, -InstanceContainer.InterfaceTables, -InstanceContainer.Layer, -InstanceContainer.IsVisible, -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[InstanceContainer.InitInterfaceTable\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.BindInterface\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.BindInterface\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.BindInterface\(InstanceContainer.InterfaceTable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.Find\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetNewEntityName\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetNewEntityName\(string, bool, int\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetNewEntityName\(string, bool, int, int\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.PostOpenDocumentAfterHookEvent\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.TransformImpl\(TMatrix\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.Redraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.IsDestroyContainer\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.ProcessDuplicateReferenceImpl\(Reference\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.GetChildListImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.Instance](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.InterfaceTableList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.InterfaceTables](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[InstanceContainer.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InstanceContainer.cs), +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -190,7 +191,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -229,7 +230,7 @@ public SubSystem(string strName, Instance instanceSubSystem) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the sub system. @@ -247,11 +248,11 @@ public SubSystem(string strName, string strSubSystemFilePath, TransformBase tran #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the sub system. -`strSubSystemFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSubSystemFilePath` string The sub system file path. @@ -281,7 +282,7 @@ The [to object]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -305,7 +306,7 @@ The [to object]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -325,7 +326,7 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -347,7 +348,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -405,7 +406,7 @@ The target. The tool. -`lstNames` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstNames` List The LST names. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SubSystemAssembly.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SubSystemAssembly.md index c17ba36f43..ebcf9fdd14 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SubSystemAssembly.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SubSystemAssembly.md @@ -1,4 +1,5 @@ -# Class SubSystemAssembly +# Class SubSystemAssembly + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class SubSystemAssembly : Assembly, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Assembly ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer #### Inherited Members @@ -139,7 +140,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -170,11 +171,11 @@ protected SubSystemAssembly(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SubSystemDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SubSystemDocument.md index 30a89dd7ee..c21597ab2b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SubSystemDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SubSystemDocument.md @@ -1,4 +1,5 @@ -# Class SubSystemDocument +# Class SubSystemDocument + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class SubSystemDocument : DocumentAnalysis, IObservableObject, IDisposabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← @@ -35,7 +36,7 @@ ILinkContainerEvent, IVerifiable, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), ITemplateDocument, ITreatValidObject, ISubSystemDocument, @@ -191,8 +192,6 @@ Document3D.EraseAllDisplayObject\(\), Document3D.ImportCADBody\(BuilderImport\[\]\), Document3D.ReAssemblyCore\(\), Document3D.ReAssemblyImpl\(ObjectBase\), -Document3D.StartCADImportLog\(string\), -Document3D.EndCADImportLog\(\), Document3D.ClearDocument\(\), Document3D.SkipDelete\(ObjectBase\), Document3D.RepairImpl\(\), @@ -203,9 +202,9 @@ Document3D.GetBodies\(ref List\), Document3D.CheckBeforeSave\(\), Document3D.LinkRequestUpdate\(object, LinkEventArgs\), Document3D.FindBodyFromCADBody\(ObjectBase\), -Document3D.ExportCADBody\(string, List, string, string\), +Document3D.ExportCADBody\(string, List, string, string, string, string, string\), Document3D.ExportCADBody\(string, List, string\), -Document3D.ExportCADFile\(string, string, string\), +Document3D.ExportCADFile\(string, string, string, string, string, string\), Document3D.GetBodyAndTransformation\(ref List\), Document3D.SkipShowHide\(ObjectBase\), Document3D.WriteMessageForShowHide\(\), @@ -219,12 +218,9 @@ Document3D.ChildAdd\(ObjectBase, string\), Document3D.ChildRemove\(ObjectBase, string\), Document3D.ChildUpdate\(ObjectBase, string\), Document3D.ChildRename\(ObjectBase, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, Document3D.CadImportUnitType\), -Document3D.LoadCADFile\(string, Color, Document3D.CadImportResultType\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string\), -Document3D.LoadCADFile\(string, Document3D.CadImportResultType\), -Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, ref BuilderImport\[\]\), +Document3D.LoadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string\), +Document3D.LoadCADFile\(string, Document3D.CadImportResultType, string, string, string, string\), +Document3D.PreloadCADFile\(string, Document3D.CadImportColorType, Color, Document3D.CadImportResultType, Document3D.CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\), Document3D.SetSelectionObject\(List\), Document3D.ExistUnderCursor\(\), Document3D.ActiveObject\(List\), @@ -502,7 +498,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -533,7 +529,7 @@ public SubSystemDocument(UIntPtr docCore) #### Parameters -`docCore` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`docCore` UIntPtr The document handle. @@ -549,7 +545,7 @@ protected virtual bool ApplyInitialVelocityImpl { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ChangeNewFilePath @@ -562,7 +558,7 @@ public string ChangeNewFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ChangeNewFilePaths @@ -574,7 +570,7 @@ public List ChangeNewFilePaths { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### ChangeOldFilePath @@ -587,7 +583,7 @@ public string ChangeOldFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ChangeOldFilePaths @@ -599,7 +595,7 @@ public List ChangeOldFilePaths { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### DocumentSessionOverride @@ -623,7 +619,7 @@ protected override List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### InitialVelocityImpl @@ -635,7 +631,7 @@ protected virtual double InitialVelocityImpl { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Interfaces @@ -647,7 +643,7 @@ protected virtual InterfaceManager Interfaces { get; } #### Property Value - InterfaceManager + [InterfaceManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/InterfaceManager.cs) ### SetDocumentSessionOverride @@ -671,7 +667,7 @@ protected virtual bool SkipBindInterfaceWhenOpen { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TemplateXmlVersion @@ -683,7 +679,7 @@ public string TemplateXmlVersion { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -697,7 +693,7 @@ public override string CheckMassPropForCADImport() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ClearDocument\(\) @@ -751,13 +747,13 @@ public override string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The fullname of type. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The category. @@ -793,7 +789,7 @@ public override void GetCADBodyNameAttribute(ref List lstName) #### Parameters -`lstName` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstName` List The output CAD body name attributes. @@ -807,7 +803,7 @@ public override List GetImportCADBody() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### GetReferDocument\(ref List\) @@ -819,7 +815,7 @@ public override void GetReferDocument(ref List lstDocument) #### Parameters -`lstDocument` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstDocument` List The refer document container. @@ -837,11 +833,11 @@ public override void GetReference(ObjectBase obSub, ref List lstRef, The sub system object. -`lstRef` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstRef` List The reference container. -`lstOther` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) +`lstOther` List The other container for assembled body. @@ -859,21 +855,21 @@ public Dictionary> GetRemovedConnectorForChangeAssembl Type of the assembly. -`strTargetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strTargetName` string The target name. -`oldAssemblyPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`oldAssemblyPath` string The old assembly path. -`lstNewAssemblyPath` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstNewAssemblyPath` List The new assembly path list. #### Returns - [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [SortedSet](https://learn.microsoft.com/dotnet/api/system.collections.generic.sortedset\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\>\> + Dictionary\> ### GetSimulationConfigurationType\(\) @@ -885,7 +881,7 @@ public override string GetSimulationConfigurationType() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The type of the simulation configuration. @@ -921,7 +917,7 @@ public TMatrix GetTransformationOfGlobal(ObjectBase ob, string strSubsystemName) The object. -`strSubsystemName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSubsystemName` string The subsystem name. @@ -961,7 +957,7 @@ public static void InitializeCategoryInfo(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string The category name. @@ -991,7 +987,7 @@ protected override void LoadTemplateBasedXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -1005,11 +1001,11 @@ protected void LoadTemplateBasedXml(XmlReader reader, bool bAssembly) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. -`bAssembly` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bAssembly` bool if set to true [assembly]. @@ -1023,7 +1019,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -1037,7 +1033,7 @@ protected override void OnPostMakeDocumentImpl(DocCreateAnalysisInfo info) #### Parameters -`info` DocCreateAnalysisInfo +`info` [DocCreateAnalysisInfo](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/DocCreate3DInfo.cs) The [analysis document create information]. @@ -1055,13 +1051,13 @@ public bool PossibleDifferentUnit(SubSystemDocument document, out string strImpo The document to import. -`strImportedDoc` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strImportedDoc` string The imported document type name. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PossibleDifferentUnit\(out string\) @@ -1073,13 +1069,13 @@ public bool PossibleDifferentUnit(out string strSimulatedDoc) #### Parameters -`strSimulatedDoc` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSimulatedDoc` string The simulated document type name. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PossibleToImport\(SubSystemDocument, out string, out string\) @@ -1095,17 +1091,17 @@ public virtual bool PossibleToImport(SubSystemDocument document, out string strD The document to import. -`strDocBase` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDocBase` string The base document type name. -`strDocNew` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDocNew` string The new document type name. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PostOpenDocument\(\) @@ -1137,15 +1133,15 @@ public void ReAssembleForChangeAssembly(ChangeAssemblyType assmType, string strT Type of the assembly. -`strTargetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strTargetName` string The target name. -`oldAssemblyPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`oldAssemblyPath` string The old assembly path. -`lstNewAssemblyPath` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstNewAssemblyPath` List The new assembly path list. @@ -1165,7 +1161,7 @@ The object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -1195,7 +1191,7 @@ protected override void RenameEntityImpl(string strOldName, ObjectBase namedObj) #### Parameters -`strOldName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOldName` string The old name. @@ -1227,7 +1223,7 @@ protected override void SaveTemplateBasedXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. @@ -1241,11 +1237,11 @@ protected void SaveTemplateBasedXml(XmlWriter writer, bool bAssembly) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. -`bAssembly` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bAssembly` bool if set to true [assembly]. @@ -1265,7 +1261,7 @@ The obj. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SkipObjectInWriting\(ObjectBase\) @@ -1283,7 +1279,7 @@ The obj. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SkipShowHide\(ObjectBase\) @@ -1301,7 +1297,7 @@ The obj. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### WriteMessageForShowHide\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SurfaceSmoothing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SurfaceSmoothing.md index 2709e74887..a7ba75da50 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SurfaceSmoothing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SurfaceSmoothing.md @@ -1,4 +1,5 @@ -# Enum SurfaceSmoothing +# Enum SurfaceSmoothing + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SurfaceWithCurvesets.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SurfaceWithCurvesets.md index 44ddef51f8..39004512cb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SurfaceWithCurvesets.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SurfaceWithCurvesets.md @@ -1,4 +1,5 @@ -# Class SurfaceWithCurvesets +# Class SurfaceWithCurvesets + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDBallPlacing.dll @@ -11,14 +12,14 @@ public class SurfaceWithCurvesets : Entity, IObser #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [SurfaceWithCurvesets](VM.Managed.DAFUL.SurfaceWithCurvesets.md) #### Implements @@ -28,7 +29,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -61,34 +62,34 @@ IHasBody #### Inherited Members -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -187,7 +188,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -228,7 +229,7 @@ public ExpressionValueVariable CuttingPlaneRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### EndCurveset @@ -240,7 +241,7 @@ public SetCurveForEdges EndCurveset { get; set; } #### Property Value - SetCurveForEdges + [SetCurveForEdges](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SetCurveForEdges.cs) ### Faceset @@ -252,7 +253,7 @@ public SetFace Faceset { get; set; } #### Property Value - SetFace + [SetFace](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SetFace.cs) ### HasLayerExplicitly @@ -264,7 +265,7 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Hide @@ -276,7 +277,7 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsNormalDirectionUp @@ -288,7 +289,7 @@ public bool IsNormalDirectionUp { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MaxPen @@ -300,7 +301,7 @@ public ExpressionValueVariable MaxPen { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### NumberOfSlice @@ -312,7 +313,7 @@ public ExpressionValueVariable NumberOfSlice { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### NumberOfSliceBetweenCurve @@ -324,7 +325,7 @@ public ExpressionValueVariable NumberOfSliceBetweenCurve { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Offset @@ -336,7 +337,7 @@ public ExpressionValueVariable Offset { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Path @@ -348,7 +349,7 @@ public List Path { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### SliceInfos @@ -372,7 +373,7 @@ public SetCurveForEdges StartCurveset { get; set; } #### Property Value - SetCurveForEdges + [SetCurveForEdges](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SetCurveForEdges.cs) ## Methods @@ -386,7 +387,7 @@ public List GetCurvesetsPoint() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List The curveset point list. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SwitchableBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SwitchableBody.md index fd9c8ce94b..63ccb21e52 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SwitchableBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.SwitchableBody.md @@ -1,4 +1,5 @@ -# Class SwitchableBody +# Class SwitchableBody + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,12 +12,12 @@ public class SwitchableBody : SubEntity, IObservableObject, IDisposableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [SwitchableBody](VM.Managed.DAFUL.SwitchableBody.md) #### Implements @@ -26,7 +27,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -56,17 +57,17 @@ IMultiChangable #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -159,7 +160,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -198,7 +199,7 @@ public SwitchableBody(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -226,7 +227,7 @@ public string ActiveConnectableObjectName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ArgumentType @@ -274,7 +275,7 @@ public string ConnectableFullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ConnectableName @@ -286,7 +287,7 @@ public string ConnectableName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ConnectableObjectNames @@ -298,7 +299,7 @@ public string[] ConnectableObjectNames { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### ConnectablePosition @@ -322,7 +323,7 @@ public string ConnectablePostfixName { set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Connectors @@ -346,7 +347,7 @@ public NamedObjectDictionary Markers { get; set; } #### Property Value - NamedObjectDictionary<[Marker](VM.Managed.DAFUL.Marker.md)\> + [NamedObjectDictionary](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/NamedObjectDictionary.cs)<[Marker](VM.Managed.DAFUL.Marker.md)\> ### ParentType @@ -382,7 +383,7 @@ public string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SymmetricManagers @@ -394,7 +395,7 @@ public NamedObjectDictionary SymmetricManagers { get; set; } #### Property Value - NamedObjectDictionary + [NamedObjectDictionary](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/NamedObjectDictionary.cs)<[SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SymmetricManager.cs)\> ## Methods @@ -428,7 +429,7 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -442,21 +443,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -484,7 +485,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -502,7 +503,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -522,5 +523,5 @@ The connectable object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.Convection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.Convection.md index d528316770..908ebd297d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.Convection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.Convection.md @@ -1,4 +1,5 @@ -# Class Convection +# Class Convection + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMDThermal.dll @@ -11,16 +12,16 @@ public class Convection : ConvectionBase, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -ThermalBase ← -ConvectionBase ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[ThermalBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs) ← +[ConvectionBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ConvectionBase.cs) ← [Convection](VM.Managed.DAFUL.Thermal.Convection.md) #### Implements @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -60,51 +61,51 @@ IEntityRelation #### Inherited Members -ConvectionBase.Initialize\(Unit.ConvertFactor\), -ConvectionBase.ReplaceEntityImpl\(ObjectBase\), -ConvectionBase.TargetObject, -ConvectionBase.ConvectionComponent, -ConvectionBase.\_ConvectionComponent, -ThermalBase.Initialize\(Unit.ConvertFactor\), -ThermalBase.GetUnnamedObjectName\(object\), -ThermalBase.FindLocal\(string\), -ThermalBase.ReplaceEntityImpl\(ObjectBase\), -ThermalBase.Draw\(Canvas\), -ThermalBase.ReDraw\(\), -ThermalBase.TemperatureFiltering\(object, FilterArgs\), -ThermalBase.HeatGenerationFiltering\(object, FilterArgs\), -ThermalBase.ThermalContactFiltering\(object, FilterArgs\), -ThermalBase.TargetObject, -ThermalBase.HasLayerExplicitly, -ThermalBase.Hide, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[ConvectionBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ConvectionBase.cs), +[ConvectionBase.ReplaceEntityImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ConvectionBase.cs), +[ConvectionBase.TargetObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ConvectionBase.cs), +[ConvectionBase.ConvectionComponent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ConvectionBase.cs), +[ConvectionBase.\_ConvectionComponent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ConvectionBase.cs), +[ThermalBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.ReplaceEntityImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.TemperatureFiltering\(object, FilterArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.HeatGenerationFiltering\(object, FilterArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.ThermalContactFiltering\(object, FilterArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.TargetObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -203,7 +204,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -242,7 +243,7 @@ public Convection(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -258,13 +259,13 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ### GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\) @@ -276,21 +277,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlDocument for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ConvectionBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ConvectionBase-1.md index 51db83de33..4fadb0eb40 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ConvectionBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ConvectionBase-1.md @@ -1,4 +1,5 @@ -# Class ConvectionBase +# Class ConvectionBase + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll @@ -15,14 +16,14 @@ public abstract class ConvectionBase : ThermalBase, IObser #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [ThermalBase](VM.Managed.DAFUL.Thermal.ThermalBase\-1.md) ← [ConvectionBase](VM.Managed.DAFUL.Thermal.ConvectionBase\-1.md) @@ -33,7 +34,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -74,34 +75,34 @@ IHasReplaceableEntity [ThermalBase.TargetObject](VM.Managed.DAFUL.Thermal.ThermalBase\-1.md\#VM\_Managed\_DAFUL\_Thermal\_ThermalBase\_1\_TargetObject), [ThermalBase.HasLayerExplicitly](VM.Managed.DAFUL.Thermal.ThermalBase\-1.md\#VM\_Managed\_DAFUL\_Thermal\_ThermalBase\_1\_HasLayerExplicitly), [ThermalBase.Hide](VM.Managed.DAFUL.Thermal.ThermalBase\-1.md\#VM\_Managed\_DAFUL\_Thermal\_ThermalBase\_1\_Hide), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -200,7 +201,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -239,7 +240,7 @@ public ConvectionBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ConvectionCoefficientUnit.ConvectionCoefficient.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ConvectionCoefficientUnit.ConvectionCoefficient.md index bd4957be07..c3c6be93b8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ConvectionCoefficientUnit.ConvectionCoefficient.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ConvectionCoefficientUnit.ConvectionCoefficient.md @@ -1,4 +1,5 @@ -# Enum ConvectionCoefficientUnit.ConvectionCoefficient +# Enum ConvectionCoefficientUnit.ConvectionCoefficient + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ConvectionCoefficientUnit.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ConvectionCoefficientUnit.md index 08d33613b3..b8d102c2d9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ConvectionCoefficientUnit.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ConvectionCoefficientUnit.md @@ -1,4 +1,5 @@ -# Class ConvectionCoefficientUnit +# Class ConvectionCoefficientUnit + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll @@ -11,17 +12,17 @@ public class ConvectionCoefficientUnit : ThermalUnitBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -FunctionUnitBase ← +object ← +[FunctionUnitBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/FunctionUnit.cs) ← [ThermalUnitBase](VM.Managed.DAFUL.Thermal.ThermalUnitBase.md) ← [ConvectionCoefficientUnit](VM.Managed.DAFUL.Thermal.ConvectionCoefficientUnit.md) #### Inherited Members [ThermalUnitBase.SetModified\(\)](VM.Managed.DAFUL.Thermal.ThermalUnitBase.md\#VM\_Managed\_DAFUL\_Thermal\_ThermalUnitBase\_SetModified), -FunctionUnitBase.Scale, -FunctionUnitBase.Shift, -FunctionUnitBase.Factor +[FunctionUnitBase.Scale](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/FunctionUnit.cs), +[FunctionUnitBase.Shift](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/FunctionUnit.cs), +[FunctionUnitBase.Factor](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/FunctionUnit.cs) #### Extension Methods @@ -65,7 +66,7 @@ public override string Factor { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Scale @@ -77,7 +78,7 @@ public override double Scale { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UnitOfConvectionCoef diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.FunctionAndUnit.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.FunctionAndUnit.md index 173cea53b3..fb98940667 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.FunctionAndUnit.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.FunctionAndUnit.md @@ -1,4 +1,5 @@ -# Class FunctionAndUnit +# Class FunctionAndUnit + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll @@ -11,9 +12,9 @@ public class FunctionAndUnit : LinkContainer, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [FunctionAndUnit](VM.Managed.DAFUL.Thermal.FunctionAndUnit.md) @@ -76,7 +77,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -131,7 +132,7 @@ public Function Function { get; set; } #### Property Value - Function + [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) ### Unit @@ -157,7 +158,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatFlow.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatFlow.md index f59bd58605..ae461fd821 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatFlow.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatFlow.md @@ -1,4 +1,5 @@ -# Class HeatFlow +# Class HeatFlow + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMDThermal.dll @@ -11,16 +12,16 @@ public class HeatFlow : HeatFlowBase, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -ThermalBase ← -HeatFlowBase ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[ThermalBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs) ← +[HeatFlowBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/HeatFlowBase.cs) ← [HeatFlow](VM.Managed.DAFUL.Thermal.HeatFlow.md) #### Implements @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -60,51 +61,51 @@ IEntityRelation #### Inherited Members -HeatFlowBase.Initialize\(Unit.ConvertFactor\), -HeatFlowBase.ReplaceEntityImpl\(ObjectBase\), -HeatFlowBase.TargetObject, -HeatFlowBase.HeatFlowComponent, -HeatFlowBase.\_HeatFlowComponent, -ThermalBase.Initialize\(Unit.ConvertFactor\), -ThermalBase.GetUnnamedObjectName\(object\), -ThermalBase.FindLocal\(string\), -ThermalBase.ReplaceEntityImpl\(ObjectBase\), -ThermalBase.Draw\(Canvas\), -ThermalBase.ReDraw\(\), -ThermalBase.TemperatureFiltering\(object, FilterArgs\), -ThermalBase.HeatGenerationFiltering\(object, FilterArgs\), -ThermalBase.ThermalContactFiltering\(object, FilterArgs\), -ThermalBase.TargetObject, -ThermalBase.HasLayerExplicitly, -ThermalBase.Hide, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[HeatFlowBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/HeatFlowBase.cs), +[HeatFlowBase.ReplaceEntityImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/HeatFlowBase.cs), +[HeatFlowBase.TargetObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/HeatFlowBase.cs), +[HeatFlowBase.HeatFlowComponent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/HeatFlowBase.cs), +[HeatFlowBase.\_HeatFlowComponent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/HeatFlowBase.cs), +[ThermalBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.ReplaceEntityImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.TemperatureFiltering\(object, FilterArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.HeatGenerationFiltering\(object, FilterArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.ThermalContactFiltering\(object, FilterArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.TargetObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -203,7 +204,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -242,7 +243,7 @@ public HeatFlow(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -258,13 +259,13 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ### GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\) @@ -276,21 +277,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlDocument for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatFlowBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatFlowBase-1.md index 64d79cac58..8bf4626e4c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatFlowBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatFlowBase-1.md @@ -1,4 +1,5 @@ -# Class HeatFlowBase +# Class HeatFlowBase + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll @@ -15,14 +16,14 @@ public abstract class HeatFlowBase : ThermalBase, IObserva #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [ThermalBase](VM.Managed.DAFUL.Thermal.ThermalBase\-1.md) ← [HeatFlowBase](VM.Managed.DAFUL.Thermal.HeatFlowBase\-1.md) @@ -33,7 +34,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -74,34 +75,34 @@ IHasReplaceableEntity [ThermalBase.TargetObject](VM.Managed.DAFUL.Thermal.ThermalBase\-1.md\#VM\_Managed\_DAFUL\_Thermal\_ThermalBase\_1\_TargetObject), [ThermalBase.HasLayerExplicitly](VM.Managed.DAFUL.Thermal.ThermalBase\-1.md\#VM\_Managed\_DAFUL\_Thermal\_ThermalBase\_1\_HasLayerExplicitly), [ThermalBase.Hide](VM.Managed.DAFUL.Thermal.ThermalBase\-1.md\#VM\_Managed\_DAFUL\_Thermal\_ThermalBase\_1\_Hide), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -200,7 +201,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -239,7 +240,7 @@ public HeatFlowBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatFlowUnit.HeatFlow.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatFlowUnit.HeatFlow.md index 518a4033e7..41b12d55c5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatFlowUnit.HeatFlow.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatFlowUnit.HeatFlow.md @@ -1,4 +1,5 @@ -# Enum HeatFlowUnit.HeatFlow +# Enum HeatFlowUnit.HeatFlow + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatFlowUnit.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatFlowUnit.md index 4d48441a13..66b955d6ac 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatFlowUnit.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatFlowUnit.md @@ -1,4 +1,5 @@ -# Class HeatFlowUnit +# Class HeatFlowUnit + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll @@ -11,17 +12,17 @@ public class HeatFlowUnit : ThermalUnitBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -FunctionUnitBase ← +object ← +[FunctionUnitBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/FunctionUnit.cs) ← [ThermalUnitBase](VM.Managed.DAFUL.Thermal.ThermalUnitBase.md) ← [HeatFlowUnit](VM.Managed.DAFUL.Thermal.HeatFlowUnit.md) #### Inherited Members [ThermalUnitBase.SetModified\(\)](VM.Managed.DAFUL.Thermal.ThermalUnitBase.md\#VM\_Managed\_DAFUL\_Thermal\_ThermalUnitBase\_SetModified), -FunctionUnitBase.Scale, -FunctionUnitBase.Shift, -FunctionUnitBase.Factor +[FunctionUnitBase.Scale](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/FunctionUnit.cs), +[FunctionUnitBase.Shift](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/FunctionUnit.cs), +[FunctionUnitBase.Factor](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/FunctionUnit.cs) #### Extension Methods @@ -65,7 +66,7 @@ public override string Factor { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Scale @@ -77,7 +78,7 @@ public override double Scale { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UnitOfHeatFlow diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatFlux.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatFlux.md index 91140b9194..a7710c7af8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatFlux.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatFlux.md @@ -1,4 +1,5 @@ -# Class HeatFlux +# Class HeatFlux + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMDThermal.dll @@ -11,16 +12,16 @@ public class HeatFlux : HeatFluxBase, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -ThermalBase ← -HeatFluxBase ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[ThermalBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs) ← +[HeatFluxBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/HeatFluxBase.cs) ← [HeatFlux](VM.Managed.DAFUL.Thermal.HeatFlux.md) #### Implements @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -60,51 +61,51 @@ IEntityRelation #### Inherited Members -HeatFluxBase.Initialize\(Unit.ConvertFactor\), -HeatFluxBase.ReplaceEntityImpl\(ObjectBase\), -HeatFluxBase.TargetObject, -HeatFluxBase.HeatFluxComponent, -HeatFluxBase.\_HeatFluxComponent, -ThermalBase.Initialize\(Unit.ConvertFactor\), -ThermalBase.GetUnnamedObjectName\(object\), -ThermalBase.FindLocal\(string\), -ThermalBase.ReplaceEntityImpl\(ObjectBase\), -ThermalBase.Draw\(Canvas\), -ThermalBase.ReDraw\(\), -ThermalBase.TemperatureFiltering\(object, FilterArgs\), -ThermalBase.HeatGenerationFiltering\(object, FilterArgs\), -ThermalBase.ThermalContactFiltering\(object, FilterArgs\), -ThermalBase.TargetObject, -ThermalBase.HasLayerExplicitly, -ThermalBase.Hide, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[HeatFluxBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/HeatFluxBase.cs), +[HeatFluxBase.ReplaceEntityImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/HeatFluxBase.cs), +[HeatFluxBase.TargetObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/HeatFluxBase.cs), +[HeatFluxBase.HeatFluxComponent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/HeatFluxBase.cs), +[HeatFluxBase.\_HeatFluxComponent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/HeatFluxBase.cs), +[ThermalBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.ReplaceEntityImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.TemperatureFiltering\(object, FilterArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.HeatGenerationFiltering\(object, FilterArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.ThermalContactFiltering\(object, FilterArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.TargetObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -203,7 +204,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -242,7 +243,7 @@ public HeatFlux(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -258,13 +259,13 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ### GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\) @@ -276,21 +277,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlDocument for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatFluxBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatFluxBase-1.md index 32ad3650b5..380367e567 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatFluxBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatFluxBase-1.md @@ -1,4 +1,5 @@ -# Class HeatFluxBase +# Class HeatFluxBase + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll @@ -15,14 +16,14 @@ public abstract class HeatFluxBase : ThermalBase, IObserva #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [ThermalBase](VM.Managed.DAFUL.Thermal.ThermalBase\-1.md) ← [HeatFluxBase](VM.Managed.DAFUL.Thermal.HeatFluxBase\-1.md) @@ -33,7 +34,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -74,34 +75,34 @@ IHasReplaceableEntity [ThermalBase.TargetObject](VM.Managed.DAFUL.Thermal.ThermalBase\-1.md\#VM\_Managed\_DAFUL\_Thermal\_ThermalBase\_1\_TargetObject), [ThermalBase.HasLayerExplicitly](VM.Managed.DAFUL.Thermal.ThermalBase\-1.md\#VM\_Managed\_DAFUL\_Thermal\_ThermalBase\_1\_HasLayerExplicitly), [ThermalBase.Hide](VM.Managed.DAFUL.Thermal.ThermalBase\-1.md\#VM\_Managed\_DAFUL\_Thermal\_ThermalBase\_1\_Hide), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -200,7 +201,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -239,7 +240,7 @@ public HeatFluxBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatFluxUnit.HeatFlux.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatFluxUnit.HeatFlux.md index 5e2310583b..3e6812f8bd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatFluxUnit.HeatFlux.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatFluxUnit.HeatFlux.md @@ -1,4 +1,5 @@ -# Enum HeatFluxUnit.HeatFlux +# Enum HeatFluxUnit.HeatFlux + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatFluxUnit.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatFluxUnit.md index 7f8daf54b8..36836c4c6a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatFluxUnit.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatFluxUnit.md @@ -1,4 +1,5 @@ -# Class HeatFluxUnit +# Class HeatFluxUnit + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll @@ -11,17 +12,17 @@ public class HeatFluxUnit : ThermalUnitBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -FunctionUnitBase ← +object ← +[FunctionUnitBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/FunctionUnit.cs) ← [ThermalUnitBase](VM.Managed.DAFUL.Thermal.ThermalUnitBase.md) ← [HeatFluxUnit](VM.Managed.DAFUL.Thermal.HeatFluxUnit.md) #### Inherited Members [ThermalUnitBase.SetModified\(\)](VM.Managed.DAFUL.Thermal.ThermalUnitBase.md\#VM\_Managed\_DAFUL\_Thermal\_ThermalUnitBase\_SetModified), -FunctionUnitBase.Scale, -FunctionUnitBase.Shift, -FunctionUnitBase.Factor +[FunctionUnitBase.Scale](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/FunctionUnit.cs), +[FunctionUnitBase.Shift](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/FunctionUnit.cs), +[FunctionUnitBase.Factor](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/FunctionUnit.cs) #### Extension Methods @@ -65,7 +66,7 @@ public override string Factor { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Scale @@ -77,7 +78,7 @@ public override double Scale { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UnitOfHeatFlux diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatGeneration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatGeneration.md index 533e83dc8c..a397c71b04 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatGeneration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatGeneration.md @@ -1,4 +1,5 @@ -# Class HeatGeneration +# Class HeatGeneration + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMDThermal.dll @@ -11,16 +12,16 @@ public class HeatGeneration : HeatGenerationBase, IObser #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -ThermalBase ← -HeatGenerationBase ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[ThermalBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs) ← +[HeatGenerationBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/HeatGenerationBase.cs) ← [HeatGeneration](VM.Managed.DAFUL.Thermal.HeatGeneration.md) #### Implements @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -60,49 +61,49 @@ IEntityRelation #### Inherited Members -HeatGenerationBase.Initialize\(Unit.ConvertFactor\), -HeatGenerationBase.TargetObject, -HeatGenerationBase.HeatGenerationComponent, -ThermalBase.Initialize\(Unit.ConvertFactor\), -ThermalBase.GetUnnamedObjectName\(object\), -ThermalBase.FindLocal\(string\), -ThermalBase.ReplaceEntityImpl\(ObjectBase\), -ThermalBase.Draw\(Canvas\), -ThermalBase.ReDraw\(\), -ThermalBase.TemperatureFiltering\(object, FilterArgs\), -ThermalBase.HeatGenerationFiltering\(object, FilterArgs\), -ThermalBase.ThermalContactFiltering\(object, FilterArgs\), -ThermalBase.TargetObject, -ThermalBase.HasLayerExplicitly, -ThermalBase.Hide, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[HeatGenerationBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/HeatGenerationBase.cs), +[HeatGenerationBase.TargetObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/HeatGenerationBase.cs), +[HeatGenerationBase.HeatGenerationComponent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/HeatGenerationBase.cs), +[ThermalBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.ReplaceEntityImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.TemperatureFiltering\(object, FilterArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.HeatGenerationFiltering\(object, FilterArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.ThermalContactFiltering\(object, FilterArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.TargetObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -201,7 +202,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -240,7 +241,7 @@ public HeatGeneration(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -256,13 +257,13 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ### GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\) @@ -274,21 +275,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlDocument for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatGenerationBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatGenerationBase-1.md index be7944255c..4db316c905 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatGenerationBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatGenerationBase-1.md @@ -1,4 +1,5 @@ -# Class HeatGenerationBase +# Class HeatGenerationBase + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll @@ -15,14 +16,14 @@ public abstract class HeatGenerationBase : ThermalBase, IO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [ThermalBase](VM.Managed.DAFUL.Thermal.ThermalBase\-1.md) ← [HeatGenerationBase](VM.Managed.DAFUL.Thermal.HeatGenerationBase\-1.md) @@ -33,7 +34,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -74,34 +75,34 @@ IHasReplaceableEntity [ThermalBase.TargetObject](VM.Managed.DAFUL.Thermal.ThermalBase\-1.md\#VM\_Managed\_DAFUL\_Thermal\_ThermalBase\_1\_TargetObject), [ThermalBase.HasLayerExplicitly](VM.Managed.DAFUL.Thermal.ThermalBase\-1.md\#VM\_Managed\_DAFUL\_Thermal\_ThermalBase\_1\_HasLayerExplicitly), [ThermalBase.Hide](VM.Managed.DAFUL.Thermal.ThermalBase\-1.md\#VM\_Managed\_DAFUL\_Thermal\_ThermalBase\_1\_Hide), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -200,7 +201,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -239,7 +240,7 @@ public HeatGenerationBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatGenerationUnit.HeatGeneration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatGenerationUnit.HeatGeneration.md index 63d0610668..d3dc6b6995 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatGenerationUnit.HeatGeneration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatGenerationUnit.HeatGeneration.md @@ -1,4 +1,5 @@ -# Enum HeatGenerationUnit.HeatGeneration +# Enum HeatGenerationUnit.HeatGeneration + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatGenerationUnit.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatGenerationUnit.md index 496e5b2c31..43fc8d4405 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatGenerationUnit.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.HeatGenerationUnit.md @@ -1,4 +1,5 @@ -# Class HeatGenerationUnit +# Class HeatGenerationUnit + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll @@ -11,17 +12,17 @@ public class HeatGenerationUnit : ThermalUnitBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -FunctionUnitBase ← +object ← +[FunctionUnitBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/FunctionUnit.cs) ← [ThermalUnitBase](VM.Managed.DAFUL.Thermal.ThermalUnitBase.md) ← [HeatGenerationUnit](VM.Managed.DAFUL.Thermal.HeatGenerationUnit.md) #### Inherited Members [ThermalUnitBase.SetModified\(\)](VM.Managed.DAFUL.Thermal.ThermalUnitBase.md\#VM\_Managed\_DAFUL\_Thermal\_ThermalUnitBase\_SetModified), -FunctionUnitBase.Scale, -FunctionUnitBase.Shift, -FunctionUnitBase.Factor +[FunctionUnitBase.Scale](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/FunctionUnit.cs), +[FunctionUnitBase.Shift](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/FunctionUnit.cs), +[FunctionUnitBase.Factor](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/FunctionUnit.cs) #### Extension Methods @@ -65,7 +66,7 @@ public override string Factor { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Scale @@ -77,7 +78,7 @@ public override double Scale { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UnitOfHeatGeneration diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.IHasDFTHFile.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.IHasDFTHFile.md index 770da01900..75805a1e91 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.IHasDFTHFile.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.IHasDFTHFile.md @@ -1,4 +1,5 @@ -# Interface IHasDFTHFile +# Interface IHasDFTHFile + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll @@ -27,5 +28,5 @@ string DFTHRelativeFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyConvection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyConvection.md index d68954c109..bd1f54ba90 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyConvection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyConvection.md @@ -1,4 +1,5 @@ -# Class PropertyConvection +# Class PropertyConvection + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMDThermal.dll @@ -11,15 +12,15 @@ public class PropertyConvection : PropertyConvectionBase, IObservableObject, IDi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyThermalBase ← -PropertyConvectionBase ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyThermalBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs) ← +[PropertyConvectionBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ConvectionBase.cs) ← [PropertyConvection](VM.Managed.DAFUL.Thermal.PropertyConvection.md) #### Implements @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -42,16 +43,16 @@ IHasID #### Inherited Members -PropertyConvectionBase.Initialize\(Unit.ConvertFactor\), -PropertyConvectionBase.Matrix, -PropertyThermalBase.Initialize\(Unit.ConvertFactor\), -PropertyThermalBase.Function, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyConvectionBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ConvectionBase.cs), +[PropertyConvectionBase.Matrix](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ConvectionBase.cs), +[PropertyThermalBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[PropertyThermalBase.Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -150,7 +151,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyConvectionBase.ConvectionMatrix.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyConvectionBase.ConvectionMatrix.md index 86ed264679..7d56ba39a0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyConvectionBase.ConvectionMatrix.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyConvectionBase.ConvectionMatrix.md @@ -1,4 +1,5 @@ -# Enum PropertyConvectionBase.ConvectionMatrix +# Enum PropertyConvectionBase.ConvectionMatrix + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyConvectionBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyConvectionBase.md index 49ee909370..14ddf2e149 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyConvectionBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyConvectionBase.md @@ -1,4 +1,5 @@ -# Class PropertyConvectionBase +# Class PropertyConvectionBase + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll @@ -11,13 +12,13 @@ public abstract class PropertyConvectionBase : PropertyThermalBase, IObservableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyThermalBase](VM.Managed.DAFUL.Thermal.PropertyThermalBase.md) ← [PropertyConvectionBase](VM.Managed.DAFUL.Thermal.PropertyConvectionBase.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -43,12 +44,12 @@ IHasID [PropertyThermalBase.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.Thermal.PropertyThermalBase.md\#VM\_Managed\_DAFUL\_Thermal\_PropertyThermalBase\_Initialize\_VM\_Unit\_ConvertFactor\_), [PropertyThermalBase.Function](VM.Managed.DAFUL.Thermal.PropertyThermalBase.md\#VM\_Managed\_DAFUL\_Thermal\_PropertyThermalBase\_Function), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -147,7 +148,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyHeatFlow.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyHeatFlow.md index 5cd8d448ea..a979a3ce55 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyHeatFlow.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyHeatFlow.md @@ -1,4 +1,5 @@ -# Class PropertyHeatFlow +# Class PropertyHeatFlow + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMDThermal.dll @@ -11,15 +12,15 @@ public class PropertyHeatFlow : PropertyHeatFlowBase, IObservableObject, IDispos #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyThermalBase ← -PropertyHeatFlowBase ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyThermalBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs) ← +[PropertyHeatFlowBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/HeatFlowBase.cs) ← [PropertyHeatFlow](VM.Managed.DAFUL.Thermal.PropertyHeatFlow.md) #### Implements @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -42,15 +43,15 @@ IHasID #### Inherited Members -PropertyHeatFlowBase.Initialize\(Unit.ConvertFactor\), -PropertyThermalBase.Initialize\(Unit.ConvertFactor\), -PropertyThermalBase.Function, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyHeatFlowBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/HeatFlowBase.cs), +[PropertyThermalBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[PropertyThermalBase.Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -149,7 +150,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyHeatFlowBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyHeatFlowBase.md index cdc7b2428a..63782e9a03 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyHeatFlowBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyHeatFlowBase.md @@ -1,4 +1,5 @@ -# Class PropertyHeatFlowBase +# Class PropertyHeatFlowBase + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll @@ -11,13 +12,13 @@ public abstract class PropertyHeatFlowBase : PropertyThermalBase, IObservableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyThermalBase](VM.Managed.DAFUL.Thermal.PropertyThermalBase.md) ← [PropertyHeatFlowBase](VM.Managed.DAFUL.Thermal.PropertyHeatFlowBase.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -43,12 +44,12 @@ IHasID [PropertyThermalBase.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.Thermal.PropertyThermalBase.md\#VM\_Managed\_DAFUL\_Thermal\_PropertyThermalBase\_Initialize\_VM\_Unit\_ConvertFactor\_), [PropertyThermalBase.Function](VM.Managed.DAFUL.Thermal.PropertyThermalBase.md\#VM\_Managed\_DAFUL\_Thermal\_PropertyThermalBase\_Function), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -147,7 +148,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyHeatFlux.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyHeatFlux.md index ebe23e5b2b..7a680284bc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyHeatFlux.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyHeatFlux.md @@ -1,4 +1,5 @@ -# Class PropertyHeatFlux +# Class PropertyHeatFlux + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMDThermal.dll @@ -11,15 +12,15 @@ public class PropertyHeatFlux : PropertyHeatFluxBase, IObservableObject, IDispos #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyThermalBase ← -PropertyHeatFluxBase ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyThermalBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs) ← +[PropertyHeatFluxBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/HeatFluxBase.cs) ← [PropertyHeatFlux](VM.Managed.DAFUL.Thermal.PropertyHeatFlux.md) #### Implements @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -42,15 +43,15 @@ IHasID #### Inherited Members -PropertyHeatFluxBase.Initialize\(Unit.ConvertFactor\), -PropertyThermalBase.Initialize\(Unit.ConvertFactor\), -PropertyThermalBase.Function, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyHeatFluxBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/HeatFluxBase.cs), +[PropertyThermalBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[PropertyThermalBase.Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -149,7 +150,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyHeatFluxBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyHeatFluxBase.md index 29867ee186..1d12af2285 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyHeatFluxBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyHeatFluxBase.md @@ -1,4 +1,5 @@ -# Class PropertyHeatFluxBase +# Class PropertyHeatFluxBase + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll @@ -11,13 +12,13 @@ public abstract class PropertyHeatFluxBase : PropertyThermalBase, IObservableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyThermalBase](VM.Managed.DAFUL.Thermal.PropertyThermalBase.md) ← [PropertyHeatFluxBase](VM.Managed.DAFUL.Thermal.PropertyHeatFluxBase.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -43,12 +44,12 @@ IHasID [PropertyThermalBase.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.Thermal.PropertyThermalBase.md\#VM\_Managed\_DAFUL\_Thermal\_PropertyThermalBase\_Initialize\_VM\_Unit\_ConvertFactor\_), [PropertyThermalBase.Function](VM.Managed.DAFUL.Thermal.PropertyThermalBase.md\#VM\_Managed\_DAFUL\_Thermal\_PropertyThermalBase\_Function), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -147,7 +148,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyHeatGeneration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyHeatGeneration.md index 90b0309146..8acae38e57 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyHeatGeneration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyHeatGeneration.md @@ -1,4 +1,5 @@ -# Class PropertyHeatGeneration +# Class PropertyHeatGeneration + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMDThermal.dll @@ -11,15 +12,15 @@ public class PropertyHeatGeneration : PropertyHeatGenerationBase, IObservableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyThermalBase ← -PropertyHeatGenerationBase ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyThermalBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs) ← +[PropertyHeatGenerationBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/HeatGenerationBase.cs) ← [PropertyHeatGeneration](VM.Managed.DAFUL.Thermal.PropertyHeatGeneration.md) #### Implements @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -42,15 +43,15 @@ IHasID #### Inherited Members -PropertyHeatGenerationBase.Initialize\(Unit.ConvertFactor\), -PropertyThermalBase.Initialize\(Unit.ConvertFactor\), -PropertyThermalBase.Function, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyHeatGenerationBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/HeatGenerationBase.cs), +[PropertyThermalBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[PropertyThermalBase.Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -149,7 +150,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyHeatGenerationBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyHeatGenerationBase.md index e7bfa05493..4f3645dfaf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyHeatGenerationBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyHeatGenerationBase.md @@ -1,4 +1,5 @@ -# Class PropertyHeatGenerationBase +# Class PropertyHeatGenerationBase + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll @@ -11,13 +12,13 @@ public abstract class PropertyHeatGenerationBase : PropertyThermalBase, IObserva #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyThermalBase](VM.Managed.DAFUL.Thermal.PropertyThermalBase.md) ← [PropertyHeatGenerationBase](VM.Managed.DAFUL.Thermal.PropertyHeatGenerationBase.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -43,12 +44,12 @@ IHasID [PropertyThermalBase.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.Thermal.PropertyThermalBase.md\#VM\_Managed\_DAFUL\_Thermal\_PropertyThermalBase\_Initialize\_VM\_Unit\_ConvertFactor\_), [PropertyThermalBase.Function](VM.Managed.DAFUL.Thermal.PropertyThermalBase.md\#VM\_Managed\_DAFUL\_Thermal\_PropertyThermalBase\_Function), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -147,7 +148,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyTemperature.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyTemperature.md index 3e1b3ed3f2..8c712f231b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyTemperature.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyTemperature.md @@ -1,4 +1,5 @@ -# Class PropertyTemperature +# Class PropertyTemperature + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMDThermal.dll @@ -11,15 +12,15 @@ public class PropertyTemperature : PropertyTemperatureBase, IObservableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyThermalBase ← -PropertyTemperatureBase ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyThermalBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs) ← +[PropertyTemperatureBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/TemperatureBase.cs) ← [PropertyTemperature](VM.Managed.DAFUL.Thermal.PropertyTemperature.md) #### Implements @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -42,18 +43,18 @@ IHasID #### Inherited Members -PropertyTemperatureBase.Initialize\(Unit.ConvertFactor\), -PropertyTemperatureBase.TypeOfProperty, -PropertyTemperatureBase.DFTHRelativeFilePath, -PropertyTemperatureBase.UnitOfTemepratureFile, -PropertyThermalBase.Initialize\(Unit.ConvertFactor\), -PropertyThermalBase.Function, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyTemperatureBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/TemperatureBase.cs), +[PropertyTemperatureBase.TypeOfProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/TemperatureBase.cs), +[PropertyTemperatureBase.DFTHRelativeFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/TemperatureBase.cs), +[PropertyTemperatureBase.UnitOfTemepratureFile](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/TemperatureBase.cs), +[PropertyThermalBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[PropertyThermalBase.Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -152,7 +153,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyTemperatureBase.PropertyType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyTemperatureBase.PropertyType.md index bad8559c86..8a097f8a66 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyTemperatureBase.PropertyType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyTemperatureBase.PropertyType.md @@ -1,4 +1,5 @@ -# Enum PropertyTemperatureBase.PropertyType +# Enum PropertyTemperatureBase.PropertyType + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyTemperatureBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyTemperatureBase.md index 828f328d69..c73b822f78 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyTemperatureBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyTemperatureBase.md @@ -1,4 +1,5 @@ -# Class PropertyTemperatureBase +# Class PropertyTemperatureBase + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll @@ -11,13 +12,13 @@ public abstract class PropertyTemperatureBase : PropertyThermalBase, IObservable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyThermalBase](VM.Managed.DAFUL.Thermal.PropertyThermalBase.md) ← [PropertyTemperatureBase](VM.Managed.DAFUL.Thermal.PropertyTemperatureBase.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -43,12 +44,12 @@ IHasID [PropertyThermalBase.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.Thermal.PropertyThermalBase.md\#VM\_Managed\_DAFUL\_Thermal\_PropertyThermalBase\_Initialize\_VM\_Unit\_ConvertFactor\_), [PropertyThermalBase.Function](VM.Managed.DAFUL.Thermal.PropertyThermalBase.md\#VM\_Managed\_DAFUL\_Thermal\_PropertyThermalBase\_Function), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -147,7 +148,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -188,7 +189,7 @@ public string DFTHRelativeFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeOfProperty diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyThermalBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyThermalBase.md index b82a972148..9f2e122281 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyThermalBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyThermalBase.md @@ -1,4 +1,5 @@ -# Class PropertyThermalBase +# Class PropertyThermalBase + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll @@ -11,13 +12,13 @@ public class PropertyThermalBase : Property, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyThermalBase](VM.Managed.DAFUL.Thermal.PropertyThermalBase.md) #### Derived @@ -40,7 +41,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -49,12 +50,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -153,7 +154,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyThermalContact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyThermalContact.md index 4a71492eba..b581909618 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyThermalContact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyThermalContact.md @@ -1,4 +1,5 @@ -# Class PropertyThermalContact +# Class PropertyThermalContact + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMDThermal.dll @@ -11,15 +12,15 @@ public class PropertyThermalContact : PropertyThermalContactBase, IObservableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyThermalBase ← -PropertyThermalContactBase ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyThermalBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs) ← +[PropertyThermalContactBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalContactBase.cs) ← [PropertyThermalContact](VM.Managed.DAFUL.Thermal.PropertyThermalContact.md) #### Implements @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -42,15 +43,15 @@ IHasID #### Inherited Members -PropertyThermalContactBase.Initialize\(Unit.ConvertFactor\), -PropertyThermalBase.Initialize\(Unit.ConvertFactor\), -PropertyThermalBase.Function, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyThermalContactBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalContactBase.cs), +[PropertyThermalBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[PropertyThermalBase.Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -149,7 +150,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyThermalContactBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyThermalContactBase.md index 857d43c070..4bf0d8c22a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyThermalContactBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.PropertyThermalContactBase.md @@ -1,4 +1,5 @@ -# Class PropertyThermalContactBase +# Class PropertyThermalContactBase + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll @@ -11,13 +12,13 @@ public abstract class PropertyThermalContactBase : PropertyThermalBase, IObserva #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyThermalBase](VM.Managed.DAFUL.Thermal.PropertyThermalBase.md) ← [PropertyThermalContactBase](VM.Managed.DAFUL.Thermal.PropertyThermalContactBase.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -43,12 +44,12 @@ IHasID [PropertyThermalBase.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.Thermal.PropertyThermalBase.md\#VM\_Managed\_DAFUL\_Thermal\_PropertyThermalBase\_Initialize\_VM\_Unit\_ConvertFactor\_), [PropertyThermalBase.Function](VM.Managed.DAFUL.Thermal.PropertyThermalBase.md\#VM\_Managed\_DAFUL\_Thermal\_PropertyThermalBase\_Function), -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -147,7 +148,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.Temperature.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.Temperature.md index f17c01b10a..e2cc857e5a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.Temperature.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.Temperature.md @@ -1,4 +1,5 @@ -# Class Temperature +# Class Temperature + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMDThermal.dll @@ -11,16 +12,16 @@ public class Temperature : TemperatureBase, IObservableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -ThermalBase ← -TemperatureBase ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[ThermalBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs) ← +[TemperatureBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/TemperatureBase.cs) ← [Temperature](VM.Managed.DAFUL.Thermal.Temperature.md) #### Implements @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -61,50 +62,50 @@ IEntityRelation #### Inherited Members -TemperatureBase.Initialize\(Unit.ConvertFactor\), -TemperatureBase.ReplaceEntityImpl\(ObjectBase\), -TemperatureBase.TargetObject, -TemperatureBase.TemperatureComponent, -ThermalBase.Initialize\(Unit.ConvertFactor\), -ThermalBase.GetUnnamedObjectName\(object\), -ThermalBase.FindLocal\(string\), -ThermalBase.ReplaceEntityImpl\(ObjectBase\), -ThermalBase.Draw\(Canvas\), -ThermalBase.ReDraw\(\), -ThermalBase.TemperatureFiltering\(object, FilterArgs\), -ThermalBase.HeatGenerationFiltering\(object, FilterArgs\), -ThermalBase.ThermalContactFiltering\(object, FilterArgs\), -ThermalBase.TargetObject, -ThermalBase.HasLayerExplicitly, -ThermalBase.Hide, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[TemperatureBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/TemperatureBase.cs), +[TemperatureBase.ReplaceEntityImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/TemperatureBase.cs), +[TemperatureBase.TargetObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/TemperatureBase.cs), +[TemperatureBase.TemperatureComponent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/TemperatureBase.cs), +[ThermalBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.ReplaceEntityImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.TemperatureFiltering\(object, FilterArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.HeatGenerationFiltering\(object, FilterArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.ThermalContactFiltering\(object, FilterArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.TargetObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -203,7 +204,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -242,7 +243,7 @@ public Temperature(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -258,13 +259,13 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ### GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\) @@ -276,21 +277,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlDocument for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.TemperatureBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.TemperatureBase-1.md index ccab36b2bc..cba0f474e2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.TemperatureBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.TemperatureBase-1.md @@ -1,4 +1,5 @@ -# Class TemperatureBase +# Class TemperatureBase + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll @@ -15,14 +16,14 @@ public abstract class TemperatureBase : ThermalBase, IObse #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [ThermalBase](VM.Managed.DAFUL.Thermal.ThermalBase\-1.md) ← [TemperatureBase](VM.Managed.DAFUL.Thermal.TemperatureBase\-1.md) @@ -33,7 +34,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -75,34 +76,34 @@ IHasReplaceableEntity, [ThermalBase.TargetObject](VM.Managed.DAFUL.Thermal.ThermalBase\-1.md\#VM\_Managed\_DAFUL\_Thermal\_ThermalBase\_1\_TargetObject), [ThermalBase.HasLayerExplicitly](VM.Managed.DAFUL.Thermal.ThermalBase\-1.md\#VM\_Managed\_DAFUL\_Thermal\_ThermalBase\_1\_HasLayerExplicitly), [ThermalBase.Hide](VM.Managed.DAFUL.Thermal.ThermalBase\-1.md\#VM\_Managed\_DAFUL\_Thermal\_ThermalBase\_1\_Hide), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -201,7 +202,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -240,7 +241,7 @@ public TemperatureBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.TemperatureUnit.Temperature.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.TemperatureUnit.Temperature.md index d0b7085d08..fd2084b7f9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.TemperatureUnit.Temperature.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.TemperatureUnit.Temperature.md @@ -1,4 +1,5 @@ -# Enum TemperatureUnit.Temperature +# Enum TemperatureUnit.Temperature + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.TemperatureUnit.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.TemperatureUnit.md index dad94906dc..256c01cf6f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.TemperatureUnit.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.TemperatureUnit.md @@ -1,4 +1,5 @@ -# Class TemperatureUnit +# Class TemperatureUnit + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll @@ -11,17 +12,17 @@ public class TemperatureUnit : ThermalUnitBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -FunctionUnitBase ← +object ← +[FunctionUnitBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/FunctionUnit.cs) ← [ThermalUnitBase](VM.Managed.DAFUL.Thermal.ThermalUnitBase.md) ← [TemperatureUnit](VM.Managed.DAFUL.Thermal.TemperatureUnit.md) #### Inherited Members [ThermalUnitBase.SetModified\(\)](VM.Managed.DAFUL.Thermal.ThermalUnitBase.md\#VM\_Managed\_DAFUL\_Thermal\_ThermalUnitBase\_SetModified), -FunctionUnitBase.Scale, -FunctionUnitBase.Shift, -FunctionUnitBase.Factor +[FunctionUnitBase.Scale](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/FunctionUnit.cs), +[FunctionUnitBase.Shift](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/FunctionUnit.cs), +[FunctionUnitBase.Factor](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/FunctionUnit.cs) #### Extension Methods @@ -65,7 +66,7 @@ public override string Factor { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Scale @@ -77,7 +78,7 @@ public override double Scale { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Shift @@ -89,7 +90,7 @@ public override double Shift { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UnitOfTemperature diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ThermalBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ThermalBase-1.md index 40b66d68e9..85553a8ce3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ThermalBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ThermalBase-1.md @@ -1,4 +1,5 @@ -# Class ThermalBase +# Class ThermalBase + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll @@ -17,14 +18,14 @@ The type of the property. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [ThermalBase](VM.Managed.DAFUL.Thermal.ThermalBase\-1.md) #### Implements @@ -34,7 +35,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -63,34 +64,34 @@ IHasReplaceableEntity #### Inherited Members -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -189,7 +190,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -228,7 +229,7 @@ public ThermalBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the mesh free force. @@ -244,7 +245,7 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Hide @@ -256,7 +257,7 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TargetObject @@ -282,7 +283,7 @@ public virtual void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -296,7 +297,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -316,13 +317,13 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The ob unnamed. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### HeatGenerationFiltering\(object, FilterArgs\) @@ -334,7 +335,7 @@ public static void HeatGenerationFiltering(object sender, FilterArgs args) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender @@ -388,7 +389,7 @@ public static void TemperatureFiltering(object sender, FilterArgs args) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender @@ -406,7 +407,7 @@ public static void ThermalContactFiltering(object sender, FilterArgs args) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ThermalContact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ThermalContact.md index 6109e1ed26..9d67f9e7f5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ThermalContact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ThermalContact.md @@ -1,4 +1,5 @@ -# Class ThermalContact +# Class ThermalContact + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMDThermal.dll @@ -11,16 +12,16 @@ public class ThermalContact : ThermalContactBase, IObser #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -ThermalBase ← -ThermalContactBase ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[ThermalBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs) ← +[ThermalContactBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalContactBase.cs) ← [ThermalContact](VM.Managed.DAFUL.Thermal.ThermalContact.md) #### Implements @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -61,51 +62,51 @@ IEntityRelation #### Inherited Members -ThermalContactBase.Initialize\(Unit.ConvertFactor\), -ThermalContactBase.ReplaceEntityImpl\(ObjectBase\), -ThermalContactBase.ChangeContactImpl\(ObjectBase, ObjectBase\), -ThermalContactBase.TargetObject, -ThermalContactBase.ThermalContactComponent, -ThermalBase.Initialize\(Unit.ConvertFactor\), -ThermalBase.GetUnnamedObjectName\(object\), -ThermalBase.FindLocal\(string\), -ThermalBase.ReplaceEntityImpl\(ObjectBase\), -ThermalBase.Draw\(Canvas\), -ThermalBase.ReDraw\(\), -ThermalBase.TemperatureFiltering\(object, FilterArgs\), -ThermalBase.HeatGenerationFiltering\(object, FilterArgs\), -ThermalBase.ThermalContactFiltering\(object, FilterArgs\), -ThermalBase.TargetObject, -ThermalBase.HasLayerExplicitly, -ThermalBase.Hide, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[ThermalContactBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalContactBase.cs), +[ThermalContactBase.ReplaceEntityImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalContactBase.cs), +[ThermalContactBase.ChangeContactImpl\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalContactBase.cs), +[ThermalContactBase.TargetObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalContactBase.cs), +[ThermalContactBase.ThermalContactComponent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalContactBase.cs), +[ThermalBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.ReplaceEntityImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.TemperatureFiltering\(object, FilterArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.HeatGenerationFiltering\(object, FilterArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.ThermalContactFiltering\(object, FilterArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.TargetObject](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[ThermalBase.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMThermalBase/ThermalFunction.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -204,7 +205,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -243,7 +244,7 @@ public ThermalContact(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -259,13 +260,13 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. #### Exceptions - [NotImplementedException](https://learn.microsoft.com/dotnet/api/system.notimplementedexception) + NotImplementedException ### GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\) @@ -277,21 +278,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlDocument for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ThermalContactBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ThermalContactBase-1.md index 284b40225e..921196eb42 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ThermalContactBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ThermalContactBase-1.md @@ -1,4 +1,5 @@ -# Class ThermalContactBase +# Class ThermalContactBase + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll @@ -15,14 +16,14 @@ public abstract class ThermalContactBase : ThermalBase, IO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [ThermalBase](VM.Managed.DAFUL.Thermal.ThermalBase\-1.md) ← [ThermalContactBase](VM.Managed.DAFUL.Thermal.ThermalContactBase\-1.md) @@ -33,7 +34,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -75,34 +76,34 @@ IThermalContactBase [ThermalBase.TargetObject](VM.Managed.DAFUL.Thermal.ThermalBase\-1.md\#VM\_Managed\_DAFUL\_Thermal\_ThermalBase\_1\_TargetObject), [ThermalBase.HasLayerExplicitly](VM.Managed.DAFUL.Thermal.ThermalBase\-1.md\#VM\_Managed\_DAFUL\_Thermal\_ThermalBase\_1\_HasLayerExplicitly), [ThermalBase.Hide](VM.Managed.DAFUL.Thermal.ThermalBase\-1.md\#VM\_Managed\_DAFUL\_Thermal\_ThermalBase\_1\_Hide), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -201,7 +202,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -240,7 +241,7 @@ public ThermalContactBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ThermalFunction.FunctionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ThermalFunction.FunctionType.md index 585fcfa948..b39e9d9aa2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ThermalFunction.FunctionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ThermalFunction.FunctionType.md @@ -1,4 +1,5 @@ -# Enum ThermalFunction.FunctionType +# Enum ThermalFunction.FunctionType + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ThermalFunction.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ThermalFunction.md index c6ca90eb31..897c5d4b15 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ThermalFunction.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ThermalFunction.md @@ -1,4 +1,5 @@ -# Class ThermalFunction +# Class ThermalFunction + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll @@ -11,9 +12,9 @@ public abstract class ThermalFunction : LinkContainer, IObservableObject, IDispo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ThermalFunction](VM.Managed.DAFUL.Thermal.ThermalFunction.md) @@ -80,7 +81,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ThermalStandard.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ThermalStandard.md index 2d37b554c5..42d2c751bf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ThermalStandard.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ThermalStandard.md @@ -1,4 +1,5 @@ -# Class ThermalStandard +# Class ThermalStandard + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll @@ -11,9 +12,9 @@ public sealed class ThermalStandard : ThermalFunction, IObservableObject, IDispo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ThermalFunction](VM.Managed.DAFUL.Thermal.ThermalFunction.md) ← [ThermalStandard](VM.Managed.DAFUL.Thermal.ThermalStandard.md) @@ -136,7 +137,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object

    The sender.

    diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ThermalUnitBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ThermalUnitBase.md index 59b052eade..713c99bb42 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ThermalUnitBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ThermalUnitBase.md @@ -1,4 +1,5 @@ -# Class ThermalUnitBase +# Class ThermalUnitBase + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll @@ -11,8 +12,8 @@ public abstract class ThermalUnitBase : FunctionUnitBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -FunctionUnitBase ← +object ← +[FunctionUnitBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/FunctionUnit.cs) ← [ThermalUnitBase](VM.Managed.DAFUL.Thermal.ThermalUnitBase.md) #### Derived @@ -25,9 +26,9 @@ FunctionUnitBase ← #### Inherited Members -FunctionUnitBase.Scale, -FunctionUnitBase.Shift, -FunctionUnitBase.Factor +[FunctionUnitBase.Scale](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/FunctionUnit.cs), +[FunctionUnitBase.Shift](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/FunctionUnit.cs), +[FunctionUnitBase.Factor](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/FunctionUnit.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ThermalUserSubroutine.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ThermalUserSubroutine.md index a6edafbf9b..aad74ddfb7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ThermalUserSubroutine.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.ThermalUserSubroutine.md @@ -1,4 +1,5 @@ -# Class ThermalUserSubroutine +# Class ThermalUserSubroutine + Namespace: [VM.Managed.DAFUL.Thermal](VM.Managed.DAFUL.Thermal.md) Assembly: VMThermalBase.dll @@ -11,9 +12,9 @@ public sealed class ThermalUserSubroutine : ThermalFunction, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ThermalFunction](VM.Managed.DAFUL.Thermal.ThermalFunction.md) ← [ThermalUserSubroutine](VM.Managed.DAFUL.Thermal.ThermalUserSubroutine.md) @@ -122,5 +123,5 @@ public UserSubroutine UserSubroutine { get; set; } #### Property Value - UserSubroutine + [UserSubroutine](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSP/UserSubroutine.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.md index 66bd65543e..4f4f0f9675 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Thermal.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Thermal +# Namespace VM.Managed.DAFUL.Thermal + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Car.Force.TireCar.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Car.Force.TireCar.md index a7483d7f46..87edfd2674 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Car.Force.TireCar.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Car.Force.TireCar.md @@ -1,4 +1,5 @@ -# Class TireCar +# Class TireCar + Namespace: [VM.Managed.DAFUL.Tire.Car.Force](VM.Managed.DAFUL.Tire.Car.Force.md) Assembly: VMDTireCar.dll @@ -11,17 +12,17 @@ public class TireCar : TireBase, IObservableObject, IDisposableObject, ILinkable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← -Force ← -TireBase ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← +[Force](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← +[TireBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/Tire.cs) ← [TireCar](VM.Managed.DAFUL.Tire.Car.Force.TireCar.md) #### Implements @@ -31,7 +32,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -71,80 +72,80 @@ ITemplateObject #### Inherited Members -TireBase.Initialize\(Unit.ConvertFactor\), -TireBase.LinkRequestUpdate\(object, LinkEventArgs\), -TireBase.LinkRequestDestroying\(object, LinkEventArgs\), -TireBase.FindLocal\(string\), -TireBase.GetUnnamedObjectName\(object\), -TireBase.WriteTemplateImpl\(XmlWriter\), -TireBase.ReadTemplateImpl\(XmlReader\), -TireBase.ReportTypeImpl, -TireBase.ActivePropertyFile, -TireBase.WheelBodyBase, -TireBase.CanSwitchImpl, -Force.Initialize\(Unit.ConvertFactor\), -Force.WriteMarker\(XmlWriter, Marker, string\), -Force.ReadMarker\(XmlReader, Marker, string\), -Force.UseForSimulationScenario, -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[TireBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/Tire.cs), +[TireBase.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/Tire.cs), +[TireBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/Tire.cs), +[TireBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/Tire.cs), +[TireBase.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/Tire.cs), +[TireBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/Tire.cs), +[TireBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/Tire.cs), +[TireBase.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/Tire.cs), +[TireBase.ActivePropertyFile](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/Tire.cs), +[TireBase.WheelBodyBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/Tire.cs), +[TireBase.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/Tire.cs), +[Force.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.WriteMarker\(XmlWriter, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.ReadMarker\(XmlReader, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.UseForSimulationScenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -243,7 +244,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -282,7 +283,7 @@ public TireCar(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the bush force. @@ -298,7 +299,7 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Car.Force.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Car.Force.md index a55ae5658a..b26d3ec0f9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Car.Force.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Car.Force.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Tire.Car.Force +# Namespace VM.Managed.DAFUL.Tire.Car.Force + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Car.WheelBodyCar.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Car.WheelBodyCar.md index b989f18dc4..097bd636dc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Car.WheelBodyCar.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Car.WheelBodyCar.md @@ -1,4 +1,5 @@ -# Class WheelBodyCar +# Class WheelBodyCar + Namespace: [VM.Managed.DAFUL.Tire.Car](VM.Managed.DAFUL.Tire.Car.md) Assembly: VMDTireCar.dll @@ -6,22 +7,22 @@ Assembly: VMDTireCar.dll This class is to represent the wheel body for car. ```csharp -public class WheelBodyCar : WheelBodyBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IMarkerCreatable, IFacesetCreatable, ICurvesetCreatable, IConnectableNotReference, IReferencable, IConnectableHasGeometry, IBody, IInterface, ITemplateObject, IHasBuilder, IDrawIcon, ITransformable, IGeometryContainer, IMassProp, IChainedSegmentConnector, IArgument, ITransparentable, IMFModalable, IBodyAnalysisType, IAutoContactable, ITemperatureComponent, IHeatGenerationComponent, IGeometricalComponent, IContactableGeometry2Dot5D, IConnectable, IMarkerParent, IEntityRelation, IHasBody, IHasMaterial +public class WheelBodyCar : WheelBodyBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IMarkerCreatable, IFacesetCreatable, ICurvesetCreatable, IConnectableNotReference, IReferencable, IConnectableHasGeometry, IBody, IInterface, ITemplateObject, IHasBuilder, IDrawIcon, ITransformable, IGeometryContainer, IMassProp, IChainedSegmentConnector, IArgument, ITransparentable, IMFModalable, IBodyAnalysisType, IAutoContactable, ITemperatureComponent, IHeatGenerationComponent, IGeometricalComponent, IContactableGeometry2Dot5D, IConnectable, IMarkerParent, IEntityRelation, IHasBody, IHasMaterial, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -BodyBase ← -SolidBody ← -WheelBodyBase ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[BodyBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ← +[SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ← +[WheelBodyBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs) ← [WheelBodyCar](VM.Managed.DAFUL.Tire.Car.WheelBodyCar.md) #### Implements @@ -31,7 +32,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -82,135 +83,136 @@ IConnectable, IMarkerParent, IEntityRelation, IHasBody, -IHasMaterial +IHasMaterial, +IHasReplaceableEntity #### Inherited Members -WheelBodyBase.Initialize\(Unit.ConvertFactor\), -WheelBodyBase.LinkRequestUpdate\(object, LinkEventArgs\), -WheelBodyBase.LinkRequestDestroying\(object, LinkEventArgs\), -WheelBodyBase.FindLocal\(string\), -WheelBodyBase.GetUnnamedObjectName\(object\), -WheelBodyBase.CreateOrUpdateBuilder\(string, bool, WheelBodyBase.CreateInfo, Document\), -WheelBodyBase.GetOrientation\(OMatrix\), -WheelBodyBase.CreateOrUpdateBuilder\(string, bool, WheelBodyBase.CreateInfo\), -WheelBodyBase.SetModifiedImpl\(ModifiedResult.ModifiedType\), -WheelBodyBase.WriteTemplateImpl\(XmlWriter\), -WheelBodyBase.ReadTemplateImpl\(XmlReader\), -WheelBodyBase.OnDeserialization\(object\), -WheelBodyBase.SetTypeOfSide\(WheelBodyBase.SideType\), -WheelBodyBase.ActiveTirePropertyFile, -WheelBodyBase.CenterOffset, -WheelBodyBase.WheelCenterOffset, -WheelBodyBase.TypeOfSide, -WheelBodyBase.IsEditCM, -WheelBodyBase.Scale, -SolidBody.m\_MeshFreeProperty, -SolidBody.Initialize\(Unit.ConvertFactor\), -SolidBody.FixUp\(ObjectBase\), -SolidBody.DoWorkAfterUpdateContents\(\), -SolidBody.GetMarkerModelNavigatorInfo\(XmlDocument, XmlElement, Marker\), -SolidBody.GetMarkerArrayModelNavigatorInfo\(XmlDocument, XmlElement, NamedObjectDictionary\), -SolidBody.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SolidBody.MakeReferenceImpl\(LinkedList\), -SolidBody.WriteTemplateImpl\(XmlWriter\), -SolidBody.ReadTemplateImpl\(XmlReader\), -SolidBody.GetBuilder\(\), -SolidBody.FindLocal\(string\), -SolidBody.GetUnnamedObjectName\(object\), -SolidBody.PostAddToDocument\(\), -SolidBody.ResetInvalidEntity\(\), -SolidBody.ReDraw\(\), -SolidBody.GetGeometryNavigatorInformation\(XmlDocument, XmlElement\), -SolidBody.GetPointDirection\(ref VectorBase, ref VectorBase, IReferencable\), -SolidBody.GetPointDirectionOnGeometry\(ref VectorBase, ref VectorBase, IReferencable\), -SolidBody.GetDefaultMaxPenetration\(ref double, IReferencable\), -SolidBody.GetLayerImpl\(\), -SolidBody.SetLayerImpl\(Layer\), -SolidBody.OnDeserialization\(object\), -SolidBody.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -SolidBody.LinkRequestDestroy\(object, LinkEventArgs\), -SolidBody.GetAnalysisLevelInfo\(ref List, ref List\), -SolidBody.IsAutoContactable\(\), -SolidBody.GetContactables\(\), -SolidBody.IsInterface, -SolidBody.ModeArray, -SolidBody.DFMFPath, -SolidBody.LastModifiedTimeToDFMFFile, -SolidBody.\_MovingReferenceFrame, -SolidBody.MovingReferenceFrame, -SolidBody.ModalReferencePosition, -SolidBody.UseModalReferencePosition, -SolidBody.UseAdvancedOption, -SolidBody.UseTMovingReferenceFrame, -SolidBody.UseRMovingReferenceFrame, -SolidBody.ParentTypeImpl, -SolidBody.IsEditCM, -SolidBody.IsBaseGeometry, -SolidBody.IsActionGeometry, -SolidBody.MaxPenetration, -SolidBody.HalfThickness, -SolidBody.SurfaceSmoothingType, -SolidBody.Connectable, -SolidBody.IsRepresentedAsBSurface, -SolidBody.ReferenceType, -SolidBody.ArgumentType, -SolidBody.Geometry, -SolidBody.MeshFreeProperty, -SolidBody.AnalysisType, -SolidBody.TopologyEntityTypeName, -BodyBase.Initialize\(Unit.ConvertFactor\), -BodyBase.GetGeomModelNavigatorInfo\(XmlDocument, XmlElement, BodyProperty, Body\), -BodyBase.GetGeneralMarkerInfo\(XmlDocument, XmlElement, Marker\), -BodyBase.MakeReferenceImpl\(LinkedList\), -BodyBase.FixUp\(ObjectBase\), -BodyBase.GetArgumentList\(LinkedList\), -BodyBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -BodyBase.GetLayerImpl\(\), -BodyBase.SetLayerImpl\(Layer\), -BodyBase.GetTargetListForUpdate\(\), -BodyBase.HasLayerExplicitly, -BodyBase.ParentType, -BodyBase.ParentTypeImpl, -BodyBase.ReferenceFrameType, -BodyBase.ConnectableName, -BodyBase.ConnectableFullName, -BodyBase.ConnectablePostfixName, -BodyBase.ConnectablePosition, -BodyBase.ConnectableBody, -BodyBase.Body, -BodyBase.Layer, -BodyBase.IsVisible, -BodyBase.ReferencableImpl, -BodyBase.Geometry, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[WheelBodyBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs), +[WheelBodyBase.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs), +[WheelBodyBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs), +[WheelBodyBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs), +[WheelBodyBase.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs), +[WheelBodyBase.CreateOrUpdateBuilder\(string, bool, WheelBodyBase.CreateInfo, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs), +[WheelBodyBase.GetOrientation\(OMatrix\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs), +[WheelBodyBase.CreateOrUpdateBuilder\(string, bool, WheelBodyBase.CreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs), +[WheelBodyBase.SetModifiedImpl\(ModifiedResult.ModifiedType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs), +[WheelBodyBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs), +[WheelBodyBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs), +[WheelBodyBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs), +[WheelBodyBase.SetTypeOfSide\(WheelBodyBase.SideType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs), +[WheelBodyBase.ActiveTirePropertyFile](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs), +[WheelBodyBase.CenterOffset](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs), +[WheelBodyBase.WheelCenterOffset](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs), +[WheelBodyBase.TypeOfSide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs), +[WheelBodyBase.IsEditCM](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs), +[WheelBodyBase.Scale](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs), +[SolidBody.m\_MeshFreeProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.DoWorkAfterUpdateContents\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetMarkerModelNavigatorInfo\(XmlDocument, XmlElement, Marker\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetMarkerArrayModelNavigatorInfo\(XmlDocument, XmlElement, NamedObjectDictionary\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetBuilder\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetGeometryNavigatorInformation\(XmlDocument, XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetPointDirection\(ref VectorBase, ref VectorBase, IReferencable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetPointDirectionOnGeometry\(ref VectorBase, ref VectorBase, IReferencable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetDefaultMaxPenetration\(ref double, IReferencable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetAnalysisLevelInfo\(ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsAutoContactable\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetContactables\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ModeArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.DFMFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.LastModifiedTimeToDFMFFile](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.\_MovingReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.MovingReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ModalReferencePosition](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.UseModalReferencePosition](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.UseAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.UseTMovingReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.UseRMovingReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ParentTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsEditCM](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsBaseGeometry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsActionGeometry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.MaxPenetration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.HalfThickness](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.SurfaceSmoothingType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.Connectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsRepresentedAsBSurface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.Geometry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.MeshFreeProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.AnalysisType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.TopologyEntityTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetGeomModelNavigatorInfo\(XmlDocument, XmlElement, BodyProperty, Body\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetGeneralMarkerInfo\(XmlDocument, XmlElement, Marker\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetArgumentList\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ParentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ParentTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ReferenceFrameType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectableName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectableFullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectablePostfixName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectablePosition](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectableBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.Body](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ReferencableImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.Geometry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -309,7 +311,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -348,7 +350,7 @@ public WheelBodyCar(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The Name. @@ -362,7 +364,7 @@ public WheelBodyCar(string strName, Builder builder) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The Name. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Car.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Car.md index 362703bed7..5a9a072964 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Car.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Car.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Tire.Car +# Namespace VM.Managed.DAFUL.Tire.Car + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.ActiveTirePropertyFile.PropertyFileInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.ActiveTirePropertyFile.PropertyFileInfo.md index a5ba456a40..c8834bb4d2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.ActiveTirePropertyFile.PropertyFileInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.ActiveTirePropertyFile.PropertyFileInfo.md @@ -1,4 +1,5 @@ -# Class ActiveTirePropertyFile.PropertyFileInfo +# Class ActiveTirePropertyFile.PropertyFileInfo + Namespace: [VM.Managed.DAFUL.Tire.Force](VM.Managed.DAFUL.Tire.Force.md) Assembly: VMDTire.dll @@ -11,7 +12,7 @@ public class ActiveTirePropertyFile.PropertyFileInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ActiveTirePropertyFile.PropertyFileInfo](VM.Managed.DAFUL.Tire.Force.ActiveTirePropertyFile.PropertyFileInfo.md) #### Extension Methods @@ -42,7 +43,7 @@ public double AspectRatio { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Radius @@ -54,7 +55,7 @@ public double Radius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RimRadius @@ -66,7 +67,7 @@ public double RimRadius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RimWidth @@ -78,7 +79,7 @@ public double RimWidth { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Unit @@ -102,5 +103,5 @@ public double Width { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.ActiveTirePropertyFile.TirePropertyType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.ActiveTirePropertyFile.TirePropertyType.md index 9fcb283842..12c1dae39a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.ActiveTirePropertyFile.TirePropertyType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.ActiveTirePropertyFile.TirePropertyType.md @@ -1,4 +1,5 @@ -# Enum ActiveTirePropertyFile.TirePropertyType +# Enum ActiveTirePropertyFile.TirePropertyType + Namespace: [VM.Managed.DAFUL.Tire.Force](VM.Managed.DAFUL.Tire.Force.md) Assembly: VMDTire.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.ActiveTirePropertyFile.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.ActiveTirePropertyFile.md index 3603fedc47..48fd5b2a19 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.ActiveTirePropertyFile.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.ActiveTirePropertyFile.md @@ -1,4 +1,5 @@ -# Class ActiveTirePropertyFile +# Class ActiveTirePropertyFile + Namespace: [VM.Managed.DAFUL.Tire.Force](VM.Managed.DAFUL.Tire.Force.md) Assembly: VMDTire.dll @@ -11,9 +12,9 @@ public class ActiveTirePropertyFile : Object, IObservableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [ActiveTirePropertyFile](VM.Managed.DAFUL.Tire.Force.ActiveTirePropertyFile.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer #### Inherited Members @@ -129,7 +130,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -168,7 +169,7 @@ public ActiveTirePropertyFile(string strFilePath) #### Parameters -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string The file path. @@ -185,7 +186,7 @@ public string FilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### LastModifyTime @@ -197,7 +198,7 @@ public DateTime LastModifyTime { get; set; } #### Property Value - [DateTime](https://learn.microsoft.com/dotnet/api/system.datetime) + DateTime ### TireType @@ -230,7 +231,7 @@ The doc. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ConvertXmlAfterReadTIRFile\(\) @@ -242,7 +243,7 @@ public string ConvertXmlAfterReadTIRFile() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetTireType\(string\) @@ -254,7 +255,7 @@ public ActiveTirePropertyFile.TirePropertyType GetTireType(string strTireFile) #### Parameters -`strTireFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strTireFile` string The STR tire file. @@ -272,7 +273,7 @@ public ActiveTirePropertyFile.TirePropertyType GetTireType(string strTireFile, D #### Parameters -`strTireFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strTireFile` string The STR tire file. @@ -312,7 +313,7 @@ public void SetFilePath(string strFile) #### Parameters -`strFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFile` string The file path. @@ -326,7 +327,7 @@ public void SetLastModifyTime(DateTime dt) #### Parameters -`dt` [DateTime](https://learn.microsoft.com/dotnet/api/system.datetime) +`dt` DateTime The time. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.PropertyTire.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.PropertyTire.md index 733c4b75f6..900adb674d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.PropertyTire.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.PropertyTire.md @@ -1,4 +1,5 @@ -# Class PropertyTire +# Class PropertyTire + Namespace: [VM.Managed.DAFUL.Tire.Force](VM.Managed.DAFUL.Tire.Force.md) Assembly: VMDTire.dll @@ -11,14 +12,14 @@ public class PropertyTire : PropertyForce, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyForce ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyForce](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [PropertyTire](VM.Managed.DAFUL.Tire.Force.PropertyTire.md) #### Derived @@ -36,7 +37,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -46,14 +47,14 @@ IArgument #### Inherited Members -PropertyForce.ArgumentType, -PropertyForce.ReferenceType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyForce.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[PropertyForce.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -152,7 +153,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -191,11 +192,11 @@ protected PropertyTire(string strProxyName, string strBuildInfo) #### Parameters -`strProxyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strProxyName` string Name of the proxy. -`strBuildInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBuildInfo` string The build info. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.PropertyTireDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.PropertyTireDocument.md index 63ed50473f..5c7c7149eb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.PropertyTireDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.PropertyTireDocument.md @@ -1,4 +1,5 @@ -# Class PropertyTireDocument +# Class PropertyTireDocument + Namespace: [VM.Managed.DAFUL.Tire.Force](VM.Managed.DAFUL.Tire.Force.md) Assembly: VMDTire.dll @@ -11,15 +12,15 @@ public class PropertyTireDocument : ForcePropertyDocument, IOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← -PropertyDocumentBase ← -PropertyDocument ← -ForcePropertyDocument ← +[PropertyDocumentBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs) ← +[PropertyDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs) ← +[ForcePropertyDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/ForcePropertyDocument.cs) ← [PropertyTireDocument](VM.Managed.DAFUL.Tire.Force.PropertyTireDocument.md) #### Implements @@ -38,7 +39,7 @@ IOwned, IHasID, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IPropertyDocument, IUnitChange, IXMLFormatable, @@ -46,54 +47,54 @@ IForcePropertyDocument #### Inherited Members -ForcePropertyDocument.FindLocal\(string\), -ForcePropertyDocument.AddImpl\(ObjectBase\), -ForcePropertyDocument.IsTypeSupported\(Type\), -ForcePropertyDocument.IsEnabledImpl\(ObjectBase\), -ForcePropertyDocument.SetEnableImpl\(ObjectBase, bool\), -ForcePropertyDocument.UpdateEnable\(ObjectBase, bool\), -ForcePropertyDocument.OnPostMakeDocument\(DocCreateInfo\), -PropertyDocument.Save\(TextWriter\), -PropertyDocument.Load\(TextReader\), -PropertyDocument.OnPostMakeDocument\(DocCreateInfo\), -PropertyDocument.Property, -PropertyDocument.UntypedProperty, -PropertyDocument.UntypedPropertyOwner, -PropertyDocument.FilePropertyOwner, -PropertyDocument.PropertyType, -PropertyDocumentBase.Save\(string\), -PropertyDocumentBase.SerializeObj\(XmlWriter, T, string\), -PropertyDocumentBase.DeserializeObj\(XmlReader, string, Type\), -PropertyDocumentBase.Save\(TextWriter\), -PropertyDocumentBase.Save\(Stream\), -PropertyDocumentBase.Load\(string\), -PropertyDocumentBase.Load\(TextReader\), -PropertyDocumentBase.Load\(Stream\), -PropertyDocumentBase.SetUnit\(Unit\), -PropertyDocumentBase.AddReferenceDocument\(Document\), -PropertyDocumentBase.RemoveReferenceDocument\(Document\), -PropertyDocumentBase.FindLocal\(string\), -PropertyDocumentBase.Add\(ObjectBase\), -PropertyDocumentBase.OnPostAdd\(ObjectBase\), -PropertyDocumentBase.AddImpl\(ObjectBase\), -PropertyDocumentBase.IsTypeSupported\(Type\), -PropertyDocumentBase.OnDeserialization\(object\), -PropertyDocumentBase.CreateView\(UIntPtr\), -PropertyDocumentBase.TriggerPostMakeDocument\(PropertyDocCreateInfo\), -PropertyDocumentBase.OnPostMakeDocument\(DocCreateInfo\), -PropertyDocumentBase.GetData\(XmlNode\), -PropertyDocumentBase.SetData\(XmlNode\), -PropertyDocumentBase.Reload, -PropertyDocumentBase.UntypedProperty, -PropertyDocumentBase.PropertyType, -PropertyDocumentBase.Modified, -PropertyDocumentBase.UntypedPropertyOwner, -PropertyDocumentBase.DocumentSessionOverride, -PropertyDocumentBase.SetDocumentSessionOverride, -PropertyDocumentBase.OwnedList, -PropertyDocumentBase.OwnedCollection, -PropertyDocumentBase.CanClose, -PropertyDocumentBase.IsPropertySupport, +[ForcePropertyDocument.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/ForcePropertyDocument.cs), +[ForcePropertyDocument.AddImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/ForcePropertyDocument.cs), +[ForcePropertyDocument.IsTypeSupported\(Type\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/ForcePropertyDocument.cs), +[ForcePropertyDocument.IsEnabledImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/ForcePropertyDocument.cs), +[ForcePropertyDocument.SetEnableImpl\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/ForcePropertyDocument.cs), +[ForcePropertyDocument.UpdateEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/ForcePropertyDocument.cs), +[ForcePropertyDocument.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/ForcePropertyDocument.cs), +[PropertyDocument.Save\(TextWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.Load\(TextReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.UntypedPropertyOwner](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.FilePropertyOwner](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocument.PropertyType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Save\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.SerializeObj\(XmlWriter, T, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.DeserializeObj\(XmlReader, string, Type\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Save\(TextWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Save\(Stream\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Load\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Load\(TextReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Load\(Stream\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.SetUnit\(Unit\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.AddReferenceDocument\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.RemoveReferenceDocument\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Add\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OnPostAdd\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.AddImpl\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.IsTypeSupported\(Type\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.CreateView\(UIntPtr\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.TriggerPostMakeDocument\(PropertyDocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OnPostMakeDocument\(DocCreateInfo\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.GetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.SetData\(XmlNode\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Reload](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.PropertyType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.Modified](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.UntypedPropertyOwner](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.DocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.SetDocumentSessionOverride](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OwnedList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.OwnedCollection](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.CanClose](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), +[PropertyDocumentBase.IsPropertySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/PropertyDocument.cs), Document.g\_OpenDocuments, Document.m\_unit, Document.m\_unitKernal, @@ -288,7 +289,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.PropertyTireFile.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.PropertyTireFile.md index 08301917c4..625dbb8a1c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.PropertyTireFile.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.PropertyTireFile.md @@ -1,4 +1,5 @@ -# Class PropertyTireFile +# Class PropertyTireFile + Namespace: [VM.Managed.DAFUL.Tire.Force](VM.Managed.DAFUL.Tire.Force.md) Assembly: VMDTire.dll @@ -11,14 +12,14 @@ public class PropertyTireFile : PropertyTire, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyForce ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyForce](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [PropertyTire](VM.Managed.DAFUL.Tire.Force.PropertyTire.md) ← [PropertyTireFile](VM.Managed.DAFUL.Tire.Force.PropertyTireFile.md) @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -46,14 +47,14 @@ IFileProperty [PropertyTire.Initialize\(Unit.ConvertFactor\)](VM.Managed.DAFUL.Tire.Force.PropertyTire.md\#VM\_Managed\_DAFUL\_Tire\_Force\_PropertyTire\_Initialize\_VM\_Unit\_ConvertFactor\_), [PropertyTire.ArgumentType](VM.Managed.DAFUL.Tire.Force.PropertyTire.md\#VM\_Managed\_DAFUL\_Tire\_Force\_PropertyTire\_ArgumentType), -PropertyForce.ArgumentType, -PropertyForce.ReferenceType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyForce.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[PropertyForce.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -152,7 +153,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.Tire.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.Tire.md index 11c1670aa2..e64f0ca365 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.Tire.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.Tire.md @@ -1,4 +1,5 @@ -# Class Tire +# Class Tire + Namespace: [VM.Managed.DAFUL.Tire.Force](VM.Managed.DAFUL.Tire.Force.md) Assembly: VMDTire.dll @@ -11,16 +12,16 @@ public class Tire : TireBase, IObservableObject, IDisposableObject, ILinkable, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← -Force ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← +[Force](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [TireBase](VM.Managed.DAFUL.Tire.Force.TireBase.md) ← [Tire](VM.Managed.DAFUL.Tire.Force.Tire.md) @@ -31,7 +32,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -82,69 +83,69 @@ ITemplateObject [TireBase.ActivePropertyFile](VM.Managed.DAFUL.Tire.Force.TireBase.md\#VM\_Managed\_DAFUL\_Tire\_Force\_TireBase\_ActivePropertyFile), [TireBase.WheelBodyBase](VM.Managed.DAFUL.Tire.Force.TireBase.md\#VM\_Managed\_DAFUL\_Tire\_Force\_TireBase\_WheelBodyBase), [TireBase.CanSwitchImpl](VM.Managed.DAFUL.Tire.Force.TireBase.md\#VM\_Managed\_DAFUL\_Tire\_Force\_TireBase\_CanSwitchImpl), -Force.Initialize\(Unit.ConvertFactor\), -Force.WriteMarker\(XmlWriter, Marker, string\), -Force.ReadMarker\(XmlReader, Marker, string\), -Force.UseForSimulationScenario, -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Force.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.WriteMarker\(XmlWriter, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.ReadMarker\(XmlReader, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.UseForSimulationScenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -243,7 +244,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -282,7 +283,7 @@ public Tire(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the bush force. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.TireBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.TireBase.md index 91fbcd8fea..c5fcb4c505 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.TireBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.TireBase.md @@ -1,4 +1,5 @@ -# Class TireBase +# Class TireBase + Namespace: [VM.Managed.DAFUL.Tire.Force](VM.Managed.DAFUL.Tire.Force.md) Assembly: VMDTire.dll @@ -12,16 +13,16 @@ public abstract class TireBase : Force, IObservableObject, IDispos #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← -Force ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← +[Force](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs) ← [TireBase](VM.Managed.DAFUL.Tire.Force.TireBase.md) #### Derived @@ -35,7 +36,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -75,69 +76,69 @@ ITemplateObject #### Inherited Members -Force.Initialize\(Unit.ConvertFactor\), -Force.WriteMarker\(XmlWriter, Marker, string\), -Force.ReadMarker\(XmlReader, Marker, string\), -Force.UseForSimulationScenario, -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Force.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.WriteMarker\(XmlWriter, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.ReadMarker\(XmlReader, Marker, string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Force.UseForSimulationScenario](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Force.cs), +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -236,7 +237,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -275,7 +276,7 @@ public TireBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the bush force. @@ -301,7 +302,7 @@ protected override bool CanSwitchImpl { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReportTypeImpl @@ -339,7 +340,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -357,13 +358,13 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The ob unnamed. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Initialize\(ConvertFactor\) @@ -389,7 +390,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -407,7 +408,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -425,7 +426,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -439,7 +440,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.md index 51bcbb331e..32a693ed1b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Force.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Tire.Force +# Namespace VM.Managed.DAFUL.Tire.Force + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Operation.FinalizeTransFormOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Operation.FinalizeTransFormOperation.md index e4ff929d3f..0742e5fa08 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Operation.FinalizeTransFormOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Operation.FinalizeTransFormOperation.md @@ -1,4 +1,5 @@ -# Class FinalizeTransFormOperation +# Class FinalizeTransFormOperation + Namespace: [VM.Managed.DAFUL.Tire.Operation](VM.Managed.DAFUL.Tire.Operation.md) Assembly: VMOpTire.dll @@ -11,7 +12,7 @@ public class FinalizeTransFormOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [FinalizeTransFormOperation](VM.Managed.DAFUL.Tire.Operation.FinalizeTransFormOperation.md) @@ -85,7 +86,7 @@ public FinalizeTransFormOperation(WheelBodyBase wheelBody) #### Parameters -`wheelBody` WheelBodyBase +`wheelBody` [WheelBodyBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs) ### FinalizeTransFormOperation\(JournalParameter\) @@ -109,7 +110,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -129,5 +130,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Operation.ReloadOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Operation.ReloadOperation.md index e3f426be8b..194ec54d81 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Operation.ReloadOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Operation.ReloadOperation.md @@ -1,4 +1,5 @@ -# Class ReloadOperation +# Class ReloadOperation + Namespace: [VM.Managed.DAFUL.Tire.Operation](VM.Managed.DAFUL.Tire.Operation.md) Assembly: VMOpTire.dll @@ -11,7 +12,7 @@ public class ReloadOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ReloadOperation](VM.Managed.DAFUL.Tire.Operation.ReloadOperation.md) @@ -85,9 +86,9 @@ public ReloadOperation(string strBuilderInfo, WheelBodyBase wheelBody) #### Parameters -`strBuilderInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBuilderInfo` string -`wheelBody` WheelBodyBase +`wheelBody` [WheelBodyBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDTire/WheelBodyBase.cs) ### ReloadOperation\(JournalParameter\) @@ -111,7 +112,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -131,5 +132,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Operation.UpdateSymmetricOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Operation.UpdateSymmetricOperation.md index 4b82bbbdc8..1e9ebb545c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Operation.UpdateSymmetricOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Operation.UpdateSymmetricOperation.md @@ -1,4 +1,5 @@ -# Class UpdateSymmetricOperation +# Class UpdateSymmetricOperation + Namespace: [VM.Managed.DAFUL.Tire.Operation](VM.Managed.DAFUL.Tire.Operation.md) Assembly: VMOpTire.dll @@ -11,7 +12,7 @@ public class UpdateSymmetricOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [UpdateSymmetricOperation](VM.Managed.DAFUL.Tire.Operation.UpdateSymmetricOperation.md) @@ -109,7 +110,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -129,5 +130,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Operation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Operation.md index 5c62f14072..a657cd7445 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Operation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Operation.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Tire.Operation +# Namespace VM.Managed.DAFUL.Tire.Operation + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Road.RoadType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Road.RoadType.md index 18f6619122..e7a7f3d85e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Road.RoadType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Road.RoadType.md @@ -1,4 +1,5 @@ -# Enum Road.RoadType +# Enum Road.RoadType + Namespace: [VM.Managed.DAFUL.Tire](VM.Managed.DAFUL.Tire.md) Assembly: VMDTire.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Road.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Road.md index 860b0f1d91..721f4a835b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Road.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Road.md @@ -1,4 +1,5 @@ -# Class Road +# Class Road + Namespace: [VM.Managed.DAFUL.Tire](VM.Managed.DAFUL.Tire.md) Assembly: VMDTire.dll @@ -11,9 +12,9 @@ public class Road : LinkContainer, IObservableObject, IDisposableObject, ILinkab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Road](VM.Managed.DAFUL.Tire.Road.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -114,7 +115,7 @@ public Road(string fileName) #### Parameters -`fileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`fileName` string Name of the file. @@ -130,7 +131,7 @@ public string FilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RoadDefinedType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Scale.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Scale.md index c679300c19..e26e5b1884 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Scale.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.Scale.md @@ -1,4 +1,5 @@ -# Class Scale +# Class Scale + Namespace: [VM.Managed.DAFUL.Tire](VM.Managed.DAFUL.Tire.md) Assembly: VMDTire.dll @@ -11,9 +12,9 @@ public class Scale : LinkContainer, IObservableObject, IDisposableObject, ILinka #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Scale](VM.Managed.DAFUL.Tire.Scale.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,7 +117,7 @@ public ExpressionValueVariable AligningTorqueScaleFactor { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ConicityForceOffset @@ -128,7 +129,7 @@ public ExpressionValueVariable ConicityForceOffset { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ConicityTorqueOffset @@ -140,7 +141,7 @@ public ExpressionValueVariable ConicityTorqueOffset { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### LateralForceScaleFactor @@ -152,7 +153,7 @@ public ExpressionValueVariable LateralForceScaleFactor { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### OverturningMomentScaleFactor @@ -164,7 +165,7 @@ public ExpressionValueVariable OverturningMomentScaleFactor { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PlysteerForceOffset @@ -176,7 +177,7 @@ public ExpressionValueVariable PlysteerForceOffset { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PlysteerTorqueOffset @@ -188,7 +189,7 @@ public ExpressionValueVariable PlysteerTorqueOffset { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### UnloadedRadiusOffset @@ -200,5 +201,5 @@ public ExpressionValueVariable UnloadedRadiusOffset { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.WheelBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.WheelBody.md index c9e1ec14dd..c2e0ccafdc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.WheelBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.WheelBody.md @@ -1,4 +1,5 @@ -# Class WheelBody +# Class WheelBody + Namespace: [VM.Managed.DAFUL.Tire](VM.Managed.DAFUL.Tire.md) Assembly: VMDTire.dll @@ -6,21 +7,21 @@ Assembly: VMDTire.dll This class is to represent the wheel body. ```csharp -public class WheelBody : WheelBodyBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IMarkerCreatable, IFacesetCreatable, ICurvesetCreatable, IConnectableNotReference, IReferencable, IConnectableHasGeometry, IBody, IInterface, ITemplateObject, IHasBuilder, IDrawIcon, ITransformable, IGeometryContainer, IMassProp, IChainedSegmentConnector, IArgument, ITransparentable, IMFModalable, IBodyAnalysisType, IAutoContactable, ITemperatureComponent, IHeatGenerationComponent, IGeometricalComponent, IContactableGeometry2Dot5D, IConnectable, IMarkerParent, IEntityRelation, IHasBody, IHasMaterial +public class WheelBody : WheelBodyBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IMarkerCreatable, IFacesetCreatable, ICurvesetCreatable, IConnectableNotReference, IReferencable, IConnectableHasGeometry, IBody, IInterface, ITemplateObject, IHasBuilder, IDrawIcon, ITransformable, IGeometryContainer, IMassProp, IChainedSegmentConnector, IArgument, ITransparentable, IMFModalable, IBodyAnalysisType, IAutoContactable, ITemperatureComponent, IHeatGenerationComponent, IGeometricalComponent, IContactableGeometry2Dot5D, IConnectable, IMarkerParent, IEntityRelation, IHasBody, IHasMaterial, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -BodyBase ← -SolidBody ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[BodyBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ← +[SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ← [WheelBodyBase](VM.Managed.DAFUL.Tire.WheelBodyBase.md) ← [WheelBody](VM.Managed.DAFUL.Tire.WheelBody.md) @@ -31,7 +32,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -82,7 +83,8 @@ IConnectable, IMarkerParent, IEntityRelation, IHasBody, -IHasMaterial +IHasMaterial, +IHasReplaceableEntity #### Inherited Members @@ -105,112 +107,112 @@ IHasMaterial [WheelBodyBase.TypeOfSide](VM.Managed.DAFUL.Tire.WheelBodyBase.md\#VM\_Managed\_DAFUL\_Tire\_WheelBodyBase\_TypeOfSide), [WheelBodyBase.IsEditCM](VM.Managed.DAFUL.Tire.WheelBodyBase.md\#VM\_Managed\_DAFUL\_Tire\_WheelBodyBase\_IsEditCM), [WheelBodyBase.Scale](VM.Managed.DAFUL.Tire.WheelBodyBase.md\#VM\_Managed\_DAFUL\_Tire\_WheelBodyBase\_Scale), -SolidBody.m\_MeshFreeProperty, -SolidBody.Initialize\(Unit.ConvertFactor\), -SolidBody.FixUp\(ObjectBase\), -SolidBody.DoWorkAfterUpdateContents\(\), -SolidBody.GetMarkerModelNavigatorInfo\(XmlDocument, XmlElement, Marker\), -SolidBody.GetMarkerArrayModelNavigatorInfo\(XmlDocument, XmlElement, NamedObjectDictionary\), -SolidBody.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SolidBody.MakeReferenceImpl\(LinkedList\), -SolidBody.WriteTemplateImpl\(XmlWriter\), -SolidBody.ReadTemplateImpl\(XmlReader\), -SolidBody.GetBuilder\(\), -SolidBody.FindLocal\(string\), -SolidBody.GetUnnamedObjectName\(object\), -SolidBody.PostAddToDocument\(\), -SolidBody.ResetInvalidEntity\(\), -SolidBody.ReDraw\(\), -SolidBody.GetGeometryNavigatorInformation\(XmlDocument, XmlElement\), -SolidBody.GetPointDirection\(ref VectorBase, ref VectorBase, IReferencable\), -SolidBody.GetPointDirectionOnGeometry\(ref VectorBase, ref VectorBase, IReferencable\), -SolidBody.GetDefaultMaxPenetration\(ref double, IReferencable\), -SolidBody.GetLayerImpl\(\), -SolidBody.SetLayerImpl\(Layer\), -SolidBody.OnDeserialization\(object\), -SolidBody.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -SolidBody.LinkRequestDestroy\(object, LinkEventArgs\), -SolidBody.GetAnalysisLevelInfo\(ref List, ref List\), -SolidBody.IsAutoContactable\(\), -SolidBody.GetContactables\(\), -SolidBody.IsInterface, -SolidBody.ModeArray, -SolidBody.DFMFPath, -SolidBody.LastModifiedTimeToDFMFFile, -SolidBody.\_MovingReferenceFrame, -SolidBody.MovingReferenceFrame, -SolidBody.ModalReferencePosition, -SolidBody.UseModalReferencePosition, -SolidBody.UseAdvancedOption, -SolidBody.UseTMovingReferenceFrame, -SolidBody.UseRMovingReferenceFrame, -SolidBody.ParentTypeImpl, -SolidBody.IsEditCM, -SolidBody.IsBaseGeometry, -SolidBody.IsActionGeometry, -SolidBody.MaxPenetration, -SolidBody.HalfThickness, -SolidBody.SurfaceSmoothingType, -SolidBody.Connectable, -SolidBody.IsRepresentedAsBSurface, -SolidBody.ReferenceType, -SolidBody.ArgumentType, -SolidBody.Geometry, -SolidBody.MeshFreeProperty, -SolidBody.AnalysisType, -SolidBody.TopologyEntityTypeName, -BodyBase.Initialize\(Unit.ConvertFactor\), -BodyBase.GetGeomModelNavigatorInfo\(XmlDocument, XmlElement, BodyProperty, Body\), -BodyBase.GetGeneralMarkerInfo\(XmlDocument, XmlElement, Marker\), -BodyBase.MakeReferenceImpl\(LinkedList\), -BodyBase.FixUp\(ObjectBase\), -BodyBase.GetArgumentList\(LinkedList\), -BodyBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -BodyBase.GetLayerImpl\(\), -BodyBase.SetLayerImpl\(Layer\), -BodyBase.GetTargetListForUpdate\(\), -BodyBase.HasLayerExplicitly, -BodyBase.ParentType, -BodyBase.ParentTypeImpl, -BodyBase.ReferenceFrameType, -BodyBase.ConnectableName, -BodyBase.ConnectableFullName, -BodyBase.ConnectablePostfixName, -BodyBase.ConnectablePosition, -BodyBase.ConnectableBody, -BodyBase.Body, -BodyBase.Layer, -BodyBase.IsVisible, -BodyBase.ReferencableImpl, -BodyBase.Geometry, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[SolidBody.m\_MeshFreeProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.DoWorkAfterUpdateContents\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetMarkerModelNavigatorInfo\(XmlDocument, XmlElement, Marker\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetMarkerArrayModelNavigatorInfo\(XmlDocument, XmlElement, NamedObjectDictionary\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetBuilder\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetGeometryNavigatorInformation\(XmlDocument, XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetPointDirection\(ref VectorBase, ref VectorBase, IReferencable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetPointDirectionOnGeometry\(ref VectorBase, ref VectorBase, IReferencable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetDefaultMaxPenetration\(ref double, IReferencable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetAnalysisLevelInfo\(ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsAutoContactable\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetContactables\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ModeArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.DFMFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.LastModifiedTimeToDFMFFile](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.\_MovingReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.MovingReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ModalReferencePosition](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.UseModalReferencePosition](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.UseAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.UseTMovingReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.UseRMovingReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ParentTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsEditCM](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsBaseGeometry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsActionGeometry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.MaxPenetration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.HalfThickness](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.SurfaceSmoothingType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.Connectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsRepresentedAsBSurface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.Geometry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.MeshFreeProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.AnalysisType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.TopologyEntityTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetGeomModelNavigatorInfo\(XmlDocument, XmlElement, BodyProperty, Body\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetGeneralMarkerInfo\(XmlDocument, XmlElement, Marker\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetArgumentList\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ParentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ParentTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ReferenceFrameType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectableName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectableFullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectablePostfixName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectablePosition](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectableBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.Body](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ReferencableImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.Geometry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -309,7 +311,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -348,7 +350,7 @@ public WheelBody(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The Name. @@ -362,7 +364,7 @@ public WheelBody(string strName, Builder builder) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The Name. @@ -414,7 +416,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.WheelBodyBase.CreateInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.WheelBodyBase.CreateInfo.md index a8df182b63..bb71f692ed 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.WheelBodyBase.CreateInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.WheelBodyBase.CreateInfo.md @@ -1,4 +1,5 @@ -# Class WheelBodyBase.CreateInfo +# Class WheelBodyBase.CreateInfo + Namespace: [VM.Managed.DAFUL.Tire](VM.Managed.DAFUL.Tire.md) Assembly: VMDTire.dll @@ -11,7 +12,7 @@ public class WheelBodyBase.CreateInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [WheelBodyBase.CreateInfo](VM.Managed.DAFUL.Tire.WheelBodyBase.CreateInfo.md) #### Extension Methods @@ -40,7 +41,7 @@ public double CMOffset { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Color @@ -52,7 +53,7 @@ public string Color { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Transform @@ -76,5 +77,5 @@ public double WheelCenterOffset { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.WheelBodyBase.SideType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.WheelBodyBase.SideType.md index 0b6fdf0f9a..71f1a90184 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.WheelBodyBase.SideType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.WheelBodyBase.SideType.md @@ -1,4 +1,5 @@ -# Enum WheelBodyBase.SideType +# Enum WheelBodyBase.SideType + Namespace: [VM.Managed.DAFUL.Tire](VM.Managed.DAFUL.Tire.md) Assembly: VMDTire.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.WheelBodyBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.WheelBodyBase.md index a4e01aa42f..41c3fda529 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.WheelBodyBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.WheelBodyBase.md @@ -1,4 +1,5 @@ -# Class WheelBodyBase +# Class WheelBodyBase + Namespace: [VM.Managed.DAFUL.Tire](VM.Managed.DAFUL.Tire.md) Assembly: VMDTire.dll @@ -6,21 +7,21 @@ Assembly: VMDTire.dll This class is to represent the wheel body base. ```csharp -public abstract class WheelBodyBase : SolidBody, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IMarkerCreatable, IFacesetCreatable, ICurvesetCreatable, IConnectableNotReference, IReferencable, IConnectableHasGeometry, IBody, IInterface, ITemplateObject, IHasBuilder, IDrawIcon, ITransformable, IGeometryContainer, IMassProp, IChainedSegmentConnector, IArgument, ITransparentable, IMFModalable, IBodyAnalysisType, IAutoContactable, ITemperatureComponent, IHeatGenerationComponent, IGeometricalComponent, IContactableGeometry2Dot5D, IConnectable, IMarkerParent, IEntityRelation, IHasBody, IHasMaterial +public abstract class WheelBodyBase : SolidBody, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IMarkerCreatable, IFacesetCreatable, ICurvesetCreatable, IConnectableNotReference, IReferencable, IConnectableHasGeometry, IBody, IInterface, ITemplateObject, IHasBuilder, IDrawIcon, ITransformable, IGeometryContainer, IMassProp, IChainedSegmentConnector, IArgument, ITransparentable, IMFModalable, IBodyAnalysisType, IAutoContactable, ITemperatureComponent, IHeatGenerationComponent, IGeometricalComponent, IContactableGeometry2Dot5D, IConnectable, IMarkerParent, IEntityRelation, IHasBody, IHasMaterial, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -BodyBase ← -SolidBody ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[BodyBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ← +[SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ← [WheelBodyBase](VM.Managed.DAFUL.Tire.WheelBodyBase.md) #### Derived @@ -34,7 +35,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -85,116 +86,117 @@ IConnectable, IMarkerParent, IEntityRelation, IHasBody, -IHasMaterial +IHasMaterial, +IHasReplaceableEntity #### Inherited Members -SolidBody.m\_MeshFreeProperty, -SolidBody.Initialize\(Unit.ConvertFactor\), -SolidBody.FixUp\(ObjectBase\), -SolidBody.DoWorkAfterUpdateContents\(\), -SolidBody.GetMarkerModelNavigatorInfo\(XmlDocument, XmlElement, Marker\), -SolidBody.GetMarkerArrayModelNavigatorInfo\(XmlDocument, XmlElement, NamedObjectDictionary\), -SolidBody.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SolidBody.MakeReferenceImpl\(LinkedList\), -SolidBody.WriteTemplateImpl\(XmlWriter\), -SolidBody.ReadTemplateImpl\(XmlReader\), -SolidBody.GetBuilder\(\), -SolidBody.FindLocal\(string\), -SolidBody.GetUnnamedObjectName\(object\), -SolidBody.PostAddToDocument\(\), -SolidBody.ResetInvalidEntity\(\), -SolidBody.ReDraw\(\), -SolidBody.GetGeometryNavigatorInformation\(XmlDocument, XmlElement\), -SolidBody.GetPointDirection\(ref VectorBase, ref VectorBase, IReferencable\), -SolidBody.GetPointDirectionOnGeometry\(ref VectorBase, ref VectorBase, IReferencable\), -SolidBody.GetDefaultMaxPenetration\(ref double, IReferencable\), -SolidBody.GetLayerImpl\(\), -SolidBody.SetLayerImpl\(Layer\), -SolidBody.OnDeserialization\(object\), -SolidBody.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -SolidBody.LinkRequestDestroy\(object, LinkEventArgs\), -SolidBody.GetAnalysisLevelInfo\(ref List, ref List\), -SolidBody.IsAutoContactable\(\), -SolidBody.GetContactables\(\), -SolidBody.IsInterface, -SolidBody.ModeArray, -SolidBody.DFMFPath, -SolidBody.LastModifiedTimeToDFMFFile, -SolidBody.\_MovingReferenceFrame, -SolidBody.MovingReferenceFrame, -SolidBody.ModalReferencePosition, -SolidBody.UseModalReferencePosition, -SolidBody.UseAdvancedOption, -SolidBody.UseTMovingReferenceFrame, -SolidBody.UseRMovingReferenceFrame, -SolidBody.ParentTypeImpl, -SolidBody.IsEditCM, -SolidBody.IsBaseGeometry, -SolidBody.IsActionGeometry, -SolidBody.MaxPenetration, -SolidBody.HalfThickness, -SolidBody.SurfaceSmoothingType, -SolidBody.Connectable, -SolidBody.IsRepresentedAsBSurface, -SolidBody.ReferenceType, -SolidBody.ArgumentType, -SolidBody.Geometry, -SolidBody.MeshFreeProperty, -SolidBody.AnalysisType, -SolidBody.TopologyEntityTypeName, -BodyBase.Initialize\(Unit.ConvertFactor\), -BodyBase.GetGeomModelNavigatorInfo\(XmlDocument, XmlElement, BodyProperty, Body\), -BodyBase.GetGeneralMarkerInfo\(XmlDocument, XmlElement, Marker\), -BodyBase.MakeReferenceImpl\(LinkedList\), -BodyBase.FixUp\(ObjectBase\), -BodyBase.GetArgumentList\(LinkedList\), -BodyBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -BodyBase.GetLayerImpl\(\), -BodyBase.SetLayerImpl\(Layer\), -BodyBase.GetTargetListForUpdate\(\), -BodyBase.HasLayerExplicitly, -BodyBase.ParentType, -BodyBase.ParentTypeImpl, -BodyBase.ReferenceFrameType, -BodyBase.ConnectableName, -BodyBase.ConnectableFullName, -BodyBase.ConnectablePostfixName, -BodyBase.ConnectablePosition, -BodyBase.ConnectableBody, -BodyBase.Body, -BodyBase.Layer, -BodyBase.IsVisible, -BodyBase.ReferencableImpl, -BodyBase.Geometry, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[SolidBody.m\_MeshFreeProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.DoWorkAfterUpdateContents\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetMarkerModelNavigatorInfo\(XmlDocument, XmlElement, Marker\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetMarkerArrayModelNavigatorInfo\(XmlDocument, XmlElement, NamedObjectDictionary\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetBuilder\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetGeometryNavigatorInformation\(XmlDocument, XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetPointDirection\(ref VectorBase, ref VectorBase, IReferencable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetPointDirectionOnGeometry\(ref VectorBase, ref VectorBase, IReferencable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetDefaultMaxPenetration\(ref double, IReferencable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetAnalysisLevelInfo\(ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsAutoContactable\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetContactables\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ModeArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.DFMFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.LastModifiedTimeToDFMFFile](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.\_MovingReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.MovingReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ModalReferencePosition](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.UseModalReferencePosition](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.UseAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.UseTMovingReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.UseRMovingReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ParentTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsEditCM](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsBaseGeometry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsActionGeometry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.MaxPenetration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.HalfThickness](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.SurfaceSmoothingType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.Connectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsRepresentedAsBSurface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.Geometry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.MeshFreeProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.AnalysisType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.TopologyEntityTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetGeomModelNavigatorInfo\(XmlDocument, XmlElement, BodyProperty, Body\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetGeneralMarkerInfo\(XmlDocument, XmlElement, Marker\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetArgumentList\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ParentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ParentTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ReferenceFrameType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectableName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectableFullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectablePostfixName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectablePosition](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectableBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.Body](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ReferencableImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.Geometry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -293,7 +295,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -332,7 +334,7 @@ public WheelBodyBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -346,7 +348,7 @@ public WheelBodyBase(string strName, Builder builder) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -378,7 +380,7 @@ public ExpressionValueVariable CenterOffset { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### IsEditCM @@ -390,7 +392,7 @@ public override bool IsEditCM { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Scale @@ -427,7 +429,7 @@ public ExpressionValueVariable WheelCenterOffset { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -441,11 +443,11 @@ public void CreateOrUpdateBuilder(string strXml, bool bCreate, WheelBodyBase.Cre #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The STR XML. -`bCreate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bCreate` bool if set to true [b create]. @@ -467,11 +469,11 @@ public void CreateOrUpdateBuilder(string strXml, bool bCreate, WheelBodyBase.Cre #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The XML info. -`bCreate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bCreate` bool if set to true create. @@ -489,7 +491,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -527,13 +529,13 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The ob unnamed. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The unnamed object name. @@ -561,7 +563,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -579,7 +581,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -597,7 +599,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -611,7 +613,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -653,7 +655,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.md index e133d64670..e6429f3adc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Tire.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Tire +# Namespace VM.Managed.DAFUL.Tire + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ToolKitSettingBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ToolKitSettingBase.md index 5c18bc09cd..097c0118c6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ToolKitSettingBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ToolKitSettingBase.md @@ -1,4 +1,5 @@ -# Class ToolKitSettingBase +# Class ToolKitSettingBase + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public abstract class ToolKitSettingBase : LinkContainer, IObservableObject, IDi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ToolKitSettingBase](VM.Managed.DAFUL.ToolKitSettingBase.md) @@ -79,7 +80,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -148,7 +149,7 @@ The object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if [contains] the object; otherwise, false. @@ -182,7 +183,7 @@ The object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Replace\(ObjectBase, ObjectBase\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ToolkitMultiSelectionSettingBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ToolkitMultiSelectionSettingBase-1.md index 2f3f40532b..81fb582aac 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ToolkitMultiSelectionSettingBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.ToolkitMultiSelectionSettingBase-1.md @@ -1,4 +1,5 @@ -# Class ToolkitMultiSelectionSettingBase +# Class ToolkitMultiSelectionSettingBase + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -17,9 +18,9 @@ Multi-item enumerator, class, etc... #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ToolKitSettingBase](VM.Managed.DAFUL.ToolKitSettingBase.md) ← [ToolkitMultiSelectionSettingBase](VM.Managed.DAFUL.ToolkitMultiSelectionSettingBase\-1.md) @@ -88,7 +89,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -167,7 +168,7 @@ The object to find. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool Whether it contains the object. @@ -207,7 +208,7 @@ The object to remove. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool Whether it is success to remove the object. @@ -249,7 +250,7 @@ The selection of the object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool Whether it is success to set the selection. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.TopologyList-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.TopologyList-1.md index 9d33f58f32..2d7efd95c0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.TopologyList-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.TopologyList-1.md @@ -1,4 +1,5 @@ -# Class TopologyList +# Class TopologyList + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDFBase.dll @@ -15,9 +16,9 @@ public class TopologyList : LinkContainer, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [TopologyList](VM.Managed.DAFUL.TopologyList\-1.md) @@ -79,7 +80,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -118,7 +119,7 @@ public TopologyList(SubEntity objParent) #### Parameters -`objParent` SubEntity +`objParent` [SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) The parent object. @@ -134,7 +135,7 @@ public int Count { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### LstLnkTopology @@ -146,7 +147,7 @@ public IList LstLnkTopology { get; } #### Property Value - [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1) + IList ### this\[int\] @@ -194,7 +195,7 @@ public XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -208,7 +209,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -226,7 +227,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -244,7 +245,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -258,7 +259,7 @@ public void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The stream from which the object is deserialized. @@ -276,7 +277,7 @@ public void Remove(T toplology, bool bTolology) The toplology. -`bTolology` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bTolology` bool The topology flag. @@ -290,7 +291,7 @@ public void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.AttributeLoadCase.LoadCaseData.LoadCaseType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.AttributeLoadCase.LoadCaseData.LoadCaseType.md index d2d4628b1d..2911764221 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.AttributeLoadCase.LoadCaseData.LoadCaseType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.AttributeLoadCase.LoadCaseData.LoadCaseType.md @@ -1,4 +1,5 @@ -# Enum AttributeLoadCase.LoadCaseData.LoadCaseType +# Enum AttributeLoadCase.LoadCaseData.LoadCaseType + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.AttributeLoadCase.LoadCaseData.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.AttributeLoadCase.LoadCaseData.md index 252989edf3..0e622e6ccf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.AttributeLoadCase.LoadCaseData.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.AttributeLoadCase.LoadCaseData.md @@ -1,4 +1,5 @@ -# Class AttributeLoadCase.LoadCaseData +# Class AttributeLoadCase.LoadCaseData + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,9 +12,9 @@ public class AttributeLoadCase.LoadCaseData : LinkContainer, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [AttributeLoadCase.LoadCaseData](VM.Managed.DAFUL.Track.AttributeLoadCase.LoadCaseData.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,11 +117,11 @@ public ExpressionValueVariable EndTime { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The end time is null. @@ -134,11 +135,11 @@ public ExpressionValueVariable MaximumDisplacement { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The maximum displacement is null. @@ -152,11 +153,11 @@ public ExpressionValueVariable OutputStep { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The output step is null. @@ -170,11 +171,11 @@ public ExpressionValueVariable ScaleOfHydrodynamicForce { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The scale of hydrodynamic force is null. @@ -188,11 +189,11 @@ public ExpressionValueVariable TimeToSteadyState { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The time to steady state is null. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.AttributeLoadCase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.AttributeLoadCase.md index b6d24137c8..e055d40bc8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.AttributeLoadCase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.AttributeLoadCase.md @@ -1,4 +1,5 @@ -# Class AttributeLoadCase +# Class AttributeLoadCase + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,9 +12,9 @@ public class AttributeLoadCase : AttributeBase, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeLoadCase](VM.Managed.DAFUL.Track.AttributeLoadCase.md) @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.BekkerFormulation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.BekkerFormulation.md index adf1a4cec3..ff4906f833 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.BekkerFormulation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.BekkerFormulation.md @@ -1,4 +1,5 @@ -# Class BekkerFormulation +# Class BekkerFormulation + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,9 +12,9 @@ public class BekkerFormulation : NormalPressureFormulationBase, IObservableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [NormalPressureFormulationBase](VM.Managed.DAFUL.Track.NormalPressureFormulationBase.md) ← [BekkerFormulation](VM.Managed.DAFUL.Track.BekkerFormulation.md) @@ -82,7 +83,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -123,11 +124,11 @@ public ExpressionValueVariable FrictionCoefficient { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Friction Coefficient is null. @@ -141,11 +142,11 @@ public ExpressionValueVariable SinkageExponent { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Sinkage Exponent is null. @@ -171,11 +172,11 @@ public ExpressionValueVariable Width { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Width is null. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.BodeFormulation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.BodeFormulation.md index c2df02b1cd..87b58de084 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.BodeFormulation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.BodeFormulation.md @@ -1,4 +1,5 @@ -# Class BodeFormulation +# Class BodeFormulation + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,9 +12,9 @@ public class BodeFormulation : NormalPressureFormulationBase, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [NormalPressureFormulationBase](VM.Managed.DAFUL.Track.NormalPressureFormulationBase.md) ← [BodeFormulation](VM.Managed.DAFUL.Track.BodeFormulation.md) @@ -82,7 +83,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -123,11 +124,11 @@ public ExpressionValueVariable CoefficientOfUnloading { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Coefficient of Unloading is null. @@ -141,11 +142,11 @@ public ExpressionValueVariable FirstSlopeForNormalPressure { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception First Slope for Normal Pressure is null. @@ -159,11 +160,11 @@ public ExpressionValueVariable InitialPressure { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Initial Pressure is null. @@ -177,11 +178,11 @@ public ExpressionValueVariable SecondSlopeForNormalPressure { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Second Slope for Normal Pressure is null. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Current.VelocityType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Current.VelocityType.md index 18e244c18c..5842bf29ef 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Current.VelocityType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Current.VelocityType.md @@ -1,4 +1,5 @@ -# Enum Current.VelocityType +# Enum Current.VelocityType + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Current.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Current.md index a315b6e62d..087490a4ab 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Current.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Current.md @@ -1,4 +1,5 @@ -# Class Current +# Class Current + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,9 +12,9 @@ public class Current : LinkContainer, IObservableObject, IDisposableObject, ILin #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Current](VM.Managed.DAFUL.Track.Current.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,11 +117,11 @@ public ExpressionValueVariable FirstX { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception First X is null. @@ -134,11 +135,11 @@ public ExpressionValueVariable FirstY { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception First Y is null. @@ -152,11 +153,11 @@ public ExpressionValueVariable LastX { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Last X is null. @@ -170,11 +171,11 @@ public ExpressionValueVariable LastY { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Last Y is null. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Driving.ConditionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Driving.ConditionType.md index ea4ff7c49f..7e97a15bbc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Driving.ConditionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Driving.ConditionType.md @@ -1,4 +1,5 @@ -# Enum Driving.ConditionType +# Enum Driving.ConditionType + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Driving.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Driving.md index aa99dfc49b..f04d622b2b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Driving.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Driving.md @@ -1,4 +1,5 @@ -# Class Driving +# Class Driving + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,9 +12,9 @@ public class Driving : LinkContainer, IObservableObject, IDisposableObject, ILin #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Driving](VM.Managed.DAFUL.Track.Driving.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,11 +117,11 @@ public ExpressionValueVariable ContactRadiusOfSprocket { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Contact radius of sprocket is null. @@ -134,7 +135,7 @@ public Function Function { get; set; } #### Property Value - Function + [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) ### LongitudinalDamping @@ -146,11 +147,11 @@ public ExpressionValueVariable LongitudinalDamping { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Longitudinal damping is null. @@ -164,11 +165,11 @@ public ExpressionValueVariable LongitudinalPreload { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Longitudinal preload is null. @@ -182,11 +183,11 @@ public ExpressionValueVariable LongitudinalStiffness { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Longitudinal stiffness is null. @@ -200,11 +201,11 @@ public ExpressionValueVariable MassOfTrackLink { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Mass of track link is null. @@ -218,11 +219,11 @@ public ExpressionValueVariable ScaleForFrictionForce { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Scale for friction force is null. @@ -236,11 +237,11 @@ public ExpressionValueVariable ScaleForTractionForce { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Scale for traction force is null. @@ -282,7 +283,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.DropConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.DropConfiguration.md index 168a0408b1..29f1429783 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.DropConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.DropConfiguration.md @@ -1,4 +1,5 @@ -# Class DropConfiguration +# Class DropConfiguration + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,11 +12,11 @@ public class DropConfiguration : LinkConfigurationBase, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [LinkConfigurationBase](VM.Managed.DAFUL.Track.LinkConfigurationBase.md) ← [DropConfiguration](VM.Managed.DAFUL.Track.DropConfiguration.md) @@ -40,95 +41,98 @@ IEnableManager [LinkConfigurationBase.MaximumDisplacement](VM.Managed.DAFUL.Track.LinkConfigurationBase.md\#VM\_Managed\_DAFUL\_Track\_LinkConfigurationBase\_MaximumDisplacement), [LinkConfigurationBase.TimeToSteadyState](VM.Managed.DAFUL.Track.LinkConfigurationBase.md\#VM\_Managed\_DAFUL\_Track\_LinkConfigurationBase\_TimeToSteadyState), [LinkConfigurationBase.ScaleOfHydrodanamicForce](VM.Managed.DAFUL.Track.LinkConfigurationBase.md\#VM\_Managed\_DAFUL\_Track\_LinkConfigurationBase\_ScaleOfHydrodanamicForce), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -172,7 +176,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -213,5 +217,5 @@ public override string ConfigurationName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.DynamicSinkageDefinition.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.DynamicSinkageDefinition.md index 6df1a7ff7b..d717c38918 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.DynamicSinkageDefinition.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.DynamicSinkageDefinition.md @@ -1,4 +1,5 @@ -# Class DynamicSinkageDefinition +# Class DynamicSinkageDefinition + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,9 +12,9 @@ public class DynamicSinkageDefinition : LinkContainer, IObservableObject, IDispo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [DynamicSinkageDefinition](VM.Managed.DAFUL.Track.DynamicSinkageDefinition.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,11 +117,11 @@ public ExpressionValueVariable CoefficientOfDynamicsSinkage { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Coefficient of Dynamics Sinkage is null. @@ -134,11 +135,11 @@ public ExpressionValueVariable CriticalPressure { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Critical Pressure is null. @@ -152,11 +153,11 @@ public ExpressionValueVariable ExponentOfPressureRatio { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Exponent of Pressure Ratio is null. @@ -170,11 +171,11 @@ public ExpressionValueVariable ExponentOfShearDisplacement { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Exponent of Shear Displacement is null. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.GeneralConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.GeneralConfiguration.md index ed0086268c..51224f6a12 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.GeneralConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.GeneralConfiguration.md @@ -1,4 +1,5 @@ -# Class GeneralConfiguration +# Class GeneralConfiguration + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,11 +12,11 @@ public class GeneralConfiguration : LinkConfigurationBase, IObservableObject, ID #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [LinkConfigurationBase](VM.Managed.DAFUL.Track.LinkConfigurationBase.md) ← [GeneralConfiguration](VM.Managed.DAFUL.Track.GeneralConfiguration.md) @@ -40,95 +41,98 @@ IEnableManager [LinkConfigurationBase.MaximumDisplacement](VM.Managed.DAFUL.Track.LinkConfigurationBase.md\#VM\_Managed\_DAFUL\_Track\_LinkConfigurationBase\_MaximumDisplacement), [LinkConfigurationBase.TimeToSteadyState](VM.Managed.DAFUL.Track.LinkConfigurationBase.md\#VM\_Managed\_DAFUL\_Track\_LinkConfigurationBase\_TimeToSteadyState), [LinkConfigurationBase.ScaleOfHydrodanamicForce](VM.Managed.DAFUL.Track.LinkConfigurationBase.md\#VM\_Managed\_DAFUL\_Track\_LinkConfigurationBase\_ScaleOfHydrodanamicForce), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -172,7 +176,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -213,5 +217,5 @@ public override string ConfigurationName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.HydroForce.ActionBodyData.SurfaceType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.HydroForce.ActionBodyData.SurfaceType.md index 2863f1663d..7e67bda8a3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.HydroForce.ActionBodyData.SurfaceType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.HydroForce.ActionBodyData.SurfaceType.md @@ -1,4 +1,5 @@ -# Enum HydroForce.ActionBodyData.SurfaceType +# Enum HydroForce.ActionBodyData.SurfaceType + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.HydroForce.ActionBodyData.WeightingFactorType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.HydroForce.ActionBodyData.WeightingFactorType.md index 9a1a888bc8..8b4b32a578 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.HydroForce.ActionBodyData.WeightingFactorType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.HydroForce.ActionBodyData.WeightingFactorType.md @@ -1,4 +1,5 @@ -# Enum HydroForce.ActionBodyData.WeightingFactorType +# Enum HydroForce.ActionBodyData.WeightingFactorType + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.HydroForce.ActionBodyData.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.HydroForce.ActionBodyData.md index aebe63727a..2701f9929f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.HydroForce.ActionBodyData.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.HydroForce.ActionBodyData.md @@ -1,4 +1,5 @@ -# Class HydroForce.ActionBodyData +# Class HydroForce.ActionBodyData + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,9 +12,9 @@ public class HydroForce.ActionBodyData : LinkContainer, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [HydroForce.ActionBodyData](VM.Managed.DAFUL.Track.HydroForce.ActionBodyData.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -142,7 +143,7 @@ public int CoarseningFactor { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### EndingTime @@ -154,11 +155,11 @@ public ExpressionValueVariable EndingTime { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The ending time is null. @@ -172,11 +173,11 @@ public ExpressionValueVariable ShearCoefficient { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The shear coefficient is null. @@ -190,11 +191,11 @@ public ExpressionValueVariable ShearExponent { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The shear exponent is null. @@ -208,11 +209,11 @@ public ExpressionValueVariable StartingTime { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The starting time is null. @@ -250,11 +251,11 @@ public ExpressionValueVariable VolumeRatio { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The volume ratio is null. @@ -284,7 +285,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.HydroForce.SetProgressDelegate.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.HydroForce.SetProgressDelegate.md index 4edf035ed6..f649718cc7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.HydroForce.SetProgressDelegate.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.HydroForce.SetProgressDelegate.md @@ -1,4 +1,5 @@ -# Delegate HydroForce.SetProgressDelegate +# Delegate HydroForce.SetProgressDelegate + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,7 +12,7 @@ public delegate void HydroForce.SetProgressDelegate(int nValue) #### Parameters -`nValue` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nValue` int The progress value diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.HydroForce.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.HydroForce.md index 827d978b4a..9382b7aa2a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.HydroForce.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.HydroForce.md @@ -1,4 +1,5 @@ -# Class HydroForce +# Class HydroForce + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,14 +12,14 @@ public class HydroForce : Entity, IObservableObject, IDispos #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [HydroForce](VM.Managed.DAFUL.Track.HydroForce.md) #### Implements @@ -28,7 +29,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -61,34 +62,34 @@ IHasReplaceableEntity #### Inherited Members -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -187,7 +188,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -226,7 +227,7 @@ public HydroForce(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -254,7 +255,7 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Hide @@ -266,7 +267,7 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Water @@ -304,7 +305,7 @@ public virtual void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -342,7 +343,7 @@ The connectable entity #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\) @@ -354,21 +355,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -390,7 +391,7 @@ The action body data The postition -`arConnectivity` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`arConnectivity` uint\[\] The connectivity @@ -398,7 +399,7 @@ The connectivity The transform matrix -`dBBVolume` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBBVolume` double The boundary box volume @@ -416,7 +417,7 @@ public static void GetPatches(Document document, string strBodyName, HydroForce. The document -`strBodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBodyName` string The body name @@ -424,7 +425,7 @@ The body name The surface type -`nCoarseningFactor` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nCoarseningFactor` int The coarsening factor @@ -432,7 +433,7 @@ The coarsening factor The postition -`arConnectivity` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`arConnectivity` uint\[\] The connectivity @@ -440,7 +441,7 @@ The connectivity The transform matrix -`dBBVolume` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBBVolume` double The boundary box volume @@ -464,7 +465,7 @@ The connectable entity #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### LinkRequestUpdate\(object, LinkEventArgs\) @@ -476,7 +477,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.IHydroForce.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.IHydroForce.md index 3536a2f6a0..ebf6e5c3bd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.IHydroForce.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.IHydroForce.md @@ -1,4 +1,5 @@ -# Interface IHydroForce +# Interface IHydroForce + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.IWater.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.IWater.md index c40be86346..668434fb29 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.IWater.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.IWater.md @@ -1,4 +1,5 @@ -# Interface IWater +# Interface IWater + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -27,7 +28,7 @@ double Density { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ReferenceFrame @@ -39,7 +40,7 @@ Marker ReferenceFrame { get; } #### Property Value - Marker + [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) ### WaterContainerBody diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.LinkConfigurationBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.LinkConfigurationBase.md index 2023fd46c8..ca0b773036 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.LinkConfigurationBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.LinkConfigurationBase.md @@ -1,4 +1,5 @@ -# Class LinkConfigurationBase +# Class LinkConfigurationBase + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,11 +12,11 @@ public abstract class LinkConfigurationBase : Configuration, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [LinkConfigurationBase](VM.Managed.DAFUL.Track.LinkConfigurationBase.md) #### Derived @@ -43,95 +44,98 @@ IEnableManager #### Inherited Members -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -175,7 +179,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -216,7 +220,7 @@ public abstract string ConfigurationName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### MaximumDisplacement @@ -228,7 +232,7 @@ public double MaximumDisplacement { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ScaleOfHydrodanamicForce @@ -240,7 +244,7 @@ public double ScaleOfHydrodanamicForce { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TimeToSteadyState @@ -252,7 +256,7 @@ public double TimeToSteadyState { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -270,7 +274,7 @@ public static LinkConfigurationBase CreateLinkConfiguration(AttributeLoadCase.Lo The load case type -`config` Configuration +`config` [Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) The refer configuration diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.MTL.PathData.PathType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.MTL.PathData.PathType.md index 8c9ce15697..97807de770 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.MTL.PathData.PathType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.MTL.PathData.PathType.md @@ -1,4 +1,5 @@ -# Enum MTL.PathData.PathType +# Enum MTL.PathData.PathType + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.MTL.PathData.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.MTL.PathData.md index bd92020380..ef3ba84590 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.MTL.PathData.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.MTL.PathData.md @@ -1,4 +1,5 @@ -# Class MTL.PathData +# Class MTL.PathData + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,9 +12,9 @@ public class MTL.PathData : LinkContainer, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MTL.PathData](VM.Managed.DAFUL.Track.MTL.PathData.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -162,11 +163,11 @@ public ExpressionValueVariable WindingRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The winding radius is null. @@ -208,7 +209,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.MTL.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.MTL.md index 9b45fef8b4..ca81ce5ced 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.MTL.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.MTL.md @@ -1,4 +1,5 @@ -# Class MTL +# Class MTL + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,14 +12,14 @@ public class MTL : Entity, IObservableObject, IDisposableObject, IL #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [MTL](VM.Managed.DAFUL.Track.MTL.md) #### Implements @@ -28,7 +29,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -58,34 +59,34 @@ IReportable #### Inherited Members -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -184,7 +185,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -223,7 +224,7 @@ public MTL(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -251,11 +252,11 @@ public BeamGroup[] BeamGroupData { get; set; } #### Property Value - BeamGroup\[\] + [BeamGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDBeamGroup/BeamGroup.cs)\[\] #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Beam group is null. @@ -269,7 +270,7 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Hide @@ -281,7 +282,7 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### HullMarker @@ -305,11 +306,11 @@ public ExpressionValueVariable NumberOfContactPointForLength { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Number of contact point for length is null. @@ -323,11 +324,11 @@ public ExpressionValueVariable NumberOfContactPointForWidth { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Number of contact point for width is null. @@ -353,7 +354,7 @@ public SolidBody[] SolidBodies { get; set; } #### Property Value - SolidBody\[\] + [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs)\[\] ### Thickness @@ -365,11 +366,11 @@ public ExpressionValueVariable Thickness { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Thickness is null. @@ -395,11 +396,11 @@ public ExpressionValueVariable Width { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Width is null. @@ -439,7 +440,7 @@ public virtual void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -453,7 +454,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -477,7 +478,7 @@ public static void GetBeamGroupXml(MTL.PathData[] arPathData, BeamGroup[] arBeam The path data array -`arBeamGroup` BeamGroup\[\] +`arBeamGroup` [BeamGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDBeamGroup/BeamGroup.cs)\[\] The beamgroup @@ -485,19 +486,19 @@ The beamgroup The y direction -`dWidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dWidth` double The width -`dThickness` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dThickness` double The thickness -`strBeamGroup` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBeamGroup` string The beamgroup xml -`strSolidBodies` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSolidBodies` string The solid bodies xml @@ -511,21 +512,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -547,13 +548,13 @@ The path data array The y direction -`dThickness` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dThickness` double The thickness #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### GetUnnamedObjectName\(object\) @@ -565,13 +566,13 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The ob unnamed. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Initialize\(ConvertFactor\) @@ -597,9 +598,9 @@ protected override void OnLinkReserved(ILink reserved, object objNotifier, Event `reserved` ILink -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object -`args` [EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) +`args` EventArgs ### ReDraw\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.NormalPressureFormulationBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.NormalPressureFormulationBase.md index a5a8e3c5e9..e3e8a36b4c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.NormalPressureFormulationBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.NormalPressureFormulationBase.md @@ -1,4 +1,5 @@ -# Class NormalPressureFormulationBase +# Class NormalPressureFormulationBase + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,9 +12,9 @@ public abstract class NormalPressureFormulationBase : LinkContainer, IObservable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [NormalPressureFormulationBase](VM.Managed.DAFUL.Track.NormalPressureFormulationBase.md) @@ -80,7 +81,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -121,11 +122,11 @@ public ExpressionValueVariable BoundarySinkage { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The boundary sinkage is null. @@ -139,11 +140,11 @@ public ExpressionValueVariable CohesiveCoefficient { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Cohesive Coefficient is null. @@ -157,11 +158,11 @@ public ExpressionValueVariable DampRatio { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception The damp ratio is null. @@ -203,7 +204,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.NormalPressureFormulationType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.NormalPressureFormulationType.md index 1272582836..5ecb1a4f9d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.NormalPressureFormulationType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.NormalPressureFormulationType.md @@ -1,4 +1,5 @@ -# Enum NormalPressureFormulationType +# Enum NormalPressureFormulationType + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Operation.RollBackPathToOriginPositionAndOrientation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Operation.RollBackPathToOriginPositionAndOrientation.md index 8073e202c4..9e31f2dc7a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Operation.RollBackPathToOriginPositionAndOrientation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Operation.RollBackPathToOriginPositionAndOrientation.md @@ -1,4 +1,5 @@ -# Class RollBackPathToOriginPositionAndOrientation +# Class RollBackPathToOriginPositionAndOrientation + Namespace: [VM.Managed.DAFUL.Track.Operation](VM.Managed.DAFUL.Track.Operation.md) Assembly: VMOpTrack.dll @@ -9,7 +10,7 @@ public class RollBackPathToOriginPositionAndOrientation : OperationBase, IOperat #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [RollBackPathToOriginPositionAndOrientation](VM.Managed.DAFUL.Track.Operation.RollBackPathToOriginPositionAndOrientation.md) @@ -83,9 +84,9 @@ public RollBackPathToOriginPositionAndOrientation(Dictionary dicPat #### Parameters -`dicPath` [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[int](https://learn.microsoft.com/dotnet/api/system.int32), [object](https://learn.microsoft.com/dotnet/api/system.object)\> +`dicPath` Dictionary -`dicPos` [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[int](https://learn.microsoft.com/dotnet/api/system.int32), TMatrix\> +`dicPos` Dictionary ## Properties @@ -97,7 +98,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -109,7 +110,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Operation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Operation.md index 7738e8a7db..c47c834fb8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Operation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Operation.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Track.Operation +# Namespace VM.Managed.DAFUL.Track.Operation + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Piloting.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Piloting.md index d8d10d7702..25031e0674 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Piloting.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Piloting.md @@ -1,4 +1,5 @@ -# Class Piloting +# Class Piloting + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,9 +12,9 @@ public class Piloting : LinkContainer, IObservableObject, IDisposableObject, ILi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Piloting](VM.Managed.DAFUL.Track.Piloting.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,5 +117,5 @@ public Function Function { get; set; } #### Property Value - Function + [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.PitchConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.PitchConfiguration.md index e58f4e8a75..0602993c2c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.PitchConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.PitchConfiguration.md @@ -1,4 +1,5 @@ -# Class PitchConfiguration +# Class PitchConfiguration + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,11 +12,11 @@ public class PitchConfiguration : LinkConfigurationBase, IObservableObject, IDis #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [LinkConfigurationBase](VM.Managed.DAFUL.Track.LinkConfigurationBase.md) ← [PitchConfiguration](VM.Managed.DAFUL.Track.PitchConfiguration.md) @@ -40,95 +41,98 @@ IEnableManager [LinkConfigurationBase.MaximumDisplacement](VM.Managed.DAFUL.Track.LinkConfigurationBase.md\#VM\_Managed\_DAFUL\_Track\_LinkConfigurationBase\_MaximumDisplacement), [LinkConfigurationBase.TimeToSteadyState](VM.Managed.DAFUL.Track.LinkConfigurationBase.md\#VM\_Managed\_DAFUL\_Track\_LinkConfigurationBase\_TimeToSteadyState), [LinkConfigurationBase.ScaleOfHydrodanamicForce](VM.Managed.DAFUL.Track.LinkConfigurationBase.md\#VM\_Managed\_DAFUL\_Track\_LinkConfigurationBase\_ScaleOfHydrodanamicForce), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -172,7 +176,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -213,5 +217,5 @@ public override string ConfigurationName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.PropertyHydroForce.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.PropertyHydroForce.md index 19b81102b4..da71ceb8cf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.PropertyHydroForce.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.PropertyHydroForce.md @@ -1,4 +1,5 @@ -# Class PropertyHydroForce +# Class PropertyHydroForce + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,13 +12,13 @@ public class PropertyHydroForce : Property, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyHydroForce](VM.Managed.DAFUL.Track.PropertyHydroForce.md) #### Implements @@ -31,7 +32,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -40,12 +41,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -144,7 +145,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -197,7 +198,7 @@ public bool IsUseHullReferenceMarker { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ScaleOfHydrodynamicForce @@ -209,7 +210,7 @@ public double ScaleOfHydrodynamicForce { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### \_HullReferenceMarker @@ -235,5 +236,5 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.PropertyMTL.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.PropertyMTL.md index 4dacf4198b..ae191c5066 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.PropertyMTL.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.PropertyMTL.md @@ -1,4 +1,5 @@ -# Class PropertyMTL +# Class PropertyMTL + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,13 +12,13 @@ public class PropertyMTL : Property, IObservableObject, IDisposableObject, ILink #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyMTL](VM.Managed.DAFUL.Track.PropertyMTL.md) #### Implements @@ -31,7 +32,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -40,12 +41,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -144,7 +145,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.PropertySoilInteraction.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.PropertySoilInteraction.md index 8d4ebf65d7..38c8488b84 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.PropertySoilInteraction.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.PropertySoilInteraction.md @@ -1,4 +1,5 @@ -# Class PropertySoilInteraction +# Class PropertySoilInteraction + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,13 +12,13 @@ public class PropertySoilInteraction : Property, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertySoilInteraction](VM.Managed.DAFUL.Track.PropertySoilInteraction.md) #### Implements @@ -31,7 +32,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -40,12 +41,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -144,7 +145,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -189,7 +190,7 @@ public DynamicSinkageDefinition DynamicSinkage { get; set; } #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Dynamic Sinkage is null. @@ -207,7 +208,7 @@ public NormalPressureFormulationBase NormalPressureFormulation { get; set; } #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Normal Pressure Formulation is null. @@ -225,7 +226,7 @@ public ShearPressureFormulationBase ShearPressureFormulation { get; set; } #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Shear Pressure Formulation is null. @@ -239,7 +240,7 @@ public string TypeOfSoil { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -257,13 +258,13 @@ public bool GenerateRDFFile(IDocument doc, string strFilePath) The document. -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string The file path. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GenerateRDFFile\(IDocument, IDocument, string, string, Dictionary\>, IContactableRigid3D, DirectionBase\) @@ -283,15 +284,15 @@ The current document. The soil document. -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string The file path. -`strSoilType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSoilType` string The soil type. -`dicProperty` [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\>\> +`dicProperty` Dictionary\> The property information. @@ -305,7 +306,7 @@ The vertical direction. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetSoilTypesFromInteractionFile\(ref List\) @@ -317,13 +318,13 @@ public static bool GetSoilTypesFromInteractionFile(ref List lstSoilType) #### Parameters -`lstSoilType` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstSoilType` List The solid types #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Initialize\(ConvertFactor\) @@ -353,31 +354,31 @@ public static bool ReadInteractionFile(IDocument doc, ref string strSoilType, re The document -`strSoilType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSoilType` string The soil type -`nodeSoilParameter` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`nodeSoilParameter` XmlNode The soil paramter node -`dFactorPressure` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dFactorPressure` double The pressure factor(F/L^2) -`dFactorSlope` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dFactorSlope` double The slope factor(F/L) -`dFactorLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dFactorLength` double The length factor -`dFactorForce` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dFactorForce` double The force factor #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.PropertyThrust.ForceType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.PropertyThrust.ForceType.md index ee5b15cbe1..8d8616e380 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.PropertyThrust.ForceType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.PropertyThrust.ForceType.md @@ -1,4 +1,5 @@ -# Enum PropertyThrust.ForceType +# Enum PropertyThrust.ForceType + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.PropertyThrust.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.PropertyThrust.md index b4b05f4bd4..9eeed62ad3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.PropertyThrust.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.PropertyThrust.md @@ -1,4 +1,5 @@ -# Class PropertyThrust +# Class PropertyThrust + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,13 +12,13 @@ public class PropertyThrust : Property, IObservableObject, IDisposableObject, IL #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyThrust](VM.Managed.DAFUL.Track.PropertyThrust.md) #### Implements @@ -31,7 +32,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -40,12 +41,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -144,7 +145,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -185,7 +186,7 @@ public bool AppliedOnlyUnderWater { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Derivative @@ -197,11 +198,11 @@ public ExpressionValueVariable Derivative { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Derivative is null. @@ -215,7 +216,7 @@ public Function Function { get; set; } #### Property Value - Function + [Function](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Function.cs) ### Integral @@ -227,11 +228,11 @@ public ExpressionValueVariable Integral { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Integral is null. @@ -249,7 +250,7 @@ public Piloting PilotingProperty { get; set; } #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Piloting is null. @@ -263,11 +264,11 @@ public ExpressionValueVariable Proportional { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Proportional is null. @@ -281,7 +282,7 @@ public Spline PumpCapacitySpline { get; set; } #### Property Value - Spline + [Spline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs) ### TypeOfForce diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.PropertyWater.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.PropertyWater.md index d1182429f6..57b4a115a7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.PropertyWater.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.PropertyWater.md @@ -1,4 +1,5 @@ -# Class PropertyWater +# Class PropertyWater + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,13 +12,13 @@ public class PropertyWater : Property, IObservableObject, IDisposableObject, ILi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyWater](VM.Managed.DAFUL.Track.PropertyWater.md) #### Implements @@ -31,7 +32,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -40,12 +41,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -144,7 +145,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -189,7 +190,7 @@ public Current CurrentProperty { get; set; } #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Current is null. @@ -203,11 +204,11 @@ public ExpressionValueVariable WaterDensity { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Water Density is null. @@ -225,7 +226,7 @@ public Wave WaveProperty { get; set; } #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Wave is null. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.ReferenceHydroForce.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.ReferenceHydroForce.md index 0710e85fd4..6abaf70be0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.ReferenceHydroForce.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.ReferenceHydroForce.md @@ -1,4 +1,5 @@ -# Class ReferenceHydroForce +# Class ReferenceHydroForce + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,9 +12,9 @@ public class ReferenceHydroForce : Reference, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Reference ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, INamed, @@ -163,7 +164,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -194,11 +195,11 @@ protected ReferenceHydroForce(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. @@ -228,21 +229,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlRootEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlRootEle` XmlElement The XmlDocument for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.ReferenceWater.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.ReferenceWater.md index baf5d8036a..3f486b62b5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.ReferenceWater.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.ReferenceWater.md @@ -1,4 +1,5 @@ -# Class ReferenceWater +# Class ReferenceWater + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,9 +12,9 @@ public class ReferenceWater : Reference, IObservableObject, IDisposableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Reference ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, INamed, @@ -163,7 +164,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -194,11 +195,11 @@ protected ReferenceWater(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. @@ -228,21 +229,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlRootEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlRootEle` XmlElement The XmlDocument for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.RollConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.RollConfiguration.md index 1556b04eb4..e1f90316d3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.RollConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.RollConfiguration.md @@ -1,4 +1,5 @@ -# Class RollConfiguration +# Class RollConfiguration + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,11 +12,11 @@ public class RollConfiguration : LinkConfigurationBase, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [LinkConfigurationBase](VM.Managed.DAFUL.Track.LinkConfigurationBase.md) ← [RollConfiguration](VM.Managed.DAFUL.Track.RollConfiguration.md) @@ -40,95 +41,98 @@ IEnableManager [LinkConfigurationBase.MaximumDisplacement](VM.Managed.DAFUL.Track.LinkConfigurationBase.md\#VM\_Managed\_DAFUL\_Track\_LinkConfigurationBase\_MaximumDisplacement), [LinkConfigurationBase.TimeToSteadyState](VM.Managed.DAFUL.Track.LinkConfigurationBase.md\#VM\_Managed\_DAFUL\_Track\_LinkConfigurationBase\_TimeToSteadyState), [LinkConfigurationBase.ScaleOfHydrodanamicForce](VM.Managed.DAFUL.Track.LinkConfigurationBase.md\#VM\_Managed\_DAFUL\_Track\_LinkConfigurationBase\_ScaleOfHydrodanamicForce), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -172,7 +176,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -213,5 +217,5 @@ public override string ConfigurationName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.ShearPressureFormulationBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.ShearPressureFormulationBase.md index f7cdcc035c..ac60219b59 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.ShearPressureFormulationBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.ShearPressureFormulationBase.md @@ -1,4 +1,5 @@ -# Class ShearPressureFormulationBase +# Class ShearPressureFormulationBase + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,9 +12,9 @@ public abstract class ShearPressureFormulationBase : LinkContainer, IObservableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ShearPressureFormulationBase](VM.Managed.DAFUL.Track.ShearPressureFormulationBase.md) @@ -79,7 +80,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.ShearPressureFormulationType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.ShearPressureFormulationType.md index 159660db93..d650494075 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.ShearPressureFormulationType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.ShearPressureFormulationType.md @@ -1,4 +1,5 @@ -# Enum ShearPressureFormulationType +# Enum ShearPressureFormulationType + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.SoilInteraction.ActionGeometryData.ContactShapeType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.SoilInteraction.ActionGeometryData.ContactShapeType.md index 20f532a9f7..6c963be88d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.SoilInteraction.ActionGeometryData.ContactShapeType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.SoilInteraction.ActionGeometryData.ContactShapeType.md @@ -1,4 +1,5 @@ -# Enum SoilInteraction.ActionGeometryData.ContactShapeType +# Enum SoilInteraction.ActionGeometryData.ContactShapeType + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.SoilInteraction.ActionGeometryData.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.SoilInteraction.ActionGeometryData.md index c6876cfd53..b8634fe158 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.SoilInteraction.ActionGeometryData.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.SoilInteraction.ActionGeometryData.md @@ -1,4 +1,5 @@ -# Class SoilInteraction.ActionGeometryData +# Class SoilInteraction.ActionGeometryData + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,9 +12,9 @@ public class SoilInteraction.ActionGeometryData : LinkContainer, IObservableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [SoilInteraction.ActionGeometryData](VM.Managed.DAFUL.Track.SoilInteraction.ActionGeometryData.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -166,7 +167,7 @@ public double ContactAreaLengthOrRadius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ContactAreaWidth @@ -178,7 +179,7 @@ public double ContactAreaWidth { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ContactPointOfLengthOrRadius @@ -190,7 +191,7 @@ public uint ContactPointOfLengthOrRadius { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### ContactPointOfWidth @@ -202,7 +203,7 @@ public uint ContactPointOfWidth { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### TypeOfContactShape diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.SoilInteraction.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.SoilInteraction.md index 944e9d5bf2..c596665243 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.SoilInteraction.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.SoilInteraction.md @@ -1,4 +1,5 @@ -# Class SoilInteraction +# Class SoilInteraction + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,14 +12,14 @@ public class SoilInteraction : Entity, IObservableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [SoilInteraction](VM.Managed.DAFUL.Track.SoilInteraction.md) #### Implements @@ -28,7 +29,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -58,34 +59,34 @@ IReportable #### Inherited Members -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -184,7 +185,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -223,7 +224,7 @@ public SoilInteraction(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -263,7 +264,7 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Hide @@ -275,7 +276,7 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### VerticalDirection @@ -313,7 +314,7 @@ public virtual void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -327,21 +328,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -369,9 +370,9 @@ protected override void OnLinkReserved(ILink reserved, object objNotifier, Event `reserved` ILink -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object -`args` [EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) +`args` EventArgs ### ReDraw\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.SolidBodyLink.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.SolidBodyLink.md index 899d0a92bc..4e011a81d3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.SolidBodyLink.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.SolidBodyLink.md @@ -1,4 +1,5 @@ -# Class SolidBodyLink +# Class SolidBodyLink + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -6,21 +7,21 @@ Assembly: VMDTrackBase.dll This class is to represent the solid link-shoe body. ```csharp -public class SolidBodyLink : SolidBody, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IMarkerCreatable, IFacesetCreatable, ICurvesetCreatable, IConnectableNotReference, IReferencable, IConnectableHasGeometry, IBody, IInterface, ITemplateObject, IHasBuilder, IDrawIcon, ITransformable, IGeometryContainer, IMassProp, IChainedSegmentConnector, IArgument, ITransparentable, IMFModalable, IBodyAnalysisType, IAutoContactable, ITemperatureComponent, IHeatGenerationComponent, IGeometricalComponent, IContactableGeometry2Dot5D, IConnectable, IMarkerParent, IEntityRelation, IHasBody, IHasMaterial +public class SolidBodyLink : SolidBody, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IMarkerCreatable, IFacesetCreatable, ICurvesetCreatable, IConnectableNotReference, IReferencable, IConnectableHasGeometry, IBody, IInterface, ITemplateObject, IHasBuilder, IDrawIcon, ITransformable, IGeometryContainer, IMassProp, IChainedSegmentConnector, IArgument, ITransparentable, IMFModalable, IBodyAnalysisType, IAutoContactable, ITemperatureComponent, IHeatGenerationComponent, IGeometricalComponent, IContactableGeometry2Dot5D, IConnectable, IMarkerParent, IEntityRelation, IHasBody, IHasMaterial, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -BodyBase ← -SolidBody ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[BodyBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ← +[SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ← [SolidBodyLink](VM.Managed.DAFUL.Track.SolidBodyLink.md) #### Implements @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -81,116 +82,117 @@ IConnectable, IMarkerParent, IEntityRelation, IHasBody, -IHasMaterial +IHasMaterial, +IHasReplaceableEntity #### Inherited Members -SolidBody.m\_MeshFreeProperty, -SolidBody.Initialize\(Unit.ConvertFactor\), -SolidBody.FixUp\(ObjectBase\), -SolidBody.DoWorkAfterUpdateContents\(\), -SolidBody.GetMarkerModelNavigatorInfo\(XmlDocument, XmlElement, Marker\), -SolidBody.GetMarkerArrayModelNavigatorInfo\(XmlDocument, XmlElement, NamedObjectDictionary\), -SolidBody.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SolidBody.MakeReferenceImpl\(LinkedList\), -SolidBody.WriteTemplateImpl\(XmlWriter\), -SolidBody.ReadTemplateImpl\(XmlReader\), -SolidBody.GetBuilder\(\), -SolidBody.FindLocal\(string\), -SolidBody.GetUnnamedObjectName\(object\), -SolidBody.PostAddToDocument\(\), -SolidBody.ResetInvalidEntity\(\), -SolidBody.ReDraw\(\), -SolidBody.GetGeometryNavigatorInformation\(XmlDocument, XmlElement\), -SolidBody.GetPointDirection\(ref VectorBase, ref VectorBase, IReferencable\), -SolidBody.GetPointDirectionOnGeometry\(ref VectorBase, ref VectorBase, IReferencable\), -SolidBody.GetDefaultMaxPenetration\(ref double, IReferencable\), -SolidBody.GetLayerImpl\(\), -SolidBody.SetLayerImpl\(Layer\), -SolidBody.OnDeserialization\(object\), -SolidBody.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -SolidBody.LinkRequestDestroy\(object, LinkEventArgs\), -SolidBody.GetAnalysisLevelInfo\(ref List, ref List\), -SolidBody.IsAutoContactable\(\), -SolidBody.GetContactables\(\), -SolidBody.IsInterface, -SolidBody.ModeArray, -SolidBody.DFMFPath, -SolidBody.LastModifiedTimeToDFMFFile, -SolidBody.\_MovingReferenceFrame, -SolidBody.MovingReferenceFrame, -SolidBody.ModalReferencePosition, -SolidBody.UseModalReferencePosition, -SolidBody.UseAdvancedOption, -SolidBody.UseTMovingReferenceFrame, -SolidBody.UseRMovingReferenceFrame, -SolidBody.ParentTypeImpl, -SolidBody.IsEditCM, -SolidBody.IsBaseGeometry, -SolidBody.IsActionGeometry, -SolidBody.MaxPenetration, -SolidBody.HalfThickness, -SolidBody.SurfaceSmoothingType, -SolidBody.Connectable, -SolidBody.IsRepresentedAsBSurface, -SolidBody.ReferenceType, -SolidBody.ArgumentType, -SolidBody.Geometry, -SolidBody.MeshFreeProperty, -SolidBody.AnalysisType, -SolidBody.TopologyEntityTypeName, -BodyBase.Initialize\(Unit.ConvertFactor\), -BodyBase.GetGeomModelNavigatorInfo\(XmlDocument, XmlElement, BodyProperty, Body\), -BodyBase.GetGeneralMarkerInfo\(XmlDocument, XmlElement, Marker\), -BodyBase.MakeReferenceImpl\(LinkedList\), -BodyBase.FixUp\(ObjectBase\), -BodyBase.GetArgumentList\(LinkedList\), -BodyBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -BodyBase.GetLayerImpl\(\), -BodyBase.SetLayerImpl\(Layer\), -BodyBase.GetTargetListForUpdate\(\), -BodyBase.HasLayerExplicitly, -BodyBase.ParentType, -BodyBase.ParentTypeImpl, -BodyBase.ReferenceFrameType, -BodyBase.ConnectableName, -BodyBase.ConnectableFullName, -BodyBase.ConnectablePostfixName, -BodyBase.ConnectablePosition, -BodyBase.ConnectableBody, -BodyBase.Body, -BodyBase.Layer, -BodyBase.IsVisible, -BodyBase.ReferencableImpl, -BodyBase.Geometry, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[SolidBody.m\_MeshFreeProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.DoWorkAfterUpdateContents\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetMarkerModelNavigatorInfo\(XmlDocument, XmlElement, Marker\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetMarkerArrayModelNavigatorInfo\(XmlDocument, XmlElement, NamedObjectDictionary\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetBuilder\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetGeometryNavigatorInformation\(XmlDocument, XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetPointDirection\(ref VectorBase, ref VectorBase, IReferencable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetPointDirectionOnGeometry\(ref VectorBase, ref VectorBase, IReferencable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetDefaultMaxPenetration\(ref double, IReferencable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetAnalysisLevelInfo\(ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsAutoContactable\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetContactables\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ModeArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.DFMFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.LastModifiedTimeToDFMFFile](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.\_MovingReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.MovingReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ModalReferencePosition](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.UseModalReferencePosition](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.UseAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.UseTMovingReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.UseRMovingReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ParentTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsEditCM](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsBaseGeometry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsActionGeometry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.MaxPenetration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.HalfThickness](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.SurfaceSmoothingType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.Connectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsRepresentedAsBSurface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.Geometry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.MeshFreeProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.AnalysisType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.TopologyEntityTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetGeomModelNavigatorInfo\(XmlDocument, XmlElement, BodyProperty, Body\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetGeneralMarkerInfo\(XmlDocument, XmlElement, Marker\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetArgumentList\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ParentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ParentTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ReferenceFrameType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectableName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectableFullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectablePostfixName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectablePosition](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectableBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.Body](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ReferencableImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.Geometry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -289,7 +291,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -328,7 +330,7 @@ public SolidBodyLink(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the solid link body. @@ -342,7 +344,7 @@ public SolidBodyLink(string strName, Builder builder) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the solid link body. @@ -362,7 +364,7 @@ public SolidBodyLink ReGenerateBodyInformation(XmlDocument dom) #### Parameters -`dom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`dom` XmlDocument The data xml of roller diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.SolidBodyShoe.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.SolidBodyShoe.md index 977ded917e..c9342622d2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.SolidBodyShoe.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.SolidBodyShoe.md @@ -1,4 +1,5 @@ -# Class SolidBodyShoe +# Class SolidBodyShoe + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -6,21 +7,21 @@ Assembly: VMDTrackBase.dll This class is to represent the solid shoe body. ```csharp -public class SolidBodyShoe : SolidBody, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IMarkerCreatable, IFacesetCreatable, ICurvesetCreatable, IConnectableNotReference, IReferencable, IConnectableHasGeometry, IBody, IInterface, ITemplateObject, IHasBuilder, IDrawIcon, ITransformable, IGeometryContainer, IMassProp, IChainedSegmentConnector, IArgument, ITransparentable, IMFModalable, IBodyAnalysisType, IAutoContactable, ITemperatureComponent, IHeatGenerationComponent, IGeometricalComponent, IContactableGeometry2Dot5D, IConnectable, IMarkerParent, IEntityRelation, IHasBody, IHasMaterial +public class SolidBodyShoe : SolidBody, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IMarkerCreatable, IFacesetCreatable, ICurvesetCreatable, IConnectableNotReference, IReferencable, IConnectableHasGeometry, IBody, IInterface, ITemplateObject, IHasBuilder, IDrawIcon, ITransformable, IGeometryContainer, IMassProp, IChainedSegmentConnector, IArgument, ITransparentable, IMFModalable, IBodyAnalysisType, IAutoContactable, ITemperatureComponent, IHeatGenerationComponent, IGeometricalComponent, IContactableGeometry2Dot5D, IConnectable, IMarkerParent, IEntityRelation, IHasBody, IHasMaterial, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -BodyBase ← -SolidBody ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[BodyBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ← +[SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ← [SolidBodyShoe](VM.Managed.DAFUL.Track.SolidBodyShoe.md) #### Implements @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -81,116 +82,117 @@ IConnectable, IMarkerParent, IEntityRelation, IHasBody, -IHasMaterial +IHasMaterial, +IHasReplaceableEntity #### Inherited Members -SolidBody.m\_MeshFreeProperty, -SolidBody.Initialize\(Unit.ConvertFactor\), -SolidBody.FixUp\(ObjectBase\), -SolidBody.DoWorkAfterUpdateContents\(\), -SolidBody.GetMarkerModelNavigatorInfo\(XmlDocument, XmlElement, Marker\), -SolidBody.GetMarkerArrayModelNavigatorInfo\(XmlDocument, XmlElement, NamedObjectDictionary\), -SolidBody.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SolidBody.MakeReferenceImpl\(LinkedList\), -SolidBody.WriteTemplateImpl\(XmlWriter\), -SolidBody.ReadTemplateImpl\(XmlReader\), -SolidBody.GetBuilder\(\), -SolidBody.FindLocal\(string\), -SolidBody.GetUnnamedObjectName\(object\), -SolidBody.PostAddToDocument\(\), -SolidBody.ResetInvalidEntity\(\), -SolidBody.ReDraw\(\), -SolidBody.GetGeometryNavigatorInformation\(XmlDocument, XmlElement\), -SolidBody.GetPointDirection\(ref VectorBase, ref VectorBase, IReferencable\), -SolidBody.GetPointDirectionOnGeometry\(ref VectorBase, ref VectorBase, IReferencable\), -SolidBody.GetDefaultMaxPenetration\(ref double, IReferencable\), -SolidBody.GetLayerImpl\(\), -SolidBody.SetLayerImpl\(Layer\), -SolidBody.OnDeserialization\(object\), -SolidBody.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -SolidBody.LinkRequestDestroy\(object, LinkEventArgs\), -SolidBody.GetAnalysisLevelInfo\(ref List, ref List\), -SolidBody.IsAutoContactable\(\), -SolidBody.GetContactables\(\), -SolidBody.IsInterface, -SolidBody.ModeArray, -SolidBody.DFMFPath, -SolidBody.LastModifiedTimeToDFMFFile, -SolidBody.\_MovingReferenceFrame, -SolidBody.MovingReferenceFrame, -SolidBody.ModalReferencePosition, -SolidBody.UseModalReferencePosition, -SolidBody.UseAdvancedOption, -SolidBody.UseTMovingReferenceFrame, -SolidBody.UseRMovingReferenceFrame, -SolidBody.ParentTypeImpl, -SolidBody.IsEditCM, -SolidBody.IsBaseGeometry, -SolidBody.IsActionGeometry, -SolidBody.MaxPenetration, -SolidBody.HalfThickness, -SolidBody.SurfaceSmoothingType, -SolidBody.Connectable, -SolidBody.IsRepresentedAsBSurface, -SolidBody.ReferenceType, -SolidBody.ArgumentType, -SolidBody.Geometry, -SolidBody.MeshFreeProperty, -SolidBody.AnalysisType, -SolidBody.TopologyEntityTypeName, -BodyBase.Initialize\(Unit.ConvertFactor\), -BodyBase.GetGeomModelNavigatorInfo\(XmlDocument, XmlElement, BodyProperty, Body\), -BodyBase.GetGeneralMarkerInfo\(XmlDocument, XmlElement, Marker\), -BodyBase.MakeReferenceImpl\(LinkedList\), -BodyBase.FixUp\(ObjectBase\), -BodyBase.GetArgumentList\(LinkedList\), -BodyBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -BodyBase.GetLayerImpl\(\), -BodyBase.SetLayerImpl\(Layer\), -BodyBase.GetTargetListForUpdate\(\), -BodyBase.HasLayerExplicitly, -BodyBase.ParentType, -BodyBase.ParentTypeImpl, -BodyBase.ReferenceFrameType, -BodyBase.ConnectableName, -BodyBase.ConnectableFullName, -BodyBase.ConnectablePostfixName, -BodyBase.ConnectablePosition, -BodyBase.ConnectableBody, -BodyBase.Body, -BodyBase.Layer, -BodyBase.IsVisible, -BodyBase.ReferencableImpl, -BodyBase.Geometry, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[SolidBody.m\_MeshFreeProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.DoWorkAfterUpdateContents\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetMarkerModelNavigatorInfo\(XmlDocument, XmlElement, Marker\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetMarkerArrayModelNavigatorInfo\(XmlDocument, XmlElement, NamedObjectDictionary\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetBuilder\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetGeometryNavigatorInformation\(XmlDocument, XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetPointDirection\(ref VectorBase, ref VectorBase, IReferencable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetPointDirectionOnGeometry\(ref VectorBase, ref VectorBase, IReferencable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetDefaultMaxPenetration\(ref double, IReferencable\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetAnalysisLevelInfo\(ref List, ref List\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsAutoContactable\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.GetContactables\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsInterface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ModeArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.DFMFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.LastModifiedTimeToDFMFFile](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.\_MovingReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.MovingReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ModalReferencePosition](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.UseModalReferencePosition](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.UseAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.UseTMovingReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.UseRMovingReferenceFrame](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ParentTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsEditCM](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsBaseGeometry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsActionGeometry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.MaxPenetration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.HalfThickness](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.SurfaceSmoothingType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.Connectable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.IsRepresentedAsBSurface](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.Geometry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.MeshFreeProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.AnalysisType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[SolidBody.TopologyEntityTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetGeomModelNavigatorInfo\(XmlDocument, XmlElement, BodyProperty, Body\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetGeneralMarkerInfo\(XmlDocument, XmlElement, Marker\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetArgumentList\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ParentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ParentTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ReferenceFrameType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectableName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectableFullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectablePostfixName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectablePosition](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ConnectableBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.Body](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.ReferencableImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[BodyBase.Geometry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -289,7 +291,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -328,7 +330,7 @@ public SolidBodyShoe(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the solid shoe body. @@ -342,7 +344,7 @@ public SolidBodyShoe(string strName, Builder builder) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the solid shoe body. @@ -362,7 +364,7 @@ public SolidBodyShoe ReGenerateBodyInformation(XmlDocument dom) #### Parameters -`dom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`dom` XmlDocument The data xml of roller diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Thrust.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Thrust.md index 862452672c..54f29ad3cc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Thrust.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Thrust.md @@ -1,4 +1,5 @@ -# Class Thrust +# Class Thrust + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,14 +12,14 @@ public class Thrust : Entity, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [Thrust](VM.Managed.DAFUL.Track.Thrust.md) #### Implements @@ -28,7 +29,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -59,34 +60,34 @@ IHasReplaceableEntity #### Inherited Members -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -185,7 +186,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -224,7 +225,7 @@ public Thrust(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -240,7 +241,7 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Hide @@ -252,7 +253,7 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Position @@ -350,7 +351,7 @@ public virtual void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -364,21 +365,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -406,7 +407,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.ThrustConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.ThrustConfiguration.md index 3195d06aa0..89c1656725 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.ThrustConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.ThrustConfiguration.md @@ -1,4 +1,5 @@ -# Class ThrustConfiguration +# Class ThrustConfiguration + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,11 +12,11 @@ public class ThrustConfiguration : LinkConfigurationBase, IObservableObject, IDi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [LinkConfigurationBase](VM.Managed.DAFUL.Track.LinkConfigurationBase.md) ← [ThrustConfiguration](VM.Managed.DAFUL.Track.ThrustConfiguration.md) @@ -40,95 +41,98 @@ IEnableManager [LinkConfigurationBase.MaximumDisplacement](VM.Managed.DAFUL.Track.LinkConfigurationBase.md\#VM\_Managed\_DAFUL\_Track\_LinkConfigurationBase\_MaximumDisplacement), [LinkConfigurationBase.TimeToSteadyState](VM.Managed.DAFUL.Track.LinkConfigurationBase.md\#VM\_Managed\_DAFUL\_Track\_LinkConfigurationBase\_TimeToSteadyState), [LinkConfigurationBase.ScaleOfHydrodanamicForce](VM.Managed.DAFUL.Track.LinkConfigurationBase.md\#VM\_Managed\_DAFUL\_Track\_LinkConfigurationBase\_ScaleOfHydrodanamicForce), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -172,7 +176,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -213,5 +217,5 @@ public override string ConfigurationName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.TrackPlacing.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.TrackPlacing.md index c1a4cb1a48..861ad52bd4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.TrackPlacing.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.TrackPlacing.md @@ -1,4 +1,5 @@ -# Class TrackPlacing +# Class TrackPlacing + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,13 +12,13 @@ public class TrackPlacing : ChainedPlacing, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -ChainedPlacingBase ← -ChainedPlacing ← +[ChainedPlacingBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/ChainedPlacingBase.cs) ← +[ChainedPlacing](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/ChainedPlacing.cs) ← [TrackPlacing](VM.Managed.DAFUL.Track.TrackPlacing.md) #### Implements @@ -34,7 +35,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, INamed, IEnabled, @@ -45,30 +46,30 @@ IPostOpenDocumentForChainedSystem #### Inherited Members -ChainedPlacing.m\_Placing, -ChainedPlacing.m\_dicContacts, -ChainedPlacing.m\_dicConnectors, -ChainedPlacing.m\_dicMtoNContacts, -ChainedPlacing.Initialize\(Unit.ConvertFactor\), -ChainedPlacing.AddBearingFrictionLoss\(BearingFrictionLoss\), -ChainedPlacing.LinkRequestUpdate\(object, LinkEventArgs\), -ChainedPlacing.LinkRequestDestroy\(object, LinkEventArgs\), -ChainedPlacing.OnDeserialization\(object\), -ChainedPlacing.Placing, -ChainedPlacing.Contacts, -ChainedPlacing.Connectors, -ChainedPlacing.MtoNContacts, -ChainedPlacing.BearingFrictionLossList, -ChainedPlacing.Paths, -ChainedPlacingBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -ChainedPlacingBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -ChainedPlacingBase.FixUp\(ObjectBase\), -ChainedPlacingBase.FullName, -ChainedPlacingBase.Name, -ChainedPlacingBase.NonSymmetricName, -ChainedPlacingBase.IsEnabled, -ChainedPlacingBase.Comment, -ChainedPlacingBase.Paths, +[ChainedPlacing.m\_Placing](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/ChainedPlacing.cs), +[ChainedPlacing.m\_dicContacts](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/ChainedPlacing.cs), +[ChainedPlacing.m\_dicConnectors](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/ChainedPlacing.cs), +[ChainedPlacing.m\_dicMtoNContacts](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/ChainedPlacing.cs), +[ChainedPlacing.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/ChainedPlacing.cs), +[ChainedPlacing.AddBearingFrictionLoss\(BearingFrictionLoss\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/ChainedPlacing.cs), +[ChainedPlacing.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/ChainedPlacing.cs), +[ChainedPlacing.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/ChainedPlacing.cs), +[ChainedPlacing.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/ChainedPlacing.cs), +[ChainedPlacing.Placing](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/ChainedPlacing.cs), +[ChainedPlacing.Contacts](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/ChainedPlacing.cs), +[ChainedPlacing.Connectors](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/ChainedPlacing.cs), +[ChainedPlacing.MtoNContacts](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/ChainedPlacing.cs), +[ChainedPlacing.BearingFrictionLossList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/ChainedPlacing.cs), +[ChainedPlacing.Paths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/ChainedPlacing.cs), +[ChainedPlacingBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/ChainedPlacingBase.cs), +[ChainedPlacingBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/ChainedPlacingBase.cs), +[ChainedPlacingBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/ChainedPlacingBase.cs), +[ChainedPlacingBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/ChainedPlacingBase.cs), +[ChainedPlacingBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/ChainedPlacingBase.cs), +[ChainedPlacingBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/ChainedPlacingBase.cs), +[ChainedPlacingBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/ChainedPlacingBase.cs), +[ChainedPlacingBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/ChainedPlacingBase.cs), +[ChainedPlacingBase.Paths](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/ChainedPlacingBase.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -161,7 +162,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -201,7 +202,7 @@ public TrackPlacing(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string ## Methods @@ -215,7 +216,7 @@ protected override void LinkRequestDestroy(object objNotifier, LinkEventArgs arg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.TrackPlacingInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.TrackPlacingInfo.md index 246d2aac29..7b642e6384 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.TrackPlacingInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.TrackPlacingInfo.md @@ -1,4 +1,5 @@ -# Class TrackPlacingInfo +# Class TrackPlacingInfo + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,11 +12,11 @@ public class TrackPlacingInfo : PlacingInfoBase, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -PlacingInfoBase ← +[PlacingInfoBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/Placing.cs) ← [TrackPlacingInfo](VM.Managed.DAFUL.Track.TrackPlacingInfo.md) #### Implements @@ -33,7 +34,7 @@ IVerifiable #### Inherited Members -PlacingInfoBase.FindInnerLinkEventArgs\(LinkEventArgs\), +[PlacingInfoBase.FindInnerLinkEventArgs\(LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/Placing.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -77,7 +78,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.TrackPlacing_PathInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.TrackPlacing_PathInfo.md index 1dbee0e2b6..8cb4f870b5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.TrackPlacing_PathInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.TrackPlacing_PathInfo.md @@ -1,4 +1,5 @@ -# Class TrackPlacing\_PathInfo +# Class TrackPlacing\_PathInfo + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,11 +12,11 @@ public class TrackPlacing_PathInfo : PlacingPathInfoBase, IObservableObject, IDi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -PlacingPathInfoBase ← +[PlacingPathInfoBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/ChainedPlacing.cs) ← [TrackPlacing\_PathInfo](VM.Managed.DAFUL.Track.TrackPlacing\_PathInfo.md) #### Implements @@ -33,7 +34,7 @@ IVerifiable #### Inherited Members -PlacingPathInfoBase.FindInnerLinkEventArgs\(LinkEventArgs\), +[PlacingPathInfoBase.FindInnerLinkEventArgs\(LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDChainedBase/ChainedPlacing.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -77,7 +78,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -118,7 +119,7 @@ public bool Assembly { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Contact @@ -130,7 +131,7 @@ public bool Contact { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Distance @@ -142,7 +143,7 @@ public ExpressionValueVariable Distance { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Engagement @@ -178,5 +179,5 @@ public ExpressionValueVariable Height { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.VerticalConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.VerticalConfiguration.md index ec0cad7e15..692f9ad2d7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.VerticalConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.VerticalConfiguration.md @@ -1,4 +1,5 @@ -# Class VerticalConfiguration +# Class VerticalConfiguration + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,11 +12,11 @@ public class VerticalConfiguration : LinkConfigurationBase, IObservableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← -Configuration ← +[Configuration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs) ← [LinkConfigurationBase](VM.Managed.DAFUL.Track.LinkConfigurationBase.md) ← [VerticalConfiguration](VM.Managed.DAFUL.Track.VerticalConfiguration.md) @@ -40,95 +41,98 @@ IEnableManager [LinkConfigurationBase.MaximumDisplacement](VM.Managed.DAFUL.Track.LinkConfigurationBase.md\#VM\_Managed\_DAFUL\_Track\_LinkConfigurationBase\_MaximumDisplacement), [LinkConfigurationBase.TimeToSteadyState](VM.Managed.DAFUL.Track.LinkConfigurationBase.md\#VM\_Managed\_DAFUL\_Track\_LinkConfigurationBase\_TimeToSteadyState), [LinkConfigurationBase.ScaleOfHydrodanamicForce](VM.Managed.DAFUL.Track.LinkConfigurationBase.md\#VM\_Managed\_DAFUL\_Track\_LinkConfigurationBase\_ScaleOfHydrodanamicForce), -Configuration.InitializeConfig\(string\), -Configuration.LinkRequestUpdate\(object, LinkEventArgs\), -Configuration.LinkRequestDestroy\(object, LinkEventArgs\), -Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\), -Configuration.SerializeConfiguration\(\), -Configuration.DeserializeConfiguration\(string\), -Configuration.OnDeserialization\(object\), -Configuration.PostDeserialize\(Configuration\), -Configuration.ReplaceAnalysisParameter\(Configuration\), -Configuration.IsThermalAnalysis\(\), -Configuration.Clone\(string\), -Configuration.AddToolkitSetting\(string, ToolKitSettingBase\), -Configuration.RemoveToolkitSetting\(string\), -Configuration.ContainsToolkitSetting\(string\), -Configuration.GetToolkitSetting\(string\), -Configuration.AddToolkitSettingValue\(string, ObjectBase\), -Configuration.RemoveToolkitSettingValue\(string, ObjectBase\), -Configuration.ContainsToolkitSettingValue\(string, ObjectBase\), -Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\), -Configuration.GetNewConfigurationList\(DocumentAnalysis\), -Configuration.AddNodalOutputEntity\(ObjectBase\), -Configuration.ClearNodalOutputEntity\(\), -Configuration.IsEnabled\(ObjectBase\), -Configuration.SetEnable\(ObjectBase, bool\), -Configuration.UseMeshFreeAllBodySettings, -Configuration.MeshFreeAnalysisLevelGroup, -Configuration.ConfigName, -Configuration.UseOutOfCore, -Configuration.TypeOfJacobian, -Configuration.TypeOfTreatmentOfNonContactEntity, -Configuration.TypeOfMemoryOptimization, -Configuration.TypeOfLinearSolver, -Configuration.AccuracyOfGMS, -Configuration.TypeOfNodalCoordinate, -Configuration.JacobianOption, -Configuration.StepOfDynamicSimulation, -Configuration.StepOfStaticSimulation, -Configuration.NumberOfCore, -Configuration.UseMotionStep, -Configuration.MotionStepForPositionAnaly, -Configuration.IsIncludeStatic, -Configuration.IsIncludeEigenvalue, -Configuration.IsIncludeThermal, -Configuration.AppendedDateTime, -Configuration.TypeOfSimulation, -Configuration.TypeOfDynamicSkipAnalysis, -Configuration.TypeOfStaticSkipAnalysis, -Configuration.TypeOfInitialSkipAnalysis, -Configuration.TypeOfEigenvalueSkipAnalysis, -Configuration.TypeOfThermalSkipAnalysis, -Configuration.RecordOfStressStrainType, -Configuration.TreatAsModalForEFModalBodyResult, -Configuration.BodyOrientationType, -Configuration.ShowHideAdvancedOption, -Configuration.ResultFilePath, -Configuration.UseSolvingSpeedOption, -Configuration.UseAutoSolverProgressBar, -Configuration.SynchronizeMaxStepSize, -Configuration.UseImportICF, -Configuration.ImportICFFilePath, -Configuration.UseExportICF, -Configuration.ExportICFFilePath, -Configuration.FlexibleBodyLevelForSuperSolver, -Configuration.UsePLT, -Configuration.SimulationStepForPLT, -Configuration.ParameterOfDynamicAnalysis, -Configuration.ParameterOfStaticAnalysis, -Configuration.ParameterOfEigenvalueAnalysis, -Configuration.ParameterOfThermalAnalysis, -Configuration.DisableEntities, -Configuration.NodalOutputEntities, -Configuration.SimulationParam, -Configuration.ExtraConfigs, -Configuration.GINFPath, -Configuration.LevelOfGeometryPrecision, -Configuration.TypeOfCriterion, -Configuration.SubTypeOfCriterion, -Configuration.TypeOfMeshDataForOutput, -Configuration.UserTetraFilePath, -Configuration.CheckedLevelArray, -Configuration.CriterionVal, -Configuration.IsUseLocalRefinement, -Configuration.EigenvalueOutputStep, -Configuration.RecordOfResult, -Configuration.HighSpeedRotationOption, -Configuration.PlasticMaterialStrain, -Configuration.StressStrainReport, -Configuration.PreventShearLocking, -Configuration.Attributes, +[Configuration.InitializeConfig\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRequestDestroy\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SerializeConfiguration\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DeserializeConfiguration\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceAnalysisParameter\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsThermalAnalysis\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Clone\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSetting\(string, ToolKitSettingBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetToolkitSetting\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RemoveToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ContainsToolkitSettingValue\(string, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ReplaceToolkitSettingValue\(string, ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GetNewConfigurationList\(DocumentAnalysis\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AddNodalOutputEntity\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ClearNodalOutputEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsEnabled\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SetEnable\(ObjectBase, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMeshFreeAllBodySettings](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MeshFreeAnalysisLevelGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ConfigName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseOutOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfJacobian](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfTreatmentOfNonContactEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMemoryOptimization](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfLinearSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AccuracyOfGMS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfNodalCoordinate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.JacobianOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfDynamicSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StepOfStaticSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NumberOfCore](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseMotionStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.MotionStepForPositionAnaly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsIncludeThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.AppendedDateTime](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfDynamicSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfStaticSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfInitialSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfEigenvalueSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfThermalSkipAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfStressStrainType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TreatAsModalForEFModalBodyResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.BodyOrientationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ShowHideAdvancedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ResultFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseSolvingSpeedOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseAutoSolverProgressBar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SynchronizeMaxStepSize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseImportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ImportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UseExportICF](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportICFFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.FlexibleBodyLevelForSuperSolver](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UsePLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationStepForPLT](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfDynamicAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfStaticAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfEigenvalueAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ParameterOfThermalAnalysis](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.DisableEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.NodalOutputEntities](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SimulationParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExtraConfigs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.GINFPath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.LevelOfGeometryPrecision](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SubTypeOfCriterion](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.TypeOfMeshDataForOutput](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.UserTetraFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CheckedLevelArray](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.CriterionVal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.IsUseLocalRefinement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.EigenvalueOutputStep](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.RecordOfResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.ExportInformation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.HighSpeedRotationOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PlasticMaterialStrain](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.StressStrainReport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventShearLocking](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.SolverCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.PreventPost](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), +[Configuration.Attributes](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Configuration.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -172,7 +176,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -213,5 +217,5 @@ public override string ConfigurationName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Water.WaveResult.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Water.WaveResult.md index c995867f57..75ca9aaea1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Water.WaveResult.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Water.WaveResult.md @@ -1,4 +1,5 @@ -# Struct Water.WaveResult +# Struct Water.WaveResult + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -21,7 +22,7 @@ public double[] Height #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### Time @@ -33,7 +34,7 @@ public double Time #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Velocity @@ -45,5 +46,5 @@ public double[] Velocity #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Water.WaveStructure.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Water.WaveStructure.md index a5072f5867..244f54ce0f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Water.WaveStructure.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Water.WaveStructure.md @@ -1,4 +1,5 @@ -# Struct Water.WaveStructure +# Struct Water.WaveStructure + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -21,7 +22,7 @@ public double DecayFactor #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Density @@ -33,7 +34,7 @@ public double Density #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DepthAtDeepWater @@ -45,7 +46,7 @@ public double DepthAtDeepWater #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DistanceToDeepWater @@ -57,7 +58,7 @@ public double DistanceToDeepWater #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### EndTime @@ -69,7 +70,7 @@ public double EndTime #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Gravity @@ -93,7 +94,7 @@ public double LengthInXAxis #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### OutputStep @@ -105,7 +106,7 @@ public uint OutputStep #### Field Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### RandomPhase @@ -117,7 +118,7 @@ public List RandomPhase #### Field Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> + List ### Slope @@ -129,7 +130,7 @@ public double Slope #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TypeOfPMPeriod @@ -165,7 +166,7 @@ public bool UseBreaking #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UserFilePath @@ -177,7 +178,7 @@ public string UserFilePath #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### WaveHeightPeriod @@ -189,7 +190,7 @@ public List WaveHeightPeriod #### Field Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\[\]\> + List ### WidthInYAxis @@ -201,5 +202,5 @@ public double WidthInYAxis #### Field Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Water.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Water.md index a36c47cc08..a1fc60f0ac 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Water.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Water.md @@ -1,4 +1,5 @@ -# Class Water +# Class Water + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,14 +12,14 @@ public class Water : Entity, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [Water](VM.Managed.DAFUL.Track.Water.md) #### Implements @@ -28,7 +29,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -61,34 +62,34 @@ IHasReplaceableEntity #### Inherited Members -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -187,7 +188,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -226,7 +227,7 @@ public Water(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -242,7 +243,7 @@ public Color Color { get; set; } #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### DepthAtDeepWater @@ -254,11 +255,11 @@ public ExpressionValueVariable DepthAtDeepWater { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Depth at Deep Water is null. @@ -272,11 +273,11 @@ public ExpressionValueVariable DistanceToDeepWater { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Distance to DeepWater is null. @@ -290,7 +291,7 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Hide @@ -302,7 +303,7 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Layer @@ -326,11 +327,11 @@ public ExpressionValueVariable LengthInXAxis { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Length in X Axis is null. @@ -344,7 +345,7 @@ public List RandomPhase { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> + List ### ReferenceFrame @@ -356,7 +357,7 @@ public Marker ReferenceFrame { get; set; } #### Property Value - Marker + [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) ### Slope @@ -368,11 +369,11 @@ public ExpressionValueVariable Slope { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Slope is null. @@ -386,7 +387,7 @@ public double Transparency { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UseSlope @@ -398,7 +399,7 @@ public bool UseSlope { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### WidthInYAxis @@ -410,11 +411,11 @@ public ExpressionValueVariable WidthInYAxis { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Width in Y Axis is null. @@ -428,7 +429,7 @@ public int _Color { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -450,15 +451,15 @@ The Document The wave structure -`bOnlyFirstResult` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bOnlyFirstResult` bool whether only first result gets or not -`ardX` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ardX` double\[\] The X array -`lstResult` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Water](VM.Managed.DAFUL.Track.Water.md).[WaveResult](VM.Managed.DAFUL.Track.Water.WaveResult.md)\> +`lstResult` List<[Water](VM.Managed.DAFUL.Track.Water.md).[WaveResult](VM.Managed.DAFUL.Track.Water.WaveResult.md)\> The result @@ -480,7 +481,7 @@ public void CreateCurrentFile(string strCurrentFilePath) #### Parameters -`strCurrentFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCurrentFilePath` string The current file path @@ -506,7 +507,7 @@ public void CreateWaveFile(Document doc, string strWaveFilePath) The document -`strWaveFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strWaveFilePath` string The wave file path @@ -524,15 +525,15 @@ public static void CreateWaveMesh(TransformBase transform, double dWidth, double The Transform -`dWidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dWidth` double The width -`ardX` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ardX` double\[\] The x array -`lstResult` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Water](VM.Managed.DAFUL.Track.Water.md).[WaveResult](VM.Managed.DAFUL.Track.Water.WaveResult.md)\> +`lstResult` List<[Water](VM.Managed.DAFUL.Track.Water.md).[WaveResult](VM.Managed.DAFUL.Track.Water.WaveResult.md)\> The wave result for height @@ -540,7 +541,7 @@ The wave result for height The position array -`arConnectivity` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`arConnectivity` int\[\] The Connectivity array @@ -562,7 +563,7 @@ The document The Transform -`dWidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dWidth` double The width @@ -570,7 +571,7 @@ The width The position array -`arConnectivity` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`arConnectivity` int\[\] The Connectivity array @@ -584,7 +585,7 @@ public virtual void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -598,7 +599,7 @@ public static List GenerateRandomPhase() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> + List ### GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\) @@ -610,21 +611,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -652,7 +653,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -670,7 +671,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -688,31 +689,31 @@ public static void PiersonMoskowitzSpectrum(Wave.PMPeriodType typePMPeriod, List The Pierson-Moskowitz period type -`lstWave` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\[\]\> +`lstWave` List The wave list -`dGravity` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGravity` double The gravity -`dConvertedPeriod` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dConvertedPeriod` double The convert period -`ardFrequency` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ardFrequency` double\[\] The frequency set -`ardWaveAmp` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ardWaveAmp` double\[\] The wave ampitude set -`ardK` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ardK` double\[\] The k set -`lstFreqToSpm` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Tuple](https://learn.microsoft.com/dotnet/api/system.tuple\-2)<[double](https://learn.microsoft.com/dotnet/api/system.double), [double](https://learn.microsoft.com/dotnet/api/system.double)\>\> +`lstFreqToSpm` List\> The Frequency and Spectrum data set diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Wave.PMPeriodType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Wave.PMPeriodType.md index af4ada4049..3b6f0b6cb4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Wave.PMPeriodType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Wave.PMPeriodType.md @@ -1,4 +1,5 @@ -# Enum Wave.PMPeriodType +# Enum Wave.PMPeriodType + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Wave.WaveType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Wave.WaveType.md index aebf442932..b5c2503b1c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Wave.WaveType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Wave.WaveType.md @@ -1,4 +1,5 @@ -# Enum Wave.WaveType +# Enum Wave.WaveType + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Wave.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Wave.md index 6617fa141f..7904c89f60 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Wave.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.Wave.md @@ -1,4 +1,5 @@ -# Class Wave +# Class Wave + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,9 +12,9 @@ public class Wave : LinkContainer, IObservableObject, IDisposableObject, ILinkab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Wave](VM.Managed.DAFUL.Track.Wave.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,11 +117,11 @@ public ExpressionValueVariable DecayFactor { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Decay Factor is null. @@ -158,7 +159,7 @@ public bool UseBreaking { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UserDefinedFile @@ -170,7 +171,7 @@ public string UserDefinedFile { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### WaveDataSet diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.WaveData.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.WaveData.md index d6b5421123..25044aa1a5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.WaveData.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.WaveData.md @@ -1,4 +1,5 @@ -# Class WaveData +# Class WaveData + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,9 +12,9 @@ public class WaveData : LinkContainer, IObservableObject, IDisposableObject, ILi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [WaveData](VM.Managed.DAFUL.Track.WaveData.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,11 +117,11 @@ public ExpressionValueVariable Height { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Height is null. @@ -134,11 +135,11 @@ public ExpressionValueVariable Period { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Period is null. @@ -152,11 +153,11 @@ public bool Use { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Period is null. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.WaveVelocityData.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.WaveVelocityData.md index 02130aba31..1157223244 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.WaveVelocityData.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.WaveVelocityData.md @@ -1,4 +1,5 @@ -# Class WaveVelocityData +# Class WaveVelocityData + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,9 +12,9 @@ public class WaveVelocityData : LinkContainer, IObservableObject, IDisposableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [WaveVelocityData](VM.Managed.DAFUL.Track.WaveVelocityData.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,11 +117,11 @@ public ExpressionValueVariable Position { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Position is null. @@ -134,11 +135,11 @@ public ExpressionValueVariable Velocity { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Velocity is null. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.WongFormulation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.WongFormulation.md index c610d21f4d..e44510fd32 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.WongFormulation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.WongFormulation.md @@ -1,4 +1,5 @@ -# Class WongFormulation +# Class WongFormulation + Namespace: [VM.Managed.DAFUL.Track](VM.Managed.DAFUL.Track.md) Assembly: VMDTrackBase.dll @@ -11,9 +12,9 @@ public class WongFormulation : ShearPressureFormulationBase, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ShearPressureFormulationBase](VM.Managed.DAFUL.Track.ShearPressureFormulationBase.md) ← [WongFormulation](VM.Managed.DAFUL.Track.WongFormulation.md) @@ -77,7 +78,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -118,11 +119,11 @@ public ExpressionValueVariable Cohesion { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Cohesion is null. @@ -136,11 +137,11 @@ public ExpressionValueVariable FrictionAngle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Friction Angle is null. @@ -154,11 +155,11 @@ public ExpressionValueVariable MaxShearDisplacement { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Max. Shear Displacement is null. @@ -172,11 +173,11 @@ public ExpressionValueVariable Sensitivity { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) #### Exceptions - [Exception](https://learn.microsoft.com/dotnet/api/system.exception) + Exception Sensitivity is null. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.md index a504b9ec68..710b2155f0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.Track.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL.Track +# Namespace VM.Managed.DAFUL.Track + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.UserSubroutine.Result.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.UserSubroutine.Result.md index f7a02a59b1..921b82b455 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.UserSubroutine.Result.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.UserSubroutine.Result.md @@ -1,4 +1,5 @@ -# Class UserSubroutine.Result +# Class UserSubroutine.Result + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSP.dll @@ -11,12 +12,12 @@ public class UserSubroutine.Result : SubEntity, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [UserSubroutine.Result](VM.Managed.DAFUL.UserSubroutine.Result.md) #### Implements @@ -26,7 +27,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -45,17 +46,17 @@ INavigatorItem #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -187,7 +188,7 @@ public Result(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The name. @@ -203,5 +204,5 @@ public bool IsPerformanceIndex { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.UserSubroutine.UserDefinedDisplay.DisplaySet.PositionAndScalarStartSequence.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.UserSubroutine.UserDefinedDisplay.DisplaySet.PositionAndScalarStartSequence.md index c831a83e92..6b94339b62 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.UserSubroutine.UserDefinedDisplay.DisplaySet.PositionAndScalarStartSequence.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.UserSubroutine.UserDefinedDisplay.DisplaySet.PositionAndScalarStartSequence.md @@ -1,4 +1,5 @@ -# Struct UserSubroutine.UserDefinedDisplay.DisplaySet.PositionAndScalarStartSequence +# Struct UserSubroutine.UserDefinedDisplay.DisplaySet.PositionAndScalarStartSequence + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSP.dll @@ -21,11 +22,11 @@ public PositionAndScalarStartSequence(int nPositionSequence, int nScalarSequence #### Parameters -`nPositionSequence` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nPositionSequence` int The position sequence. -`nScalarSequence` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nScalarSequence` int The scalar sequence. @@ -41,7 +42,7 @@ public int PositionSequence { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### ScalarSequence @@ -53,5 +54,5 @@ public int ScalarSequence { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.UserSubroutine.UserDefinedDisplay.DisplaySet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.UserSubroutine.UserDefinedDisplay.DisplaySet.md index 5f1dee4d4f..bebc0b0c6a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.UserSubroutine.UserDefinedDisplay.DisplaySet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.UserSubroutine.UserDefinedDisplay.DisplaySet.md @@ -1,4 +1,5 @@ -# Class UserSubroutine.UserDefinedDisplay.DisplaySet +# Class UserSubroutine.UserDefinedDisplay.DisplaySet + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSP.dll @@ -11,9 +12,9 @@ public class UserSubroutine.UserDefinedDisplay.DisplaySet : LinkContainer, IObse #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [UserSubroutine.UserDefinedDisplay.DisplaySet](VM.Managed.DAFUL.UserSubroutine.UserDefinedDisplay.DisplaySet.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,7 +117,7 @@ public int DisplaySequence { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### MultiPositionAndScalarSequence @@ -152,7 +153,7 @@ public int SinglePositionSequence { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### SingleScalarSequence @@ -164,5 +165,5 @@ public int SingleScalarSequence { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.UserSubroutine.UserDefinedDisplay.DisplayType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.UserSubroutine.UserDefinedDisplay.DisplayType.md index 3e2c2ed23b..78c4579dde 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.UserSubroutine.UserDefinedDisplay.DisplayType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.UserSubroutine.UserDefinedDisplay.DisplayType.md @@ -1,4 +1,5 @@ -# Enum UserSubroutine.UserDefinedDisplay.DisplayType +# Enum UserSubroutine.UserDefinedDisplay.DisplayType + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSP.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.UserSubroutine.UserDefinedDisplay.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.UserSubroutine.UserDefinedDisplay.md index d3e7aafdba..5eb704340c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.UserSubroutine.UserDefinedDisplay.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.UserSubroutine.UserDefinedDisplay.md @@ -1,4 +1,5 @@ -# Class UserSubroutine.UserDefinedDisplay +# Class UserSubroutine.UserDefinedDisplay + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSP.dll @@ -11,9 +12,9 @@ public class UserSubroutine.UserDefinedDisplay : LinkContainer, IObservableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [UserSubroutine.UserDefinedDisplay](VM.Managed.DAFUL.UserSubroutine.UserDefinedDisplay.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -128,7 +129,7 @@ public string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeOfDisplay diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.UserSubroutine.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.UserSubroutine.md index 0475105227..de9b8eb47c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.UserSubroutine.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.UserSubroutine.md @@ -1,4 +1,5 @@ -# Class UserSubroutine +# Class UserSubroutine + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDSP.dll @@ -11,12 +12,12 @@ public class UserSubroutine : SubEntity, IObservableObject, IDisposableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [UserSubroutine](VM.Managed.DAFUL.UserSubroutine.md) #### Implements @@ -26,7 +27,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -54,17 +55,17 @@ IDuplicate #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -157,7 +158,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -196,7 +197,7 @@ public UserSubroutine(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the user subroutine. @@ -212,7 +213,7 @@ public const string DefaultResultName = "parameter#" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Properties @@ -226,7 +227,7 @@ public ArgumentListGeneral ArgumentList { get; set; } #### Property Value - ArgumentListGeneral + [ArgumentListGeneral](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/ArgumentList.cs) ### ArgumentType @@ -250,7 +251,7 @@ public string[] CommentOfArgument { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### DllName @@ -262,7 +263,7 @@ public string DllName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Expression @@ -274,7 +275,7 @@ public string Expression { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### FunctionName @@ -286,7 +287,7 @@ public string FunctionName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IsInterface @@ -298,7 +299,7 @@ public bool IsInterface { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsReportOnly @@ -310,7 +311,7 @@ public bool IsReportOnly { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### NumOfReturnValue @@ -322,7 +323,7 @@ public int NumOfReturnValue { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### ReferenceType @@ -334,7 +335,7 @@ public string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ResultName @@ -347,7 +348,7 @@ public string[] ResultName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### Results @@ -407,7 +408,7 @@ public bool ContainsReservedArgument() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if [contains] [the reserved arg]; otherwise, false. @@ -421,7 +422,7 @@ public string GetDefaultResultName() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IndexOfResult\(Result\) @@ -439,7 +440,7 @@ The result #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Initialize\(ConvertFactor\) @@ -465,11 +466,11 @@ public bool IsContainResultName(string name) #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ModifyArgumentListWithExpression\(string\) @@ -481,7 +482,7 @@ public void ModifyArgumentListWithExpression(string strExpression) #### Parameters -`strExpression` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strExpression` string ### ModifyResultsCount\(int\) @@ -493,7 +494,7 @@ public void ModifyResultsCount(int resultsCount) #### Parameters -`resultsCount` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`resultsCount` int The result count. @@ -507,7 +508,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -521,7 +522,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -535,7 +536,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.XmlSliceInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.XmlSliceInfo.md index bd6c87ca1b..caef6eccb7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.XmlSliceInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.XmlSliceInfo.md @@ -1,4 +1,5 @@ -# Class XmlSliceInfo +# Class XmlSliceInfo + Namespace: [VM.Managed.DAFUL](VM.Managed.DAFUL.md) Assembly: VMDBallPlacing.dll @@ -11,7 +12,7 @@ public class XmlSliceInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [XmlSliceInfo](VM.Managed.DAFUL.XmlSliceInfo.md) #### Extension Methods @@ -40,7 +41,7 @@ public double MaxAngle { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MaxLength @@ -52,7 +53,7 @@ public double MaxLength { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MaxTolerance @@ -64,7 +65,7 @@ public double MaxTolerance { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StrMaxAngle @@ -76,7 +77,7 @@ public string StrMaxAngle { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### StrMaxLength @@ -88,7 +89,7 @@ public string StrMaxLength { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### StrMaxTolerance @@ -100,5 +101,5 @@ public string StrMaxTolerance { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.md index bc9f37be09..070168a734 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DAFUL.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DAFUL +# Namespace VM.Managed.DAFUL + ### Namespaces @@ -342,6 +343,8 @@ The class for KeyInfo. This class is to represent the marker. + [MassCalculationException](VM.Managed.DAFUL.MassCalculationException.md) + [PartDocument.MassProperty](VM.Managed.DAFUL.PartDocument.MassProperty.md) This class is to represent the mass property for part document. @@ -460,6 +463,10 @@ RecalcMassPropOp This class is to represent the reference for connectable object. + [ReferenceHasMultiBuilder](VM.Managed.DAFUL.ReferenceHasMultiBuilder.md) + +This class is to represent the reference for motor em force. + [ReferenceMarker](VM.Managed.DAFUL.ReferenceMarker.md) This class is to represent the reference for marker. @@ -642,11 +649,11 @@ DFMFUIInfo struct This struct is to represent the object target for multi. - [RequestStructure.OutputType](VM.Managed.DAFUL.RequestStructure.OutputType.md) + [RequestKinematic.OutputType](VM.Managed.DAFUL.RequestKinematic.OutputType.md)

    This class is to represent the OutputType properties.

    - [RequestKinematic.OutputType](VM.Managed.DAFUL.RequestKinematic.OutputType.md) + [RequestStructure.OutputType](VM.Managed.DAFUL.RequestStructure.OutputType.md)

    This class is to represent the OutputType properties.

    @@ -962,11 +969,11 @@ Specifies type for a marker parent. Specifies type for a marker reference frame. - [PartDocument.MassPropertyType](VM.Managed.DAFUL.PartDocument.MassPropertyType.md) + [SolidBodyProperty.MassPropertyType](VM.Managed.DAFUL.SolidBodyProperty.MassPropertyType.md) Specifies type for the mass property. - [SolidBodyProperty.MassPropertyType](VM.Managed.DAFUL.SolidBodyProperty.MassPropertyType.md) + [PartDocument.MassPropertyType](VM.Managed.DAFUL.PartDocument.MassPropertyType.md) Specifies type for the mass property. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DFException.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DFException.md index 84458d5401..976d79e430 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DFException.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DFException.md @@ -1,4 +1,5 @@ -# Class DFException +# Class DFException + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public class DFException : Exception #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Exception](https://learn.microsoft.com/dotnet/api/system.exception) ← +object ← +Exception ← [DFException](VM.Managed.DFException.md) #### Derived @@ -37,7 +38,7 @@ public DFException(string strMessage) #### Parameters -`strMessage` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMessage` string The exception message. @@ -51,11 +52,11 @@ public DFException(string strMessage, Exception inner) #### Parameters -`strMessage` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMessage` string The exception message. -`inner` [Exception](https://learn.microsoft.com/dotnet/api/system.exception) +`inner` Exception The inner exception. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DependentDocEventArgs.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DependentDocEventArgs.md index f0fea7e25e..c178dc8a2c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DependentDocEventArgs.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DependentDocEventArgs.md @@ -1,4 +1,5 @@ -# Class DependentDocEventArgs +# Class DependentDocEventArgs + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public sealed class DependentDocEventArgs : EventArgs #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) ← +object ← +EventArgs ← [DependentDocEventArgs](VM.Managed.DependentDocEventArgs.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DesignFrame.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DesignFrame.md index 1b3652d2e0..17fd8f6b7c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DesignFrame.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DesignFrame.md @@ -1,4 +1,5 @@ -# Class DesignFrame +# Class DesignFrame + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,9 +12,9 @@ public class DesignFrame : DesignSubEntity, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [SubEntity](VM.Managed.SubEntity.md) ← @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, INamed, INavigatorItem, @@ -170,7 +171,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -209,7 +210,7 @@ public DesignFrame(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the design frame. @@ -226,7 +227,7 @@ protected virtual string FrameIconName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Hide @@ -238,7 +239,7 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsVisible @@ -250,7 +251,7 @@ public virtual bool IsVisible { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Layer @@ -334,7 +335,7 @@ public double X { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y @@ -346,7 +347,7 @@ public double Y { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Z @@ -358,7 +359,7 @@ public double Z { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -394,7 +395,7 @@ public virtual void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -428,7 +429,7 @@ public string GetFullName() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The full name @@ -460,7 +461,7 @@ protected virtual void InstantiateImpl(Reference reference, Canvas canvas) The reference -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas @@ -474,7 +475,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -500,7 +501,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -514,7 +515,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DesignPoint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DesignPoint.md index c89a72e33a..02f9bd6f29 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DesignPoint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DesignPoint.md @@ -1,4 +1,5 @@ -# Class DesignPoint +# Class DesignPoint + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,9 +12,9 @@ public class DesignPoint : DesignSubEntity, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [SubEntity](VM.Managed.SubEntity.md) ← @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, INamed, INavigatorItem, @@ -171,7 +172,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -210,7 +211,7 @@ public DesignPoint(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the design point. @@ -226,7 +227,7 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsDesignParam @@ -238,7 +239,7 @@ public bool IsDesignParam { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsVisible @@ -250,7 +251,7 @@ public virtual bool IsVisible { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Layer @@ -334,7 +335,7 @@ public double X { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y @@ -346,7 +347,7 @@ public double Y { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Z @@ -358,7 +359,7 @@ public double Z { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -394,7 +395,7 @@ public virtual void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -406,7 +407,7 @@ protected override object GetDestroyEventExtraData() #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### GetDirection\(Coordinate\) @@ -438,7 +439,7 @@ public string GetFullName() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The full name. @@ -466,7 +467,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -484,7 +485,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -498,7 +499,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DesignSubEntity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DesignSubEntity.md index ece6a48027..3276676cf9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DesignSubEntity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DesignSubEntity.md @@ -1,4 +1,5 @@ -# Class DesignSubEntity +# Class DesignSubEntity + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,9 +12,9 @@ public abstract class DesignSubEntity : SubEntity, IObservableObject, IDisposabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [SubEntity](VM.Managed.SubEntity.md) ← @@ -32,7 +33,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, INamed, INavigatorItem, @@ -158,7 +159,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -197,11 +198,11 @@ protected DesignSubEntity(string strProxyName, string strBuildInfo) #### Parameters -`strProxyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strProxyName` string Name of the proxy. -`strBuildInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBuildInfo` string The build information. @@ -215,7 +216,7 @@ protected DesignSubEntity(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the design subentity. @@ -231,7 +232,7 @@ public static Dictionary g_dicUpdatedDesignSubEntity #### Field Value - [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[DesignSubEntity](VM.Managed.DesignSubEntity.md), [object](https://learn.microsoft.com/dotnet/api/system.object)\> + Dictionary<[DesignSubEntity](VM.Managed.DesignSubEntity.md), object\> ### m\_bSkipToUpdateSymmetric @@ -241,7 +242,7 @@ protected bool m_bSkipToUpdateSymmetric #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Properties @@ -255,7 +256,7 @@ public bool IsInterface { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -291,7 +292,7 @@ public bool CheckCircularReference() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### FixUp\(ObjectBase\) @@ -309,7 +310,7 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DesignVariable.FinalizeUpdateCallBack.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DesignVariable.FinalizeUpdateCallBack.md index 0c4ffdcd9c..f59c26a97c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DesignVariable.FinalizeUpdateCallBack.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DesignVariable.FinalizeUpdateCallBack.md @@ -1,4 +1,5 @@ -# Delegate DesignVariable.FinalizeUpdateCallBack +# Delegate DesignVariable.FinalizeUpdateCallBack + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -9,7 +10,7 @@ public delegate bool DesignVariable.FinalizeUpdateCallBack() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DesignVariable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DesignVariable.md index b03061f8aa..b89f19bc3e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DesignVariable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DesignVariable.md @@ -1,4 +1,5 @@ -# Class DesignVariable +# Class DesignVariable + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,9 +12,9 @@ public class DesignVariable : DesignSubEntity, IObservableObject, IDisposableObj #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [SubEntity](VM.Managed.SubEntity.md) ← @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, INamed, INavigatorItem, @@ -164,7 +165,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -203,7 +204,7 @@ public DesignVariable(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the design variable. @@ -231,7 +232,7 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsDesignParam @@ -243,7 +244,7 @@ public bool IsDesignParam { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReferenceType @@ -255,7 +256,7 @@ public string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Value @@ -267,7 +268,7 @@ public double Value { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Variable @@ -279,7 +280,7 @@ public ExpressionValueVariable Variable { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -315,7 +316,7 @@ public virtual void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. @@ -329,7 +330,7 @@ public bool FinalizeUpdate() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetFullName\(\) @@ -341,7 +342,7 @@ public string GetFullName() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The full name. @@ -367,7 +368,7 @@ public bool IsEmptyFinalizeUpdate() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LinkRequestUpdate\(object, LinkEventArgs\) @@ -379,7 +380,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -397,7 +398,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -411,7 +412,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DestroyEventArgs.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DestroyEventArgs.md index 0d6e146292..bece3bedc0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DestroyEventArgs.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DestroyEventArgs.md @@ -1,4 +1,5 @@ -# Class DestroyEventArgs +# Class DestroyEventArgs + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public sealed class DestroyEventArgs : LinkEventArgs #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) ← +object ← +EventArgs ← [LinkEventArgs](VM.Managed.LinkEventArgs.md) ← [DestroyEventArgs](VM.Managed.DestroyEventArgs.md) @@ -51,11 +52,11 @@ public DestroyEventArgs(LinkEventArgs innerArgs, object obEventPrevious, object The inner argument. -`obEventPrevious` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obEventPrevious` object The previous event. -`extra` [object](https://learn.microsoft.com/dotnet/api/system.object) +`extra` object The extra data. @@ -73,7 +74,7 @@ public DestroyEventArgs(LinkEventArgs innerArgs, object obEventPrevious) The inner argument. -`obEventPrevious` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obEventPrevious` object The previous event. @@ -91,7 +92,7 @@ public DestroyEventArgs(Document document, object extra) The document. -`extra` [object](https://learn.microsoft.com/dotnet/api/system.object) +`extra` object The extra data. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DestroyType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DestroyType.md index da76134d08..cc51d7f780 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DestroyType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DestroyType.md @@ -1,4 +1,5 @@ -# Enum DestroyType +# Enum DestroyType + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Dialog.AppHandle.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Dialog.AppHandle.md index fc0c411eb5..67d9df311b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Dialog.AppHandle.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Dialog.AppHandle.md @@ -1,4 +1,5 @@ -# Class AppHandle +# Class AppHandle + Namespace: [VM.Managed.Dialog](VM.Managed.Dialog.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class AppHandle : IAppHandle #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AppHandle](VM.Managed.Dialog.AppHandle.md) #### Implements @@ -44,9 +45,9 @@ public virtual void Activate(List lstObj, bool isActive) #### Parameters -`lstObj` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\> +`lstObj` List -`isActive` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isActive` bool ### Activate\(UIntPtr, bool\) @@ -58,11 +59,11 @@ public virtual void Activate(UIntPtr obj, bool isActive) #### Parameters -`obj` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`obj` UIntPtr The tag of activate -`isActive` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isActive` bool The Activate flag @@ -76,11 +77,11 @@ public virtual void ActivateFromExtern(UIntPtr obj, bool isActive) #### Parameters -`obj` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`obj` UIntPtr The tag of activate. -`isActive` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isActive` bool The Activate flag. @@ -94,11 +95,11 @@ public virtual void ActivateFromExternWithoutReset(UIntPtr obj, bool isActive) #### Parameters -`obj` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`obj` UIntPtr The tag of activate. -`isActive` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isActive` bool The Activate flag. @@ -110,9 +111,9 @@ public virtual void ActivateWithoutReset(List lstObj, bool isActive) #### Parameters -`lstObj` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\> +`lstObj` List -`isActive` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isActive` bool ### ActivateWithoutReset\(UIntPtr, bool\) @@ -124,11 +125,11 @@ public virtual void ActivateWithoutReset(UIntPtr obj, bool isActive) #### Parameters -`obj` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`obj` UIntPtr The tag of activate -`isActive` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isActive` bool The Activate flag @@ -142,21 +143,21 @@ public virtual bool CalcCoordSys(string strPickResult, XmlNode nodeBaseCoordSys, #### Parameters -`strPickResult` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPickResult` string The result of picking. -`nodeBaseCoordSys` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`nodeBaseCoordSys` XmlNode The base coordinate system. -`nodeActionCoordSys` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`nodeActionCoordSys` XmlNode The action coordinate system. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -170,17 +171,17 @@ public virtual bool DeleteObject(UIntPtr obj, bool isFirst) #### Parameters -`obj` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`obj` UIntPtr The deleted object. -`isFirst` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isFirst` bool true if deleted object is first object; otherwise, false. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -194,17 +195,17 @@ public virtual double DistanceBetween2Points(UIntPtr tagFrom, UIntPtr tagTo) #### Parameters -`tagFrom` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`tagFrom` UIntPtr Based on tag of object. -`tagTo` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`tagTo` UIntPtr Another tag of object. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double The distance about two objects. @@ -218,13 +219,13 @@ public virtual UIntPtr FindInActiveModel(string strObjName) #### Parameters -`strObjName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strObjName` string Find name of object. #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr tag if success; otherwise, zero. @@ -238,13 +239,13 @@ public virtual string GetDefaultName(string strHead) #### Parameters -`strHead` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strHead` string prefix of name #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The name @@ -258,23 +259,23 @@ public virtual bool IsValidName(string strName, UIntPtr tagContainer, UIntPtr ta #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name for Checking -`tagContainer` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`tagContainer` UIntPtr Tag of the container which contains tagObject if IntPtr.Zero, Current working model will be used. -`tagObject` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`tagObject` UIntPtr Tag of the object which wnats to set names. if IntPtr.Zero, strName must unique. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool if Duplicated then return false @@ -288,11 +289,11 @@ public virtual void RegisterStrDialogResult(int nIDDialog, XmlDocument domResult #### Parameters -`nIDDialog` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIDDialog` int The ID of dialog. -`domResult` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`domResult` XmlDocument The data of dialog. @@ -306,7 +307,7 @@ public virtual void SetMultiDeleteObject(bool bMulti) #### Parameters -`bMulti` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bMulti` bool true if multi delete object; otherwise, false. @@ -320,15 +321,15 @@ public virtual void StartOperation(string strOpName, UIntPtr doc, string strOpIn #### Parameters -`strOpName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOpName` string The name of operation. -`doc` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`doc` UIntPtr Document point. -`strOpInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOpInfo` string Additional information. @@ -342,15 +343,15 @@ public virtual void StartOperation(string strOpName, string strOpInfo, bool bHis #### Parameters -`strOpName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOpName` string The name of operation. -`strOpInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOpInfo` string Additional information. -`bHistoryMerge` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHistoryMerge` bool History merge flag. @@ -364,11 +365,11 @@ public virtual void StartOperation(string strOpName, string strOpInfo) #### Parameters -`strOpName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOpName` string The name of operation. -`strOpInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOpInfo` string Additional information. @@ -382,7 +383,7 @@ public virtual void StartOperation(string strOpName) #### Parameters -`strOpName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOpName` string The name of operation. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Dialog.CreateSubEntityOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Dialog.CreateSubEntityOperation.md index ecec163d22..6cdf36b6cc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Dialog.CreateSubEntityOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Dialog.CreateSubEntityOperation.md @@ -1,4 +1,5 @@ -# Class CreateSubEntityOperation +# Class CreateSubEntityOperation + Namespace: [VM.Managed.Dialog](VM.Managed.Dialog.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class CreateSubEntityOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OperationBase](VM.Managed.Operation.OperationBase.md) ← [CreateSubEntityOperation](VM.Managed.Dialog.CreateSubEntityOperation.md) @@ -105,15 +106,15 @@ public CreateSubEntityOperation(Document doc, string strPName, string strXml, Ty The document. -`strPName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPName` string Name of the string p. -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The string XML. -`type` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`type` Type The type. @@ -129,7 +130,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -151,7 +152,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Dialog.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Dialog.md index 949847fc5f..e6215e3ac7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Dialog.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Dialog.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.Dialog +# Namespace VM.Managed.Dialog + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Direction.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Direction.md index 7b6a519ac1..623cebef8d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Direction.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Direction.md @@ -1,4 +1,5 @@ -# Class Direction +# Class Direction + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class Direction : Expression, IObservableObject, IDisposableObject, ILink #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [Expression](VM.Managed.Expression.md) ← [Direction](VM.Managed.Direction.md) @@ -94,7 +95,7 @@ IExpression [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -139,7 +140,7 @@ public Direction(string strValue) #### Parameters -`strValue` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strValue` string Value of direction. @@ -177,13 +178,13 @@ protected override bool ConvertToValue(string strValue) #### Parameters -`strValue` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strValue` string The string. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OnDeserialization\(object\) @@ -195,7 +196,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -209,7 +210,7 @@ protected override void ParseToValue(char* wstrValue) #### Parameters -`wstrValue` [char](https://learn.microsoft.com/dotnet/api/system.char)\* +`wstrValue` char\* The string. @@ -223,7 +224,7 @@ protected override void SetDefaultString(ref string strValue) #### Parameters -`strValue` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strValue` string The value holds default string. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionBase.md index 70df397de5..f8db6e8af6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionBase.md @@ -1,4 +1,5 @@ -# Class DirectionBase +# Class DirectionBase + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -8,14 +9,14 @@ Getting the information of VectorBase(x, y, z) through Value property. After picking, Getting information of DirectionBase through picker. ```csharp -public abstract class DirectionBase : LinkContainer, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable +public abstract class DirectionBase : LinkContainer, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [DirectionBase](VM.Managed.DirectionBase.md) @@ -39,7 +40,8 @@ IOwned, IHasID, IEventProvider, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), -[IVerifiable](VM.Managed.IVerifiable.md) +[IVerifiable](VM.Managed.IVerifiable.md), +IHasReplaceableEntity #### Inherited Members @@ -86,7 +88,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -125,7 +127,7 @@ protected bool m_bReverse #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Properties @@ -139,7 +141,7 @@ public abstract bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Reverse @@ -151,7 +153,7 @@ public bool Reverse { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Value @@ -180,10 +182,30 @@ public abstract XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. +### HasReplaceableEntity\(IObjectBase\) + +Gets a value indicating whether this instance has replacable entity. + +```csharp +public virtual bool HasReplaceableEntity(IObjectBase oldObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +#### Returns + + bool + +if this instance has replacable entity, the result is true. + ### IsParametric\(enRefType\) Gets parametric. @@ -200,7 +222,7 @@ Point picking type. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool If set to true is parametric; otherwise, false is none parametric. @@ -214,13 +236,13 @@ public static bool IsParametric(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string Point picking type. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool If set to true is parametric; otherwise, false is none parametric. @@ -234,10 +256,34 @@ public abstract void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. +### ReplaceEntity\(IObjectBase, IObjectBase\) + +Replace Entity + +```csharp +public virtual bool ReplaceEntity(IObjectBase oldObject, IObjectBase newObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +`newObject` IObjectBase + +The new object + +#### Returns + + bool + +if success, the result is true. + ### WriteXml\(XmlWriter\) Converts an object into its XML representation. @@ -248,7 +294,7 @@ public abstract void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionBaseAxis.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionBaseAxis.md index 71455ab105..fa4ea683b2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionBaseAxis.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionBaseAxis.md @@ -1,4 +1,5 @@ -# Class DirectionBaseAxis +# Class DirectionBaseAxis + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the information of direction through axis. ```csharp -public class DirectionBaseAxis : DirectionBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable +public class DirectionBaseAxis : DirectionBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [DirectionBase](VM.Managed.DirectionBase.md) ← [DirectionBaseAxis](VM.Managed.DirectionBaseAxis.md) @@ -29,7 +30,8 @@ IOwned, IHasID, IEventProvider, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), -[IVerifiable](VM.Managed.IVerifiable.md) +[IVerifiable](VM.Managed.IVerifiable.md), +IHasReplaceableEntity #### Inherited Members @@ -39,6 +41,8 @@ IEventProvider, [DirectionBase.ReadXml\(XmlReader\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_ReadXml\_System\_Xml\_XmlReader\_), [DirectionBase.WriteXml\(XmlWriter\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_WriteXml\_System\_Xml\_XmlWriter\_), [DirectionBase.GetSchema\(\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_GetSchema), +[DirectionBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[DirectionBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [DirectionBase.Reverse](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_Reverse), [DirectionBase.IsParameterized](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_IsParameterized), [DirectionBase.Value](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_Value), @@ -85,7 +89,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -152,7 +156,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Value @@ -181,7 +185,7 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -195,7 +199,7 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -209,7 +213,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionExpression.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionExpression.md index b718d92655..0ce79f4ce7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionExpression.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionExpression.md @@ -1,4 +1,5 @@ -# Class DirectionExpression +# Class DirectionExpression + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the information of direction through expression(string) parsing. ```csharp -public class DirectionExpression : DirectionBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable +public class DirectionExpression : DirectionBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [DirectionBase](VM.Managed.DirectionBase.md) ← [DirectionExpression](VM.Managed.DirectionExpression.md) @@ -29,7 +30,8 @@ IOwned, IHasID, IEventProvider, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), -[IVerifiable](VM.Managed.IVerifiable.md) +[IVerifiable](VM.Managed.IVerifiable.md), +IHasReplaceableEntity #### Inherited Members @@ -39,6 +41,8 @@ IEventProvider, [DirectionBase.ReadXml\(XmlReader\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_ReadXml\_System\_Xml\_XmlReader\_), [DirectionBase.WriteXml\(XmlWriter\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_WriteXml\_System\_Xml\_XmlWriter\_), [DirectionBase.GetSchema\(\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_GetSchema), +[DirectionBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[DirectionBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [DirectionBase.Reverse](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_Reverse), [DirectionBase.IsParameterized](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_IsParameterized), [DirectionBase.Value](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_Value), @@ -85,7 +89,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -152,7 +156,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Value @@ -181,7 +185,7 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -201,7 +205,7 @@ Point picking type. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool If set to true is parametric; otherwise, false is none parametric. @@ -215,7 +219,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -233,7 +237,7 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -247,7 +251,7 @@ public void Set(string strDirection) #### Parameters -`strDirection` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDirection` string Value of direction. @@ -261,7 +265,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionLink.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionLink.md index 544155b7bd..8e6e2d9d72 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionLink.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionLink.md @@ -1,4 +1,5 @@ -# Class DirectionLink +# Class DirectionLink + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent information of direction through Design Frame. ```csharp -public class DirectionLink : DirectionBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable, IReservable +public class DirectionLink : DirectionBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable, IHasReplaceableEntity, IReservable ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [DirectionBase](VM.Managed.DirectionBase.md) ← [DirectionLink](VM.Managed.DirectionLink.md) @@ -30,6 +31,7 @@ IHasID, IEventProvider, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), +IHasReplaceableEntity, IReservable #### Inherited Members @@ -40,6 +42,8 @@ IReservable [DirectionBase.ReadXml\(XmlReader\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_ReadXml\_System\_Xml\_XmlReader\_), [DirectionBase.WriteXml\(XmlWriter\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_WriteXml\_System\_Xml\_XmlWriter\_), [DirectionBase.GetSchema\(\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_GetSchema), +[DirectionBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[DirectionBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [DirectionBase.Reverse](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_Reverse), [DirectionBase.IsParameterized](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_IsParameterized), [DirectionBase.Value](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_Value), @@ -86,7 +90,7 @@ IReservable [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -121,7 +125,7 @@ public DirectionLink(IDirectionContainer pDirectionContainer, string strDirectio The data of direction of Design Frame. -`strDirectionType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDirectionType` string Direction type(x,y,z). @@ -153,7 +157,7 @@ protected string m_strDirectionType #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Properties @@ -179,7 +183,7 @@ public string DirectionType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IsParameterized @@ -191,7 +195,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Position @@ -244,10 +248,30 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. +### HasReplaceableEntity\(IObjectBase\) + +Gets a value indicating whether this instance has replacable entity. + +```csharp +public override bool HasReplaceableEntity(IObjectBase oldObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +#### Returns + + bool + +if this instance has replacable entity, the result is true. + ### ReadXml\(XmlReader\) Generates an object from its XML representation. @@ -258,10 +282,34 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. +### ReplaceEntity\(IObjectBase, IObjectBase\) + +Replace Entity + +```csharp +public override bool ReplaceEntity(IObjectBase oldObject, IObjectBase newObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +`newObject` IObjectBase + +The new object + +#### Returns + + bool + +if success, the result is true. + ### WriteXml\(XmlWriter\) Converts an object into its XML representation. @@ -272,7 +320,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionOnCylinder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionOnCylinder.md index f477e76f62..ecbcb77155 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionOnCylinder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionOnCylinder.md @@ -1,4 +1,5 @@ -# Class DirectionOnCylinder +# Class DirectionOnCylinder + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the information of direction through normal of cylinder geometry. ```csharp -public class DirectionOnCylinder : DirectionOnGeometryBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable +public class DirectionOnCylinder : DirectionOnGeometryBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [DirectionBase](VM.Managed.DirectionBase.md) ← [DirectionOnGeometryBase](VM.Managed.DirectionOnGeometryBase.md) ← @@ -30,7 +31,8 @@ IOwned, IHasID, IEventProvider, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), -[IVerifiable](VM.Managed.IVerifiable.md) +[IVerifiable](VM.Managed.IVerifiable.md), +IHasReplaceableEntity #### Inherited Members @@ -50,6 +52,8 @@ IEventProvider, [DirectionBase.ReadXml\(XmlReader\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_ReadXml\_System\_Xml\_XmlReader\_), [DirectionBase.WriteXml\(XmlWriter\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_WriteXml\_System\_Xml\_XmlWriter\_), [DirectionBase.GetSchema\(\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_GetSchema), +[DirectionBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[DirectionBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [DirectionBase.Reverse](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_Reverse), [DirectionBase.IsParameterized](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_IsParameterized), [DirectionBase.Value](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_Value), @@ -96,7 +100,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -138,7 +142,7 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -152,7 +156,7 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -166,7 +170,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionOnEdge.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionOnEdge.md index bc2af696be..379340133d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionOnEdge.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionOnEdge.md @@ -1,4 +1,5 @@ -# Class DirectionOnEdge +# Class DirectionOnEdge + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the information of direction through tangent of edge geometry. ```csharp -public class DirectionOnEdge : DirectionOnGeometryBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable +public class DirectionOnEdge : DirectionOnGeometryBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [DirectionBase](VM.Managed.DirectionBase.md) ← [DirectionOnGeometryBase](VM.Managed.DirectionOnGeometryBase.md) ← @@ -30,7 +31,8 @@ IOwned, IHasID, IEventProvider, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), -[IVerifiable](VM.Managed.IVerifiable.md) +[IVerifiable](VM.Managed.IVerifiable.md), +IHasReplaceableEntity #### Inherited Members @@ -50,6 +52,8 @@ IEventProvider, [DirectionBase.ReadXml\(XmlReader\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_ReadXml\_System\_Xml\_XmlReader\_), [DirectionBase.WriteXml\(XmlWriter\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_WriteXml\_System\_Xml\_XmlWriter\_), [DirectionBase.GetSchema\(\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_GetSchema), +[DirectionBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[DirectionBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [DirectionBase.Reverse](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_Reverse), [DirectionBase.IsParameterized](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_IsParameterized), [DirectionBase.Value](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_Value), @@ -96,7 +100,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -140,7 +144,7 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -154,7 +158,7 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -168,7 +172,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionOnEllipseNormal.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionOnEllipseNormal.md index 70cb038de8..7d08271b26 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionOnEllipseNormal.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionOnEllipseNormal.md @@ -1,4 +1,5 @@ -# Class DirectionOnEllipseNormal +# Class DirectionOnEllipseNormal + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the information of direction through noraml of ellipse geometry. ```csharp -public class DirectionOnEllipseNormal : DirectionOnGeometryBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable +public class DirectionOnEllipseNormal : DirectionOnGeometryBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [DirectionBase](VM.Managed.DirectionBase.md) ← [DirectionOnGeometryBase](VM.Managed.DirectionOnGeometryBase.md) ← @@ -34,7 +35,8 @@ IOwned, IHasID, IEventProvider, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), -[IVerifiable](VM.Managed.IVerifiable.md) +[IVerifiable](VM.Managed.IVerifiable.md), +IHasReplaceableEntity #### Inherited Members @@ -54,6 +56,8 @@ IEventProvider, [DirectionBase.ReadXml\(XmlReader\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_ReadXml\_System\_Xml\_XmlReader\_), [DirectionBase.WriteXml\(XmlWriter\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_WriteXml\_System\_Xml\_XmlWriter\_), [DirectionBase.GetSchema\(\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_GetSchema), +[DirectionBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[DirectionBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [DirectionBase.Reverse](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_Reverse), [DirectionBase.IsParameterized](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_IsParameterized), [DirectionBase.Value](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_Value), @@ -100,7 +104,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -144,7 +148,7 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -158,7 +162,7 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -172,7 +176,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionOnFace.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionOnFace.md index ca13bca5a8..de8e4e3430 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionOnFace.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionOnFace.md @@ -1,4 +1,5 @@ -# Class DirectionOnFace +# Class DirectionOnFace + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the information of direction through normal of surface geometry. ```csharp -public class DirectionOnFace : DirectionOnGeometryBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable +public class DirectionOnFace : DirectionOnGeometryBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [DirectionBase](VM.Managed.DirectionBase.md) ← [DirectionOnGeometryBase](VM.Managed.DirectionOnGeometryBase.md) ← @@ -30,7 +31,8 @@ IOwned, IHasID, IEventProvider, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), -[IVerifiable](VM.Managed.IVerifiable.md) +[IVerifiable](VM.Managed.IVerifiable.md), +IHasReplaceableEntity #### Inherited Members @@ -50,6 +52,8 @@ IEventProvider, [DirectionBase.ReadXml\(XmlReader\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_ReadXml\_System\_Xml\_XmlReader\_), [DirectionBase.WriteXml\(XmlWriter\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_WriteXml\_System\_Xml\_XmlWriter\_), [DirectionBase.GetSchema\(\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_GetSchema), +[DirectionBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[DirectionBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [DirectionBase.Reverse](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_Reverse), [DirectionBase.IsParameterized](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_IsParameterized), [DirectionBase.Value](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_Value), @@ -96,7 +100,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -140,7 +144,7 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -154,7 +158,7 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -168,7 +172,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionOnGeometryBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionOnGeometryBase.md index c86789c8f5..d53854e01d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionOnGeometryBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionOnGeometryBase.md @@ -1,4 +1,5 @@ -# Class DirectionOnGeometryBase +# Class DirectionOnGeometryBase + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -7,14 +8,14 @@ This class is to represent the information of direction through data of geometry bug ; When develop stand alone, After defining inherited classes from LinkContainer must parameterize to geometry data. ```csharp -public abstract class DirectionOnGeometryBase : DirectionBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable +public abstract class DirectionOnGeometryBase : DirectionBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [DirectionBase](VM.Managed.DirectionBase.md) ← [DirectionOnGeometryBase](VM.Managed.DirectionOnGeometryBase.md) @@ -37,7 +38,8 @@ IOwned, IHasID, IEventProvider, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), -[IVerifiable](VM.Managed.IVerifiable.md) +[IVerifiable](VM.Managed.IVerifiable.md), +IHasReplaceableEntity #### Inherited Members @@ -47,6 +49,8 @@ IEventProvider, [DirectionBase.ReadXml\(XmlReader\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_ReadXml\_System\_Xml\_XmlReader\_), [DirectionBase.WriteXml\(XmlWriter\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_WriteXml\_System\_Xml\_XmlWriter\_), [DirectionBase.GetSchema\(\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_GetSchema), +[DirectionBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[DirectionBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [DirectionBase.Reverse](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_Reverse), [DirectionBase.IsParameterized](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_IsParameterized), [DirectionBase.Value](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_Value), @@ -93,7 +97,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -132,7 +136,7 @@ protected UIntPtr m_ptrEntityKey #### Field Value - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### m\_vecDirection @@ -176,7 +180,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Value @@ -208,7 +212,7 @@ Point picking type. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool If set to true is parametric; otherwise, false is none parametric. @@ -222,7 +226,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -244,15 +248,15 @@ protected void SetDirectionInfo(string strDirection, string strStartPosition, st #### Parameters -`strDirection` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDirection` string Direction. -`strStartPosition` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strStartPosition` string Start position. -`strEndPosition` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strEndPosition` string End position. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionThreePoints.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionThreePoints.md index e7815d9dab..ddd564994b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionThreePoints.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionThreePoints.md @@ -1,4 +1,5 @@ -# Class DirectionThreePoints +# Class DirectionThreePoints + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the information of direction of center of three points. ```csharp -public class DirectionThreePoints : DirectionBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable +public class DirectionThreePoints : DirectionBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [DirectionBase](VM.Managed.DirectionBase.md) ← [DirectionThreePoints](VM.Managed.DirectionThreePoints.md) @@ -29,7 +30,8 @@ IOwned, IHasID, IEventProvider, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), -[IVerifiable](VM.Managed.IVerifiable.md) +[IVerifiable](VM.Managed.IVerifiable.md), +IHasReplaceableEntity #### Inherited Members @@ -39,6 +41,8 @@ IEventProvider, [DirectionBase.ReadXml\(XmlReader\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_ReadXml\_System\_Xml\_XmlReader\_), [DirectionBase.WriteXml\(XmlWriter\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_WriteXml\_System\_Xml\_XmlWriter\_), [DirectionBase.GetSchema\(\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_GetSchema), +[DirectionBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[DirectionBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [DirectionBase.Reverse](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_Reverse), [DirectionBase.IsParameterized](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_IsParameterized), [DirectionBase.Value](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_Value), @@ -85,7 +89,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -160,7 +164,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MiddlePoint @@ -213,10 +217,30 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. +### HasReplaceableEntity\(IObjectBase\) + +Gets a value indicating whether this instance has replacable entity. + +```csharp +public override bool HasReplaceableEntity(IObjectBase oldObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +#### Returns + + bool + +if this instance has replacable entity, the result is true. + ### IsParametric\(enRefType\) Gets parametric. @@ -233,7 +257,7 @@ Point picking type. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool If set to true is parametric; otherwise, false is none parametric. @@ -247,7 +271,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -265,10 +289,34 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. +### ReplaceEntity\(IObjectBase, IObjectBase\) + +Replace Entity + +```csharp +public override bool ReplaceEntity(IObjectBase oldObject, IObjectBase newObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +`newObject` IObjectBase + +The new object + +#### Returns + + bool + +if success, the result is true. + ### WriteXml\(XmlWriter\) Converts an object into its XML representation. @@ -279,7 +327,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionTwoPoints.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionTwoPoints.md index 4fcbea0cb4..89d40035a7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionTwoPoints.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DirectionTwoPoints.md @@ -1,4 +1,5 @@ -# Class DirectionTwoPoints +# Class DirectionTwoPoints + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the information of direction through start and end points. ```csharp -public class DirectionTwoPoints : DirectionBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable +public class DirectionTwoPoints : DirectionBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [DirectionBase](VM.Managed.DirectionBase.md) ← [DirectionTwoPoints](VM.Managed.DirectionTwoPoints.md) @@ -29,7 +30,8 @@ IOwned, IHasID, IEventProvider, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), -[IVerifiable](VM.Managed.IVerifiable.md) +[IVerifiable](VM.Managed.IVerifiable.md), +IHasReplaceableEntity #### Inherited Members @@ -39,6 +41,8 @@ IEventProvider, [DirectionBase.ReadXml\(XmlReader\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_ReadXml\_System\_Xml\_XmlReader\_), [DirectionBase.WriteXml\(XmlWriter\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_WriteXml\_System\_Xml\_XmlWriter\_), [DirectionBase.GetSchema\(\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_GetSchema), +[DirectionBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[DirectionBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [DirectionBase.Reverse](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_Reverse), [DirectionBase.IsParameterized](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_IsParameterized), [DirectionBase.Value](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_Value), @@ -85,7 +89,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -156,7 +160,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### StartPoint @@ -197,10 +201,30 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. +### HasReplaceableEntity\(IObjectBase\) + +Gets a value indicating whether this instance has replacable entity. + +```csharp +public override bool HasReplaceableEntity(IObjectBase oldObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +#### Returns + + bool + +if this instance has replacable entity, the result is true. + ### IsParametric\(enRefType\) Gets parametric. @@ -217,7 +241,7 @@ Point picking type. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool If set to true is parametric; otherwise, false is none parametric. @@ -231,7 +255,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -249,10 +273,34 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. +### ReplaceEntity\(IObjectBase, IObjectBase\) + +Replace Entity + +```csharp +public override bool ReplaceEntity(IObjectBase oldObject, IObjectBase newObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +`newObject` IObjectBase + +The new object + +#### Returns + + bool + +if success, the result is true. + ### WriteXml\(XmlWriter\) Converts an object into its XML representation. @@ -263,7 +311,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DiskFullException.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DiskFullException.md index f374f0491a..50ae8b444d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DiskFullException.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DiskFullException.md @@ -1,4 +1,5 @@ -# Class DiskFullException +# Class DiskFullException + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public class DiskFullException : Exception #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Exception](https://learn.microsoft.com/dotnet/api/system.exception) ← +object ← +Exception ← [DiskFullException](VM.Managed.DiskFullException.md) #### Extension Methods @@ -33,7 +34,7 @@ public DiskFullException(Exception e) #### Parameters -`e` [Exception](https://learn.microsoft.com/dotnet/api/system.exception) +`e` Exception ## Properties @@ -47,7 +48,7 @@ public override string Message { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -59,9 +60,9 @@ public static bool IsDiskFull(Exception e) #### Parameters -`e` [Exception](https://learn.microsoft.com/dotnet/api/system.exception) +`e` Exception #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DoNotFindInterfacePointException.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DoNotFindInterfacePointException.md index 7d9dbe7de1..892c7b1d41 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DoNotFindInterfacePointException.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DoNotFindInterfacePointException.md @@ -1,4 +1,5 @@ -# Class DoNotFindInterfacePointException +# Class DoNotFindInterfacePointException + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public class DoNotFindInterfacePointException : Exception #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Exception](https://learn.microsoft.com/dotnet/api/system.exception) ← +object ← +Exception ← [DoNotFindInterfacePointException](VM.Managed.DoNotFindInterfacePointException.md) #### Extension Methods @@ -31,5 +32,5 @@ public DoNotFindInterfacePointException(string strMessage) #### Parameters -`strMessage` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMessage` string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DocCreate3DInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DocCreate3DInfo.md index 6c0b703f48..17e7d7db73 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DocCreate3DInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DocCreate3DInfo.md @@ -1,4 +1,5 @@ -# Class DocCreate3DInfo +# Class DocCreate3DInfo + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class DocCreate3DInfo : DocCreateInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DocCreateInfo](VM.Managed.DocCreateInfo.md) ← [DocCreate3DInfo](VM.Managed.DocCreate3DInfo.md) @@ -49,7 +50,7 @@ public virtual double IconSize { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### IsAdvancedMode @@ -61,7 +62,7 @@ public bool IsAdvancedMode { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SymmetricPlane @@ -85,5 +86,5 @@ public bool UseSymmetric { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DocCreateAnalysisInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DocCreateAnalysisInfo.md index d81b7df26e..aea2a5dd81 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DocCreateAnalysisInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DocCreateAnalysisInfo.md @@ -1,4 +1,5 @@ -# Class DocCreateAnalysisInfo +# Class DocCreateAnalysisInfo + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,7 +12,7 @@ public class DocCreateAnalysisInfo : DocCreate3DInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← DocCreateInfo ← DocCreate3DInfo ← [DocCreateAnalysisInfo](VM.Managed.DocCreateAnalysisInfo.md) @@ -54,7 +55,7 @@ public double GravityX { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GravityY @@ -66,7 +67,7 @@ public double GravityY { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GravityZ @@ -78,7 +79,7 @@ public double GravityZ { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### IncrementTime @@ -90,7 +91,7 @@ public double IncrementTime { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UseIncrementTime @@ -102,5 +103,5 @@ public bool UseIncrementTime { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DocCreateInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DocCreateInfo.md index 4f4e814eaa..2c87754451 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DocCreateInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DocCreateInfo.md @@ -1,4 +1,5 @@ -# Class DocCreateInfo +# Class DocCreateInfo + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public abstract class DocCreateInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DocCreateInfo](VM.Managed.DocCreateInfo.md) #### Derived @@ -46,7 +47,7 @@ public string ActiveMode { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### DocumentName @@ -58,7 +59,7 @@ public virtual string DocumentName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### KernelLengthUnit @@ -70,7 +71,7 @@ public string KernelLengthUnit { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ModeChangeOperation @@ -82,7 +83,7 @@ public string ModeChangeOperation { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Unit diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DocFromTemplateInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DocFromTemplateInfo.md index 47881c0cc5..069cf88e73 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DocFromTemplateInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DocFromTemplateInfo.md @@ -1,4 +1,5 @@ -# Class DocFromTemplateInfo +# Class DocFromTemplateInfo + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class DocFromTemplateInfo : DocCreateInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DocCreateInfo](VM.Managed.DocCreateInfo.md) ← [DocFromTemplateInfo](VM.Managed.DocFromTemplateInfo.md) @@ -49,5 +50,5 @@ public string TemplatePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.ActiveDocChange.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.ActiveDocChange.md index 408a3db87b..d36d34e4f1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.ActiveDocChange.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.ActiveDocChange.md @@ -1,4 +1,5 @@ -# Delegate Document.ActiveDocChange +# Delegate Document.ActiveDocChange + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.ActiveViewChange.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.ActiveViewChange.md index 70f294c234..9ab9be4b31 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.ActiveViewChange.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.ActiveViewChange.md @@ -1,4 +1,5 @@ -# Delegate Document.ActiveViewChange +# Delegate Document.ActiveViewChange + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.AddTopology.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.AddTopology.md index 9e2874226e..367715b5bb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.AddTopology.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.AddTopology.md @@ -1,4 +1,5 @@ -# Delegate Document.AddTopology +# Delegate Document.AddTopology + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,11 +12,11 @@ public delegate bool Document.AddTopology(string strAddInfo) #### Parameters -`strAddInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strAddInfo` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.BrowseFile.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.BrowseFile.md index b9521daad7..e752c53648 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.BrowseFile.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.BrowseFile.md @@ -1,4 +1,5 @@ -# Delegate Document.BrowseFile +# Delegate Document.BrowseFile + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,13 +12,13 @@ public delegate string Document.BrowseFile(string strOriginalFileName, string st #### Parameters -`strOriginalFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOriginalFileName` string -`strFilter` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilter` string #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.DocumentDestroying.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.DocumentDestroying.md index 1bcee97534..fa2570360b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.DocumentDestroying.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.DocumentDestroying.md @@ -1,4 +1,5 @@ -# Delegate Document.DocumentDestroying +# Delegate Document.DocumentDestroying + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.GetDocFromOpenedDoc.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.GetDocFromOpenedDoc.md index f222962792..353f3640cf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.GetDocFromOpenedDoc.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.GetDocFromOpenedDoc.md @@ -1,4 +1,5 @@ -# Delegate Document.GetDocFromOpenedDoc +# Delegate Document.GetDocFromOpenedDoc + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public delegate Document Document.GetDocFromOpenedDoc(string strFilePath) #### Parameters -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string #### Returns diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.IsOpenDoc.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.IsOpenDoc.md index 033babe9d2..b42fcfc5d2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.IsOpenDoc.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.IsOpenDoc.md @@ -1,4 +1,5 @@ -# Delegate Document.IsOpenDoc +# Delegate Document.IsOpenDoc + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,11 +12,11 @@ public delegate bool Document.IsOpenDoc(string strFilePath) #### Parameters -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.OpenDoc.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.OpenDoc.md index fa0a213932..14dbab4d11 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.OpenDoc.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.OpenDoc.md @@ -1,4 +1,5 @@ -# Delegate Document.OpenDoc +# Delegate Document.OpenDoc + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,11 +12,11 @@ public delegate Document Document.OpenDoc(string strFileName, string strRelatedP #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string -`strRelatedPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRelatedPath` string -`bActivate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bActivate` bool #### Returns diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.SingleObjectSelected.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.SingleObjectSelected.md index 0f2781a7c4..0c131c2aa9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.SingleObjectSelected.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.SingleObjectSelected.md @@ -1,4 +1,5 @@ -# Delegate Document.SingleObjectSelected +# Delegate Document.SingleObjectSelected + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.md index ccd00ec04e..d3c7b7abbe 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document.md @@ -1,4 +1,5 @@ -# Class Document +# Class Document + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public abstract class Document : Container, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [Container](VM.Managed.Container.md) ← [Document](VM.Managed.Document.md) @@ -39,7 +40,7 @@ IOwned, IHasID, [IEnableManager](VM.Managed.IEnableManager.md), [IRelatedDocument](VM.Managed.IRelatedDocument.md), -IHistorySupport +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs) #### Inherited Members @@ -92,7 +93,7 @@ IHistorySupport [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -133,7 +134,7 @@ public static List g_OpenDocuments #### Field Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### m\_unit @@ -181,7 +182,7 @@ public bool AutoSaved { get; protected set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CanClose @@ -193,7 +194,7 @@ public abstract bool CanClose { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ClearChildInfoBeforeDeserialize @@ -205,7 +206,7 @@ protected override bool ClearChildInfoBeforeDeserialize { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CloseAllDialogWhenCloseDoc @@ -217,7 +218,7 @@ public bool CloseAllDialogWhenCloseDoc { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DocumentName @@ -229,7 +230,7 @@ public string DocumentName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### DocumentSessionOverride @@ -241,7 +242,7 @@ public virtual SessionOverride DocumentSessionOverride { get; } #### Property Value - [SessionOverride](VM.Managed.Operation.SessionOverride.md) + SessionOverride ### DoingClose @@ -253,7 +254,7 @@ public virtual bool DoingClose { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DoingOpen @@ -265,7 +266,7 @@ public virtual bool DoingOpen { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ExpressionParser @@ -287,7 +288,7 @@ public virtual string FilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### FilterdTypes @@ -297,7 +298,7 @@ public List FilterdTypes { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> + List ### InitialConvertFactor @@ -321,7 +322,7 @@ public override bool IsChildExternable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsExternable @@ -333,7 +334,7 @@ public override bool IsExternable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsHideEntityListWindow @@ -343,7 +344,7 @@ public bool IsHideEntityListWindow { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsHideFilterWindow @@ -353,7 +354,7 @@ public bool IsHideFilterWindow { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsReplaced @@ -365,7 +366,7 @@ public bool IsReplaced { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### KeepOldKernelUnit @@ -377,7 +378,7 @@ protected virtual bool KeepOldKernelUnit { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Modified @@ -389,7 +390,7 @@ public abstract bool Modified { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SelectedLayoutAlgorithmType @@ -399,7 +400,7 @@ public int SelectedLayoutAlgorithmType { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -511,9 +512,9 @@ public virtual void CancelSelection(bool A_0, bool A_1) #### Parameters -`A_0` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`A_0` bool -`A_1` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`A_1` bool ### ClearDocument\(\) @@ -553,13 +554,13 @@ public bool ContainsNameAttribute(string strNameAttribute) #### Parameters -`strNameAttribute` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strNameAttribute` string The name value. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CreateView\(UIntPtr\) @@ -571,7 +572,7 @@ public abstract View CreateView(UIntPtr hWnd) #### Parameters -`hWnd` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`hWnd` UIntPtr The view handle. @@ -589,9 +590,9 @@ public virtual void DisplayModeShape(int A_0, double A_1) #### Parameters -`A_0` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`A_0` int -`A_1` [double](https://learn.microsoft.com/dotnet/api/system.double) +`A_1` double ### Dispose\(bool\) @@ -602,7 +603,7 @@ protected override void Dispose(bool A_0) #### Parameters -`A_0` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`A_0` bool ### EnableModeShape\(bool\) @@ -614,7 +615,7 @@ public virtual void EnableModeShape(bool A_0) #### Parameters -`A_0` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`A_0` bool ### ExitCommandMode\(\) @@ -634,13 +635,13 @@ public virtual double FastToConvertUnitLength(bool bReverse) #### Parameters -`bReverse` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReverse` bool The reverse state. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### \~Document\(\) @@ -676,7 +677,7 @@ public virtual IObject FindObjectFromKey(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr The key. @@ -694,7 +695,7 @@ public virtual IEnumerable GetChildren() #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) + IEnumerable ### GetCopyOfKernelUnit\(\) @@ -730,7 +731,7 @@ public virtual void GetData(XmlNode writer) #### Parameters -`writer` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`writer` XmlNode The writer. @@ -744,7 +745,7 @@ public static Document GetDocumentFromOpenedDocument(string strFilePath) #### Parameters -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string The file path. @@ -774,13 +775,13 @@ public string GetUniqueNameAttribute(string strNameAttribute) #### Parameters -`strNameAttribute` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strNameAttribute` string The name value. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Initialize\(OpenDoc, BrowseFile, IsOpenDoc, GetDocFromOpenedDoc, ActiveDocChange, ActiveViewChange\) @@ -832,7 +833,7 @@ The object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if is enabled [the specified object]; otherwise, false. @@ -846,13 +847,13 @@ public static bool IsOpen(string strFilePath) #### Parameters -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string The file path. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsTypeSupported\(Type\) @@ -865,7 +866,7 @@ public abstract void IsTypeSupported(Type type) #### Parameters -`type` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`type` Type The type. @@ -879,7 +880,7 @@ protected override void LinkRequestDestroy(object objNotifier, LinkEventArgs arg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -897,7 +898,7 @@ protected override void OnContainerDestroy(object obj, LinkEventArgs args) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The object. @@ -915,7 +916,7 @@ protected override void OnDeserialization(object obSender) #### Parameters -`obSender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obSender` object The sender. @@ -941,13 +942,13 @@ public static Document Open(string strFullFilePath, bool bActivate, bool bHidden #### Parameters -`strFullFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFullFilePath` string The full file path. -`bActivate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bActivate` bool -`bHidden` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHidden` bool hidden file flag. @@ -965,11 +966,11 @@ public static Document Open(string strFullFilePath, bool bActivate) #### Parameters -`strFullFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFullFilePath` string The full file path. -`bActivate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bActivate` bool Whether document is acivate. @@ -987,7 +988,7 @@ public static Document Open(string strFullFilePath) #### Parameters -`strFullFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFullFilePath` string The full file path. @@ -1005,15 +1006,15 @@ public static Document Open(string strRelativeFilePath, string strRefDir, bool b #### Parameters -`strRelativeFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRelativeFilePath` string The relative file path. -`strRefDir` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRefDir` string The reference directory. -`bActivate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bActivate` bool Whether document is acivate. @@ -1031,11 +1032,11 @@ public static Document Open(string strRelativeFilePath, string strRefDir) #### Parameters -`strRelativeFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRelativeFilePath` string The relative file path. -`strRefDir` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRefDir` string The reference directory. @@ -1123,9 +1124,9 @@ public virtual void PostSave(List lstOpenDocs, bool bModified) #### Parameters -`lstOpenDocs` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Document](VM.Managed.Document.md)\> +`lstOpenDocs` List<[Document](VM.Managed.Document.md)\> -`bModified` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bModified` bool ### RefreshReferenceForUndoRedo\(ObjectBase\) @@ -1201,17 +1202,17 @@ public bool ReplacesNameAttribute(string strNameAttributeOld, string strNameAttr #### Parameters -`strNameAttributeOld` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strNameAttributeOld` string The old name value. -`strNameAttributeNew` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strNameAttributeNew` string The new name value. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Save\(string\) @@ -1223,7 +1224,7 @@ public abstract void Save(string strPath) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The path to save. @@ -1237,7 +1238,7 @@ public virtual void SetData(XmlNode reader) #### Parameters -`reader` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`reader` XmlNode The reader. @@ -1255,7 +1256,7 @@ abstract void SetEnableImpl(ObjectBase ob, bool bEnable) The object. -`bEnable` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bEnable` bool if set to true enable. @@ -1269,7 +1270,7 @@ protected virtual void SetKernelUnit(string strLength) #### Parameters -`strLength` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strLength` string The length unit. @@ -1297,15 +1298,15 @@ public static Document TryOpen(string strRelativeFilePath, LoadSerializeContext #### Parameters -`strRelativeFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRelativeFilePath` string The relative file path. -`context` [LoadSerializeContext](VM.Managed.LoadSerializeContext.md) +`context` LoadSerializeContext The context info. -`bActivate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bActivate` bool Whether document is acivate. @@ -1323,15 +1324,15 @@ public static Document TryOpen(string strRelativeFilePath, string strRefDir, boo #### Parameters -`strRelativeFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRelativeFilePath` string The relative file path. -`strRefDir` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRefDir` string The reference directory. -`bActivate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bActivate` bool Whether document is acivate. @@ -1349,11 +1350,11 @@ public static Document TryOpen(string strRelativeFilePath, string strRefDir) #### Parameters -`strRelativeFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRelativeFilePath` string The relative file path. -`strRefDir` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRefDir` string The reference directory. @@ -1383,7 +1384,7 @@ public abstract void UpdateEnable(ObjectBase obj, bool bEnabled) The object. -`bEnabled` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bEnabled` bool Whether object is enable. @@ -1401,7 +1402,7 @@ public virtual void UpdateInterface(ObjectBase obj, bool bInterfaced) The object. -`bInterfaced` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bInterfaced` bool Whether object is interfaced. @@ -1437,7 +1438,7 @@ public string WriteIDInformation() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### raise\_ChildAdded\(object, Identifier\) @@ -1447,7 +1448,7 @@ protected virtual void raise_ChildAdded(object value0, Identifier value1) #### Parameters -`value0` [object](https://learn.microsoft.com/dotnet/api/system.object) +`value0` object `value1` Identifier @@ -1459,7 +1460,7 @@ protected virtual void raise_ChildRemoved(object value0, Identifier value1) #### Parameters -`value0` [object](https://learn.microsoft.com/dotnet/api/system.object) +`value0` object `value1` Identifier @@ -1471,7 +1472,7 @@ protected virtual void raise_ChildReplaced(object value0, Identifier value1) #### Parameters -`value0` [object](https://learn.microsoft.com/dotnet/api/system.object) +`value0` object `value1` Identifier @@ -1483,7 +1484,7 @@ protected virtual void raise_ChildReplacing(object value0, Identifier value1) #### Parameters -`value0` [object](https://learn.microsoft.com/dotnet/api/system.object) +`value0` object `value1` Identifier @@ -1495,9 +1496,9 @@ protected virtual void raise_Destroying(object value0, EventArgs value1) #### Parameters -`value0` [object](https://learn.microsoft.com/dotnet/api/system.object) +`value0` object -`value1` [EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) +`value1` EventArgs ### raise\_OnChangeIconForNodalModal\(object, DocumentEventArgs\) @@ -1507,7 +1508,7 @@ public void raise_OnChangeIconForNodalModal(object objNotifier, DocumentEventArg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object `args` [DocumentEventArgs](VM.Managed.DocumentEventArgs.md) @@ -1519,7 +1520,7 @@ public void raise_OnChildAdded(object objNotifier, DocumentEventArgs args) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object `args` [DocumentEventArgs](VM.Managed.DocumentEventArgs.md) @@ -1531,7 +1532,7 @@ public void raise_OnChildDocNameUpdated(object objNotifier, DocumentEventArgs ar #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object `args` [DocumentEventArgs](VM.Managed.DocumentEventArgs.md) @@ -1543,7 +1544,7 @@ public void raise_OnChildMultiAdded(object objNotifier, DocumentEventArgs args) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object `args` [DocumentEventArgs](VM.Managed.DocumentEventArgs.md) @@ -1555,7 +1556,7 @@ public void raise_OnChildRemoved(object objNotifier, DocumentEventArgs args) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object `args` [DocumentEventArgs](VM.Managed.DocumentEventArgs.md) @@ -1567,7 +1568,7 @@ public void raise_OnChildRenamed(object objNotifier, DocumentEventArgs args) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object `args` [DocumentEventArgs](VM.Managed.DocumentEventArgs.md) @@ -1579,7 +1580,7 @@ public void raise_OnChildRootSelect(object objNotifier, DocumentEventArgs args) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object `args` [DocumentEventArgs](VM.Managed.DocumentEventArgs.md) @@ -1591,7 +1592,7 @@ public void raise_OnChildUpdated(object objNotifier, DocumentEventArgs args) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object `args` [DocumentEventArgs](VM.Managed.DocumentEventArgs.md) @@ -1603,7 +1604,7 @@ public void raise_OnChildUpdatedAll(object objNotifier, DocumentEventArgs args) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object `args` [DocumentEventArgs](VM.Managed.DocumentEventArgs.md) @@ -1615,7 +1616,7 @@ public void raise_OnChildUpdatedEnable(object objNotifier, DocumentEventArgs arg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object `args` [DocumentEventArgs](VM.Managed.DocumentEventArgs.md) @@ -1627,7 +1628,7 @@ public void raise_OnClearSelectNavigator(object objNotifier, DocumentEventArgs a #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object `args` [DocumentEventArgs](VM.Managed.DocumentEventArgs.md) @@ -1639,7 +1640,7 @@ public void raise_OnDependentDocumentAdded(object objNotifier, DependentDocEvent #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object `args` [DependentDocEventArgs](VM.Managed.DependentDocEventArgs.md) @@ -1651,7 +1652,7 @@ public void raise_OnDependentDocumentRemoved(object objNotifier, DependentDocEve #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object `args` [DependentDocEventArgs](VM.Managed.DependentDocEventArgs.md) @@ -1663,7 +1664,7 @@ public void raise_OnDoingImport(object objNotifier, DocumentEventArgs args) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object `args` [DocumentEventArgs](VM.Managed.DocumentEventArgs.md) @@ -1675,9 +1676,9 @@ public void raise_OnSimulationCaseUpdated(object objNotifier, EventArgs args) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object -`args` [EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) +`args` EventArgs ### raise\_OnSingleObjectSelected\(object, ObjectBaseEventArgs\) @@ -1687,7 +1688,7 @@ protected void raise_OnSingleObjectSelected(object value0, ObjectBaseEventArgs v #### Parameters -`value0` [object](https://learn.microsoft.com/dotnet/api/system.object) +`value0` object `value1` [ObjectBaseEventArgs](VM.Managed.ObjectBaseEventArgs.md) @@ -1699,7 +1700,7 @@ public void raise_OnSkipChildAdded(object objNotifier, DocumentEventArgs args) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object `args` [DocumentEventArgs](VM.Managed.DocumentEventArgs.md) @@ -1711,7 +1712,7 @@ public void raise_OnSubentityAdded(object objNotifier, DocumentEventArgs args) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object `args` [DocumentEventArgs](VM.Managed.DocumentEventArgs.md) @@ -1723,9 +1724,9 @@ public void raise_OnSubentityRefreshed(object objNotifier, EventArgs args) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object -`args` [EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) +`args` EventArgs ### raise\_SelectionChanged\(object, IEnumerable\) @@ -1735,9 +1736,9 @@ protected virtual void raise_SelectionChanged(object value0, IEnumerable +`value1` IEnumerable ### ChildAdded @@ -1749,7 +1750,7 @@ public virtual event EventHandler ChildAdded #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1) + EventHandler ### ChildRemoved @@ -1761,7 +1762,7 @@ public virtual event EventHandler ChildRemoved #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1) + EventHandler ### ChildReplaced @@ -1773,7 +1774,7 @@ public virtual event EventHandler ChildReplaced #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1) + EventHandler ### ChildReplacing @@ -1785,7 +1786,7 @@ public virtual event EventHandler ChildReplacing #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1) + EventHandler ### Destroying @@ -1797,7 +1798,7 @@ public virtual event EventHandler Destroying #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler) + EventHandler ### OnChangeIconForNodalModal @@ -1809,7 +1810,7 @@ public event EventHandler OnChangeIconForNodalModal #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[DocumentEventArgs](VM.Managed.DocumentEventArgs.md)\> + EventHandler<[DocumentEventArgs](VM.Managed.DocumentEventArgs.md)\> ### OnChildAdded @@ -1821,7 +1822,7 @@ public event EventHandler OnChildAdded #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[DocumentEventArgs](VM.Managed.DocumentEventArgs.md)\> + EventHandler<[DocumentEventArgs](VM.Managed.DocumentEventArgs.md)\> ### OnChildDocNameUpdated @@ -1833,7 +1834,7 @@ public event EventHandler OnChildDocNameUpdated #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[DocumentEventArgs](VM.Managed.DocumentEventArgs.md)\> + EventHandler<[DocumentEventArgs](VM.Managed.DocumentEventArgs.md)\> ### OnChildMultiAdded @@ -1845,7 +1846,7 @@ public event EventHandler OnChildMultiAdded #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[DocumentEventArgs](VM.Managed.DocumentEventArgs.md)\> + EventHandler<[DocumentEventArgs](VM.Managed.DocumentEventArgs.md)\> ### OnChildRemoved @@ -1857,7 +1858,7 @@ public event EventHandler OnChildRemoved #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[DocumentEventArgs](VM.Managed.DocumentEventArgs.md)\> + EventHandler<[DocumentEventArgs](VM.Managed.DocumentEventArgs.md)\> ### OnChildRenamed @@ -1869,7 +1870,7 @@ public event EventHandler OnChildRenamed #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[DocumentEventArgs](VM.Managed.DocumentEventArgs.md)\> + EventHandler<[DocumentEventArgs](VM.Managed.DocumentEventArgs.md)\> ### OnChildRootSelect @@ -1881,7 +1882,7 @@ public event EventHandler OnChildRootSelect #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[DocumentEventArgs](VM.Managed.DocumentEventArgs.md)\> + EventHandler<[DocumentEventArgs](VM.Managed.DocumentEventArgs.md)\> ### OnChildUpdated @@ -1893,7 +1894,7 @@ public event EventHandler OnChildUpdated #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[DocumentEventArgs](VM.Managed.DocumentEventArgs.md)\> + EventHandler<[DocumentEventArgs](VM.Managed.DocumentEventArgs.md)\> ### OnChildUpdatedAll @@ -1905,7 +1906,7 @@ public event EventHandler OnChildUpdatedAll #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[DocumentEventArgs](VM.Managed.DocumentEventArgs.md)\> + EventHandler<[DocumentEventArgs](VM.Managed.DocumentEventArgs.md)\> ### OnChildUpdatedEnable @@ -1917,7 +1918,7 @@ public event EventHandler OnChildUpdatedEnable #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[DocumentEventArgs](VM.Managed.DocumentEventArgs.md)\> + EventHandler<[DocumentEventArgs](VM.Managed.DocumentEventArgs.md)\> ### OnClearSelectNavigator @@ -1929,7 +1930,7 @@ public event EventHandler OnClearSelectNavigator #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[DocumentEventArgs](VM.Managed.DocumentEventArgs.md)\> + EventHandler<[DocumentEventArgs](VM.Managed.DocumentEventArgs.md)\> ### OnDependentDocumentAdded @@ -1941,7 +1942,7 @@ public event EventHandler OnDependentDocumentAdded #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[DependentDocEventArgs](VM.Managed.DependentDocEventArgs.md)\> + EventHandler<[DependentDocEventArgs](VM.Managed.DependentDocEventArgs.md)\> ### OnDependentDocumentRemoved @@ -1953,7 +1954,7 @@ public event EventHandler OnDependentDocumentRemoved #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[DependentDocEventArgs](VM.Managed.DependentDocEventArgs.md)\> + EventHandler<[DependentDocEventArgs](VM.Managed.DependentDocEventArgs.md)\> ### OnDoingImport @@ -1965,7 +1966,7 @@ public event EventHandler OnDoingImport #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[DocumentEventArgs](VM.Managed.DocumentEventArgs.md)\> + EventHandler<[DocumentEventArgs](VM.Managed.DocumentEventArgs.md)\> ### OnSimulationCaseUpdated @@ -1977,7 +1978,7 @@ public event EventHandler OnSimulationCaseUpdated #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs)\> + EventHandler ### OnSingleObjectSelected @@ -1987,7 +1988,7 @@ public event EventHandler OnSingleObjectSelected #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[ObjectBaseEventArgs](VM.Managed.ObjectBaseEventArgs.md)\> + EventHandler<[ObjectBaseEventArgs](VM.Managed.ObjectBaseEventArgs.md)\> ### OnSkipChildAdded @@ -1999,7 +2000,7 @@ public event EventHandler OnSkipChildAdded #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[DocumentEventArgs](VM.Managed.DocumentEventArgs.md)\> + EventHandler<[DocumentEventArgs](VM.Managed.DocumentEventArgs.md)\> ### OnSubentityAdded @@ -2011,7 +2012,7 @@ public event EventHandler OnSubentityAdded #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[DocumentEventArgs](VM.Managed.DocumentEventArgs.md)\> + EventHandler<[DocumentEventArgs](VM.Managed.DocumentEventArgs.md)\> ### OnSubentityRefreshed @@ -2023,7 +2024,7 @@ public event EventHandler OnSubentityRefreshed #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs)\> + EventHandler ### SelectionChanged @@ -2035,5 +2036,5 @@ public virtual event EventHandler> SelectionChanged #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)\> + EventHandler\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.BasicOpType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.BasicOpType.md index be53b014d5..923a1d1637 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.BasicOpType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.BasicOpType.md @@ -1,4 +1,5 @@ -# Enum Document3D.BasicOpType +# Enum Document3D.BasicOpType + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.CadImportColorType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.CadImportColorType.md index 563f773554..6638878b3f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.CadImportColorType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.CadImportColorType.md @@ -1,4 +1,5 @@ -# Enum Document3D.CadImportColorType +# Enum Document3D.CadImportColorType + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.CadImportResultType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.CadImportResultType.md index e069c24184..ade74eeab7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.CadImportResultType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.CadImportResultType.md @@ -1,4 +1,5 @@ -# Enum Document3D.CadImportResultType +# Enum Document3D.CadImportResultType + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.CadImportUnitType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.CadImportUnitType.md index 77dfb67ab2..2cc41dd647 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.CadImportUnitType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.CadImportUnitType.md @@ -1,4 +1,5 @@ -# Enum Document3D.CadImportUnitType +# Enum Document3D.CadImportUnitType + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.ExportBodyInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.ExportBodyInfo.md index 9fa532f3d8..c60bfb6c8b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.ExportBodyInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.ExportBodyInfo.md @@ -1,4 +1,5 @@ -# Class Document3D.ExportBodyInfo +# Class Document3D.ExportBodyInfo + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class Document3D.ExportBodyInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Document3D.ExportBodyInfo](VM.Managed.Document3D.ExportBodyInfo.md) #### Extension Methods @@ -40,11 +41,11 @@ The body. The transform. -`dLengthFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLengthFactor` double The length factor. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The name. @@ -66,7 +67,7 @@ The body. The transform. -`dLengthFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLengthFactor` double The length factor. @@ -110,7 +111,7 @@ public double LengthFactor { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Name @@ -120,7 +121,7 @@ public string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Transform diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.FileFormat.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.FileFormat.md index 20d3b8b16b..19b68148c3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.FileFormat.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.FileFormat.md @@ -1,4 +1,5 @@ -# Enum Document3D.FileFormat +# Enum Document3D.FileFormat + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.GetRibbonGalleryIndex.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.GetRibbonGalleryIndex.md index 15b943491a..e64d957b81 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.GetRibbonGalleryIndex.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.GetRibbonGalleryIndex.md @@ -1,4 +1,5 @@ -# Delegate Document3D.GetRibbonGalleryIndex +# Delegate Document3D.GetRibbonGalleryIndex + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,13 +12,13 @@ public delegate int Document3D.GetRibbonGalleryIndex(string strCommand) #### Parameters -`strCommand` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCommand` string The string command. #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.OperationTypeForSelection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.OperationTypeForSelection.md index 3fa301777b..3ace1c9795 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.OperationTypeForSelection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.OperationTypeForSelection.md @@ -1,4 +1,5 @@ -# Enum Document3D.OperationTypeForSelection +# Enum Document3D.OperationTypeForSelection + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.SaveDoc.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.SaveDoc.md index 0109f405b9..d20b363577 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.SaveDoc.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.SaveDoc.md @@ -1,4 +1,5 @@ -# Delegate Document3D.SaveDoc +# Delegate Document3D.SaveDoc + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,11 +12,11 @@ public delegate void Document3D.SaveDoc(string strPath, bool bAutoSave, Dictiona #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string -`bAutoSave` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bAutoSave` bool -`mapSubPath` [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [string](https://learn.microsoft.com/dotnet/api/system.string)\> +`mapSubPath` Dictionary #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.enRenderingMode.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.enRenderingMode.md index 06610d881e..2bded607b4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.enRenderingMode.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.enRenderingMode.md @@ -1,4 +1,5 @@ -# Enum Document3D.enRenderingMode +# Enum Document3D.enRenderingMode + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.enVMSelectionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.enVMSelectionType.md index 2cd9a37f90..4964fc5a82 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.enVMSelectionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.enVMSelectionType.md @@ -1,4 +1,5 @@ -# Enum Document3D.enVMSelectionType +# Enum Document3D.enVMSelectionType + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.md index 1b64ab1a8d..c8e578b534 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Document3D.md @@ -1,4 +1,5 @@ -# Class Document3D +# Class Document3D + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public abstract class Document3D : HandledDocument, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [Container](VM.Managed.Container.md) ← [Document](VM.Managed.Document.md) ← @@ -29,7 +30,7 @@ ILinkable, [IVerifiable](VM.Managed.IVerifiable.md), [IEnableManager](VM.Managed.IEnableManager.md), [IRelatedDocument](VM.Managed.IRelatedDocument.md), -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), [ITemplateDocument](VM.Managed.ITemplateDocument.md), IDocument3D, IHandledDocument, @@ -250,7 +251,7 @@ IDocumentOwner, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -281,7 +282,7 @@ public Document3D(UIntPtr pDoc) #### Parameters -`pDoc` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pDoc` UIntPtr ## Fields @@ -315,7 +316,7 @@ protected bool m_bReload #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_dicCategory @@ -326,7 +327,7 @@ protected Dictionary> #### Field Value - [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1)<[Child](VM.Managed.Child\-2.md)<[ObjectBase](VM.Managed.ObjectBase.md), [LinkContainer](VM.Managed.LinkContainer.md).[Update](VM.Managed.LinkContainer.Update.md)\>\>\> + Dictionary\>\> ### m\_dicCategoryCollection @@ -338,7 +339,7 @@ protected Dictionary\>\> + Dictionary\>\> ### m\_lstAssem @@ -360,7 +361,7 @@ protected string m_strVersion #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Properties @@ -386,7 +387,7 @@ public override bool CanClose { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Categories @@ -398,7 +399,7 @@ public ICollection Categories { get; } #### Property Value - [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + ICollection ### CategoryInfo @@ -420,7 +421,7 @@ protected bool ChangeReference { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CommentOfDocument @@ -433,7 +434,7 @@ public string CommentOfDocument { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### CountOfSelectionObject @@ -445,7 +446,7 @@ public int CountOfSelectionObject { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### CountOfUnderCursorObject @@ -457,7 +458,7 @@ public int CountOfUnderCursorObject { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### CountOfUnderCursorPickableObject @@ -469,7 +470,7 @@ public int CountOfUnderCursorPickableObject { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### CurrentBasicOp @@ -517,7 +518,7 @@ public bool DoingCreateEntityOperation { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DoingTemplateBasedXml @@ -529,7 +530,7 @@ public bool DoingTemplateBasedXml { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ExtensionName @@ -541,7 +542,7 @@ public string ExtensionName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Format @@ -565,7 +566,7 @@ public bool FromTemplate { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IconSize @@ -577,7 +578,7 @@ public virtual double IconSize { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### InitialCategories @@ -589,7 +590,7 @@ protected abstract List InitialCategories { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### IsAdvancedMode @@ -601,7 +602,7 @@ public bool IsAdvancedMode { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsPropertySupport @@ -613,7 +614,7 @@ public virtual bool IsPropertySupport { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LayerManager @@ -637,7 +638,7 @@ public List LoadingExceptions { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Exception](https://learn.microsoft.com/dotnet/api/system.exception)\> + List ### MessageWhenLoad @@ -649,7 +650,7 @@ public string MessageWhenLoad { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Modified @@ -661,7 +662,7 @@ public override bool Modified { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### NodalBodyList @@ -685,7 +686,7 @@ public List NodalOutputCandidateObjects { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[INodalOutputCandidate](VM.Managed.INodalOutputCandidate.md)\> + List<[INodalOutputCandidate](VM.Managed.INodalOutputCandidate.md)\> ### SelectionObjects @@ -697,7 +698,7 @@ public List SelectionObjects { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ObjectBase](VM.Managed.ObjectBase.md)\> + List<[ObjectBase](VM.Managed.ObjectBase.md)\> ### SkipUIUpdating @@ -709,7 +710,7 @@ public bool SkipUIUpdating { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SymmetricPlane @@ -733,7 +734,7 @@ public string TemplatePath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ToolKitName @@ -745,7 +746,7 @@ public string ToolKitName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UnderCursorObjects @@ -757,7 +758,7 @@ public List UnderCursorObjects { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ObjectBase](VM.Managed.ObjectBase.md)\> + List<[ObjectBase](VM.Managed.ObjectBase.md)\> ### UnderCursorPickableObjects @@ -769,7 +770,7 @@ public List UnderCursorPickableObjects { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ObjectBase](VM.Managed.ObjectBase.md)\> + List<[ObjectBase](VM.Managed.ObjectBase.md)\> ### UseMultipleAddition @@ -781,7 +782,7 @@ public bool UseMultipleAddition { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseSymmetric @@ -793,7 +794,7 @@ public bool UseSymmetric { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### VersionInfo @@ -805,7 +806,7 @@ public string VersionInfo { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### VisibleTarget @@ -827,7 +828,7 @@ public ICollection this[string strCategory] { get; } #### Property Value - [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[ObjectBase](VM.Managed.ObjectBase.md)\> + ICollection<[ObjectBase](VM.Managed.ObjectBase.md)\> ## Methods @@ -857,11 +858,11 @@ public void ActiveCurveset(UIntPtr curveset_key, bool bActive) #### Parameters -`curveset_key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`curveset_key` UIntPtr The edge key. -`bActive` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bActive` bool if set to true active. @@ -875,11 +876,11 @@ public void ActiveFaceset(UIntPtr faceset_key, bool bActive) #### Parameters -`faceset_key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`faceset_key` UIntPtr The facet key. -`bActive` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bActive` bool if set to true active. @@ -891,7 +892,7 @@ public void ActiveObject(List lstObject) #### Parameters -`lstObject` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ObjectBase](VM.Managed.ObjectBase.md)\> +`lstObject` List<[ObjectBase](VM.Managed.ObjectBase.md)\> ### Add\(ObjectBase, ObjectBase\) @@ -949,7 +950,7 @@ public void AddInterface(string strXml) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The interface information. @@ -967,7 +968,7 @@ public virtual void AddNewReference(ObjectBase[] arObj, string strCategory) The object array. -`strCategory` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategory` string The category name. @@ -1017,7 +1018,7 @@ public void ChangeKernelUnitWithScale(string strLength) #### Parameters -`strLength` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strLength` string The length unit. @@ -1043,7 +1044,7 @@ public virtual string CheckMassPropForCADImport() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The error message. @@ -1061,7 +1062,7 @@ public void ChildAdd(ObjectBase obj, string strXml) The object. -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The information. @@ -1079,7 +1080,7 @@ public void ChildRemove(ObjectBase obj, string strXml) The object. -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The information. @@ -1097,7 +1098,7 @@ public void ChildRename(ObjectBase obj, string strXml) The object. -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The information. @@ -1115,7 +1116,7 @@ public void ChildUpdate(ObjectBase obj, string strXml) The object. -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The information. @@ -1151,7 +1152,7 @@ The object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CreateAssembly\(\) @@ -1189,13 +1190,13 @@ public Canvas CreateCanvas(bool bThreadSafeCanvas) #### Parameters -`bThreadSafeCanvas` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bThreadSafeCanvas` bool if set to true thread safely canvas. #### Returns - Canvas + [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. @@ -1209,7 +1210,7 @@ public Canvas CreateCanvas() #### Returns - Canvas + [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. @@ -1223,7 +1224,7 @@ public override View CreateView(UIntPtr hWnd) #### Parameters -`hWnd` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`hWnd` UIntPtr The view handle. @@ -1241,7 +1242,7 @@ protected virtual View CreateViewCore(UIntPtr pView) #### Parameters -`pView` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pView` UIntPtr The view handle. @@ -1263,9 +1264,9 @@ public void DeleteCore(List lstObjNew, List lstArg #### Parameters -`lstObjNew` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ObjectBase](VM.Managed.ObjectBase.md)\> +`lstObjNew` List<[ObjectBase](VM.Managed.ObjectBase.md)\> -`lstArg` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[DestroyEventArgs](VM.Managed.DestroyEventArgs.md)\> +`lstArg` List<[DestroyEventArgs](VM.Managed.DestroyEventArgs.md)\> ### DeleteObjectBases\(ref DestroyType, IEnumerable, bool\) @@ -1277,13 +1278,13 @@ public bool DeleteObjectBases(ref DestroyType typeDestroy, IEnumerable +`targetObjectBases` IEnumerable<[ObjectBase](VM.Managed.ObjectBase.md)\> -`bNotUseDelMsg` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bNotUseDelMsg` bool #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DeleteObjectBases\(ref DestroyType, IEnumerable\) @@ -1295,11 +1296,11 @@ public bool DeleteObjectBases(ref DestroyType typeDestroy, IEnumerable +`targetObjectBases` IEnumerable<[ObjectBase](VM.Managed.ObjectBase.md)\> #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DeleteWithSelectionObjects\(ref DestroyType, bool\) @@ -1315,13 +1316,13 @@ public bool DeleteWithSelectionObjects(ref DestroyType typeDestroy, bool bNotUse The destroy type. -`bNotUseDelMsg` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bNotUseDelMsg` bool Not use delete message #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DeleteWithSelectionObjects\(ref DestroyType\) @@ -1339,7 +1340,7 @@ The destroy type. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DeleteWithSelectionObjects\(\) @@ -1351,7 +1352,7 @@ public virtual bool DeleteWithSelectionObjects() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DisplayModeShape\(int, double\) @@ -1363,9 +1364,9 @@ public override void DisplayModeShape(int A_0, double A_1) #### Parameters -`A_0` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`A_0` int -`A_1` [double](https://learn.microsoft.com/dotnet/api/system.double) +`A_1` double ### Dispose\(bool\) @@ -1376,7 +1377,7 @@ protected override void Dispose(bool A_0) #### Parameters -`A_0` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`A_0` bool ### EnableModeShape\(bool\) @@ -1388,15 +1389,7 @@ public override void EnableModeShape(bool A_0) #### Parameters -`A_0` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) - -### EndCADImportLog\(\) - -Ends the CAD import log. - -```csharp -protected virtual void EndCADImportLog() -``` +`A_0` bool ### EraseAllDisplayObject\(\) @@ -1414,25 +1407,31 @@ public bool ExistUnderCursor() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if object exists under cursor; otherwise, false. -### ExportCADBody\(string, List, string, string\) +### ExportCADBody\(string, List, string, string, string, string, string\) ```csharp -public virtual void ExportCADBody(string strFilePath, List lstBodyInfo, string strCADConvert, string strOption) +public virtual void ExportCADBody(string strFilePath, List lstBodyInfo, string strPythonExecutablePath, string strStrideConvertPath, string strHoopsExchangePath, string strKernelDepsPaths, string strOption) ``` #### Parameters -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string -`lstBodyInfo` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Document3D](VM.Managed.Document3D.md).[ExportBodyInfo](VM.Managed.Document3D.ExportBodyInfo.md)\> +`lstBodyInfo` List<[Document3D](VM.Managed.Document3D.md).[ExportBodyInfo](VM.Managed.Document3D.ExportBodyInfo.md)\> -`strCADConvert` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPythonExecutablePath` string -`strOption` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strStrideConvertPath` string + +`strHoopsExchangePath` string + +`strKernelDepsPaths` string + +`strOption` string ### ExportCADBody\(string, List, string\) @@ -1442,31 +1441,43 @@ public virtual void ExportCADBody(string strFilePath, List +`lstBodyInfo` List<[Document3D](VM.Managed.Document3D.md).[ExportBodyInfo](VM.Managed.Document3D.ExportBodyInfo.md)\> -`strAcisVer` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strAcisVer` string -### ExportCADFile\(string, string, string\) +### ExportCADFile\(string, string, string, string, string, string\) Export cad file. ```csharp -public virtual void ExportCADFile(string strFilePath, string strCADConvert, string strOption) +public virtual void ExportCADFile(string strFilePath, string strPythonExecutablePath, string strStrideConvertPath, string strHoopsExchangePath, string strKernelDepsPaths, string strOption) ``` #### Parameters -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string The cad import file path. -`strCADConvert` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPythonExecutablePath` string + +The path of python.exe. -The path of cad convert exe. +`strStrideConvertPath` string -`strOption` [string](https://learn.microsoft.com/dotnet/api/system.string) +The path of StrideConvert.exe. + +`strHoopsExchangePath` string + +The path of Hoops Exchange. + +`strKernelDepsPaths` string + +The kernel dependencies paths. + +`strOption` string The option. @@ -1509,13 +1520,13 @@ public abstract string FindCategory(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The fullname of type. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The category name @@ -1529,17 +1540,17 @@ public UIntPtr FindCurveset(UIntPtr edge_key, bool bQuickSearch) #### Parameters -`edge_key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`edge_key` UIntPtr The edge key. -`bQuickSearch` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bQuickSearch` bool if set to true quick search. #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr The edge handle. @@ -1553,17 +1564,17 @@ public UIntPtr FindFaceset(UIntPtr face_key, bool bQuickSearch) #### Parameters -`face_key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`face_key` UIntPtr The facet key. -`bQuickSearch` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bQuickSearch` bool if set to true quick search. #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr The facet handle. @@ -1577,7 +1588,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The DAFUL object name. @@ -1617,7 +1628,7 @@ public virtual List> GetAllArgumentList() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[KeyValuePair](https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [string](https://learn.microsoft.com/dotnet/api/system.string)\>\> + List\> ### GetAssembly\(\) @@ -1639,7 +1650,7 @@ protected virtual void GetBodies(ref List lstBody) #### Parameters -`lstBody` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ObjectBase](VM.Managed.ObjectBase.md)\> +`lstBody` List<[ObjectBase](VM.Managed.ObjectBase.md)\> ### GetBodyAndTransformation\(ref List\) @@ -1649,7 +1660,7 @@ public virtual void GetBodyAndTransformation(ref List #### Parameters -`A_0` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Document3D](VM.Managed.Document3D.md).[ExportBodyInfo](VM.Managed.Document3D.ExportBodyInfo.md)\> +`A_0` List<[Document3D](VM.Managed.Document3D.md).[ExportBodyInfo](VM.Managed.Document3D.ExportBodyInfo.md)\> ### GetCADBodyNameAttribute\(ref List\) @@ -1659,7 +1670,7 @@ public virtual void GetCADBodyNameAttribute(ref List lstName) #### Parameters -`lstName` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstName` List ### GetCategoryChildren\(string\) @@ -1671,11 +1682,11 @@ public virtual IEnumerable GetCategoryChildren(string categoryName) #### Parameters -`categoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`categoryName` string #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) + IEnumerable The object category container. @@ -1687,7 +1698,7 @@ public bool GetCuttingPlane() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetData\(XmlNode\) @@ -1699,7 +1710,7 @@ public override void GetData(XmlNode writer) #### Parameters -`writer` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`writer` XmlNode The writer. @@ -1713,7 +1724,7 @@ public virtual List GetImportCADBody() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ObjectBase](VM.Managed.ObjectBase.md)\> + List<[ObjectBase](VM.Managed.ObjectBase.md)\> ### GetInfoFromDocumentPropertyGrid\(XmlDocument, XmlDocument\) @@ -1725,11 +1736,11 @@ public virtual void GetInfoFromDocumentPropertyGrid(XmlDocument xmlTarget, XmlDo #### Parameters -`xmlTarget` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlTarget` XmlDocument The target xml. -`xmlTool` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlTool` XmlDocument The tool xml. @@ -1755,7 +1766,7 @@ public virtual List GetObjectsForChangeAssembly() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ObjectBase](VM.Managed.ObjectBase.md)\> + List<[ObjectBase](VM.Managed.ObjectBase.md)\> ### GetOwnedDocuments\(LinkedList\) @@ -1767,7 +1778,7 @@ virtual void GetOwnedDocuments(LinkedList lstOwnedDoc) #### Parameters -`lstOwnedDoc` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) +`lstOwnedDoc` LinkedList ### GetReferDocument\(ref List\) @@ -1777,7 +1788,7 @@ public virtual void GetReferDocument(ref List lstDocument) #### Parameters -`lstDocument` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Document3D](VM.Managed.Document3D.md)\> +`lstDocument` List<[Document3D](VM.Managed.Document3D.md)\> ### GetReferedDocumentCount\(\) @@ -1787,7 +1798,7 @@ public int GetReferedDocumentCount() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetReference\(ObjectBase, ref List, ref List\) @@ -1799,9 +1810,9 @@ public virtual void GetReference(ObjectBase obSub, ref List lstRef, r `obSub` [ObjectBase](VM.Managed.ObjectBase.md) -`lstRef` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Reference](VM.Managed.Reference.md)\> +`lstRef` List<[Reference](VM.Managed.Reference.md)\> -`lstOther` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ObjectBase](VM.Managed.ObjectBase.md)\> +`lstOther` List<[ObjectBase](VM.Managed.ObjectBase.md)\> ### GetReplaceableInfo\(BuilderImport\[\]\) @@ -1819,7 +1830,7 @@ The builder object array. #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Body](VM.Managed.CAD.Body.md).[ReplaceCADInfo](VM.Managed.CAD.Body.ReplaceCADInfo.md)\> + List<[Body](VM.Managed.CAD.Body.md).[ReplaceCADInfo](VM.Managed.CAD.Body.ReplaceCADInfo.md)\> The list of replaceable information. @@ -1833,13 +1844,13 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The unnamed object. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The unnamed object name. @@ -1897,13 +1908,13 @@ public bool IsContainsCategoryName(string strCategoryName) #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string Name of the category. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if is [contains category name] [the specified category name]; otherwise, false. @@ -1915,7 +1926,7 @@ public bool IsCuttingPlaneSelected() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsMatchSelectObjectAndUnderCursorObject\(\) @@ -1927,7 +1938,7 @@ public bool IsMatchSelectObjectAndUnderCursorObject() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsSelectFromUnderCursor\(ulong\) @@ -1939,13 +1950,13 @@ public bool IsSelectFromUnderCursor(ulong keyObject) #### Parameters -`keyObject` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`keyObject` ulong The object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if already selected; otherwise, false. @@ -1959,7 +1970,7 @@ public override void IsTypeSupported(Type type) #### Parameters -`type` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`type` Type The type. @@ -1973,7 +1984,7 @@ protected override void LinkRequestUpdate(object obNotifier, LinkEventArgs arg) #### Parameters -`obNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obNotifier` object `arg` [LinkEventArgs](VM.Managed.LinkEventArgs.md) @@ -1989,25 +2000,25 @@ protected virtual void Load(XmlReader A_0) #### Parameters -`A_0` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`A_0` XmlReader -### LoadCADFile\(string, CadImportColorType, Color, CadImportResultType, CadImportUnitType, string\) +### LoadCADFile\(string, CadImportColorType, Color, CadImportResultType, CadImportUnitType, string, string, string, string\) Load cad import file. ```csharp -public void LoadCADFile(string strPath, Document3D.CadImportColorType color_type, Color color, Document3D.CadImportResultType type, Document3D.CadImportUnitType typeUnit, string strCADConvert) +public void LoadCADFile(string strPath, Document3D.CadImportColorType color_type, Color color, Document3D.CadImportResultType type, Document3D.CadImportUnitType typeUnit, string strPythonExecutablePath, string strStrideConvertPath, string strHoopsExchangePath, string strKernelDepsPaths) ``` #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The cad import file path. `color_type` [Document3D](VM.Managed.Document3D.md).[CadImportColorType](VM.Managed.Document3D.CadImportColorType.md) -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) +`color` Color The cad import color. @@ -2019,93 +2030,55 @@ The cad import result type. The cad import unit type. -`strCADConvert` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPythonExecutablePath` string -The path of cad convert exe. +The path of python.exe. -### LoadCADFile\(string, CadImportResultType, CadImportUnitType\) +`strStrideConvertPath` string -Load cad import file. +The path of StrideConvert.exe. -```csharp -public void LoadCADFile(string strPath, Document3D.CadImportResultType type, Document3D.CadImportUnitType typeUnit) -``` +`strHoopsExchangePath` string -#### Parameters +The path of Hoops Exchange. -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strKernelDepsPaths` string -The cad import file path. - -`type` [Document3D](VM.Managed.Document3D.md).[CadImportResultType](VM.Managed.Document3D.CadImportResultType.md) - -The cad import result type. - -`typeUnit` [Document3D](VM.Managed.Document3D.md).[CadImportUnitType](VM.Managed.Document3D.CadImportUnitType.md) - -The cad import unit type. +The kernel dependencies paths separated by ';'. -### LoadCADFile\(string, Color, CadImportResultType\) +### LoadCADFile\(string, CadImportResultType, string, string, string, string\) Load cad import file. ```csharp -public void LoadCADFile(string strPath, Color color, Document3D.CadImportResultType type) +public void LoadCADFile(string strPath, Document3D.CadImportResultType type, string strPythonExecutablePath, string strStrideConvertPath, string strHoopsExchangePath, string strKernelDepsPaths) ``` #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The cad import file path. -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) - -The cad import color. - `type` [Document3D](VM.Managed.Document3D.md).[CadImportResultType](VM.Managed.Document3D.CadImportResultType.md) The cad import result type. -### LoadCADFile\(string, CadImportResultType, string\) +`strPythonExecutablePath` string -Load cad import file. +The path of python.exe. -```csharp -public void LoadCADFile(string strPath, Document3D.CadImportResultType type, string strCADConvert) -``` +`strStrideConvertPath` string -#### Parameters +The path of StrideConvert.exe. -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strHoopsExchangePath` string -The cad import file path. +The path of Hoops Exchange. -`type` [Document3D](VM.Managed.Document3D.md).[CadImportResultType](VM.Managed.Document3D.CadImportResultType.md) - -The cad import result type. - -`strCADConvert` [string](https://learn.microsoft.com/dotnet/api/system.string) - -The path of cad convert exe. - -### LoadCADFile\(string, CadImportResultType\) - -Load cad import file. - -```csharp -public void LoadCADFile(string strPath, Document3D.CadImportResultType type) -``` - -#### Parameters - -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) - -The cad import file path. - -`type` [Document3D](VM.Managed.Document3D.md).[CadImportResultType](VM.Managed.Document3D.CadImportResultType.md) +`strKernelDepsPaths` string -The cad import result type. +The kernel dependencies paths separated by ';'. ### LoadCategoryFiles\(string\) @@ -2117,7 +2090,7 @@ public static void LoadCategoryFiles(string strCategoryDir) #### Parameters -`strCategoryDir` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryDir` string The category directory. @@ -2129,11 +2102,11 @@ protected static void LoadCategoryInfoFromFile(string strCategoryName, Dictionar #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string -`dicTypeCategory` [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [string](https://learn.microsoft.com/dotnet/api/system.string)\> +`dicTypeCategory` Dictionary -`lstCategory` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstCategory` List ### LoadTemplateBasedXml\(XmlReader\) @@ -2145,7 +2118,7 @@ protected virtual void LoadTemplateBasedXml(XmlReader A_0) #### Parameters -`A_0` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`A_0` XmlReader ### MakeXmlForDocumentPropertyGrid\(XmlDocument, ref string\) @@ -2157,17 +2130,17 @@ public virtual string MakeXmlForDocumentPropertyGrid(XmlDocument xmlDom, ref str #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XML DOM. -`strGroupName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strGroupName` string Name of the string group. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### MappingEntity\(\) @@ -2185,7 +2158,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -2209,11 +2182,11 @@ public bool OpenPropertyObjectBases(List targetObjectBases) #### Parameters -`targetObjectBases` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ObjectBase](VM.Managed.ObjectBase.md)\> +`targetObjectBases` List<[ObjectBase](VM.Managed.ObjectBase.md)\> #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OpenPropertyWithFirstSelectionObject\(\) @@ -2225,7 +2198,7 @@ public bool OpenPropertyWithFirstSelectionObject() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OpenPropertyWithSelectionObjects\(\) @@ -2237,7 +2210,7 @@ public bool OpenPropertyWithSelectionObjects() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PostCloseDocument\(\) @@ -2271,27 +2244,27 @@ public override void PostSave(List lstOpenDocs, bool bModified) #### Parameters -`lstOpenDocs` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Document](VM.Managed.Document.md)\> +`lstOpenDocs` List<[Document](VM.Managed.Document.md)\> -`bModified` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bModified` bool -### PreloadCADFile\(string, CadImportColorType, Color, CadImportResultType, CadImportUnitType, string, ref BuilderImport\[\]\) +### PreloadCADFile\(string, CadImportColorType, Color, CadImportResultType, CadImportUnitType, string, string, string, string, ref BuilderImport\[\]\) Preload cad import file. ```csharp -public void PreloadCADFile(string strPath, Document3D.CadImportColorType color_type, Color color, Document3D.CadImportResultType type, Document3D.CadImportUnitType typeUnit, string strCADConvert, ref BuilderImport[] arBuilderInfo) +public void PreloadCADFile(string strPath, Document3D.CadImportColorType color_type, Color color, Document3D.CadImportResultType type, Document3D.CadImportUnitType typeUnit, string strPythonExecutablePath, string strStrideConvertPath, string strHoopsExchangePath, string strKernelDepsPaths, ref BuilderImport[] arBuilderInfo) ``` #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The cad import file path. `color_type` [Document3D](VM.Managed.Document3D.md).[CadImportColorType](VM.Managed.Document3D.CadImportColorType.md) -`color` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) +`color` Color The cad import color. @@ -2303,9 +2276,21 @@ The cad import result type. The cad import unit type. -`strCADConvert` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPythonExecutablePath` string + +The path of python.exe. + +`strStrideConvertPath` string + +The path of StrideConvert.exe. -The path of cad convert exe. +`strHoopsExchangePath` string + +The path of Hoops Exchange. + +`strKernelDepsPaths` string + +The kernel dependencies paths separated by ';'. `arBuilderInfo` [BuilderImport](VM.Managed.CAD.BuilderImport.md)\[\] @@ -2321,7 +2306,7 @@ protected virtual bool ReAssemblyCore() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -2341,7 +2326,7 @@ The object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -2363,15 +2348,15 @@ protected void ReadCategoryXml(string strCategoryName, string strElementName, Xm #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string The category name. -`strElementName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strElementName` string The element name. -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -2399,15 +2384,15 @@ public void RegisterCurveset(UIntPtr curveset_key, UIntPtr edge_key, bool bAdd) #### Parameters -`curveset_key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`curveset_key` UIntPtr The curveset key. -`edge_key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`edge_key` UIntPtr The edge key. -`bAdd` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bAdd` bool if set to true add. @@ -2421,15 +2406,15 @@ public void RegisterFaceset(UIntPtr faceset_key, UIntPtr face_key, bool bAdd) #### Parameters -`faceset_key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`faceset_key` UIntPtr The facet key. -`face_key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`face_key` UIntPtr The face key. -`bAdd` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bAdd` bool if set to true add. @@ -2443,7 +2428,7 @@ public void RegisterLoadingException(Exception exception) #### Parameters -`exception` [Exception](https://learn.microsoft.com/dotnet/api/system.exception) +`exception` Exception The exception. @@ -2485,7 +2470,7 @@ public void RemoveInterface(string strXml) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The interface information. @@ -2499,7 +2484,7 @@ protected virtual void RenameEntityImpl(string strOldName, ObjectBase namedObj) #### Parameters -`strOldName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOldName` string The old name. @@ -2517,7 +2502,7 @@ public void RenameInterface(string strXml) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The interface information. @@ -2573,7 +2558,7 @@ protected virtual void Save(XmlWriter A_0) #### Parameters -`A_0` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`A_0` XmlWriter ### Save\(string\) @@ -2585,7 +2570,7 @@ public override sealed void Save(string strPath) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The path to save. @@ -2597,11 +2582,11 @@ public void Save(string strPath, bool bAutoSave, Dictionary mapS #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string -`bAutoSave` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bAutoSave` bool -`mapSubPath` [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [string](https://learn.microsoft.com/dotnet/api/system.string)\> +`mapSubPath` Dictionary ### Save\(string, bool, bool\) @@ -2613,15 +2598,15 @@ public void Save(string strPath, bool bAutoSave, bool bUseBackUpFile) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The path. -`bAutoSave` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bAutoSave` bool The auto save state. -`bUseBackUpFile` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseBackUpFile` bool The backup flag. @@ -2635,11 +2620,11 @@ public void Save(string strPath, bool bAutoSave) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The path. -`bAutoSave` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bAutoSave` bool The auto save state. @@ -2651,9 +2636,9 @@ public void SaveDocument(string strPath, Dictionary mapSubPath) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string -`mapSubPath` [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [string](https://learn.microsoft.com/dotnet/api/system.string)\> +`mapSubPath` Dictionary ### SaveTemplateBasedXml\(XmlWriter\) @@ -2665,7 +2650,7 @@ protected virtual void SaveTemplateBasedXml(XmlWriter A_0) #### Parameters -`A_0` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`A_0` XmlWriter ### SetData\(XmlNode\) @@ -2677,7 +2662,7 @@ public override void SetData(XmlNode reader) #### Parameters -`reader` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`reader` XmlNode The reader. @@ -2691,7 +2676,7 @@ protected override void SetHandle(UIntPtr pDocHandle) #### Parameters -`pDocHandle` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pDocHandle` UIntPtr The document handle. @@ -2705,7 +2690,7 @@ public void SetPickFromUnderCursor(ulong keyObject) #### Parameters -`keyObject` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`keyObject` ulong The object will be picked. @@ -2729,7 +2714,7 @@ public void SetSelectFromUnderCursor(ulong keyObject) #### Parameters -`keyObject` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`keyObject` ulong The object will be selected. @@ -2755,7 +2740,7 @@ public virtual void SetSelectionObject(List lstObj) #### Parameters -`lstObj` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ObjectBase](VM.Managed.ObjectBase.md)\> +`lstObj` List<[ObjectBase](VM.Managed.ObjectBase.md)\> ### SetUnselectFromUnderCursor\(ulong\) @@ -2767,7 +2752,7 @@ public void SetUnselectFromUnderCursor(ulong keyObject) #### Parameters -`keyObject` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`keyObject` ulong The object will be unselected. @@ -2779,13 +2764,13 @@ public bool ShowHideObjectBases(bool bShow, List lstSel) #### Parameters -`bShow` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bShow` bool -`lstSel` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ObjectBase](VM.Managed.ObjectBase.md)\> +`lstSel` List<[ObjectBase](VM.Managed.ObjectBase.md)\> #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ShowHideWithSelectionObjects\(bool\) @@ -2797,11 +2782,11 @@ public bool ShowHideWithSelectionObjects(bool bShow) #### Parameters -`bShow` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bShow` bool #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SkipAddToDSDLWithCategory\(string\) @@ -2811,11 +2796,11 @@ public virtual bool SkipAddToDSDLWithCategory(string strCategory) #### Parameters -`strCategory` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategory` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SkipAddToDSDLWithEntity\(ObjectBase\) @@ -2829,7 +2814,7 @@ public virtual bool SkipAddToDSDLWithEntity(ObjectBase ob) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SkipDelete\(ObjectBase\) @@ -2847,7 +2832,7 @@ The obj. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SkipObjectInWriting\(ObjectBase\) @@ -2865,7 +2850,7 @@ The object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SkipShowHide\(ObjectBase\) @@ -2883,7 +2868,7 @@ The obj. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### StartBasicOp\(BasicOpType\) @@ -2899,20 +2884,6 @@ public void StartBasicOp(Document3D.BasicOpType type) The type of basic operation. -### StartCADImportLog\(string\) - -Starts the CAD import log. - -```csharp -protected virtual void StartCADImportLog(string strLogPath) -``` - -#### Parameters - -`strLogPath` [string](https://learn.microsoft.com/dotnet/api/system.string) - -The log path. - ### ToggleCuttingPlane\(OMatrix\) ```csharp @@ -2943,7 +2914,7 @@ public override void UpdateEnable(ObjectBase obj, bool bEnabled) The object. -`bEnabled` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bEnabled` bool Whether object is enable. @@ -2961,7 +2932,7 @@ public override void UpdateInterface(ObjectBase obj, bool bInterfaced) The object. -`bInterfaced` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bInterfaced` bool Whether object is interfaced. @@ -2975,7 +2946,7 @@ public bool VerifyAllEntity() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### WriteCategoryToXml\(string, string, XmlWriter\) @@ -2987,15 +2958,15 @@ protected void WriteCategoryToXml(string strCategoryName, string strElementName, #### Parameters -`strCategoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCategoryName` string The category name. -`strElementName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strElementName` string The element name. -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. @@ -3017,7 +2988,7 @@ public virtual void XmlDocumentReLoad(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DocumentEventArgs.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DocumentEventArgs.md index 388e5b6bc8..077c1a1e43 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DocumentEventArgs.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DocumentEventArgs.md @@ -1,4 +1,5 @@ -# Class DocumentEventArgs +# Class DocumentEventArgs + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public class DocumentEventArgs : EventArgs #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) ← +object ← +EventArgs ← [DocumentEventArgs](VM.Managed.DocumentEventArgs.md) #### Extension Methods @@ -33,7 +34,7 @@ public DocumentEventArgs(string strUpdateInfoXml) #### Parameters -`strUpdateInfoXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strUpdateInfoXml` string The document update information. @@ -49,5 +50,5 @@ public string InformationXml { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DoubleClickEvent.enDoubleClickType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DoubleClickEvent.enDoubleClickType.md index 33ff3b57f2..95dedfc981 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DoubleClickEvent.enDoubleClickType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DoubleClickEvent.enDoubleClickType.md @@ -1,4 +1,5 @@ -# Enum enDoubleClickType +# Enum enDoubleClickType + Namespace: [VM.Managed.DoubleClickEvent](VM.Managed.DoubleClickEvent.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DoubleClickEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DoubleClickEvent.md index 9f9338380c..163b6a37ad 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DoubleClickEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.DoubleClickEvent.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.DoubleClickEvent +# Namespace VM.Managed.DoubleClickEvent + ### Enums diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.EigenvalueAnalysisParameter.ModeType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.EigenvalueAnalysisParameter.ModeType.md index 4b36ca3969..c5b0839f03 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.EigenvalueAnalysisParameter.ModeType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.EigenvalueAnalysisParameter.ModeType.md @@ -1,4 +1,5 @@ -# Enum EigenvalueAnalysisParameter.ModeType +# Enum EigenvalueAnalysisParameter.ModeType + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.EigenvalueAnalysisParameter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.EigenvalueAnalysisParameter.md index ec6189179a..4a2bd0c821 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.EigenvalueAnalysisParameter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.EigenvalueAnalysisParameter.md @@ -1,4 +1,5 @@ -# Class EigenvalueAnalysisParameter +# Class EigenvalueAnalysisParameter + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,7 +12,7 @@ public class EigenvalueAnalysisParameter #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [EigenvalueAnalysisParameter](VM.Managed.EigenvalueAnalysisParameter.md) #### Extension Methods @@ -40,27 +41,27 @@ public EigenvalueAnalysisParameter(uint nMaximumNumberOfMode, bool bUseBound, do #### Parameters -`nMaximumNumberOfMode` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nMaximumNumberOfMode` uint The n maximum number of mode. -`bUseBound` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseBound` bool if set to true [b use bound]. -`dLowerBound` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLowerBound` double The lower bound. -`dUpperBound` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dUpperBound` double The upper bound. -`dShiftValue` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dShiftValue` double The shift value. -`dPenaltyValue` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dPenaltyValue` double The penalty value. @@ -76,7 +77,7 @@ public bool IsUseAutoPenalty { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsUseAutoShift @@ -88,7 +89,7 @@ public bool IsUseAutoShift { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsUseBound @@ -100,7 +101,7 @@ public bool IsUseBound { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsUseFullMethod @@ -112,7 +113,7 @@ public bool IsUseFullMethod { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsUseLocalRefinement @@ -124,7 +125,7 @@ public bool IsUseLocalRefinement { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsUseNumberOfDomain @@ -136,7 +137,7 @@ public bool IsUseNumberOfDomain { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LowerBoundGlobal @@ -148,7 +149,7 @@ public static double LowerBoundGlobal { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### LowerBoundValue @@ -160,7 +161,7 @@ public double LowerBoundValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MaxNumberOfMode @@ -172,7 +173,7 @@ public uint MaxNumberOfMode { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### MaximumNumberOfModeGlobal @@ -184,7 +185,7 @@ public static uint MaximumNumberOfModeGlobal { get; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### MinMassRatio @@ -196,7 +197,7 @@ public double MinMassRatio { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NumOfCluster @@ -208,7 +209,7 @@ public int NumOfCluster { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumOfDomain @@ -220,7 +221,7 @@ public int NumOfDomain { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumOfParentDomain @@ -232,7 +233,7 @@ public int NumOfParentDomain { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### OrderValue @@ -244,7 +245,7 @@ public int OrderValue { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### OwnerLinkContainer @@ -268,7 +269,7 @@ public double[] ParameterArray { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### PenaltyVal @@ -280,7 +281,7 @@ public double PenaltyVal { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### PenaltyValueGlobal @@ -292,7 +293,7 @@ public static double PenaltyValueGlobal { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RatioVal @@ -304,7 +305,7 @@ public double RatioVal { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ReferenceStressVal @@ -316,7 +317,7 @@ public double ReferenceStressVal { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RefinedDomainLevel @@ -328,7 +329,7 @@ public int RefinedDomainLevel { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### ShiftVal @@ -340,7 +341,7 @@ public double ShiftVal { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ShiftValueGlobal @@ -352,7 +353,7 @@ public static double ShiftValueGlobal { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TypeOfMode @@ -376,7 +377,7 @@ public static double UpperBoundGlobal { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UpperBoundValue @@ -388,7 +389,7 @@ public double UpperBoundValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UseAutoPenaltyGlobal @@ -400,7 +401,7 @@ public static bool UseAutoPenaltyGlobal { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseAutoShiftGlobal @@ -412,7 +413,7 @@ public static bool UseAutoShiftGlobal { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseBoundGlobal @@ -424,7 +425,7 @@ public static bool UseBoundGlobal { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -438,35 +439,35 @@ public static void Initialize(uint nMaximumNumberOfMode, bool bUseBound, double #### Parameters -`nMaximumNumberOfMode` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nMaximumNumberOfMode` uint The n maximum number of mode. -`bUseBound` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseBound` bool if set to true [b use bound]. -`dLowerBound` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLowerBound` double The lower bound. -`dUpperBound` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dUpperBound` double The upper bound. -`dShiftValue` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dShiftValue` double The shift value. -`bAutoShift` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bAutoShift` bool if set to true [auto shift value]. -`dPenaltyValue` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dPenaltyValue` double The penalty value. -`bAutoPenalty` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bAutoPenalty` bool if set to true [auto penalty value]. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Entity-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Entity-1.md index 466d39793d..05c02ccb70 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Entity-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Entity-1.md @@ -1,4 +1,5 @@ -# Class Entity +# Class Entity + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -17,9 +18,9 @@ The type of the property. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← @@ -33,7 +34,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -181,7 +182,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -220,7 +221,7 @@ protected Entity(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the entity. @@ -250,7 +251,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -270,13 +271,13 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The ob unnamed. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Initialize\(ConvertFactor\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.EntityBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.EntityBase.md index 3f6df8147d..cb84b5c4d0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.EntityBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.EntityBase.md @@ -1,4 +1,5 @@ -# Class EntityBase +# Class EntityBase + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,9 +12,9 @@ public abstract class EntityBase : ContainerObject, IObservable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -153,7 +154,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -192,7 +193,7 @@ protected EntityBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the entity base. @@ -208,7 +209,7 @@ public string Comment { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### DisplayName @@ -220,7 +221,7 @@ public virtual string DisplayName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### FullName @@ -232,7 +233,7 @@ public string FullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### HasLayerExplicitly @@ -244,7 +245,7 @@ protected abstract bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsEnabled @@ -256,7 +257,7 @@ public virtual bool IsEnabled { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsFileProperty @@ -268,7 +269,7 @@ protected bool IsFileProperty { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsVisible @@ -280,7 +281,7 @@ public virtual bool IsVisible { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Layer @@ -304,7 +305,7 @@ public string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NonSymmetricName @@ -316,7 +317,7 @@ public string NonSymmetricName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UntypedProperty @@ -342,7 +343,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -368,7 +369,7 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -382,21 +383,21 @@ protected virtual bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, XmlE #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [b has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -424,7 +425,7 @@ protected override void LinkAddedToDocument(object objNotifier, AddToDocEventArg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -442,7 +443,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -460,7 +461,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -500,7 +501,7 @@ public void PropertyRequestUpdate(object obj, LinkEventArgs arg) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The linked object. @@ -518,7 +519,7 @@ protected virtual void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -550,7 +551,7 @@ protected virtual void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.EntityEventCore.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.EntityEventCore.md index f916bda149..0b4764f5cc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.EntityEventCore.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.EntityEventCore.md @@ -1,4 +1,5 @@ -# Class EntityEventCore +# Class EntityEventCore + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,7 +12,7 @@ public class EntityEventCore : ObjectEventCore, IObject, ILinkContainer, IOwned, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObjectEventCore ← [EntityEventCore](VM.Managed.EntityEventCore.md) @@ -23,7 +24,7 @@ IOwned, IHasID, IEventProvider, ILinkContainerEvent, -IHistoryObjectSerializableDelegate +[IHistoryObjectSerializableDelegate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs) #### Inherited Members @@ -72,11 +73,11 @@ protected EntityEventCore(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. @@ -92,7 +93,7 @@ public void PropertyRequestUpdate(object obj, LinkEventArgs args) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.EntityToEntityWhenAddDocExeption.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.EntityToEntityWhenAddDocExeption.md index 304525285d..b9e9b26233 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.EntityToEntityWhenAddDocExeption.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.EntityToEntityWhenAddDocExeption.md @@ -1,4 +1,5 @@ -# Class EntityToEntityWhenAddDocExeption +# Class EntityToEntityWhenAddDocExeption + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public class EntityToEntityWhenAddDocExeption : Exception #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Exception](https://learn.microsoft.com/dotnet/api/system.exception) ← +object ← +Exception ← [EntityToEntityWhenAddDocExeption](VM.Managed.EntityToEntityWhenAddDocExeption.md) #### Extension Methods @@ -33,7 +34,7 @@ public EntityToEntityWhenAddDocExeption(string strMessage) #### Parameters -`strMessage` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMessage` string The error message. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ErrorReport.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ErrorReport.md index 115054e17a..67714183f4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ErrorReport.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ErrorReport.md @@ -1,4 +1,5 @@ -# Class ErrorReport +# Class ErrorReport + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class ErrorReport #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ErrorReport](VM.Managed.ErrorReport.md) #### Extension Methods @@ -38,7 +39,7 @@ public string Error { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ErrorCode @@ -48,7 +49,7 @@ public uint ErrorCode { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### ErrorObject @@ -70,5 +71,5 @@ public override string ToString() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Expression.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Expression.md index b0c62c914e..5290798852 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Expression.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Expression.md @@ -1,4 +1,5 @@ -# Class Expression +# Class Expression + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class Expression : LinkContainer, IObservableObject, IDisposableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [Expression](VM.Managed.Expression.md) @@ -84,7 +85,7 @@ IExpression [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -121,7 +122,7 @@ public static bool g_bSkipUpdate #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_dicReferenceObject @@ -132,7 +133,7 @@ protected Dictionary\> + Dictionary\> ### m\_linkCollectionReferenceObject @@ -153,7 +154,7 @@ protected List\> + List<[Link](VM.Managed.Link\-4.md)<[INamed](VM.Managed.INamed.md), [LinkContainer](VM.Managed.LinkContainer.md).[Update](VM.Managed.LinkContainer.Update.md), [LinkContainer](VM.Managed.LinkContainer.md).[Destroy](VM.Managed.LinkContainer.Destroy.md), [LinkContainer](VM.Managed.LinkContainer.md).[None](VM.Managed.LinkContainer.None.md)\>\> ### m\_pExpressionHandler @@ -163,7 +164,7 @@ protected static ExpressionHandler* m_pExpressionHandler #### Field Value - [ExpressionHandler](ExpressionHandler.md)\* + ExpressionHandler\* ### m\_strValue @@ -173,7 +174,7 @@ protected string m_strValue #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Properties @@ -187,7 +188,7 @@ public virtual string String { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -201,13 +202,13 @@ public bool AddReferenceObject(UIntPtr ptrEntityKey) #### Parameters -`ptrEntityKey` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`ptrEntityKey` UIntPtr The reference object key. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if added object; already contained, false. @@ -229,13 +230,13 @@ protected virtual bool ConvertToValue(string strValue) #### Parameters -`strValue` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strValue` string The string. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetNumericValue\(\) @@ -247,7 +248,7 @@ protected virtual double GetNumericValue() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Initialize\(\) @@ -267,7 +268,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -281,7 +282,7 @@ protected virtual void ParseToValue(char* wstrValue) #### Parameters -`wstrValue` [char](https://learn.microsoft.com/dotnet/api/system.char)\* +`wstrValue` char\* The string. @@ -295,7 +296,7 @@ protected virtual void SetDefaultString(ref string strValue) #### Parameters -`strValue` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strValue` string The value holds default string. @@ -317,7 +318,7 @@ public virtual void UpdateByReferenceObject(object obj, LinkEventArgs arg) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The reference object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ExpressionParser-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ExpressionParser-1.md index 8ff5c9d2ed..fde1b0b66a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ExpressionParser-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ExpressionParser-1.md @@ -1,4 +1,5 @@ -# Class ExpressionParser +# Class ExpressionParser + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -13,7 +14,7 @@ public class ExpressionParser : IExpressionParser #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ExpressionParser](VM.Managed.ExpressionParser\-1.md) #### Implements @@ -44,7 +45,7 @@ public virtual T Parse(string expression) #### Parameters -`expression` [string](https://learn.microsoft.com/dotnet/api/system.string) +`expression` string #### Returns diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.FailToSaveException.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.FailToSaveException.md index c47ac08492..8fb2a0770a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.FailToSaveException.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.FailToSaveException.md @@ -1,4 +1,5 @@ -# Class FailToSaveException +# Class FailToSaveException + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public class FailToSaveException : Exception #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Exception](https://learn.microsoft.com/dotnet/api/system.exception) ← +object ← +Exception ← [FailToSaveException](VM.Managed.FailToSaveException.md) #### Extension Methods @@ -33,7 +34,7 @@ public FailToSaveException(string message, Exception innerException) #### Parameters -`message` [string](https://learn.microsoft.com/dotnet/api/system.string) +`message` string -`innerException` [Exception](https://learn.microsoft.com/dotnet/api/system.exception) +`innerException` Exception diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.FilePropertyOwner-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.FilePropertyOwner-1.md index c5b17403ec..26f3f271b5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.FilePropertyOwner-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.FilePropertyOwner-1.md @@ -1,4 +1,5 @@ -# Class FilePropertyOwner +# Class FilePropertyOwner + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -17,9 +18,9 @@ The type of the property. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [FilePropertyOwner](VM.Managed.FilePropertyOwner\-1.md) @@ -38,7 +39,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer #### Inherited Members @@ -135,7 +136,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.GetRelationInfoEventArgs.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.GetRelationInfoEventArgs.md index 416a9ff8b1..7492f19b06 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.GetRelationInfoEventArgs.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.GetRelationInfoEventArgs.md @@ -1,4 +1,5 @@ -# Class GetRelationInfoEventArgs +# Class GetRelationInfoEventArgs + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public sealed class GetRelationInfoEventArgs : LinkEventArgs #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) ← +object ← +EventArgs ← [LinkEventArgs](VM.Managed.LinkEventArgs.md) ← [GetRelationInfoEventArgs](VM.Managed.GetRelationInfoEventArgs.md) @@ -57,7 +58,7 @@ public List RelationList { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ObjectBase](VM.Managed.ObjectBase.md)\> + List<[ObjectBase](VM.Managed.ObjectBase.md)\> ### SubEntityList @@ -69,7 +70,7 @@ public List SubEntityList { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ObjectBase](VM.Managed.ObjectBase.md)\> + List<[ObjectBase](VM.Managed.ObjectBase.md)\> ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Gravity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Gravity.md index da9dddf47b..26e26bec2b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Gravity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Gravity.md @@ -1,4 +1,5 @@ -# Class Gravity +# Class Gravity + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,9 +12,9 @@ public class Gravity : Object, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [Gravity](VM.Managed.Gravity.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IDraw, IDrawIcon, @@ -133,7 +134,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -188,7 +189,7 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsVisible @@ -200,7 +201,7 @@ public virtual bool IsVisible { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Layer @@ -236,7 +237,7 @@ public double X { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y @@ -248,7 +249,7 @@ public double Y { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Z @@ -260,7 +261,7 @@ public double Z { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -274,7 +275,7 @@ public virtual void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas has icon information. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.HandledDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.HandledDocument.md index 64fc09b30d..e3e50758ae 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.HandledDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.HandledDocument.md @@ -1,4 +1,5 @@ -# Class HandledDocument +# Class HandledDocument + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public abstract class HandledDocument : Document, IObservableObject, IDisposable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [Container](VM.Managed.Container.md) ← [Document](VM.Managed.Document.md) ← @@ -32,7 +33,7 @@ ILinkable, [IVerifiable](VM.Managed.IVerifiable.md), [IEnableManager](VM.Managed.IEnableManager.md), [IRelatedDocument](VM.Managed.IRelatedDocument.md), -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IHandledDocument, IDocument, IObject, @@ -238,7 +239,7 @@ IHasID [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -269,7 +270,7 @@ protected HandledDocument(UIntPtr pDocHandle) #### Parameters -`pDocHandle` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pDocHandle` UIntPtr The document handle. @@ -283,7 +284,7 @@ public static bool DoNotCheckHandleWhenCreate { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Handle @@ -295,7 +296,7 @@ public virtual UIntPtr Handle { get; } #### Property Value - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ## Methods @@ -321,7 +322,7 @@ protected void CancelSelectedFaceset(bool bLock) #### Parameters -`bLock` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bLock` bool ### CancelSelection\(bool, bool\) @@ -333,11 +334,11 @@ public override void CancelSelection(bool bLock, bool bUnHighlight) #### Parameters -`bLock` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bLock` bool Thread lock flag. -`bUnHighlight` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUnHighlight` bool ### Dispose\(bool\) @@ -348,7 +349,7 @@ protected override void Dispose(bool A_0) #### Parameters -`A_0` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`A_0` bool ### ExitCommandMode\(\) @@ -368,7 +369,7 @@ public static HandledDocument FromHandle(UIntPtr pHandle) #### Parameters -`pHandle` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pHandle` UIntPtr The document handle. @@ -386,7 +387,7 @@ protected override void OnDeserialization(object obSender) #### Parameters -`obSender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obSender` object The sender. @@ -408,7 +409,7 @@ protected virtual void SetHandle(UIntPtr pDocHandle) #### Parameters -`pDocHandle` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pDocHandle` UIntPtr The document handle. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.HandledView.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.HandledView.md index b5d427eee2..60edf377c3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.HandledView.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.HandledView.md @@ -1,4 +1,5 @@ -# Class HandledView +# Class HandledView + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public abstract class HandledView : View #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [View](VM.Managed.View.md) ← [HandledView](VM.Managed.HandledView.md) @@ -56,7 +57,7 @@ public HandledView(UIntPtr handleView, Document doc) #### Parameters -`handleView` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`handleView` UIntPtr The view handle. @@ -76,7 +77,7 @@ public UIntPtr Handle { get; } #### Property Value - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ## Methods @@ -89,7 +90,7 @@ protected override void Dispose(bool A_0) #### Parameters -`A_0` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`A_0` bool ### \~HandledView\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.AddToNavigatorAddon.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.AddToNavigatorAddon.md index 432b733127..33652d7f6d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.AddToNavigatorAddon.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.AddToNavigatorAddon.md @@ -1,4 +1,5 @@ -# Class AddToNavigatorAddon +# Class AddToNavigatorAddon + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,8 +10,8 @@ public class AddToNavigatorAddon : NavigatorAddon #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryManagerAddon ← +object ← +[HistoryManagerAddon](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) ← [ObjectBaseAddon](VM.Managed.History.ObjectBaseAddon.md) ← [NavigatorAddon](VM.Managed.History.NavigatorAddon.md) ← [AddToNavigatorAddon](VM.Managed.History.AddToNavigatorAddon.md) @@ -37,20 +38,20 @@ HistoryManagerAddon ← [ObjectBaseAddon.AddEntity\(UIntPtr\)](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_AddEntity\_System\_UIntPtr\_), [ObjectBaseAddon.RemoveEntity\(UIntPtr\)](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_RemoveEntity\_System\_UIntPtr\_), [ObjectBaseAddon.List](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_List), -HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.Register\(HistoryManager\), -HistoryManagerAddon.ClearMarkCollection\(ICollection\), -HistoryManagerAddon.ClearMark\(HistoryMark\), -HistoryManagerAddon.Parent, -HistoryManagerAddon.DoneList, -HistoryManagerAddon.UndoneList +[HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Register\(HistoryManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMarkCollection\(ICollection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMark\(HistoryMark\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.DoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.UndoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) #### Extension Methods @@ -76,7 +77,7 @@ protected override void Process(object o, HistoryEventArgs args) #### Parameters -`o` [object](https://learn.microsoft.com/dotnet/api/system.object) +`o` object -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.AddToSubEntityAddon.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.AddToSubEntityAddon.md index 25c1731eee..36dcdc72ff 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.AddToSubEntityAddon.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.AddToSubEntityAddon.md @@ -1,4 +1,5 @@ -# Class AddToSubEntityAddon +# Class AddToSubEntityAddon + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,8 +10,8 @@ public class AddToSubEntityAddon : ObjectBaseAddon #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryManagerAddon ← +object ← +[HistoryManagerAddon](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) ← [ObjectBaseAddon](VM.Managed.History.ObjectBaseAddon.md) ← [AddToSubEntityAddon](VM.Managed.History.AddToSubEntityAddon.md) @@ -27,20 +28,20 @@ HistoryManagerAddon ← [ObjectBaseAddon.AddEntity\(UIntPtr\)](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_AddEntity\_System\_UIntPtr\_), [ObjectBaseAddon.RemoveEntity\(UIntPtr\)](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_RemoveEntity\_System\_UIntPtr\_), [ObjectBaseAddon.List](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_List), -HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.Register\(HistoryManager\), -HistoryManagerAddon.ClearMarkCollection\(ICollection\), -HistoryManagerAddon.ClearMark\(HistoryMark\), -HistoryManagerAddon.Parent, -HistoryManagerAddon.DoneList, -HistoryManagerAddon.UndoneList +[HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Register\(HistoryManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMarkCollection\(ICollection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMark\(HistoryMark\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.DoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.UndoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) #### Extension Methods @@ -66,7 +67,7 @@ protected override void Process(object o, HistoryEventArgs args) #### Parameters -`o` [object](https://learn.microsoft.com/dotnet/api/system.object) +`o` object -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ClosedInstanceContainerHistEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ClosedInstanceContainerHistEvent.md index 8589e86f45..bce1015808 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ClosedInstanceContainerHistEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ClosedInstanceContainerHistEvent.md @@ -1,4 +1,5 @@ -# Class ClosedInstanceContainerHistEvent +# Class ClosedInstanceContainerHistEvent + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,8 +10,8 @@ public class ClosedInstanceContainerHistEvent : InstanceContainerHistEventBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [InstanceContainerHistEventBase](VM.Managed.History.InstanceContainerHistEventBase.md) ← [ClosedInstanceContainerHistEvent](VM.Managed.History.ClosedInstanceContainerHistEvent.md) @@ -23,17 +24,17 @@ HistoryEvent ← [InstanceContainerHistEventBase.AfterAdded\(HistoryEventArgs\)](VM.Managed.History.InstanceContainerHistEventBase.md\#VM\_Managed\_History\_InstanceContainerHistEventBase\_AfterAdded\_VM\_Managed\_History\_HistoryEventArgs\_), [InstanceContainerHistEventBase.IsAvailableEvent\(Document\)](VM.Managed.History.InstanceContainerHistEventBase.md\#VM\_Managed\_History\_InstanceContainerHistEventBase\_IsAvailableEvent\_VM\_Managed\_Document\_), [InstanceContainerHistEventBase.AddEventCore\(Document, InstanceContainerHistEventBase\)](VM.Managed.History.InstanceContainerHistEventBase.md\#VM\_Managed\_History\_InstanceContainerHistEventBase\_AddEventCore\_VM\_Managed\_Document\_VM\_Managed\_History\_InstanceContainerHistEventBase\_), -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -51,5 +52,5 @@ public ClosedInstanceContainerHistEvent(string strPathName) #### Parameters -`strPathName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPathName` string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.CreatedInstanceContainerHistEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.CreatedInstanceContainerHistEvent.md index 75088d8732..7edb3d44bd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.CreatedInstanceContainerHistEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.CreatedInstanceContainerHistEvent.md @@ -1,4 +1,5 @@ -# Class CreatedInstanceContainerHistEvent +# Class CreatedInstanceContainerHistEvent + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,8 +10,8 @@ public class CreatedInstanceContainerHistEvent : InstanceContainerHistEventBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [InstanceContainerHistEventBase](VM.Managed.History.InstanceContainerHistEventBase.md) ← [CreatedInstanceContainerHistEvent](VM.Managed.History.CreatedInstanceContainerHistEvent.md) @@ -23,17 +24,17 @@ HistoryEvent ← [InstanceContainerHistEventBase.AfterAdded\(HistoryEventArgs\)](VM.Managed.History.InstanceContainerHistEventBase.md\#VM\_Managed\_History\_InstanceContainerHistEventBase\_AfterAdded\_VM\_Managed\_History\_HistoryEventArgs\_), [InstanceContainerHistEventBase.IsAvailableEvent\(Document\)](VM.Managed.History.InstanceContainerHistEventBase.md\#VM\_Managed\_History\_InstanceContainerHistEventBase\_IsAvailableEvent\_VM\_Managed\_Document\_), [InstanceContainerHistEventBase.AddEventCore\(Document, InstanceContainerHistEventBase\)](VM.Managed.History.InstanceContainerHistEventBase.md\#VM\_Managed\_History\_InstanceContainerHistEventBase\_AddEventCore\_VM\_Managed\_Document\_VM\_Managed\_History\_InstanceContainerHistEventBase\_), -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -51,5 +52,5 @@ public CreatedInstanceContainerHistEvent(string strPathName) #### Parameters -`strPathName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPathName` string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentCategoryAddEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentCategoryAddEvent.md index 7c4339e9f3..acbfe5171f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentCategoryAddEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentCategoryAddEvent.md @@ -1,4 +1,5 @@ -# Class DocumentCategoryAddEvent +# Class DocumentCategoryAddEvent + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,8 +10,8 @@ public class DocumentCategoryAddEvent : DocumentCategoryAddRemoveEventBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [DocumentCategoryAddRemoveEventBase](VM.Managed.History.DocumentCategoryAddRemoveEventBase.md) ← [DocumentCategoryAddEvent](VM.Managed.History.DocumentCategoryAddEvent.md) @@ -24,17 +25,17 @@ HistoryEvent ← [DocumentCategoryAddRemoveEventBase.GetObjectFromKey\(UIntPtr\)](VM.Managed.History.DocumentCategoryAddRemoveEventBase.md\#VM\_Managed\_History\_DocumentCategoryAddRemoveEventBase\_GetObjectFromKey\_System\_UIntPtr\_), [DocumentCategoryAddRemoveEventBase.IsAvailableEvent\(IDocument\)](VM.Managed.History.DocumentCategoryAddRemoveEventBase.md\#VM\_Managed\_History\_DocumentCategoryAddRemoveEventBase\_IsAvailableEvent\_VM\_Models\_Pre\_IDocument\_), [DocumentCategoryAddRemoveEventBase.AddEventCore\(IDocument, HistoryEvent\)](VM.Managed.History.DocumentCategoryAddRemoveEventBase.md\#VM\_Managed\_History\_DocumentCategoryAddRemoveEventBase\_AddEventCore\_VM\_Models\_Pre\_IDocument\_VM\_Managed\_History\_HistoryEvent\_), -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -52,7 +53,7 @@ public override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Undo\(HistoryEventArgs\) @@ -62,5 +63,5 @@ public override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentCategoryAddRemoveEventBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentCategoryAddRemoveEventBase.md index 78744251c9..be4cda0e1e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentCategoryAddRemoveEventBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentCategoryAddRemoveEventBase.md @@ -1,4 +1,5 @@ -# Class DocumentCategoryAddRemoveEventBase +# Class DocumentCategoryAddRemoveEventBase + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,8 +10,8 @@ public abstract class DocumentCategoryAddRemoveEventBase : HistoryEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [DocumentCategoryAddRemoveEventBase](VM.Managed.History.DocumentCategoryAddRemoveEventBase.md) #### Derived @@ -20,17 +21,17 @@ HistoryEvent ← #### Inherited Members -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -86,7 +87,7 @@ protected UIntPtr m_objAfterKey #### Field Value - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### m\_objKey @@ -96,7 +97,7 @@ protected UIntPtr m_objKey #### Field Value - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ## Methods @@ -110,7 +111,7 @@ public static void AddEventCore(IDocument doc, HistoryEvent eventHist) `doc` IDocument -`eventHist` HistoryEvent +`eventHist` [HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ### Clear\(bool\) @@ -120,7 +121,7 @@ protected override void Clear(bool bReserveReferenceCount) #### Parameters -`bReserveReferenceCount` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReserveReferenceCount` bool ### GetObjectFromKey\(UIntPtr\) @@ -130,7 +131,7 @@ protected ObjectBase GetObjectFromKey(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr #### Returns @@ -148,5 +149,5 @@ public static bool IsAvailableEvent(IDocument doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentCategoryRemoveEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentCategoryRemoveEvent.md index dee817ddd3..a488f2f0be 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentCategoryRemoveEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentCategoryRemoveEvent.md @@ -1,4 +1,5 @@ -# Class DocumentCategoryRemoveEvent +# Class DocumentCategoryRemoveEvent + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,8 +10,8 @@ public class DocumentCategoryRemoveEvent : DocumentCategoryAddRemoveEventBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [DocumentCategoryAddRemoveEventBase](VM.Managed.History.DocumentCategoryAddRemoveEventBase.md) ← [DocumentCategoryRemoveEvent](VM.Managed.History.DocumentCategoryRemoveEvent.md) @@ -24,17 +25,17 @@ HistoryEvent ← [DocumentCategoryAddRemoveEventBase.GetObjectFromKey\(UIntPtr\)](VM.Managed.History.DocumentCategoryAddRemoveEventBase.md\#VM\_Managed\_History\_DocumentCategoryAddRemoveEventBase\_GetObjectFromKey\_System\_UIntPtr\_), [DocumentCategoryAddRemoveEventBase.IsAvailableEvent\(IDocument\)](VM.Managed.History.DocumentCategoryAddRemoveEventBase.md\#VM\_Managed\_History\_DocumentCategoryAddRemoveEventBase\_IsAvailableEvent\_VM\_Models\_Pre\_IDocument\_), [DocumentCategoryAddRemoveEventBase.AddEventCore\(IDocument, HistoryEvent\)](VM.Managed.History.DocumentCategoryAddRemoveEventBase.md\#VM\_Managed\_History\_DocumentCategoryAddRemoveEventBase\_AddEventCore\_VM\_Models\_Pre\_IDocument\_VM\_Managed\_History\_HistoryEvent\_), -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -52,7 +53,7 @@ public override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Undo\(HistoryEventArgs\) @@ -62,5 +63,5 @@ public override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentLinkChildModifiedEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentLinkChildModifiedEvent.md index 8f9753f56a..1377a198d0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentLinkChildModifiedEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentLinkChildModifiedEvent.md @@ -1,4 +1,5 @@ -# Class DocumentLinkChildModifiedEvent +# Class DocumentLinkChildModifiedEvent + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,8 +10,8 @@ public class DocumentLinkChildModifiedEvent : DocumentMemberModifiedEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [DocumentMemberModifiedEvent](VM.Managed.History.DocumentMemberModifiedEvent.md) ← [DocumentLinkChildModifiedEvent](VM.Managed.History.DocumentLinkChildModifiedEvent.md) @@ -19,17 +20,17 @@ HistoryEvent ← [DocumentMemberModifiedEvent.m\_doc](VM.Managed.History.DocumentMemberModifiedEvent.md\#VM\_Managed\_History\_DocumentMemberModifiedEvent\_m\_doc), [DocumentMemberModifiedEvent.m\_obj](VM.Managed.History.DocumentMemberModifiedEvent.md\#VM\_Managed\_History\_DocumentMemberModifiedEvent\_m\_obj), [DocumentMemberModifiedEvent.Clear\(bool\)](VM.Managed.History.DocumentMemberModifiedEvent.md\#VM\_Managed\_History\_DocumentMemberModifiedEvent\_Clear\_System\_Boolean\_), -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -49,11 +50,11 @@ protected DocumentLinkChildModifiedEvent(Document doc, object obj, string strPro `doc` [Document](VM.Managed.Document.md) -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object -`strPropertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPropertyName` string -`bChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bChild` bool ### DocumentLinkChildModifiedEvent\(Document, object, string\) @@ -65,9 +66,9 @@ protected DocumentLinkChildModifiedEvent(Document doc, object obj, string strPro `doc` [Document](VM.Managed.Document.md) -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object -`strPropertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPropertyName` string ### DocumentLinkChildModifiedEvent\(\) @@ -85,7 +86,7 @@ protected override void Clear(bool bReserveReferenceCount) #### Parameters -`bReserveReferenceCount` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReserveReferenceCount` bool ### DocumentLinkChildModified\(Document, object, string, bool\) @@ -97,11 +98,11 @@ public static void DocumentLinkChildModified(Document doc, object obj, string st `doc` [Document](VM.Managed.Document.md) -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object -`strPropertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPropertyName` string -`bChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bChild` bool ### DocumentLinkChildModified\(Document, object, string\) @@ -113,9 +114,9 @@ public static void DocumentLinkChildModified(Document doc, object obj, string st `doc` [Document](VM.Managed.Document.md) -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object -`strPropertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPropertyName` string ### Redo\(HistoryEventArgs\) @@ -125,7 +126,7 @@ protected override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Undo\(HistoryEventArgs\) @@ -135,5 +136,5 @@ protected override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentMemberModifiedEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentMemberModifiedEvent.md index 03f8f63b66..ba3ce997ea 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentMemberModifiedEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentMemberModifiedEvent.md @@ -1,4 +1,5 @@ -# Class DocumentMemberModifiedEvent +# Class DocumentMemberModifiedEvent + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,8 +10,8 @@ public abstract class DocumentMemberModifiedEvent : HistoryEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [DocumentMemberModifiedEvent](VM.Managed.History.DocumentMemberModifiedEvent.md) #### Derived @@ -20,17 +21,17 @@ HistoryEvent ← #### Inherited Members -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -50,7 +51,7 @@ protected DocumentMemberModifiedEvent(Document doc, object obj) `doc` [Document](VM.Managed.Document.md) -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object ### DocumentMemberModifiedEvent\(\) @@ -78,7 +79,7 @@ protected object m_obj #### Field Value - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ## Methods @@ -90,5 +91,5 @@ protected override void Clear(bool bReserveReferenceCount) #### Parameters -`bReserveReferenceCount` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReserveReferenceCount` bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentPropertiesModifiedEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentPropertiesModifiedEvent.md index f723592cb0..8b7ccc600e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentPropertiesModifiedEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentPropertiesModifiedEvent.md @@ -1,4 +1,5 @@ -# Class DocumentPropertiesModifiedEvent +# Class DocumentPropertiesModifiedEvent + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,23 +10,23 @@ public class DocumentPropertiesModifiedEvent : HistoryEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [DocumentPropertiesModifiedEvent](VM.Managed.History.DocumentPropertiesModifiedEvent.md) #### Inherited Members -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -61,7 +62,7 @@ protected override void AfterRedo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### AfterUndo\(HistoryEventArgs\) @@ -71,7 +72,7 @@ protected override void AfterUndo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Clear\(bool\) @@ -81,7 +82,7 @@ protected override void Clear(bool bReserveReferenceCount) #### Parameters -`bReserveReferenceCount` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReserveReferenceCount` bool ### Redo\(HistoryEventArgs\) @@ -91,7 +92,7 @@ protected override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Undo\(HistoryEventArgs\) @@ -101,5 +102,5 @@ protected override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentPropertyEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentPropertyEvent.md index 6542ae4212..623d23d494 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentPropertyEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentPropertyEvent.md @@ -1,4 +1,5 @@ -# Class DocumentPropertyEvent +# Class DocumentPropertyEvent + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,23 +10,23 @@ public class DocumentPropertyEvent : HistoryEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [DocumentPropertyEvent](VM.Managed.History.DocumentPropertyEvent.md) #### Inherited Members -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -61,7 +62,7 @@ protected override void Clear(bool bReserveReferenceCount) #### Parameters -`bReserveReferenceCount` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReserveReferenceCount` bool ### Redo\(HistoryEventArgs\) @@ -71,7 +72,7 @@ protected override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Undo\(HistoryEventArgs\) @@ -81,5 +82,5 @@ protected override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentSimpleValueModifiedEvent-1.PostExecuteCallback.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentSimpleValueModifiedEvent-1.PostExecuteCallback.md index d36bf95000..5b2b4b8bf1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentSimpleValueModifiedEvent-1.PostExecuteCallback.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentSimpleValueModifiedEvent-1.PostExecuteCallback.md @@ -1,4 +1,5 @@ -# Delegate DocumentSimpleValueModifiedEvent.PostExecuteCallback +# Delegate DocumentSimpleValueModifiedEvent.PostExecuteCallback + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,7 +10,7 @@ public delegate void DocumentSimpleValueModifiedEvent.PostExecuteCallback(obj #### Parameters -`param` [object](https://learn.microsoft.com/dotnet/api/system.object) +`param` object #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentSimpleValueModifiedEvent-1.PreExecuteCallback.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentSimpleValueModifiedEvent-1.PreExecuteCallback.md index 18d8123ba7..60598c51e3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentSimpleValueModifiedEvent-1.PreExecuteCallback.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentSimpleValueModifiedEvent-1.PreExecuteCallback.md @@ -1,4 +1,5 @@ -# Delegate DocumentSimpleValueModifiedEvent.PreExecuteCallback +# Delegate DocumentSimpleValueModifiedEvent.PreExecuteCallback + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,13 +10,13 @@ public delegate object DocumentSimpleValueModifiedEvent.PreExecuteCallback(ob #### Parameters -`param1` [object](https://learn.microsoft.com/dotnet/api/system.object) +`param1` object -`param2` [object](https://learn.microsoft.com/dotnet/api/system.object) +`param2` object #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentSimpleValueModifiedEvent-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentSimpleValueModifiedEvent-1.md index 1fb95f50a8..3cc30d4211 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentSimpleValueModifiedEvent-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.DocumentSimpleValueModifiedEvent-1.md @@ -1,4 +1,5 @@ -# Class DocumentSimpleValueModifiedEvent +# Class DocumentSimpleValueModifiedEvent + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -13,8 +14,8 @@ public class DocumentSimpleValueModifiedEvent : DocumentMemberModifiedEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [DocumentMemberModifiedEvent](VM.Managed.History.DocumentMemberModifiedEvent.md) ← [DocumentSimpleValueModifiedEvent](VM.Managed.History.DocumentSimpleValueModifiedEvent\-1.md) @@ -23,17 +24,17 @@ HistoryEvent ← [DocumentMemberModifiedEvent.m\_doc](VM.Managed.History.DocumentMemberModifiedEvent.md\#VM\_Managed\_History\_DocumentMemberModifiedEvent\_m\_doc), [DocumentMemberModifiedEvent.m\_obj](VM.Managed.History.DocumentMemberModifiedEvent.md\#VM\_Managed\_History\_DocumentMemberModifiedEvent\_m\_obj), [DocumentMemberModifiedEvent.Clear\(bool\)](VM.Managed.History.DocumentMemberModifiedEvent.md\#VM\_Managed\_History\_DocumentMemberModifiedEvent\_Clear\_System\_Boolean\_), -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -59,11 +60,11 @@ public DocumentSimpleValueModifiedEvent(Document doc, object obj, string strProp `doc` [Document](VM.Managed.Document.md) -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object -`strPropertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPropertyName` string -`objTarget` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objTarget` object `arAddOn` [IUpdateDocAddOn](VM.Managed.History.IUpdateDocAddOn.md)\[\] @@ -77,13 +78,13 @@ public DocumentSimpleValueModifiedEvent(Document doc, object obj, string strProp `doc` [Document](VM.Managed.Document.md) -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object -`strPropertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPropertyName` string -`objTarget` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objTarget` object -`objParam` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objParam` object `delPreExecute` [DocumentSimpleValueModifiedEvent](VM.Managed.History.DocumentSimpleValueModifiedEvent\-1.md).[PreExecuteCallback](VM.Managed.History.DocumentSimpleValueModifiedEvent\-1.PreExecuteCallback.md) @@ -97,13 +98,13 @@ public DocumentSimpleValueModifiedEvent(Document doc, object obj, string strProp `doc` [Document](VM.Managed.Document.md) -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object -`strPropertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPropertyName` string -`objTarget` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objTarget` object -`objParam` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objParam` object `delPostExecute` [DocumentSimpleValueModifiedEvent](VM.Managed.History.DocumentSimpleValueModifiedEvent\-1.md).[PostExecuteCallback](VM.Managed.History.DocumentSimpleValueModifiedEvent\-1.PostExecuteCallback.md) @@ -117,15 +118,15 @@ public DocumentSimpleValueModifiedEvent(Document doc, object obj, string strProp `doc` [Document](VM.Managed.Document.md) -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object -`strPropertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPropertyName` string -`objTarget` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objTarget` object `arAddOn` [IUpdateDocAddOn](VM.Managed.History.IUpdateDocAddOn.md)\[\] -`objParam` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objParam` object `delPreExecute` [DocumentSimpleValueModifiedEvent](VM.Managed.History.DocumentSimpleValueModifiedEvent\-1.md).[PreExecuteCallback](VM.Managed.History.DocumentSimpleValueModifiedEvent\-1.PreExecuteCallback.md) @@ -139,15 +140,15 @@ public DocumentSimpleValueModifiedEvent(Document doc, object obj, string strProp `doc` [Document](VM.Managed.Document.md) -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object -`strPropertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPropertyName` string -`objTarget` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objTarget` object `arAddOn` [IUpdateDocAddOn](VM.Managed.History.IUpdateDocAddOn.md)\[\] -`objParam` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objParam` object `delPostExecute` [DocumentSimpleValueModifiedEvent](VM.Managed.History.DocumentSimpleValueModifiedEvent\-1.md).[PostExecuteCallback](VM.Managed.History.DocumentSimpleValueModifiedEvent\-1.PostExecuteCallback.md) @@ -191,7 +192,7 @@ protected object m_objParam #### Field Value - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### m\_strPropertyName @@ -201,7 +202,7 @@ protected string m_strPropertyName #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### m\_value @@ -223,7 +224,7 @@ protected override void AfterRedo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### AfterUndo\(HistoryEventArgs\) @@ -233,7 +234,7 @@ protected override void AfterUndo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### BeforeRedo\(HistoryEventArgs\) @@ -243,7 +244,7 @@ protected override void BeforeRedo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### BeforeUndo\(HistoryEventArgs\) @@ -253,7 +254,7 @@ protected override void BeforeUndo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Clear\(bool\) @@ -263,7 +264,7 @@ protected override void Clear(bool bReserveReferenceCount) #### Parameters -`bReserveReferenceCount` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReserveReferenceCount` bool ### DocumentSimpleValueModified\(Document, object, string\) @@ -275,9 +276,9 @@ public static void DocumentSimpleValueModified(Document doc, object obj, string `doc` [Document](VM.Managed.Document.md) -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object -`strPropertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPropertyName` string ### DocumentSimpleValueModified\(Document, object, string, object\) @@ -289,11 +290,11 @@ public static void DocumentSimpleValueModified(Document doc, object obj, string `doc` [Document](VM.Managed.Document.md) -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object -`strPropertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPropertyName` string -`objTarget` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objTarget` object ### DocumentSimpleValueModified\(Document, object, string, object, IUpdateDocAddOn\[\]\) @@ -305,11 +306,11 @@ public static void DocumentSimpleValueModified(Document doc, object obj, string `doc` [Document](VM.Managed.Document.md) -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object -`strPropertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPropertyName` string -`objTarget` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objTarget` object `arAddOn` [IUpdateDocAddOn](VM.Managed.History.IUpdateDocAddOn.md)\[\] @@ -323,13 +324,13 @@ public static void DocumentSimpleValueModified(Document doc, object obj, string `doc` [Document](VM.Managed.Document.md) -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object -`strPropertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPropertyName` string -`objTarget` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objTarget` object -`objParam` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objParam` object `delPreExecute` [DocumentSimpleValueModifiedEvent](VM.Managed.History.DocumentSimpleValueModifiedEvent\-1.md).[PreExecuteCallback](VM.Managed.History.DocumentSimpleValueModifiedEvent\-1.PreExecuteCallback.md) @@ -343,13 +344,13 @@ public static void DocumentSimpleValueModified(Document doc, object obj, string `doc` [Document](VM.Managed.Document.md) -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object -`strPropertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPropertyName` string -`objTarget` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objTarget` object -`objParam` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objParam` object `delPostExecute` [DocumentSimpleValueModifiedEvent](VM.Managed.History.DocumentSimpleValueModifiedEvent\-1.md).[PostExecuteCallback](VM.Managed.History.DocumentSimpleValueModifiedEvent\-1.PostExecuteCallback.md) @@ -363,15 +364,15 @@ public static void DocumentSimpleValueModified(Document doc, object obj, string `doc` [Document](VM.Managed.Document.md) -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object -`strPropertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPropertyName` string -`objTarget` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objTarget` object `arAddOn` [IUpdateDocAddOn](VM.Managed.History.IUpdateDocAddOn.md)\[\] -`objParam` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objParam` object `delPreExecute` [DocumentSimpleValueModifiedEvent](VM.Managed.History.DocumentSimpleValueModifiedEvent\-1.md).[PreExecuteCallback](VM.Managed.History.DocumentSimpleValueModifiedEvent\-1.PreExecuteCallback.md) @@ -385,15 +386,15 @@ public static void DocumentSimpleValueModified(Document doc, object obj, string `doc` [Document](VM.Managed.Document.md) -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object -`strPropertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPropertyName` string -`objTarget` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objTarget` object `arAddOn` [IUpdateDocAddOn](VM.Managed.History.IUpdateDocAddOn.md)\[\] -`objParam` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objParam` object `delPostExecute` [DocumentSimpleValueModifiedEvent](VM.Managed.History.DocumentSimpleValueModifiedEvent\-1.md).[PostExecuteCallback](VM.Managed.History.DocumentSimpleValueModifiedEvent\-1.PostExecuteCallback.md) @@ -405,7 +406,7 @@ protected override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Undo\(HistoryEventArgs\) @@ -415,5 +416,5 @@ protected override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.HiddenDocumentAddon.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.HiddenDocumentAddon.md index 1cca1463c1..00adea5871 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.HiddenDocumentAddon.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.HiddenDocumentAddon.md @@ -1,4 +1,5 @@ -# Class HiddenDocumentAddon +# Class HiddenDocumentAddon + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,8 +10,8 @@ public class HiddenDocumentAddon : ObjectBaseAddon #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryManagerAddon ← +object ← +[HistoryManagerAddon](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) ← [ObjectBaseAddon](VM.Managed.History.ObjectBaseAddon.md) ← [HiddenDocumentAddon](VM.Managed.History.HiddenDocumentAddon.md) @@ -27,20 +28,20 @@ HistoryManagerAddon ← [ObjectBaseAddon.AddEntity\(UIntPtr\)](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_AddEntity\_System\_UIntPtr\_), [ObjectBaseAddon.RemoveEntity\(UIntPtr\)](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_RemoveEntity\_System\_UIntPtr\_), [ObjectBaseAddon.List](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_List), -HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.Register\(HistoryManager\), -HistoryManagerAddon.ClearMarkCollection\(ICollection\), -HistoryManagerAddon.ClearMark\(HistoryMark\), -HistoryManagerAddon.Parent, -HistoryManagerAddon.DoneList, -HistoryManagerAddon.UndoneList +[HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Register\(HistoryManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMarkCollection\(ICollection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMark\(HistoryMark\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.DoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.UndoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) #### Extension Methods @@ -66,7 +67,7 @@ protected override void Process(object o, HistoryEventArgs args) #### Parameters -`o` [object](https://learn.microsoft.com/dotnet/api/system.object) +`o` object -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.IUpdateDocAddOn.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.IUpdateDocAddOn.md index e147c1c5ed..a2718aae26 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.IUpdateDocAddOn.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.IUpdateDocAddOn.md @@ -1,4 +1,5 @@ -# Interface IUpdateDocAddOn +# Interface IUpdateDocAddOn + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.InstanceContainerHistEventBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.InstanceContainerHistEventBase.md index 6b930c041e..69221f449c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.InstanceContainerHistEventBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.InstanceContainerHistEventBase.md @@ -1,4 +1,5 @@ -# Class InstanceContainerHistEventBase +# Class InstanceContainerHistEventBase + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,8 +10,8 @@ public class InstanceContainerHistEventBase : HistoryEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [InstanceContainerHistEventBase](VM.Managed.History.InstanceContainerHistEventBase.md) #### Derived @@ -21,17 +22,17 @@ HistoryEvent ← #### Inherited Members -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -49,7 +50,7 @@ public InstanceContainerHistEventBase(string strPathName) #### Parameters -`strPathName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPathName` string ### InstanceContainerHistEventBase\(\) @@ -67,7 +68,7 @@ protected string m_strPathName #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -91,7 +92,7 @@ protected override void AfterAdded(HistoryEventArgs A_0) #### Parameters -`A_0` HistoryEventArgs +`A_0` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Clear\(bool\) @@ -101,7 +102,7 @@ protected override void Clear(bool bReserveReferenceCount) #### Parameters -`bReserveReferenceCount` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReserveReferenceCount` bool ### IsAvailableEvent\(Document\) @@ -115,7 +116,7 @@ protected static bool IsAvailableEvent(Document doc) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Redo\(HistoryEventArgs\) @@ -125,7 +126,7 @@ protected override void Redo(HistoryEventArgs A_0) #### Parameters -`A_0` HistoryEventArgs +`A_0` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Undo\(HistoryEventArgs\) @@ -135,5 +136,5 @@ protected override void Undo(HistoryEventArgs A_0) #### Parameters -`A_0` HistoryEventArgs +`A_0` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.InstanceContainerHistMgrAddon.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.InstanceContainerHistMgrAddon.md index ae9c24470b..f978a78a0c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.InstanceContainerHistMgrAddon.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.InstanceContainerHistMgrAddon.md @@ -1,4 +1,5 @@ -# Class InstanceContainerHistMgrAddon +# Class InstanceContainerHistMgrAddon + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,26 +10,26 @@ public class InstanceContainerHistMgrAddon : HistoryManagerAddon #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryManagerAddon ← +object ← +[HistoryManagerAddon](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) ← [InstanceContainerHistMgrAddon](VM.Managed.History.InstanceContainerHistMgrAddon.md) #### Inherited Members -HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.Register\(HistoryManager\), -HistoryManagerAddon.ClearMarkCollection\(ICollection\), -HistoryManagerAddon.ClearMark\(HistoryMark\), -HistoryManagerAddon.Parent, -HistoryManagerAddon.DoneList, -HistoryManagerAddon.UndoneList +[HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Register\(HistoryManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMarkCollection\(ICollection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMark\(HistoryMark\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.DoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.UndoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) #### Extension Methods @@ -54,9 +55,9 @@ protected override void AfterRecord(object o, HistoryEventArgs args) #### Parameters -`o` [object](https://learn.microsoft.com/dotnet/api/system.object) +`o` object -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### BeforeRecord\(object, HistoryEventArgs\) @@ -66,9 +67,9 @@ protected override void BeforeRecord(object o, HistoryEventArgs args) #### Parameters -`o` [object](https://learn.microsoft.com/dotnet/api/system.object) +`o` object -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### OpenInstanceContainer\(string\) @@ -78,5 +79,5 @@ public static void OpenInstanceContainer(string strPath) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.NavigatorAddon.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.NavigatorAddon.md index aaf08aff5f..c7ea78013b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.NavigatorAddon.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.NavigatorAddon.md @@ -1,4 +1,5 @@ -# Class NavigatorAddon +# Class NavigatorAddon + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,8 +10,8 @@ public abstract class NavigatorAddon : ObjectBaseAddon #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryManagerAddon ← +object ← +[HistoryManagerAddon](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) ← [ObjectBaseAddon](VM.Managed.History.ObjectBaseAddon.md) ← [NavigatorAddon](VM.Managed.History.NavigatorAddon.md) @@ -36,20 +37,20 @@ HistoryManagerAddon ← [ObjectBaseAddon.AddEntity\(UIntPtr\)](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_AddEntity\_System\_UIntPtr\_), [ObjectBaseAddon.RemoveEntity\(UIntPtr\)](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_RemoveEntity\_System\_UIntPtr\_), [ObjectBaseAddon.List](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_List), -HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.Register\(HistoryManager\), -HistoryManagerAddon.ClearMarkCollection\(ICollection\), -HistoryManagerAddon.ClearMark\(HistoryMark\), -HistoryManagerAddon.Parent, -HistoryManagerAddon.DoneList, -HistoryManagerAddon.UndoneList +[HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Register\(HistoryManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMarkCollection\(ICollection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMark\(HistoryMark\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.DoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.UndoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) #### Extension Methods @@ -81,7 +82,7 @@ public static void AddCore(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr ### Process\(object, HistoryEventArgs\) @@ -91,9 +92,9 @@ protected override void Process(object o, HistoryEventArgs args) #### Parameters -`o` [object](https://learn.microsoft.com/dotnet/api/system.object) +`o` object -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Remove\(\) @@ -109,7 +110,7 @@ public static void RemoveCore(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr ### Rename\(\) @@ -125,7 +126,7 @@ public static void RenameCore(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr ### Update\(\) @@ -141,5 +142,5 @@ public static void UpdateCore(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseAddedToDocEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseAddedToDocEvent.md index 2c35ff1fd9..0b03c1d3ce 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseAddedToDocEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseAddedToDocEvent.md @@ -1,4 +1,5 @@ -# Class ObjectBaseAddedToDocEvent +# Class ObjectBaseAddedToDocEvent + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,9 +10,9 @@ public class ObjectBaseAddedToDocEvent : ObjectBaseLifecycleEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← -SerializableObjectModifiedEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← +[SerializableObjectModifiedEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs) ← [SerializableObjectBaseModifiedEventBase](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md) ← [ObjectBaseLifecycleEvent](VM.Managed.History.ObjectBaseLifecycleEvent.md) ← [ObjectBaseAddedToDocEvent](VM.Managed.History.ObjectBaseAddedToDocEvent.md) @@ -36,29 +37,29 @@ SerializableObjectModifiedEvent ← [SerializableObjectBaseModifiedEventBase.Dispose\(\)](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md\#VM\_Managed\_History\_SerializableObjectBaseModifiedEventBase\_Dispose), [SerializableObjectBaseModifiedEventBase.InitialBackup](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md\#VM\_Managed\_History\_SerializableObjectBaseModifiedEventBase\_InitialBackup), [SerializableObjectBaseModifiedEventBase.ObjectDelegateKey](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md\#VM\_Managed\_History\_SerializableObjectBaseModifiedEventBase\_ObjectDelegateKey), -SerializableObjectModifiedEvent.Undo\(HistoryEventArgs\), -SerializableObjectModifiedEvent.Redo\(HistoryEventArgs\), -SerializableObjectModifiedEvent.Clear\(bool\), -SerializableObjectModifiedEvent.ReplaceBackupData\(byte\[\], IHistoryObjectSerializableDelegate\), -SerializableObjectModifiedEvent.SetObjectDelegate\(IHistoryObjectSerializableDelegate\), -SerializableObjectModifiedEvent.Modified\(object\), -SerializableObjectModifiedEvent.ObjectDelegate, -SerializableObjectModifiedEvent.Backup, -SerializableObjectModifiedEvent.IsBackup, -SerializableObjectModifiedEvent.Context, -SerializableObjectModifiedEvent.SurrogateSelector, -SerializableObjectModifiedEvent.DoingUndoRedoSerialize, -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[SerializableObjectModifiedEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.ReplaceBackupData\(byte\[\], IHistoryObjectSerializableDelegate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.SetObjectDelegate\(IHistoryObjectSerializableDelegate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Modified\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.ObjectDelegate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Backup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.IsBackup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Context](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.SurrogateSelector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.DoingUndoRedoSerialize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -76,7 +77,7 @@ public ObjectBaseAddedToDocEvent(object obOriginal) #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object ## Methods @@ -88,7 +89,7 @@ protected override void AfterRedo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### AfterUndo\(HistoryEventArgs\) @@ -98,7 +99,7 @@ protected override void AfterUndo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### BeforeRedo\(HistoryEventArgs\) @@ -108,7 +109,7 @@ protected override void BeforeRedo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### BeforeUndo\(HistoryEventArgs\) @@ -118,7 +119,7 @@ protected override void BeforeUndo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### MergeImpl\(SerializableObjectBaseModifiedEventBase\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseAddon.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseAddon.md index cdcb9430b3..7838e8d4de 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseAddon.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseAddon.md @@ -1,4 +1,5 @@ -# Class ObjectBaseAddon +# Class ObjectBaseAddon + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,8 +10,8 @@ public abstract class ObjectBaseAddon : HistoryManagerAddon #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryManagerAddon ← +object ← +[HistoryManagerAddon](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) ← [ObjectBaseAddon](VM.Managed.History.ObjectBaseAddon.md) #### Derived @@ -23,20 +24,20 @@ HistoryManagerAddon ← #### Inherited Members -HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.Register\(HistoryManager\), -HistoryManagerAddon.ClearMarkCollection\(ICollection\), -HistoryManagerAddon.ClearMark\(HistoryMark\), -HistoryManagerAddon.Parent, -HistoryManagerAddon.DoneList, -HistoryManagerAddon.UndoneList +[HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Register\(HistoryManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMarkCollection\(ICollection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMark\(HistoryMark\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.DoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.UndoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) #### Extension Methods @@ -62,7 +63,7 @@ protected IEnumerable List { get; } #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\> + IEnumerable ## Methods @@ -74,7 +75,7 @@ public void AddEntity(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr ### AfterRedo\(object, HistoryEventArgs\) @@ -84,9 +85,9 @@ protected override sealed void AfterRedo(object o, HistoryEventArgs args) #### Parameters -`o` [object](https://learn.microsoft.com/dotnet/api/system.object) +`o` object -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### AfterRollback\(object, HistoryEventArgs\) @@ -96,9 +97,9 @@ protected override sealed void AfterRollback(object o, HistoryEventArgs args) #### Parameters -`o` [object](https://learn.microsoft.com/dotnet/api/system.object) +`o` object -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### AfterUndo\(object, HistoryEventArgs\) @@ -108,9 +109,9 @@ protected override sealed void AfterUndo(object o, HistoryEventArgs args) #### Parameters -`o` [object](https://learn.microsoft.com/dotnet/api/system.object) +`o` object -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### BeforeRedo\(object, HistoryEventArgs\) @@ -120,9 +121,9 @@ protected override sealed void BeforeRedo(object o, HistoryEventArgs args) #### Parameters -`o` [object](https://learn.microsoft.com/dotnet/api/system.object) +`o` object -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### BeforeRollback\(object, HistoryEventArgs\) @@ -132,9 +133,9 @@ protected override sealed void BeforeRollback(object o, HistoryEventArgs args) #### Parameters -`o` [object](https://learn.microsoft.com/dotnet/api/system.object) +`o` object -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### BeforeUndo\(object, HistoryEventArgs\) @@ -144,9 +145,9 @@ protected override sealed void BeforeUndo(object o, HistoryEventArgs args) #### Parameters -`o` [object](https://learn.microsoft.com/dotnet/api/system.object) +`o` object -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Init\(object, HistoryEventArgs\) @@ -156,9 +157,9 @@ protected virtual void Init(object o, HistoryEventArgs args) #### Parameters -`o` [object](https://learn.microsoft.com/dotnet/api/system.object) +`o` object -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Process\(object, HistoryEventArgs\) @@ -168,9 +169,9 @@ protected virtual void Process(object o, HistoryEventArgs args) #### Parameters -`o` [object](https://learn.microsoft.com/dotnet/api/system.object) +`o` object -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### RemoveEntity\(UIntPtr\) @@ -180,5 +181,5 @@ public void RemoveEntity(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseDestroyEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseDestroyEvent.md index 47d09507f7..7e4e28cee0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseDestroyEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseDestroyEvent.md @@ -1,4 +1,5 @@ -# Class ObjectBaseDestroyEvent +# Class ObjectBaseDestroyEvent + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,9 +10,9 @@ public class ObjectBaseDestroyEvent : ObjectBaseRemovedFromDocEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← -SerializableObjectModifiedEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← +[SerializableObjectModifiedEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs) ← [SerializableObjectBaseModifiedEventBase](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md) ← [ObjectBaseLifecycleEvent](VM.Managed.History.ObjectBaseLifecycleEvent.md) ← [ObjectBaseRemovedFromDocEvent](VM.Managed.History.ObjectBaseRemovedFromDocEvent.md) ← @@ -42,29 +43,29 @@ SerializableObjectModifiedEvent ← [SerializableObjectBaseModifiedEventBase.Dispose\(\)](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md\#VM\_Managed\_History\_SerializableObjectBaseModifiedEventBase\_Dispose), [SerializableObjectBaseModifiedEventBase.InitialBackup](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md\#VM\_Managed\_History\_SerializableObjectBaseModifiedEventBase\_InitialBackup), [SerializableObjectBaseModifiedEventBase.ObjectDelegateKey](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md\#VM\_Managed\_History\_SerializableObjectBaseModifiedEventBase\_ObjectDelegateKey), -SerializableObjectModifiedEvent.Undo\(HistoryEventArgs\), -SerializableObjectModifiedEvent.Redo\(HistoryEventArgs\), -SerializableObjectModifiedEvent.Clear\(bool\), -SerializableObjectModifiedEvent.ReplaceBackupData\(byte\[\], IHistoryObjectSerializableDelegate\), -SerializableObjectModifiedEvent.SetObjectDelegate\(IHistoryObjectSerializableDelegate\), -SerializableObjectModifiedEvent.Modified\(object\), -SerializableObjectModifiedEvent.ObjectDelegate, -SerializableObjectModifiedEvent.Backup, -SerializableObjectModifiedEvent.IsBackup, -SerializableObjectModifiedEvent.Context, -SerializableObjectModifiedEvent.SurrogateSelector, -SerializableObjectModifiedEvent.DoingUndoRedoSerialize, -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[SerializableObjectModifiedEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.ReplaceBackupData\(byte\[\], IHistoryObjectSerializableDelegate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.SetObjectDelegate\(IHistoryObjectSerializableDelegate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Modified\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.ObjectDelegate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Backup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.IsBackup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Context](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.SurrogateSelector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.DoingUndoRedoSerialize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -82,7 +83,7 @@ public ObjectBaseDestroyEvent(object obOriginal) #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object ## Methods @@ -94,7 +95,7 @@ protected override void AfterRedo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### AfterUndo\(HistoryEventArgs\) @@ -104,7 +105,7 @@ protected override void AfterUndo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### MergeImpl\(SerializableObjectBaseModifiedEventBase\) @@ -128,9 +129,9 @@ public bool SameKey(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseEventCompactAddon.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseEventCompactAddon.md index 7cee61c154..a5458ee926 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseEventCompactAddon.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseEventCompactAddon.md @@ -1,4 +1,5 @@ -# Class ObjectBaseEventCompactAddon +# Class ObjectBaseEventCompactAddon + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,26 +10,26 @@ public class ObjectBaseEventCompactAddon : HistoryManagerAddon #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryManagerAddon ← +object ← +[HistoryManagerAddon](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) ← [ObjectBaseEventCompactAddon](VM.Managed.History.ObjectBaseEventCompactAddon.md) #### Inherited Members -HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.Register\(HistoryManager\), -HistoryManagerAddon.ClearMarkCollection\(ICollection\), -HistoryManagerAddon.ClearMark\(HistoryMark\), -HistoryManagerAddon.Parent, -HistoryManagerAddon.DoneList, -HistoryManagerAddon.UndoneList +[HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Register\(HistoryManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMarkCollection\(ICollection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMark\(HistoryMark\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.DoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.UndoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) #### Extension Methods @@ -54,7 +55,7 @@ public void AddEvent(LinkedListNode e) #### Parameters -`e` [LinkedListNode](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlistnode\-1) +`e` LinkedListNode<[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs)\> ### AfterRecord\(object, HistoryEventArgs\) @@ -64,9 +65,9 @@ protected override void AfterRecord(object o, HistoryEventArgs args) #### Parameters -`o` [object](https://learn.microsoft.com/dotnet/api/system.object) +`o` object -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### BeforeRecord\(object, HistoryEventArgs\) @@ -76,9 +77,9 @@ protected override void BeforeRecord(object o, HistoryEventArgs args) #### Parameters -`o` [object](https://learn.microsoft.com/dotnet/api/system.object) +`o` object -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### GetLastEvent\(UIntPtr\) @@ -88,7 +89,7 @@ public SerializableObjectBaseModifiedEventBase GetLastEvent(UIntPtr keyObj) #### Parameters -`keyObj` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`keyObj` UIntPtr #### Returns @@ -102,5 +103,5 @@ public void RemoveLastEvent(UIntPtr keyObj) #### Parameters -`keyObj` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`keyObj` UIntPtr diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseLifecycleEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseLifecycleEvent.md index 369af30060..50255e76fc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseLifecycleEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseLifecycleEvent.md @@ -1,4 +1,5 @@ -# Class ObjectBaseLifecycleEvent +# Class ObjectBaseLifecycleEvent + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,9 +10,9 @@ public abstract class ObjectBaseLifecycleEvent : SerializableObjectBaseModifiedE #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← -SerializableObjectModifiedEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← +[SerializableObjectModifiedEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs) ← [SerializableObjectBaseModifiedEventBase](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md) ← [ObjectBaseLifecycleEvent](VM.Managed.History.ObjectBaseLifecycleEvent.md) @@ -35,29 +36,29 @@ SerializableObjectModifiedEvent ← [SerializableObjectBaseModifiedEventBase.Dispose\(\)](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md\#VM\_Managed\_History\_SerializableObjectBaseModifiedEventBase\_Dispose), [SerializableObjectBaseModifiedEventBase.InitialBackup](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md\#VM\_Managed\_History\_SerializableObjectBaseModifiedEventBase\_InitialBackup), [SerializableObjectBaseModifiedEventBase.ObjectDelegateKey](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md\#VM\_Managed\_History\_SerializableObjectBaseModifiedEventBase\_ObjectDelegateKey), -SerializableObjectModifiedEvent.Undo\(HistoryEventArgs\), -SerializableObjectModifiedEvent.Redo\(HistoryEventArgs\), -SerializableObjectModifiedEvent.Clear\(bool\), -SerializableObjectModifiedEvent.ReplaceBackupData\(byte\[\], IHistoryObjectSerializableDelegate\), -SerializableObjectModifiedEvent.SetObjectDelegate\(IHistoryObjectSerializableDelegate\), -SerializableObjectModifiedEvent.Modified\(object\), -SerializableObjectModifiedEvent.ObjectDelegate, -SerializableObjectModifiedEvent.Backup, -SerializableObjectModifiedEvent.IsBackup, -SerializableObjectModifiedEvent.Context, -SerializableObjectModifiedEvent.SurrogateSelector, -SerializableObjectModifiedEvent.DoingUndoRedoSerialize, -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[SerializableObjectModifiedEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.ReplaceBackupData\(byte\[\], IHistoryObjectSerializableDelegate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.SetObjectDelegate\(IHistoryObjectSerializableDelegate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Modified\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.ObjectDelegate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Backup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.IsBackup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Context](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.SurrogateSelector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.DoingUndoRedoSerialize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -75,7 +76,7 @@ public ObjectBaseLifecycleEvent(object obOriginal) #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object ## Properties @@ -87,7 +88,7 @@ protected override bool InitialBackup { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -99,7 +100,7 @@ protected override void AfterAdded(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Clear\(bool\) @@ -109,7 +110,7 @@ protected override void Clear(bool bReserveReferenceCount) #### Parameters -`bReserveReferenceCount` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReserveReferenceCount` bool ### Register\(HistoryEventArgs\) @@ -119,7 +120,7 @@ protected void Register(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Unregister\(HistoryEventArgs\) @@ -129,5 +130,5 @@ protected void Unregister(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseModifiedEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseModifiedEvent.md index 1cc87cb469..90030099a8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseModifiedEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseModifiedEvent.md @@ -1,4 +1,5 @@ -# Class ObjectBaseModifiedEvent +# Class ObjectBaseModifiedEvent + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,9 +10,9 @@ public class ObjectBaseModifiedEvent : SerializableEntityModifiedEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← -SerializableObjectModifiedEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← +[SerializableObjectModifiedEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs) ← [SerializableObjectBaseModifiedEventBase](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md) ← [SerializableObjectBaseModifiedEvent](VM.Managed.History.SerializableObjectBaseModifiedEvent.md) ← [SerializableEntityModifiedEvent](VM.Managed.History.SerializableEntityModifiedEvent.md) ← @@ -35,29 +36,29 @@ SerializableObjectModifiedEvent ← [SerializableObjectBaseModifiedEventBase.Dispose\(\)](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md\#VM\_Managed\_History\_SerializableObjectBaseModifiedEventBase\_Dispose), [SerializableObjectBaseModifiedEventBase.InitialBackup](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md\#VM\_Managed\_History\_SerializableObjectBaseModifiedEventBase\_InitialBackup), [SerializableObjectBaseModifiedEventBase.ObjectDelegateKey](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md\#VM\_Managed\_History\_SerializableObjectBaseModifiedEventBase\_ObjectDelegateKey), -SerializableObjectModifiedEvent.Undo\(HistoryEventArgs\), -SerializableObjectModifiedEvent.Redo\(HistoryEventArgs\), -SerializableObjectModifiedEvent.Clear\(bool\), -SerializableObjectModifiedEvent.ReplaceBackupData\(byte\[\], IHistoryObjectSerializableDelegate\), -SerializableObjectModifiedEvent.SetObjectDelegate\(IHistoryObjectSerializableDelegate\), -SerializableObjectModifiedEvent.Modified\(object\), -SerializableObjectModifiedEvent.ObjectDelegate, -SerializableObjectModifiedEvent.Backup, -SerializableObjectModifiedEvent.IsBackup, -SerializableObjectModifiedEvent.Context, -SerializableObjectModifiedEvent.SurrogateSelector, -SerializableObjectModifiedEvent.DoingUndoRedoSerialize, -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[SerializableObjectModifiedEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.ReplaceBackupData\(byte\[\], IHistoryObjectSerializableDelegate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.SetObjectDelegate\(IHistoryObjectSerializableDelegate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Modified\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.ObjectDelegate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Backup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.IsBackup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Context](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.SurrogateSelector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.DoingUndoRedoSerialize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -75,5 +76,5 @@ public ObjectBaseModifiedEvent(object orignal) #### Parameters -`orignal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`orignal` object diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseNameModifiedEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseNameModifiedEvent.md index 77f0b088aa..9b2c1a9353 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseNameModifiedEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseNameModifiedEvent.md @@ -1,4 +1,5 @@ -# Class ObjectBaseNameModifiedEvent +# Class ObjectBaseNameModifiedEvent + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,23 +10,23 @@ public class ObjectBaseNameModifiedEvent : HistoryEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [ObjectBaseNameModifiedEvent](VM.Managed.History.ObjectBaseNameModifiedEvent.md) #### Inherited Members -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -43,11 +44,11 @@ public ObjectBaseNameModifiedEvent(object obOriginal, string strName1, string st #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object -`strName1` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName1` string -`strName2` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName2` string ## Methods @@ -59,7 +60,7 @@ protected override void AfterRedo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### AfterUndo\(HistoryEventArgs\) @@ -69,7 +70,7 @@ protected override void AfterUndo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Clear\(bool\) @@ -79,7 +80,7 @@ protected override void Clear(bool bReserveReferenceCount) #### Parameters -`bReserveReferenceCount` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReserveReferenceCount` bool ### ObjectBaseNameModified\(object, string, string\) @@ -89,11 +90,11 @@ public static void ObjectBaseNameModified(object @object, string strOld, string #### Parameters -`object` [object](https://learn.microsoft.com/dotnet/api/system.object) +`object` object -`strOld` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOld` string -`strNew` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strNew` string ### Redo\(HistoryEventArgs\) @@ -103,7 +104,7 @@ protected override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Undo\(HistoryEventArgs\) @@ -113,5 +114,5 @@ protected override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseRemovedFromDocEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseRemovedFromDocEvent.md index 47bed46200..57b64ba7d8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseRemovedFromDocEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseRemovedFromDocEvent.md @@ -1,4 +1,5 @@ -# Class ObjectBaseRemovedFromDocEvent +# Class ObjectBaseRemovedFromDocEvent + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,9 +10,9 @@ public class ObjectBaseRemovedFromDocEvent : ObjectBaseLifecycleEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← -SerializableObjectModifiedEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← +[SerializableObjectModifiedEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs) ← [SerializableObjectBaseModifiedEventBase](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md) ← [ObjectBaseLifecycleEvent](VM.Managed.History.ObjectBaseLifecycleEvent.md) ← [ObjectBaseRemovedFromDocEvent](VM.Managed.History.ObjectBaseRemovedFromDocEvent.md) @@ -40,29 +41,29 @@ SerializableObjectModifiedEvent ← [SerializableObjectBaseModifiedEventBase.Dispose\(\)](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md\#VM\_Managed\_History\_SerializableObjectBaseModifiedEventBase\_Dispose), [SerializableObjectBaseModifiedEventBase.InitialBackup](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md\#VM\_Managed\_History\_SerializableObjectBaseModifiedEventBase\_InitialBackup), [SerializableObjectBaseModifiedEventBase.ObjectDelegateKey](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md\#VM\_Managed\_History\_SerializableObjectBaseModifiedEventBase\_ObjectDelegateKey), -SerializableObjectModifiedEvent.Undo\(HistoryEventArgs\), -SerializableObjectModifiedEvent.Redo\(HistoryEventArgs\), -SerializableObjectModifiedEvent.Clear\(bool\), -SerializableObjectModifiedEvent.ReplaceBackupData\(byte\[\], IHistoryObjectSerializableDelegate\), -SerializableObjectModifiedEvent.SetObjectDelegate\(IHistoryObjectSerializableDelegate\), -SerializableObjectModifiedEvent.Modified\(object\), -SerializableObjectModifiedEvent.ObjectDelegate, -SerializableObjectModifiedEvent.Backup, -SerializableObjectModifiedEvent.IsBackup, -SerializableObjectModifiedEvent.Context, -SerializableObjectModifiedEvent.SurrogateSelector, -SerializableObjectModifiedEvent.DoingUndoRedoSerialize, -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[SerializableObjectModifiedEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.ReplaceBackupData\(byte\[\], IHistoryObjectSerializableDelegate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.SetObjectDelegate\(IHistoryObjectSerializableDelegate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Modified\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.ObjectDelegate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Backup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.IsBackup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Context](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.SurrogateSelector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.DoingUndoRedoSerialize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -80,7 +81,7 @@ public ObjectBaseRemovedFromDocEvent(object obOriginal) #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object ## Methods @@ -92,7 +93,7 @@ protected override void AfterRedo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### AfterUndo\(HistoryEventArgs\) @@ -102,7 +103,7 @@ protected override void AfterUndo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### BeforeRedo\(HistoryEventArgs\) @@ -112,7 +113,7 @@ protected override void BeforeRedo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### BeforeUndo\(HistoryEventArgs\) @@ -122,7 +123,7 @@ protected override void BeforeUndo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### MergeImpl\(SerializableObjectBaseModifiedEventBase\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseVisibleEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseVisibleEvent.md index a0d712beb0..f6b5966e6f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseVisibleEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.ObjectBaseVisibleEvent.md @@ -1,4 +1,5 @@ -# Class ObjectBaseVisibleEvent +# Class ObjectBaseVisibleEvent + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,23 +10,23 @@ public class ObjectBaseVisibleEvent : HistoryEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [ObjectBaseVisibleEvent](VM.Managed.History.ObjectBaseVisibleEvent.md) #### Inherited Members -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -43,7 +44,7 @@ public ObjectBaseVisibleEvent(object obOriginal) #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object ## Methods @@ -55,7 +56,7 @@ public override void AfterRedo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### AfterUndo\(HistoryEventArgs\) @@ -65,7 +66,7 @@ public override void AfterUndo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Clear\(bool\) @@ -75,7 +76,7 @@ public override void Clear(bool bReserveReferenceCount) #### Parameters -`bReserveReferenceCount` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReserveReferenceCount` bool ### GetLayer\(\) @@ -95,7 +96,7 @@ public override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### ReplaceLayer\(Layer\) @@ -115,5 +116,5 @@ public override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RebuildHiddenDocOp.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RebuildHiddenDocOp.md index 454b3cfd63..e4142d4bea 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RebuildHiddenDocOp.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RebuildHiddenDocOp.md @@ -1,4 +1,5 @@ -# Class RebuildHiddenDocOp +# Class RebuildHiddenDocOp + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,7 +10,7 @@ public class RebuildHiddenDocOp : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OperationBase](VM.Managed.Operation.OperationBase.md) ← [RebuildHiddenDocOp](VM.Managed.History.RebuildHiddenDocOp.md) @@ -83,7 +84,7 @@ public RebuildHiddenDocOp(IEnumerable lstEntity) #### Parameters -`lstEntity` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\> +`lstEntity` IEnumerable ### RebuildHiddenDocOp\(\) @@ -103,7 +104,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RecalcBodyEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RecalcBodyEvent.md index 2d9308ac32..9856498f59 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RecalcBodyEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RecalcBodyEvent.md @@ -1,4 +1,5 @@ -# Class RecalcBodyEvent +# Class RecalcBodyEvent + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,9 +10,9 @@ public class RecalcBodyEvent : SerializableEntityModifiedEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← -SerializableObjectModifiedEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← +[SerializableObjectModifiedEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs) ← [SerializableObjectBaseModifiedEventBase](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md) ← [SerializableObjectBaseModifiedEvent](VM.Managed.History.SerializableObjectBaseModifiedEvent.md) ← [SerializableEntityModifiedEvent](VM.Managed.History.SerializableEntityModifiedEvent.md) ← @@ -35,29 +36,29 @@ SerializableObjectModifiedEvent ← [SerializableObjectBaseModifiedEventBase.Dispose\(\)](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md\#VM\_Managed\_History\_SerializableObjectBaseModifiedEventBase\_Dispose), [SerializableObjectBaseModifiedEventBase.InitialBackup](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md\#VM\_Managed\_History\_SerializableObjectBaseModifiedEventBase\_InitialBackup), [SerializableObjectBaseModifiedEventBase.ObjectDelegateKey](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md\#VM\_Managed\_History\_SerializableObjectBaseModifiedEventBase\_ObjectDelegateKey), -SerializableObjectModifiedEvent.Undo\(HistoryEventArgs\), -SerializableObjectModifiedEvent.Redo\(HistoryEventArgs\), -SerializableObjectModifiedEvent.Clear\(bool\), -SerializableObjectModifiedEvent.ReplaceBackupData\(byte\[\], IHistoryObjectSerializableDelegate\), -SerializableObjectModifiedEvent.SetObjectDelegate\(IHistoryObjectSerializableDelegate\), -SerializableObjectModifiedEvent.Modified\(object\), -SerializableObjectModifiedEvent.ObjectDelegate, -SerializableObjectModifiedEvent.Backup, -SerializableObjectModifiedEvent.IsBackup, -SerializableObjectModifiedEvent.Context, -SerializableObjectModifiedEvent.SurrogateSelector, -SerializableObjectModifiedEvent.DoingUndoRedoSerialize, -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[SerializableObjectModifiedEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.ReplaceBackupData\(byte\[\], IHistoryObjectSerializableDelegate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.SetObjectDelegate\(IHistoryObjectSerializableDelegate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Modified\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.ObjectDelegate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Backup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.IsBackup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Context](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.SurrogateSelector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.DoingUndoRedoSerialize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -75,9 +76,9 @@ public RecalcBodyEvent(object obOriginal, bool bUpdateOnlyCADBody) #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object -`bUpdateOnlyCADBody` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUpdateOnlyCADBody` bool ### RecalcBodyEvent\(object\) @@ -87,7 +88,7 @@ public RecalcBodyEvent(object obOriginal) #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object ## Methods @@ -99,7 +100,7 @@ protected override void AfterRedo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### AfterUndo\(HistoryEventArgs\) @@ -109,7 +110,7 @@ protected override void AfterUndo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### MergeImpl\(SerializableObjectBaseModifiedEventBase\) @@ -133,9 +134,9 @@ public static void RecalcBody(object body, bool bUpdateOnlyCADBody) #### Parameters -`body` [object](https://learn.microsoft.com/dotnet/api/system.object) +`body` object -`bUpdateOnlyCADBody` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUpdateOnlyCADBody` bool ### RecalcBody\(object\) @@ -145,5 +146,5 @@ public static void RecalcBody(object body) #### Parameters -`body` [object](https://learn.microsoft.com/dotnet/api/system.object) +`body` object diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RefreshInterfaceManagerAddon.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RefreshInterfaceManagerAddon.md index abbd64da78..3b3ad2c931 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RefreshInterfaceManagerAddon.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RefreshInterfaceManagerAddon.md @@ -1,4 +1,5 @@ -# Class RefreshInterfaceManagerAddon +# Class RefreshInterfaceManagerAddon + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMObjBase.dll @@ -11,26 +12,26 @@ public class RefreshInterfaceManagerAddon : HistoryManagerAddon #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryManagerAddon ← +object ← +[HistoryManagerAddon](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) ← [RefreshInterfaceManagerAddon](VM.Managed.History.RefreshInterfaceManagerAddon.md) #### Inherited Members -HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.Register\(HistoryManager\), -HistoryManagerAddon.ClearMarkCollection\(ICollection\), -HistoryManagerAddon.ClearMark\(HistoryMark\), -HistoryManagerAddon.Parent, -HistoryManagerAddon.DoneList, -HistoryManagerAddon.UndoneList +[HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Register\(HistoryManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMarkCollection\(ICollection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMark\(HistoryMark\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.DoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.UndoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) #### Extension Methods @@ -68,9 +69,9 @@ protected override void AfterRedo(object o, HistoryEventArgs args) #### Parameters -`o` [object](https://learn.microsoft.com/dotnet/api/system.object) +`o` object -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### AfterUndo\(object, HistoryEventArgs\) @@ -80,7 +81,7 @@ protected override void AfterUndo(object o, HistoryEventArgs args) #### Parameters -`o` [object](https://learn.microsoft.com/dotnet/api/system.object) +`o` object -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RefreshSubEntityAddon.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RefreshSubEntityAddon.md index 2b209fc760..8f838f2757 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RefreshSubEntityAddon.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RefreshSubEntityAddon.md @@ -1,4 +1,5 @@ -# Class RefreshSubEntityAddon +# Class RefreshSubEntityAddon + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,8 +10,8 @@ public class RefreshSubEntityAddon : ObjectBaseAddon #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryManagerAddon ← +object ← +[HistoryManagerAddon](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) ← [ObjectBaseAddon](VM.Managed.History.ObjectBaseAddon.md) ← [RefreshSubEntityAddon](VM.Managed.History.RefreshSubEntityAddon.md) @@ -31,20 +32,20 @@ HistoryManagerAddon ← [ObjectBaseAddon.AddEntity\(UIntPtr\)](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_AddEntity\_System\_UIntPtr\_), [ObjectBaseAddon.RemoveEntity\(UIntPtr\)](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_RemoveEntity\_System\_UIntPtr\_), [ObjectBaseAddon.List](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_List), -HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.Register\(HistoryManager\), -HistoryManagerAddon.ClearMarkCollection\(ICollection\), -HistoryManagerAddon.ClearMark\(HistoryMark\), -HistoryManagerAddon.Parent, -HistoryManagerAddon.DoneList, -HistoryManagerAddon.UndoneList +[HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Register\(HistoryManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMarkCollection\(ICollection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMark\(HistoryMark\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.DoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.UndoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) #### Extension Methods @@ -70,9 +71,9 @@ protected override void Process(object o, HistoryEventArgs args) #### Parameters -`o` [object](https://learn.microsoft.com/dotnet/api/system.object) +`o` object -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### ProcessCore\(IEnumerable\) @@ -82,5 +83,5 @@ protected virtual void ProcessCore(IEnumerable lst) #### Parameters -`lst` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\> +`lst` IEnumerable diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RefreshSubEntityAddonForDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RefreshSubEntityAddonForDocument.md index b02d58796b..30858275ab 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RefreshSubEntityAddonForDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RefreshSubEntityAddonForDocument.md @@ -1,4 +1,5 @@ -# Class RefreshSubEntityAddonForDocument +# Class RefreshSubEntityAddonForDocument + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,8 +10,8 @@ public class RefreshSubEntityAddonForDocument : RefreshSubEntityAddon, IUpdateDo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryManagerAddon ← +object ← +[HistoryManagerAddon](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) ← [ObjectBaseAddon](VM.Managed.History.ObjectBaseAddon.md) ← [RefreshSubEntityAddon](VM.Managed.History.RefreshSubEntityAddon.md) ← [RefreshSubEntityAddonForDocument](VM.Managed.History.RefreshSubEntityAddonForDocument.md) @@ -34,20 +35,20 @@ HistoryManagerAddon ← [ObjectBaseAddon.AddEntity\(UIntPtr\)](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_AddEntity\_System\_UIntPtr\_), [ObjectBaseAddon.RemoveEntity\(UIntPtr\)](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_RemoveEntity\_System\_UIntPtr\_), [ObjectBaseAddon.List](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_List), -HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.Register\(HistoryManager\), -HistoryManagerAddon.ClearMarkCollection\(ICollection\), -HistoryManagerAddon.ClearMark\(HistoryMark\), -HistoryManagerAddon.Parent, -HistoryManagerAddon.DoneList, -HistoryManagerAddon.UndoneList +[HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Register\(HistoryManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMarkCollection\(ICollection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMark\(HistoryMark\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.DoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.UndoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) #### Extension Methods @@ -73,9 +74,9 @@ protected override void Process(object o, HistoryEventArgs args) #### Parameters -`o` [object](https://learn.microsoft.com/dotnet/api/system.object) +`o` object -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### SetObject\(ObjectBase\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RegisterCurveSetEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RegisterCurveSetEvent.md index 2dab67f01b..9d99f9ff18 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RegisterCurveSetEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RegisterCurveSetEvent.md @@ -1,4 +1,5 @@ -# Class RegisterCurveSetEvent +# Class RegisterCurveSetEvent + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,8 +10,8 @@ public class RegisterCurveSetEvent : RegisterSetEventBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [RegisterSetEventBase](VM.Managed.History.RegisterSetEventBase.md) ← [RegisterCurveSetEvent](VM.Managed.History.RegisterCurveSetEvent.md) @@ -22,17 +23,17 @@ HistoryEvent ← [RegisterSetEventBase.Clear\(bool\)](VM.Managed.History.RegisterSetEventBase.md\#VM\_Managed\_History\_RegisterSetEventBase\_Clear\_System\_Boolean\_), [RegisterSetEventBase.AfterUndo\(HistoryEventArgs\)](VM.Managed.History.RegisterSetEventBase.md\#VM\_Managed\_History\_RegisterSetEventBase\_AfterUndo\_VM\_Managed\_History\_HistoryEventArgs\_), [RegisterSetEventBase.AfterRedo\(HistoryEventArgs\)](VM.Managed.History.RegisterSetEventBase.md\#VM\_Managed\_History\_RegisterSetEventBase\_AfterRedo\_VM\_Managed\_History\_HistoryEventArgs\_), -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -50,11 +51,11 @@ public RegisterCurveSetEvent(UIntPtr ptrSet, UIntPtr[] arKeyTopology, UIntPtr[] #### Parameters -`ptrSet` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`ptrSet` UIntPtr -`arKeyTopology` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\[\] +`arKeyTopology` UIntPtr\[\] -`arKeyRedoTopology` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\[\] +`arKeyRedoTopology` UIntPtr\[\] ## Methods @@ -66,7 +67,7 @@ protected override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### RegisterCurveSetModified\(UIntPtr, UIntPtr\[\], UIntPtr\[\]\) @@ -76,11 +77,11 @@ public static void RegisterCurveSetModified(UIntPtr ptrSet, UIntPtr[] arKeyTopol #### Parameters -`ptrSet` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`ptrSet` UIntPtr -`arKeyTopology` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\[\] +`arKeyTopology` UIntPtr\[\] -`arKeyRedoTopology` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\[\] +`arKeyRedoTopology` UIntPtr\[\] ### Undo\(HistoryEventArgs\) @@ -90,5 +91,5 @@ protected override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RegisterFaceSetEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RegisterFaceSetEvent.md index 1a0a6bbdd9..511d9bbb8c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RegisterFaceSetEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RegisterFaceSetEvent.md @@ -1,4 +1,5 @@ -# Class RegisterFaceSetEvent +# Class RegisterFaceSetEvent + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,8 +10,8 @@ public class RegisterFaceSetEvent : RegisterSetEventBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [RegisterSetEventBase](VM.Managed.History.RegisterSetEventBase.md) ← [RegisterFaceSetEvent](VM.Managed.History.RegisterFaceSetEvent.md) @@ -22,17 +23,17 @@ HistoryEvent ← [RegisterSetEventBase.Clear\(bool\)](VM.Managed.History.RegisterSetEventBase.md\#VM\_Managed\_History\_RegisterSetEventBase\_Clear\_System\_Boolean\_), [RegisterSetEventBase.AfterUndo\(HistoryEventArgs\)](VM.Managed.History.RegisterSetEventBase.md\#VM\_Managed\_History\_RegisterSetEventBase\_AfterUndo\_VM\_Managed\_History\_HistoryEventArgs\_), [RegisterSetEventBase.AfterRedo\(HistoryEventArgs\)](VM.Managed.History.RegisterSetEventBase.md\#VM\_Managed\_History\_RegisterSetEventBase\_AfterRedo\_VM\_Managed\_History\_HistoryEventArgs\_), -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -50,11 +51,11 @@ public RegisterFaceSetEvent(UIntPtr ptrSet, UIntPtr[] arKeyUndoTopology, UIntPtr #### Parameters -`ptrSet` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`ptrSet` UIntPtr -`arKeyUndoTopology` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\[\] +`arKeyUndoTopology` UIntPtr\[\] -`arKeyRedoTopology` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\[\] +`arKeyRedoTopology` UIntPtr\[\] ## Methods @@ -66,7 +67,7 @@ protected override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### RegisterFaceSetModified\(UIntPtr, UIntPtr\[\], UIntPtr\[\]\) @@ -76,11 +77,11 @@ public static void RegisterFaceSetModified(UIntPtr ptrSet, UIntPtr[] arKeyUndoTo #### Parameters -`ptrSet` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`ptrSet` UIntPtr -`arKeyUndoTopology` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\[\] +`arKeyUndoTopology` UIntPtr\[\] -`arKeyRedoTopology` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\[\] +`arKeyRedoTopology` UIntPtr\[\] ### Undo\(HistoryEventArgs\) @@ -90,5 +91,5 @@ protected override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RegisterSetEventBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RegisterSetEventBase.md index 815e9134c8..1f6b7676f8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RegisterSetEventBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RegisterSetEventBase.md @@ -1,4 +1,5 @@ -# Class RegisterSetEventBase +# Class RegisterSetEventBase + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,8 +10,8 @@ public abstract class RegisterSetEventBase : HistoryEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [RegisterSetEventBase](VM.Managed.History.RegisterSetEventBase.md) #### Derived @@ -20,17 +21,17 @@ HistoryEvent ← #### Inherited Members -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -48,11 +49,11 @@ public RegisterSetEventBase(UIntPtr ptrSet, UIntPtr[] arKeyUndoTopology, UIntPtr #### Parameters -`ptrSet` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`ptrSet` UIntPtr -`arKeyUndoTopology` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\[\] +`arKeyUndoTopology` UIntPtr\[\] -`arKeyRedoTopology` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\[\] +`arKeyRedoTopology` UIntPtr\[\] ## Fields @@ -64,7 +65,7 @@ protected UIntPtr[] m_arKeyRedoTopology #### Field Value - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\[\] + UIntPtr\[\] ### m\_arKeyUndoTopology @@ -74,7 +75,7 @@ protected UIntPtr[] m_arKeyUndoTopology #### Field Value - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\[\] + UIntPtr\[\] ### m\_keySet @@ -84,7 +85,7 @@ protected UIntPtr m_keySet #### Field Value - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ## Methods @@ -96,7 +97,7 @@ protected override void AfterRedo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### AfterUndo\(HistoryEventArgs\) @@ -106,7 +107,7 @@ protected override void AfterUndo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Clear\(bool\) @@ -116,5 +117,5 @@ protected override void Clear(bool bReserveReferenceCount) #### Parameters -`bReserveReferenceCount` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReserveReferenceCount` bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RemoveAssemblyEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RemoveAssemblyEvent.md index 5b7135dfe7..6849f54a63 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RemoveAssemblyEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RemoveAssemblyEvent.md @@ -1,4 +1,5 @@ -# Class RemoveAssemblyEvent +# Class RemoveAssemblyEvent + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,23 +10,23 @@ public class RemoveAssemblyEvent : HistoryEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [RemoveAssemblyEvent](VM.Managed.History.RemoveAssemblyEvent.md) #### Inherited Members -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -43,7 +44,7 @@ public RemoveAssemblyEvent(object obOriginal, Document3D doc) #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object `doc` [Document3D](VM.Managed.Document3D.md) @@ -57,7 +58,7 @@ public override void Clear(bool bReserveReferenceCount) #### Parameters -`bReserveReferenceCount` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReserveReferenceCount` bool ### Redo\(HistoryEventArgs\) @@ -67,7 +68,7 @@ public override void Redo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Undo\(HistoryEventArgs\) @@ -77,5 +78,5 @@ public override void Undo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RemoveFromNavigatorAddon.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RemoveFromNavigatorAddon.md index d3c143a749..b9f0ed3470 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RemoveFromNavigatorAddon.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RemoveFromNavigatorAddon.md @@ -1,4 +1,5 @@ -# Class RemoveFromNavigatorAddon +# Class RemoveFromNavigatorAddon + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,8 +10,8 @@ public class RemoveFromNavigatorAddon : NavigatorAddon #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryManagerAddon ← +object ← +[HistoryManagerAddon](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) ← [ObjectBaseAddon](VM.Managed.History.ObjectBaseAddon.md) ← [NavigatorAddon](VM.Managed.History.NavigatorAddon.md) ← [RemoveFromNavigatorAddon](VM.Managed.History.RemoveFromNavigatorAddon.md) @@ -37,20 +38,20 @@ HistoryManagerAddon ← [ObjectBaseAddon.AddEntity\(UIntPtr\)](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_AddEntity\_System\_UIntPtr\_), [ObjectBaseAddon.RemoveEntity\(UIntPtr\)](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_RemoveEntity\_System\_UIntPtr\_), [ObjectBaseAddon.List](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_List), -HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.Register\(HistoryManager\), -HistoryManagerAddon.ClearMarkCollection\(ICollection\), -HistoryManagerAddon.ClearMark\(HistoryMark\), -HistoryManagerAddon.Parent, -HistoryManagerAddon.DoneList, -HistoryManagerAddon.UndoneList +[HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Register\(HistoryManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMarkCollection\(ICollection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMark\(HistoryMark\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.DoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.UndoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) #### Extension Methods @@ -76,7 +77,7 @@ protected override void Process(object o, HistoryEventArgs args) #### Parameters -`o` [object](https://learn.microsoft.com/dotnet/api/system.object) +`o` object -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RemovedInstanceContainerHistEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RemovedInstanceContainerHistEvent.md index aca191b993..e8e1e61e3a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RemovedInstanceContainerHistEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RemovedInstanceContainerHistEvent.md @@ -1,4 +1,5 @@ -# Class RemovedInstanceContainerHistEvent +# Class RemovedInstanceContainerHistEvent + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,8 +10,8 @@ public class RemovedInstanceContainerHistEvent : InstanceContainerHistEventBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← [InstanceContainerHistEventBase](VM.Managed.History.InstanceContainerHistEventBase.md) ← [RemovedInstanceContainerHistEvent](VM.Managed.History.RemovedInstanceContainerHistEvent.md) @@ -23,17 +24,17 @@ HistoryEvent ← [InstanceContainerHistEventBase.AfterAdded\(HistoryEventArgs\)](VM.Managed.History.InstanceContainerHistEventBase.md\#VM\_Managed\_History\_InstanceContainerHistEventBase\_AfterAdded\_VM\_Managed\_History\_HistoryEventArgs\_), [InstanceContainerHistEventBase.IsAvailableEvent\(Document\)](VM.Managed.History.InstanceContainerHistEventBase.md\#VM\_Managed\_History\_InstanceContainerHistEventBase\_IsAvailableEvent\_VM\_Managed\_Document\_), [InstanceContainerHistEventBase.AddEventCore\(Document, InstanceContainerHistEventBase\)](VM.Managed.History.InstanceContainerHistEventBase.md\#VM\_Managed\_History\_InstanceContainerHistEventBase\_AddEventCore\_VM\_Managed\_Document\_VM\_Managed\_History\_InstanceContainerHistEventBase\_), -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -51,5 +52,5 @@ public RemovedInstanceContainerHistEvent(string strPathName) #### Parameters -`strPathName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPathName` string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RenameItemInNavigatorAddon.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RenameItemInNavigatorAddon.md index a2020c50b4..1f24f24db7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RenameItemInNavigatorAddon.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.RenameItemInNavigatorAddon.md @@ -1,4 +1,5 @@ -# Class RenameItemInNavigatorAddon +# Class RenameItemInNavigatorAddon + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,8 +10,8 @@ public class RenameItemInNavigatorAddon : NavigatorAddon #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryManagerAddon ← +object ← +[HistoryManagerAddon](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) ← [ObjectBaseAddon](VM.Managed.History.ObjectBaseAddon.md) ← [NavigatorAddon](VM.Managed.History.NavigatorAddon.md) ← [RenameItemInNavigatorAddon](VM.Managed.History.RenameItemInNavigatorAddon.md) @@ -37,20 +38,20 @@ HistoryManagerAddon ← [ObjectBaseAddon.AddEntity\(UIntPtr\)](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_AddEntity\_System\_UIntPtr\_), [ObjectBaseAddon.RemoveEntity\(UIntPtr\)](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_RemoveEntity\_System\_UIntPtr\_), [ObjectBaseAddon.List](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_List), -HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.Register\(HistoryManager\), -HistoryManagerAddon.ClearMarkCollection\(ICollection\), -HistoryManagerAddon.ClearMark\(HistoryMark\), -HistoryManagerAddon.Parent, -HistoryManagerAddon.DoneList, -HistoryManagerAddon.UndoneList +[HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Register\(HistoryManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMarkCollection\(ICollection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMark\(HistoryMark\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.DoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.UndoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) #### Extension Methods @@ -76,7 +77,7 @@ protected override void Process(object o, HistoryEventArgs args) #### Parameters -`o` [object](https://learn.microsoft.com/dotnet/api/system.object) +`o` object -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.SerializableDisplayObjectModifiedEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.SerializableDisplayObjectModifiedEvent.md index 60274868b3..22d69a0ea5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.SerializableDisplayObjectModifiedEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.SerializableDisplayObjectModifiedEvent.md @@ -1,4 +1,5 @@ -# Class SerializableDisplayObjectModifiedEvent +# Class SerializableDisplayObjectModifiedEvent + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,9 +10,9 @@ public class SerializableDisplayObjectModifiedEvent : SerializableObjectBaseModi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← -SerializableObjectModifiedEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← +[SerializableObjectModifiedEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs) ← [SerializableObjectBaseModifiedEventBase](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md) ← [SerializableObjectBaseModifiedEvent](VM.Managed.History.SerializableObjectBaseModifiedEvent.md) ← [SerializableDisplayObjectModifiedEvent](VM.Managed.History.SerializableDisplayObjectModifiedEvent.md) @@ -34,29 +35,29 @@ SerializableObjectModifiedEvent ← [SerializableObjectBaseModifiedEventBase.Dispose\(\)](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md\#VM\_Managed\_History\_SerializableObjectBaseModifiedEventBase\_Dispose), [SerializableObjectBaseModifiedEventBase.InitialBackup](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md\#VM\_Managed\_History\_SerializableObjectBaseModifiedEventBase\_InitialBackup), [SerializableObjectBaseModifiedEventBase.ObjectDelegateKey](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md\#VM\_Managed\_History\_SerializableObjectBaseModifiedEventBase\_ObjectDelegateKey), -SerializableObjectModifiedEvent.Undo\(HistoryEventArgs\), -SerializableObjectModifiedEvent.Redo\(HistoryEventArgs\), -SerializableObjectModifiedEvent.Clear\(bool\), -SerializableObjectModifiedEvent.ReplaceBackupData\(byte\[\], IHistoryObjectSerializableDelegate\), -SerializableObjectModifiedEvent.SetObjectDelegate\(IHistoryObjectSerializableDelegate\), -SerializableObjectModifiedEvent.Modified\(object\), -SerializableObjectModifiedEvent.ObjectDelegate, -SerializableObjectModifiedEvent.Backup, -SerializableObjectModifiedEvent.IsBackup, -SerializableObjectModifiedEvent.Context, -SerializableObjectModifiedEvent.SurrogateSelector, -SerializableObjectModifiedEvent.DoingUndoRedoSerialize, -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[SerializableObjectModifiedEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.ReplaceBackupData\(byte\[\], IHistoryObjectSerializableDelegate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.SetObjectDelegate\(IHistoryObjectSerializableDelegate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Modified\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.ObjectDelegate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Backup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.IsBackup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Context](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.SurrogateSelector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.DoingUndoRedoSerialize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -74,5 +75,5 @@ public SerializableDisplayObjectModifiedEvent(object obOriginal) #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.SerializableEntityModifiedEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.SerializableEntityModifiedEvent.md index 35a7a9608b..385681810c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.SerializableEntityModifiedEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.SerializableEntityModifiedEvent.md @@ -1,4 +1,5 @@ -# Class SerializableEntityModifiedEvent +# Class SerializableEntityModifiedEvent + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,9 +10,9 @@ public class SerializableEntityModifiedEvent : SerializableObjectBaseModifiedEve #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← -SerializableObjectModifiedEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← +[SerializableObjectModifiedEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs) ← [SerializableObjectBaseModifiedEventBase](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md) ← [SerializableObjectBaseModifiedEvent](VM.Managed.History.SerializableObjectBaseModifiedEvent.md) ← [SerializableEntityModifiedEvent](VM.Managed.History.SerializableEntityModifiedEvent.md) @@ -39,29 +40,29 @@ SerializableObjectModifiedEvent ← [SerializableObjectBaseModifiedEventBase.Dispose\(\)](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md\#VM\_Managed\_History\_SerializableObjectBaseModifiedEventBase\_Dispose), [SerializableObjectBaseModifiedEventBase.InitialBackup](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md\#VM\_Managed\_History\_SerializableObjectBaseModifiedEventBase\_InitialBackup), [SerializableObjectBaseModifiedEventBase.ObjectDelegateKey](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md\#VM\_Managed\_History\_SerializableObjectBaseModifiedEventBase\_ObjectDelegateKey), -SerializableObjectModifiedEvent.Undo\(HistoryEventArgs\), -SerializableObjectModifiedEvent.Redo\(HistoryEventArgs\), -SerializableObjectModifiedEvent.Clear\(bool\), -SerializableObjectModifiedEvent.ReplaceBackupData\(byte\[\], IHistoryObjectSerializableDelegate\), -SerializableObjectModifiedEvent.SetObjectDelegate\(IHistoryObjectSerializableDelegate\), -SerializableObjectModifiedEvent.Modified\(object\), -SerializableObjectModifiedEvent.ObjectDelegate, -SerializableObjectModifiedEvent.Backup, -SerializableObjectModifiedEvent.IsBackup, -SerializableObjectModifiedEvent.Context, -SerializableObjectModifiedEvent.SurrogateSelector, -SerializableObjectModifiedEvent.DoingUndoRedoSerialize, -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[SerializableObjectModifiedEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.ReplaceBackupData\(byte\[\], IHistoryObjectSerializableDelegate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.SetObjectDelegate\(IHistoryObjectSerializableDelegate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Modified\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.ObjectDelegate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Backup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.IsBackup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Context](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.SurrogateSelector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.DoingUndoRedoSerialize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -79,5 +80,5 @@ public SerializableEntityModifiedEvent(object obOriginal) #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.SerializableFEDisplayObjectModifiedEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.SerializableFEDisplayObjectModifiedEvent.md index 0c14a50659..d5117e1617 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.SerializableFEDisplayObjectModifiedEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.SerializableFEDisplayObjectModifiedEvent.md @@ -1,4 +1,5 @@ -# Class SerializableFEDisplayObjectModifiedEvent +# Class SerializableFEDisplayObjectModifiedEvent + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,9 +10,9 @@ public class SerializableFEDisplayObjectModifiedEvent : SerializableObjectBaseMo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← -SerializableObjectModifiedEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← +[SerializableObjectModifiedEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs) ← [SerializableObjectBaseModifiedEventBase](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md) ← [SerializableObjectBaseModifiedEvent](VM.Managed.History.SerializableObjectBaseModifiedEvent.md) ← [SerializableFEDisplayObjectModifiedEvent](VM.Managed.History.SerializableFEDisplayObjectModifiedEvent.md) @@ -34,29 +35,29 @@ SerializableObjectModifiedEvent ← [SerializableObjectBaseModifiedEventBase.Dispose\(\)](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md\#VM\_Managed\_History\_SerializableObjectBaseModifiedEventBase\_Dispose), [SerializableObjectBaseModifiedEventBase.InitialBackup](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md\#VM\_Managed\_History\_SerializableObjectBaseModifiedEventBase\_InitialBackup), [SerializableObjectBaseModifiedEventBase.ObjectDelegateKey](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md\#VM\_Managed\_History\_SerializableObjectBaseModifiedEventBase\_ObjectDelegateKey), -SerializableObjectModifiedEvent.Undo\(HistoryEventArgs\), -SerializableObjectModifiedEvent.Redo\(HistoryEventArgs\), -SerializableObjectModifiedEvent.Clear\(bool\), -SerializableObjectModifiedEvent.ReplaceBackupData\(byte\[\], IHistoryObjectSerializableDelegate\), -SerializableObjectModifiedEvent.SetObjectDelegate\(IHistoryObjectSerializableDelegate\), -SerializableObjectModifiedEvent.Modified\(object\), -SerializableObjectModifiedEvent.ObjectDelegate, -SerializableObjectModifiedEvent.Backup, -SerializableObjectModifiedEvent.IsBackup, -SerializableObjectModifiedEvent.Context, -SerializableObjectModifiedEvent.SurrogateSelector, -SerializableObjectModifiedEvent.DoingUndoRedoSerialize, -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[SerializableObjectModifiedEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.ReplaceBackupData\(byte\[\], IHistoryObjectSerializableDelegate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.SetObjectDelegate\(IHistoryObjectSerializableDelegate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Modified\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.ObjectDelegate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Backup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.IsBackup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Context](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.SurrogateSelector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.DoingUndoRedoSerialize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -74,5 +75,5 @@ public SerializableFEDisplayObjectModifiedEvent(object obOriginal) #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.SerializableObjectBaseModifiedEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.SerializableObjectBaseModifiedEvent.md index 232f04fae2..fa82157992 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.SerializableObjectBaseModifiedEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.SerializableObjectBaseModifiedEvent.md @@ -1,4 +1,5 @@ -# Class SerializableObjectBaseModifiedEvent +# Class SerializableObjectBaseModifiedEvent + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,9 +10,9 @@ public abstract class SerializableObjectBaseModifiedEvent : SerializableObjectBa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← -SerializableObjectModifiedEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← +[SerializableObjectModifiedEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs) ← [SerializableObjectBaseModifiedEventBase](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md) ← [SerializableObjectBaseModifiedEvent](VM.Managed.History.SerializableObjectBaseModifiedEvent.md) @@ -36,29 +37,29 @@ SerializableObjectModifiedEvent ← [SerializableObjectBaseModifiedEventBase.Dispose\(\)](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md\#VM\_Managed\_History\_SerializableObjectBaseModifiedEventBase\_Dispose), [SerializableObjectBaseModifiedEventBase.InitialBackup](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md\#VM\_Managed\_History\_SerializableObjectBaseModifiedEventBase\_InitialBackup), [SerializableObjectBaseModifiedEventBase.ObjectDelegateKey](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md\#VM\_Managed\_History\_SerializableObjectBaseModifiedEventBase\_ObjectDelegateKey), -SerializableObjectModifiedEvent.Undo\(HistoryEventArgs\), -SerializableObjectModifiedEvent.Redo\(HistoryEventArgs\), -SerializableObjectModifiedEvent.Clear\(bool\), -SerializableObjectModifiedEvent.ReplaceBackupData\(byte\[\], IHistoryObjectSerializableDelegate\), -SerializableObjectModifiedEvent.SetObjectDelegate\(IHistoryObjectSerializableDelegate\), -SerializableObjectModifiedEvent.Modified\(object\), -SerializableObjectModifiedEvent.ObjectDelegate, -SerializableObjectModifiedEvent.Backup, -SerializableObjectModifiedEvent.IsBackup, -SerializableObjectModifiedEvent.Context, -SerializableObjectModifiedEvent.SurrogateSelector, -SerializableObjectModifiedEvent.DoingUndoRedoSerialize, -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[SerializableObjectModifiedEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.ReplaceBackupData\(byte\[\], IHistoryObjectSerializableDelegate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.SetObjectDelegate\(IHistoryObjectSerializableDelegate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Modified\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.ObjectDelegate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Backup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.IsBackup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Context](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.SurrogateSelector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.DoingUndoRedoSerialize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -76,7 +77,7 @@ public SerializableObjectBaseModifiedEvent(object obOriginal) #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object ## Methods @@ -88,7 +89,7 @@ protected override void AfterRedo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### AfterUndo\(HistoryEventArgs\) @@ -98,7 +99,7 @@ protected override void AfterUndo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### MergeImpl\(SerializableObjectBaseModifiedEventBase\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.SerializableObjectBaseModifiedEventBase.MergeTo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.SerializableObjectBaseModifiedEventBase.MergeTo.md index f1fb62b405..0175bce650 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.SerializableObjectBaseModifiedEventBase.MergeTo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.SerializableObjectBaseModifiedEventBase.MergeTo.md @@ -1,4 +1,5 @@ -# Enum SerializableObjectBaseModifiedEventBase.MergeTo +# Enum SerializableObjectBaseModifiedEventBase.MergeTo + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.SerializableObjectBaseModifiedEventBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.SerializableObjectBaseModifiedEventBase.md index 51ba9b9ea8..583c82c6e2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.SerializableObjectBaseModifiedEventBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.SerializableObjectBaseModifiedEventBase.md @@ -1,4 +1,5 @@ -# Class SerializableObjectBaseModifiedEventBase +# Class SerializableObjectBaseModifiedEventBase + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,9 +10,9 @@ public abstract class SerializableObjectBaseModifiedEventBase : SerializableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← -SerializableObjectModifiedEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← +[SerializableObjectModifiedEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs) ← [SerializableObjectBaseModifiedEventBase](VM.Managed.History.SerializableObjectBaseModifiedEventBase.md) #### Derived @@ -21,29 +22,29 @@ SerializableObjectModifiedEvent ← #### Inherited Members -SerializableObjectModifiedEvent.Undo\(HistoryEventArgs\), -SerializableObjectModifiedEvent.Redo\(HistoryEventArgs\), -SerializableObjectModifiedEvent.Clear\(bool\), -SerializableObjectModifiedEvent.ReplaceBackupData\(byte\[\], IHistoryObjectSerializableDelegate\), -SerializableObjectModifiedEvent.SetObjectDelegate\(IHistoryObjectSerializableDelegate\), -SerializableObjectModifiedEvent.Modified\(object\), -SerializableObjectModifiedEvent.ObjectDelegate, -SerializableObjectModifiedEvent.Backup, -SerializableObjectModifiedEvent.IsBackup, -SerializableObjectModifiedEvent.Context, -SerializableObjectModifiedEvent.SurrogateSelector, -SerializableObjectModifiedEvent.DoingUndoRedoSerialize, -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[SerializableObjectModifiedEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.ReplaceBackupData\(byte\[\], IHistoryObjectSerializableDelegate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.SetObjectDelegate\(IHistoryObjectSerializableDelegate\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Modified\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.ObjectDelegate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Backup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.IsBackup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.Context](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.SurrogateSelector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[SerializableObjectModifiedEvent.DoingUndoRedoSerialize](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/SerializableObjectModifiedEvent.cs), +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -61,7 +62,7 @@ public SerializableObjectBaseModifiedEventBase(object obOriginal) #### Parameters -`obOriginal` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obOriginal` object ## Properties @@ -73,7 +74,7 @@ protected virtual bool InitialBackup { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ObjectDelegateKey @@ -83,7 +84,7 @@ public UIntPtr ObjectDelegateKey { get; } #### Property Value - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ## Methods @@ -95,7 +96,7 @@ protected override void AfterAdded(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### AfterRedo\(HistoryEventArgs\) @@ -105,7 +106,7 @@ protected override void AfterRedo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### AfterUndo\(HistoryEventArgs\) @@ -115,7 +116,7 @@ protected override void AfterUndo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### BeforeAdded\(AddToHistoryManagerEventArgs\) @@ -125,7 +126,7 @@ protected override void BeforeAdded(AddToHistoryManagerEventArgs args) #### Parameters -`args` AddToHistoryManagerEventArgs +`args` [AddToHistoryManagerEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/AddToHistoryManagerEventArgs.cs) ### BeforeRedo\(HistoryEventArgs\) @@ -135,7 +136,7 @@ protected override void BeforeRedo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### BeforeUndo\(HistoryEventArgs\) @@ -145,7 +146,7 @@ protected override void BeforeUndo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Clear\(bool\) @@ -155,7 +156,7 @@ protected override void Clear(bool bReserveReferenceCount) #### Parameters -`bReserveReferenceCount` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReserveReferenceCount` bool ### Dispose\(bool\) @@ -166,7 +167,7 @@ protected virtual void Dispose(bool A_0) #### Parameters -`A_0` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`A_0` bool ### Dispose\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.UpdateAllItemInNavigatorAddon.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.UpdateAllItemInNavigatorAddon.md index 1aa6fdca60..999e51c1f3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.UpdateAllItemInNavigatorAddon.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.UpdateAllItemInNavigatorAddon.md @@ -1,4 +1,5 @@ -# Class UpdateAllItemInNavigatorAddon +# Class UpdateAllItemInNavigatorAddon + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,8 +10,8 @@ public class UpdateAllItemInNavigatorAddon : NavigatorAddon, IUpdateDocAddOn #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryManagerAddon ← +object ← +[HistoryManagerAddon](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) ← [ObjectBaseAddon](VM.Managed.History.ObjectBaseAddon.md) ← [NavigatorAddon](VM.Managed.History.NavigatorAddon.md) ← [UpdateAllItemInNavigatorAddon](VM.Managed.History.UpdateAllItemInNavigatorAddon.md) @@ -41,20 +42,20 @@ HistoryManagerAddon ← [ObjectBaseAddon.AddEntity\(UIntPtr\)](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_AddEntity\_System\_UIntPtr\_), [ObjectBaseAddon.RemoveEntity\(UIntPtr\)](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_RemoveEntity\_System\_UIntPtr\_), [ObjectBaseAddon.List](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_List), -HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.Register\(HistoryManager\), -HistoryManagerAddon.ClearMarkCollection\(ICollection\), -HistoryManagerAddon.ClearMark\(HistoryMark\), -HistoryManagerAddon.Parent, -HistoryManagerAddon.DoneList, -HistoryManagerAddon.UndoneList +[HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Register\(HistoryManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMarkCollection\(ICollection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMark\(HistoryMark\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.DoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.UndoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) #### Extension Methods @@ -84,9 +85,9 @@ protected override void Process(object o, HistoryEventArgs args) #### Parameters -`o` [object](https://learn.microsoft.com/dotnet/api/system.object) +`o` object -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### UpdateAllItem\(Document\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.UpdateItemInNavigatorAddon.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.UpdateItemInNavigatorAddon.md index b692434743..499e141a26 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.UpdateItemInNavigatorAddon.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.UpdateItemInNavigatorAddon.md @@ -1,4 +1,5 @@ -# Class UpdateItemInNavigatorAddon +# Class UpdateItemInNavigatorAddon + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,8 +10,8 @@ public class UpdateItemInNavigatorAddon : NavigatorAddon #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryManagerAddon ← +object ← +[HistoryManagerAddon](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) ← [ObjectBaseAddon](VM.Managed.History.ObjectBaseAddon.md) ← [NavigatorAddon](VM.Managed.History.NavigatorAddon.md) ← [UpdateItemInNavigatorAddon](VM.Managed.History.UpdateItemInNavigatorAddon.md) @@ -37,20 +38,20 @@ HistoryManagerAddon ← [ObjectBaseAddon.AddEntity\(UIntPtr\)](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_AddEntity\_System\_UIntPtr\_), [ObjectBaseAddon.RemoveEntity\(UIntPtr\)](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_RemoveEntity\_System\_UIntPtr\_), [ObjectBaseAddon.List](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_List), -HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.Register\(HistoryManager\), -HistoryManagerAddon.ClearMarkCollection\(ICollection\), -HistoryManagerAddon.ClearMark\(HistoryMark\), -HistoryManagerAddon.Parent, -HistoryManagerAddon.DoneList, -HistoryManagerAddon.UndoneList +[HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Register\(HistoryManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMarkCollection\(ICollection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMark\(HistoryMark\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.DoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.UndoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) #### Extension Methods @@ -76,7 +77,7 @@ protected override void Process(object o, HistoryEventArgs args) #### Parameters -`o` [object](https://learn.microsoft.com/dotnet/api/system.object) +`o` object -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.UpdateItemInNavigatorForCollectionAddon.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.UpdateItemInNavigatorForCollectionAddon.md index e5d5fcc17a..ecf9bcc131 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.UpdateItemInNavigatorForCollectionAddon.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.UpdateItemInNavigatorForCollectionAddon.md @@ -1,4 +1,5 @@ -# Class UpdateItemInNavigatorForCollectionAddon +# Class UpdateItemInNavigatorForCollectionAddon + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,8 +10,8 @@ public class UpdateItemInNavigatorForCollectionAddon : NavigatorAddon, IUpdateDo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryManagerAddon ← +object ← +[HistoryManagerAddon](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) ← [ObjectBaseAddon](VM.Managed.History.ObjectBaseAddon.md) ← [NavigatorAddon](VM.Managed.History.NavigatorAddon.md) ← [UpdateItemInNavigatorForCollectionAddon](VM.Managed.History.UpdateItemInNavigatorForCollectionAddon.md) @@ -41,20 +42,20 @@ HistoryManagerAddon ← [ObjectBaseAddon.AddEntity\(UIntPtr\)](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_AddEntity\_System\_UIntPtr\_), [ObjectBaseAddon.RemoveEntity\(UIntPtr\)](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_RemoveEntity\_System\_UIntPtr\_), [ObjectBaseAddon.List](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_List), -HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.Register\(HistoryManager\), -HistoryManagerAddon.ClearMarkCollection\(ICollection\), -HistoryManagerAddon.ClearMark\(HistoryMark\), -HistoryManagerAddon.Parent, -HistoryManagerAddon.DoneList, -HistoryManagerAddon.UndoneList +[HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Register\(HistoryManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMarkCollection\(ICollection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMark\(HistoryMark\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.DoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.UndoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) #### Extension Methods @@ -72,7 +73,7 @@ public UpdateItemInNavigatorForCollectionAddon(UIntPtr ptrKey) #### Parameters -`ptrKey` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`ptrKey` UIntPtr ### UpdateItemInNavigatorForCollectionAddon\(\) @@ -90,9 +91,9 @@ protected override void Process(object o, HistoryEventArgs args) #### Parameters -`o` [object](https://learn.microsoft.com/dotnet/api/system.object) +`o` object -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### SetEntity\(UIntPtr\) @@ -102,5 +103,5 @@ public void SetEntity(UIntPtr ptrKey) #### Parameters -`ptrKey` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`ptrKey` UIntPtr diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.UpdateSimulationConfigurationAddon.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.UpdateSimulationConfigurationAddon.md index 48ebc3eea9..213805fc91 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.UpdateSimulationConfigurationAddon.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.UpdateSimulationConfigurationAddon.md @@ -1,4 +1,5 @@ -# Class UpdateSimulationConfigurationAddon +# Class UpdateSimulationConfigurationAddon + Namespace: [VM.Managed.History](VM.Managed.History.md) Assembly: VMAppCore.dll @@ -9,8 +10,8 @@ public class UpdateSimulationConfigurationAddon : ObjectBaseAddon, IUpdateDocAdd #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryManagerAddon ← +object ← +[HistoryManagerAddon](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) ← [ObjectBaseAddon](VM.Managed.History.ObjectBaseAddon.md) ← [UpdateSimulationConfigurationAddon](VM.Managed.History.UpdateSimulationConfigurationAddon.md) @@ -31,20 +32,20 @@ HistoryManagerAddon ← [ObjectBaseAddon.AddEntity\(UIntPtr\)](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_AddEntity\_System\_UIntPtr\_), [ObjectBaseAddon.RemoveEntity\(UIntPtr\)](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_RemoveEntity\_System\_UIntPtr\_), [ObjectBaseAddon.List](VM.Managed.History.ObjectBaseAddon.md\#VM\_Managed\_History\_ObjectBaseAddon\_List), -HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\), -HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\), -HistoryManagerAddon.Register\(HistoryManager\), -HistoryManagerAddon.ClearMarkCollection\(ICollection\), -HistoryManagerAddon.ClearMark\(HistoryMark\), -HistoryManagerAddon.Parent, -HistoryManagerAddon.DoneList, -HistoryManagerAddon.UndoneList +[HistoryManagerAddon.BeforeUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterUndo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRedo\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRollback\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.BeforeRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.AfterRecord\(object, HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Register\(HistoryManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMarkCollection\(ICollection\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.ClearMark\(HistoryMark\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.DoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs), +[HistoryManagerAddon.UndoneList](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryManagerAddon.cs) #### Extension Methods @@ -74,9 +75,9 @@ protected override void Process(object o, HistoryEventArgs args) #### Parameters -`o` [object](https://learn.microsoft.com/dotnet/api/system.object) +`o` object -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### UpdateSimulationConfiguration\(Document\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.md index fe02e1dfdc..d081e8cfc7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.History.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.History +# Namespace VM.Managed.History + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Hole.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Hole.md index 4c8c3d87b9..0562207faa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Hole.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Hole.md @@ -1,4 +1,5 @@ -# Class Hole +# Class Hole + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the information of hole geometry. ```csharp -public class Hole : DirectionOnEllipseNormal, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable +public class Hole : DirectionOnEllipseNormal, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [DirectionBase](VM.Managed.DirectionBase.md) ← [DirectionOnGeometryBase](VM.Managed.DirectionOnGeometryBase.md) ← @@ -31,7 +32,8 @@ IOwned, IHasID, IEventProvider, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), -[IVerifiable](VM.Managed.IVerifiable.md) +[IVerifiable](VM.Managed.IVerifiable.md), +IHasReplaceableEntity #### Inherited Members @@ -54,6 +56,8 @@ IEventProvider, [DirectionBase.ReadXml\(XmlReader\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_ReadXml\_System\_Xml\_XmlReader\_), [DirectionBase.WriteXml\(XmlWriter\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_WriteXml\_System\_Xml\_XmlWriter\_), [DirectionBase.GetSchema\(\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_GetSchema), +[DirectionBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[DirectionBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [DirectionBase.Reverse](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_Reverse), [DirectionBase.IsParameterized](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_IsParameterized), [DirectionBase.Value](VM.Managed.DirectionBase.md\#VM\_Managed\_DirectionBase\_Value), @@ -100,7 +104,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IAssemblyOwner.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IAssemblyOwner.md index 15035735ad..84760ff944 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IAssemblyOwner.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IAssemblyOwner.md @@ -1,4 +1,5 @@ -# Interface IAssemblyOwner +# Interface IAssemblyOwner + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IAttributeContainer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IAttributeContainer.md index 48cff9e669..70c54f1598 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IAttributeContainer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IAttributeContainer.md @@ -1,4 +1,5 @@ -# Interface IAttributeContainer +# Interface IAttributeContainer + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IAutoContactable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IAutoContactable.md index 04ddd0d71b..f727ec6afc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IAutoContactable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IAutoContactable.md @@ -1,4 +1,5 @@ -# Interface IAutoContactable +# Interface IAutoContactable + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -41,7 +42,7 @@ bool IsAutoContactable() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the specified auto contactable; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IAutoContactableFlex.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IAutoContactableFlex.md index 0d78f1f1c5..8828206d17 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IAutoContactableFlex.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IAutoContactableFlex.md @@ -1,4 +1,5 @@ -# Interface IAutoContactableFlex +# Interface IAutoContactableFlex + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IBody.md index c360e23bbe..3339834d08 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IBody.md @@ -1,4 +1,5 @@ -# Interface IBody +# Interface IBody + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IChainable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IChainable.md index 332b3479ca..4904d2fcff 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IChainable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IChainable.md @@ -1,4 +1,5 @@ -# Interface IChainable +# Interface IChainable + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IChainedSegmentConnector.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IChainedSegmentConnector.md index 8a47492ea4..2c4efeb6c2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IChainedSegmentConnector.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IChainedSegmentConnector.md @@ -1,4 +1,5 @@ -# Interface IChainedSegmentConnector +# Interface IChainedSegmentConnector + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IChainedSegmentContact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IChainedSegmentContact.md index 37bff63e85..5c8e4a9a9f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IChainedSegmentContact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IChainedSegmentContact.md @@ -1,4 +1,5 @@ -# Interface IChainedSegmentContact +# Interface IChainedSegmentContact + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IChangeData.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IChangeData.md index e9e21da0be..8eb4f4d412 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IChangeData.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IChangeData.md @@ -1,4 +1,5 @@ -# Interface IChangeData +# Interface IChangeData + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IChangeReference.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IChangeReference.md index 92b9036d72..c93bc82062 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IChangeReference.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IChangeReference.md @@ -1,4 +1,5 @@ -# Interface IChangeReference +# Interface IChangeReference + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ICheckLinkForCircularReferenceBeforeDeserialize.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ICheckLinkForCircularReferenceBeforeDeserialize.md index ef52c7b9d3..24c2495eb6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ICheckLinkForCircularReferenceBeforeDeserialize.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ICheckLinkForCircularReferenceBeforeDeserialize.md @@ -1,4 +1,5 @@ -# Interface ICheckLinkForCircularReferenceBeforeDeserialize +# Interface ICheckLinkForCircularReferenceBeforeDeserialize + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IControlDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IControlDocument.md index 2fcd76f642..6adb002736 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IControlDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IControlDocument.md @@ -1,4 +1,5 @@ -# Interface IControlDocument +# Interface IControlDocument + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ICunstomLink.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ICunstomLink.md index 8e6decfe31..94b939eaec 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ICunstomLink.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ICunstomLink.md @@ -1,4 +1,5 @@ -# Interface ICunstomLink +# Interface ICunstomLink + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -25,11 +26,11 @@ void GetAllLink(ICollection colLinks, ICollection colLin #### Parameters -`colLinks` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[ILink](VM.Managed.ILink.md)\> +`colLinks` ICollection<[ILink](VM.Managed.ILink.md)\> -`colLinkCollections` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[ILinkCollection](VM.Managed.Collections.ILinkCollection.md)\> +`colLinkCollections` ICollection<[ILinkCollection](VM.Managed.Collections.ILinkCollection.md)\> -`bIncludeNullLinks` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bIncludeNullLinks` bool ### GetAllLink\(ref HashSet\) @@ -39,5 +40,5 @@ void GetAllLink(ref HashSet hs) #### Parameters -`hs` [HashSet](https://learn.microsoft.com/dotnet/api/system.collections.generic.hashset\-1)<[ILink](VM.Managed.ILink.md)\> +`hs` HashSet<[ILink](VM.Managed.ILink.md)\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IDGenerator.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IDGenerator.md index 44d3211e60..4febeee767 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IDGenerator.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IDGenerator.md @@ -1,4 +1,5 @@ -# Class IDGenerator +# Class IDGenerator + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -9,7 +10,7 @@ public class IDGenerator #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [IDGenerator](VM.Managed.IDGenerator.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IDesignFrame.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IDesignFrame.md index c5e447684a..32a8867845 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IDesignFrame.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IDesignFrame.md @@ -1,4 +1,5 @@ -# Interface IDesignFrame +# Interface IDesignFrame + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IDesignParameter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IDesignParameter.md index 489b4ac360..37ba6ec9dc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IDesignParameter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IDesignParameter.md @@ -1,4 +1,5 @@ -# Interface IDesignParameter +# Interface IDesignParameter + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -27,5 +28,5 @@ string GetFullName() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IDesignParameterable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IDesignParameterable.md index ae0dd4f782..df652826e2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IDesignParameterable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IDesignParameterable.md @@ -1,4 +1,5 @@ -# Interface IDesignParameterable +# Interface IDesignParameterable + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -27,5 +28,5 @@ bool UseDesignParameter { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IDirectionContainer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IDirectionContainer.md index 27b1ea2b87..ad9686a8eb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IDirectionContainer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IDirectionContainer.md @@ -1,4 +1,5 @@ -# Interface IDirectionContainer +# Interface IDirectionContainer + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IDrawFacet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IDrawFacet.md index 34b27870db..acd41cd301 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IDrawFacet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IDrawFacet.md @@ -1,4 +1,5 @@ -# Interface IDrawFacet +# Interface IDrawFacet + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IDuplicateImpl.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IDuplicateImpl.md index d409c19df5..21285e5fdb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IDuplicateImpl.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IDuplicateImpl.md @@ -1,4 +1,5 @@ -# Class IDuplicateImpl +# Class IDuplicateImpl + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -9,7 +10,7 @@ public class IDuplicateImpl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [IDuplicateImpl](VM.Managed.IDuplicateImpl.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IEdgeSetInformation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IEdgeSetInformation.md index 9122fc12fe..0460e432c9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IEdgeSetInformation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IEdgeSetInformation.md @@ -1,4 +1,5 @@ -# Interface IEdgeSetInformation +# Interface IEdgeSetInformation + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IEnableForSimulationScenario.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IEnableForSimulationScenario.md index 7ecdf00ae5..32319366e6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IEnableForSimulationScenario.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IEnableForSimulationScenario.md @@ -1,4 +1,5 @@ -# Interface IEnableForSimulationScenario +# Interface IEnableForSimulationScenario + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -27,7 +28,7 @@ string TargetType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Use @@ -39,5 +40,5 @@ bool Use { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IEnableImpl.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IEnableImpl.md index f2a9191ecc..5af1ebcdf3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IEnableImpl.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IEnableImpl.md @@ -1,4 +1,5 @@ -# Class IEnableImpl +# Class IEnableImpl + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class IEnableImpl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [IEnableImpl](VM.Managed.IEnableImpl.md) #### Extension Methods @@ -46,7 +47,7 @@ The object has name. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the specified object is enable; otherwise, false. @@ -64,7 +65,7 @@ public static void SetEnabled(INamed namedObj, bool bEnabled) The object has name. -`bEnabled` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bEnabled` bool whether or not enabled. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IEnableManager.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IEnableManager.md index 9ef60aae41..8e8a867c70 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IEnableManager.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IEnableManager.md @@ -1,4 +1,5 @@ -# Interface IEnableManager +# Interface IEnableManager + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -33,7 +34,7 @@ The object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if is enabled [the specified object]; otherwise, false. @@ -51,7 +52,7 @@ void SetEnable(ObjectBase ob, bool bEnable) The object. -`bEnable` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bEnable` bool if set to true enable. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IEntityRelation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IEntityRelation.md index a760417a8e..81c9e9eb6a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IEntityRelation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IEntityRelation.md @@ -1,4 +1,5 @@ -# Interface IEntityRelation +# Interface IEntityRelation + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -25,5 +26,5 @@ IEnumerable GetChildList() #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[ObjectBase](VM.Managed.ObjectBase.md)\> + IEnumerable<[ObjectBase](VM.Managed.ObjectBase.md)\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IFaceInformation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IFaceInformation.md index 3055ec06cf..fda065fa53 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IFaceInformation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IFaceInformation.md @@ -1,4 +1,5 @@ -# Interface IFaceInformation +# Interface IFaceInformation + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -39,13 +40,13 @@ The matrix. The matrix of compare. -`dLengthFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLengthFactor` double The length factor. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double The minimum distance. @@ -75,13 +76,13 @@ The matrix of compare. The direction. -`dLengthFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLengthFactor` double The length factor. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double The minimum distance and direction. @@ -95,7 +96,7 @@ void GetPointAndConnectivity(FacetOption facetOptions, ref VectorBase[] arPt, re #### Parameters -`facetOptions` FacetOption +`facetOptions` [FacetOption](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/FacetOption.cs) The facet options. @@ -103,11 +104,11 @@ The facet options. The facet point array. -`arConnectivity` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`arConnectivity` int\[\] The facet connetivity array. -`arNumOfConnectivity` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`arNumOfConnectivity` int\[\] The number of connectivity node array. @@ -115,7 +116,7 @@ The number of connectivity node array. The reference. -`dLengthFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLengthFactor` double The length factor. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IFaceSetInformation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IFaceSetInformation.md index 1425725863..64160b5618 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IFaceSetInformation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IFaceSetInformation.md @@ -1,4 +1,5 @@ -# Interface IFaceSetInformation +# Interface IFaceSetInformation + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IFileProperty.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IFileProperty.md index 5137e2ef81..62b72d1e1d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IFileProperty.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IFileProperty.md @@ -1,4 +1,5 @@ -# Interface IFileProperty +# Interface IFileProperty + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -27,7 +28,7 @@ string AbsolutePath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### PropertyDocument @@ -65,13 +66,13 @@ string GetRelativePath(string strRefDir) #### Parameters -`strRefDir` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRefDir` string The reference directory. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The relative path. @@ -85,7 +86,7 @@ void LoadExtraData(SerializationInfo info) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo ### SaveExtraData\(SerializationInfo\) @@ -97,5 +98,5 @@ void SaveExtraData(SerializationInfo info) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IFilePropertyImpl.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IFilePropertyImpl.md index c680375b0d..9a8c933dec 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IFilePropertyImpl.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IFilePropertyImpl.md @@ -1,4 +1,5 @@ -# Class IFilePropertyImpl +# Class IFilePropertyImpl + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,7 +12,7 @@ public sealed class IFilePropertyImpl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [IFilePropertyImpl](VM.Managed.IFilePropertyImpl.md) #### Extension Methods @@ -46,7 +47,7 @@ The property. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The absulute path @@ -112,13 +113,13 @@ public static string GetRelativePath(T TProp, string strRefDir) where T : Pro The property. -`strRefDir` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRefDir` string The reference directory. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The relative path diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IForcePropertyDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IForcePropertyDocument.md index c1c1863b98..d863c84684 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IForcePropertyDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IForcePropertyDocument.md @@ -1,4 +1,5 @@ -# Interface IForcePropertyDocument +# Interface IForcePropertyDocument + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -27,5 +28,5 @@ object Splines { get; } #### Property Value - [object](https://learn.microsoft.com/dotnet/api/system.object) + object diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IGenerable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IGenerable.md index 86cb98e61c..0a836e3f8e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IGenerable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IGenerable.md @@ -1,4 +1,5 @@ -# Interface IGenerable +# Interface IGenerable + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -27,7 +28,7 @@ bool Generable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IGroup.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IGroup.md index 87464ad7cb..fbdb5f45e2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IGroup.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IGroup.md @@ -1,4 +1,5 @@ -# Interface IGroup +# Interface IGroup + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IHasBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IHasBody.md index 8f0acac823..28ea3d7bca 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IHasBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IHasBody.md @@ -1,4 +1,5 @@ -# Interface IHasBody +# Interface IHasBody + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IHasBuilder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IHasBuilder.md index 66dd1496c4..db05d51d33 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IHasBuilder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IHasBuilder.md @@ -1,4 +1,5 @@ -# Interface IHasBuilder +# Interface IHasBuilder + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IHasMesh.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IHasMesh.md index f5ff34744f..0ae74d6d8e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IHasMesh.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IHasMesh.md @@ -1,4 +1,5 @@ -# Interface IHasMesh +# Interface IHasMesh + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IHasOtherEntityInSameCategory.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IHasOtherEntityInSameCategory.md index 5cc99aae80..c73cfc3632 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IHasOtherEntityInSameCategory.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IHasOtherEntityInSameCategory.md @@ -1,4 +1,5 @@ -# Interface IHasOtherEntityInSameCategory +# Interface IHasOtherEntityInSameCategory + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IHasProperty.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IHasProperty.md index 9c17d14304..77e2df43d1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IHasProperty.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IHasProperty.md @@ -1,4 +1,5 @@ -# Interface IHasProperty +# Interface IHasProperty + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -27,7 +28,7 @@ EventHandler EntityRequestPropertyUpdate { get; } #### Property Value - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1) + EventHandler ## Methods @@ -55,7 +56,7 @@ void RegisterPropertyEvent(ObjectBase objProperty, bool bBackup) `objProperty` ObjectBase -`bBackup` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bBackup` bool ### UnregisterPropertyEvent\(ObjectBase, bool\) @@ -69,5 +70,5 @@ void UnregisterPropertyEvent(ObjectBase objProperty, bool bBackup) `objProperty` ObjectBase -`bBackup` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bBackup` bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IHasReportOnly.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IHasReportOnly.md index 2b2d728c1b..38eaf82281 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IHasReportOnly.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IHasReportOnly.md @@ -1,4 +1,5 @@ -# Interface IHasReportOnly +# Interface IHasReportOnly + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -27,5 +28,5 @@ bool IsReportOnly { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IHasVerifyLevel.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IHasVerifyLevel.md index bf1b49de31..93c9922387 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IHasVerifyLevel.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IHasVerifyLevel.md @@ -1,4 +1,5 @@ -# Interface IHasVerifyLevel +# Interface IHasVerifyLevel + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -27,5 +28,5 @@ int VerifyLevel { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IHiddenDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IHiddenDocument.md index b881017736..ea2420dddc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IHiddenDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IHiddenDocument.md @@ -1,4 +1,5 @@ -# Interface IHiddenDocument +# Interface IHiddenDocument + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IInstance.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IInstance.md index bee0491de1..973ff09333 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IInstance.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IInstance.md @@ -1,4 +1,5 @@ -# Interface IInstance +# Interface IInstance + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -45,7 +46,7 @@ void AddNewReferences(ObjectBase[] arObjNew, string strCetegory) The object array. -`strCetegory` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCetegory` string The category name. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IInstanceContainer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IInstanceContainer.md index 29948a8fc4..a8f7bc1d87 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IInstanceContainer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IInstanceContainer.md @@ -1,4 +1,5 @@ -# Interface IInstanceContainer +# Interface IInstanceContainer + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IInterface.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IInterface.md index f2eb745eb4..813fb432a2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IInterface.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IInterface.md @@ -1,4 +1,5 @@ -# Interface IInterface +# Interface IInterface + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -27,7 +28,7 @@ bool IsInterface { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IInterfaceImpl.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IInterfaceImpl.md index facaa42428..e22685c555 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IInterfaceImpl.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IInterfaceImpl.md @@ -1,4 +1,5 @@ -# Class IInterfaceImpl +# Class IInterfaceImpl + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,7 +12,7 @@ public class IInterfaceImpl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [IInterfaceImpl](VM.Managed.IInterfaceImpl.md) #### Extension Methods @@ -46,7 +47,7 @@ The object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the specified object is interface; otherwise, false. @@ -64,7 +65,7 @@ public static void SetInterface(IInterface itfOb, bool bSet) The object. -`bSet` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bSet` bool if set to true interface. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IInterfaceSupport.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IInterfaceSupport.md index 6d807c2170..c8be9045cf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IInterfaceSupport.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IInterfaceSupport.md @@ -1,4 +1,5 @@ -# Interface IInterfaceSupport +# Interface IInterfaceSupport + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IInterfaceTable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IInterfaceTable.md index ed27736a4c..6f325743f6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IInterfaceTable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IInterfaceTable.md @@ -1,4 +1,5 @@ -# Interface IInterfaceTable +# Interface IInterfaceTable + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ILink.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ILink.md index fbaab23da8..1d4696dbaa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ILink.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ILink.md @@ -1,4 +1,5 @@ -# Interface ILink +# Interface ILink + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -27,7 +28,7 @@ bool FieldHasValue { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LinkedObject @@ -66,7 +67,7 @@ void Clear(bool bBackup) #### Parameters -`bBackup` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bBackup` bool ### ClearBeforeDeserialize\(\) @@ -94,7 +95,7 @@ void DestroyObject(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object

    The linked object.

    @@ -118,7 +119,7 @@ void GetChilds(HashSet lstObjs) #### Parameters -`lstObjs` [HashSet](https://learn.microsoft.com/dotnet/api/system.collections.generic.hashset\-1) +`lstObjs` HashSet ### GetFirstDesignEntities\(\) @@ -130,7 +131,7 @@ IEnumerable GetFirstDesignEntities() #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) + IEnumerable ### Reserve\(LinkEventArgs\) @@ -148,7 +149,7 @@ The event argument. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if succeess to reserve, otherwise false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ILinkContainerEvent.ILinkEventBuilder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ILinkContainerEvent.ILinkEventBuilder.md index 8883a2bbfc..8c3e435077 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ILinkContainerEvent.ILinkEventBuilder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ILinkContainerEvent.ILinkEventBuilder.md @@ -1,4 +1,5 @@ -# Interface ILinkContainerEvent.ILinkEventBuilder +# Interface ILinkContainerEvent.ILinkEventBuilder + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -27,13 +28,13 @@ EventHandler CreatePostLinkEvent(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The object container. #### Returns - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> + EventHandler<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> ### CreatePreLinkEvent\(object\) @@ -45,11 +46,11 @@ EventHandler CreatePreLinkEvent(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The object container. #### Returns - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> + EventHandler<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ILinkContainerEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ILinkContainerEvent.md index bf14819954..bb636ffcca 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ILinkContainerEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ILinkContainerEvent.md @@ -1,4 +1,5 @@ -# Interface ILinkContainerEvent +# Interface ILinkContainerEvent + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -27,7 +28,7 @@ EventHandler AddedToDocEventHandler { get; } #### Property Value - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[AddToDocEventArgs](VM.Managed.AddToDocEventArgs.md)\> + EventHandler<[AddToDocEventArgs](VM.Managed.AddToDocEventArgs.md)\> ### DestroyEventHandler @@ -39,7 +40,7 @@ EventHandler DestroyEventHandler { get; } #### Property Value - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> + EventHandler<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> ### DestroyingEventHandler @@ -51,7 +52,7 @@ EventHandler DestroyingEventHandler { get; } #### Property Value - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> + EventHandler<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> ### RemovedFromDocEventHandler @@ -63,7 +64,7 @@ EventHandler RemovedFromDocEventHandler { get; } #### Property Value - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[RemoveFromDocEventArgs](VM.Managed.RemoveFromDocEventArgs.md)\> + EventHandler<[RemoveFromDocEventArgs](VM.Managed.RemoveFromDocEventArgs.md)\> ### UpdateEventHandler @@ -75,7 +76,7 @@ EventHandler UpdateEventHandler { get; } #### Property Value - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> + EventHandler<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> ### UpdatingEventHandler @@ -87,7 +88,7 @@ EventHandler UpdatingEventHandler { get; } #### Property Value - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> + EventHandler<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> ## Methods @@ -101,7 +102,7 @@ void LinkAddedToDocument(object obj, AddToDocEventArgs arg) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The added object. @@ -119,7 +120,7 @@ void LinkRemovedFromDocument(object obj, RemoveFromDocEventArgs arg) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The removed object. @@ -137,7 +138,7 @@ void LinkRequestDestroy(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -155,7 +156,7 @@ void LinkRequestDestroying(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -173,7 +174,7 @@ void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -191,7 +192,7 @@ void LinkRequestUpdating(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -209,7 +210,7 @@ event EventHandler OnAdded #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[AddToDocEventArgs](VM.Managed.AddToDocEventArgs.md)\> + EventHandler<[AddToDocEventArgs](VM.Managed.AddToDocEventArgs.md)\> ### OnDestroy @@ -221,7 +222,7 @@ event EventHandler OnDestroy #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> + EventHandler<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> ### OnDestroying @@ -233,7 +234,7 @@ event EventHandler OnDestroying #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> + EventHandler<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> ### OnRemoved @@ -245,7 +246,7 @@ event EventHandler OnRemoved #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[RemoveFromDocEventArgs](VM.Managed.RemoveFromDocEventArgs.md)\> + EventHandler<[RemoveFromDocEventArgs](VM.Managed.RemoveFromDocEventArgs.md)\> ### OnUpdate @@ -257,7 +258,7 @@ event EventHandler OnUpdate #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> + EventHandler<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> ### OnUpdating @@ -269,5 +270,5 @@ event EventHandler OnUpdating #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> + EventHandler<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IMarker.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IMarker.md index e1b41414ee..c1e91b872b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IMarker.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IMarker.md @@ -1,4 +1,5 @@ -# Interface IMarker +# Interface IMarker + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -25,7 +26,7 @@ string FullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ParentConnectableName @@ -35,7 +36,7 @@ string ParentConnectableName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ParentKey @@ -45,5 +46,5 @@ UIntPtr ParentKey { get; } #### Property Value - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IMassProp.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IMassProp.md index 7773f33726..fbdbecd851 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IMassProp.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IMassProp.md @@ -1,4 +1,5 @@ -# Interface IMassProp +# Interface IMassProp + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -15,6 +16,20 @@ public interface IMassProp [LinkPropertyItemCache.GetLinkPropertiesAndValues\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkPropertiesAndValues\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), [LinkPropertyItemCache.GetLinkedObjects\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkedObjects\_\_1\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_) +## Properties + +### SupportSetMass + +Gets the flag for whether or not to support set for mass. + +```csharp +bool SupportSetMass { get; } +``` + +#### Property Value + + bool + ## Methods ### GetMassProp\(ref double, VectorBase, OMatrix, double\[\], bool\) @@ -27,7 +42,7 @@ void GetMassProp(ref double dMass, VectorBase vecCenterPosition, OMatrix vecOrie #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double The mass. @@ -39,11 +54,11 @@ The center position. The orientation. -`arTensor` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arTensor` double\[\] The tensor. -`bGlobal` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bGlobal` bool ### SetMassProp\(double, VectorBase, OMatrix, double\[\], bool\) @@ -55,7 +70,7 @@ void SetMassProp(double dMass, VectorBase vecCenterPosition, OMatrix vecOrientat #### Parameters -`dMass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dMass` double The mass. @@ -67,9 +82,9 @@ The center position. The orientation. -`arTensor` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arTensor` double\[\] The tensor. -`bGlobal` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bGlobal` bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IMultiChangable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IMultiChangable.md index 2ae9478974..1aa6fe83d2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IMultiChangable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IMultiChangable.md @@ -1,4 +1,5 @@ -# Interface IMultiChangable +# Interface IMultiChangable + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.INamed.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.INamed.md index 6da7cf595f..14915f0c98 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.INamed.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.INamed.md @@ -1,4 +1,5 @@ -# Interface INamed +# Interface INamed + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -27,7 +28,7 @@ string FullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Name @@ -39,7 +40,7 @@ string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NonSymmetricName @@ -51,5 +52,5 @@ string NonSymmetricName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.INamedImpl.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.INamedImpl.md index 31ba89c35c..5d7f8ba9ac 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.INamedImpl.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.INamedImpl.md @@ -1,4 +1,5 @@ -# Class INamedImpl +# Class INamedImpl + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class INamedImpl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [INamedImpl](VM.Managed.INamedImpl.md) #### Extension Methods @@ -40,7 +41,7 @@ public static char NameSeperator { get; set; } #### Property Value - [char](https://learn.microsoft.com/dotnet/api/system.char) + char ### PredefinedFlag @@ -52,7 +53,7 @@ public static char PredefinedFlag { get; set; } #### Property Value - [char](https://learn.microsoft.com/dotnet/api/system.char) + char ## Methods @@ -66,7 +67,7 @@ public static void EnsureLocalName(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The name. @@ -80,13 +81,13 @@ public static string GetChildName(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The name. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The child name @@ -106,7 +107,7 @@ The object. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The name @@ -126,7 +127,7 @@ The object has name. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The name @@ -140,17 +141,17 @@ public static string GetImportedCADBodyDirectory(string strDir, string strBodyNa #### Parameters -`strDir` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDir` string The directory. -`strBodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBodyName` string The body name #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetImportedCADBodyFilePath\(string, string, string\) @@ -162,21 +163,21 @@ public static string GetImportedCADBodyFilePath(string strDir, string strBodyNam #### Parameters -`strDir` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDir` string The directory. -`strBodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBodyName` string The body name -`strExtension` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strExtension` string The extension name #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetImportedCADBodyName\(Document, string, bool\) @@ -192,15 +193,15 @@ public static string GetImportedCADBodyName(Document doc, string strName, bool b The document. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Object Name -`bAllowDuplication` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bAllowDuplication` bool #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The new name @@ -214,13 +215,13 @@ public static string GetNonSymmetricName(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The name. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The name @@ -234,13 +235,13 @@ public static string GetOwnerFullName(string strFullName) #### Parameters -`strFullName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFullName` string The full name. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The owner's full name @@ -254,13 +255,13 @@ public static string GetOwnerName(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The name. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The owner name @@ -274,7 +275,7 @@ public static SymmetricType GetSymmetricTypeFromName(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The name. @@ -294,13 +295,13 @@ public static bool IsChildName(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The object has name. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool The name @@ -318,17 +319,17 @@ public static bool IsExistNameInDoc(IDocument doc, string strName, string strNam The document. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The name. -`strNameForMessage` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strNameForMessage` string The name for message. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool The name @@ -346,13 +347,13 @@ public static bool IsExistNameInDoc(IDocument doc, string strName) The document. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The name. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool The name @@ -366,17 +367,17 @@ public static bool IsValidName(string strName, bool showMsg) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Object Name -`showMsg` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`showMsg` bool Whether show error messages. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the specified name is valid; otherwise, false. @@ -390,13 +391,13 @@ public static bool IsValidName(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Object Name #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the specified name is valid; otherwise, false. @@ -410,13 +411,13 @@ public static string MakeOppositeSymmetricName(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The name. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The opposite symmetric name @@ -430,7 +431,7 @@ public static string MakeSymmetricName(string strNameOriginal, SymmetricType typ #### Parameters -`strNameOriginal` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strNameOriginal` string The original name. @@ -440,7 +441,7 @@ The symmetric type. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The name diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.INavigatorItem.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.INavigatorItem.md index 16e0014f85..3031382a45 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.INavigatorItem.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.INavigatorItem.md @@ -1,4 +1,5 @@ -# Interface INavigatorItem +# Interface INavigatorItem + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -27,7 +28,7 @@ string GetModelNavigateorRenameRemoveInfo() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The model navigator's rename or remove information. @@ -41,7 +42,7 @@ string GetModelNavigatorInformation() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The model navigator information. @@ -55,21 +56,21 @@ bool GetModelNavigatorInformationBase(XmlDocument xmlDom, XmlElement xmlRootEle, #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The navigator information xml. -`xmlRootEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlRootEle` XmlElement The navigator information xml root element. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool true if has a child object; otherwise, false. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\) @@ -81,19 +82,19 @@ bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, XmlElement xmlRootEle, #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The navigator information xml. -`xmlRootEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlRootEle` XmlElement The navigator information xml root element. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool true if has a child object; otherwise, false. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.INodalOutputCandidate.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.INodalOutputCandidate.md index 51b85de333..70d7d02b48 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.INodalOutputCandidate.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.INodalOutputCandidate.md @@ -1,4 +1,5 @@ -# Interface INodalOutputCandidate +# Interface INodalOutputCandidate + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -25,5 +26,5 @@ void GetNodeNames(ref List lstNodeNames) #### Parameters -`lstNodeNames` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`lstNodeNames` List diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.INodalOutputContainer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.INodalOutputContainer.md index 6b807cbdbf..35e519d1f1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.INodalOutputContainer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.INodalOutputContainer.md @@ -1,4 +1,5 @@ -# Interface INodalOutputContainer +# Interface INodalOutputContainer + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -25,5 +26,5 @@ void GetNodalOutputCandidate(List lstNodalOutputCandidate #### Parameters -`lstNodalOutputCandidate` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[INodalOutputCandidate](VM.Managed.INodalOutputCandidate.md)\> +`lstNodalOutputCandidate` List<[INodalOutputCandidate](VM.Managed.INodalOutputCandidate.md)\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IOMatrix.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IOMatrix.md index a6025955c6..be91bbe4f2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IOMatrix.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IOMatrix.md @@ -1,4 +1,5 @@ -# Interface IOMatrix +# Interface IOMatrix + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -27,7 +28,7 @@ double[] Array { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### XVector @@ -77,7 +78,7 @@ VectorBase GetDirectionVector(uint axis) #### Parameters -`axis` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`axis` uint The type of axis. @@ -137,7 +138,7 @@ void RotateAxisDeg(VectorBase axis, double dAngle) The rotation axis. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -151,11 +152,11 @@ void RotateAxisDeg(uint nCoord, double dAngle) #### Parameters -`nCoord` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nCoord` uint The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -173,7 +174,7 @@ void RotateAxisDeg(Coordinate c, double dAngle) The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -191,7 +192,7 @@ void RotateAxisRad(VectorBase axis, double dAngle) The rotation axis. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -205,11 +206,11 @@ void RotateAxisRad(uint nCoord, double dAngle) #### Parameters -`nCoord` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nCoord` uint The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -227,7 +228,7 @@ void RotateAxisRad(Coordinate c, double dAngle) The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -241,7 +242,7 @@ void RotateXDeg(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -255,7 +256,7 @@ void RotateXRad(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -269,7 +270,7 @@ void RotateYDeg(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -283,7 +284,7 @@ void RotateYRad(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -297,7 +298,7 @@ void RotateZDeg(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -311,7 +312,7 @@ void RotateZRad(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -325,7 +326,7 @@ void SetOrientation(double[] arr) #### Parameters -`arr` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arr` double\[\] The data of orientation. @@ -379,15 +380,15 @@ void SetOrientationEADeg(RotationAxes ea, double dAlpha, double dBeta, double dG The type of euler angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of euler angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of euler angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of euler angle. @@ -405,15 +406,15 @@ void SetOrientationEARad(RotationAxes ea, double dAlpha, double dBeta, double dG The type of euler angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of euler angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of euler angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of euler angle. @@ -431,15 +432,15 @@ void SetOrientationFixedAngleDeg(RotationAxes ea, double dAlpha, double dBeta, d The type of fixed angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of fixed angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of fixed angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of fixed angle. @@ -457,15 +458,15 @@ void SetOrientationFixedAngleRad(RotationAxes ea, double dAlpha, double dBeta, d The type of fixed angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of fixed angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of fixed angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of fixed angle. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IObjectSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IObjectSet.md index 7e54fbb898..99cce2db43 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IObjectSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IObjectSet.md @@ -1,4 +1,5 @@ -# Interface IObjectSet +# Interface IObjectSet + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -27,7 +28,7 @@ int GetCount() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int The number of object in object set. @@ -41,13 +42,13 @@ UIntPtr GetElementKey(int nIndex) #### Parameters -`nIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIndex` int The index of object set. #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr The n-th object's element key. @@ -61,7 +62,7 @@ Type GetElementType() #### Returns - [Type](https://learn.microsoft.com/dotnet/api/system.type) + Type The element type. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IObsolete.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IObsolete.md index a011b4507b..ba1d743e47 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IObsolete.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IObsolete.md @@ -1,4 +1,5 @@ -# Interface IObsolete +# Interface IObsolete + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IOpenDesigner.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IOpenDesigner.md index f40cf14bed..c093e33114 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IOpenDesigner.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IOpenDesigner.md @@ -1,4 +1,5 @@ -# Interface IOpenDesigner +# Interface IOpenDesigner + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -27,7 +28,7 @@ string FilePath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TargetBody @@ -51,7 +52,7 @@ string TemplateFilePath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeFileName @@ -63,7 +64,7 @@ string TypeFileName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -111,7 +112,7 @@ void SetCustomFilterEvent(object picker) #### Parameters -`picker` [object](https://learn.microsoft.com/dotnet/api/system.object) +`picker` object The picker. @@ -125,7 +126,7 @@ Document SetDataToDesignDoc(bool bRecord) #### Parameters -`bRecord` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bRecord` bool Is recording for journal. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IOrientation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IOrientation.md index 39c9a89bf3..653f2eda94 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IOrientation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IOrientation.md @@ -1,4 +1,5 @@ -# Interface IOrientation +# Interface IOrientation + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPartMarkerParent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPartMarkerParent.md index a908e58344..aa62f40248 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPartMarkerParent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPartMarkerParent.md @@ -1,4 +1,5 @@ -# Interface IPartMarkerParent +# Interface IPartMarkerParent + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPatchSetInformation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPatchSetInformation.md index c055666441..302d8c60ec 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPatchSetInformation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPatchSetInformation.md @@ -1,4 +1,5 @@ -# Interface IPatchSetInformation +# Interface IPatchSetInformation + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPerformanceIndexable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPerformanceIndexable.md index de76c574eb..798e7476fd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPerformanceIndexable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPerformanceIndexable.md @@ -1,4 +1,5 @@ -# Interface IPerformanceIndexable +# Interface IPerformanceIndexable + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -27,5 +28,5 @@ bool UsePerformanceIndex { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPoint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPoint.md index 68885bc118..e3fddf44f8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPoint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPoint.md @@ -1,4 +1,5 @@ -# Interface IPoint +# Interface IPoint + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -44,7 +45,7 @@ double X { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y @@ -56,7 +57,7 @@ double Y { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Z @@ -68,5 +69,5 @@ double Z { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPostOpenDocumentForChainedSystem.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPostOpenDocumentForChainedSystem.md index 71137fd3c6..b92d1cd471 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPostOpenDocumentForChainedSystem.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPostOpenDocumentForChainedSystem.md @@ -1,4 +1,5 @@ -# Interface IPostOpenDocumentForChainedSystem +# Interface IPostOpenDocumentForChainedSystem + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -25,5 +26,5 @@ void ChangeForCompatibility(Dictionary facesets) #### Parameters -`facesets` [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[ObjectBase](VM.Managed.ObjectBase.md), [bool](https://learn.microsoft.com/dotnet/api/system.boolean)\> +`facesets` Dictionary<[ObjectBase](VM.Managed.ObjectBase.md), bool\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPostOpenDocumentForContact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPostOpenDocumentForContact.md index 1ed345ca2f..9aaa26ffd3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPostOpenDocumentForContact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPostOpenDocumentForContact.md @@ -1,4 +1,5 @@ -# Interface IPostOpenDocumentForContact +# Interface IPostOpenDocumentForContact + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -25,5 +26,5 @@ void ChangeForCompatibility(Dictionary facesets) #### Parameters -`facesets` [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[ObjectBase](VM.Managed.ObjectBase.md), [bool](https://learn.microsoft.com/dotnet/api/system.boolean)\> +`facesets` Dictionary<[ObjectBase](VM.Managed.ObjectBase.md), bool\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPostOpenDocumentForFaceset.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPostOpenDocumentForFaceset.md index 5920820ae6..80c1373f54 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPostOpenDocumentForFaceset.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPostOpenDocumentForFaceset.md @@ -1,4 +1,5 @@ -# Interface IPostOpenDocumentForFaceset +# Interface IPostOpenDocumentForFaceset + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPostTemplateBasedDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPostTemplateBasedDocument.md index 45c1e11a2b..217da98ae0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPostTemplateBasedDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPostTemplateBasedDocument.md @@ -1,4 +1,5 @@ -# Interface IPostTemplateBasedDocument +# Interface IPostTemplateBasedDocument + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPropertyDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPropertyDocument.md index 2cfdc0cf47..1c55e41590 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPropertyDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IPropertyDocument.md @@ -1,4 +1,5 @@ -# Interface IPropertyDocument +# Interface IPropertyDocument + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IReferedTopologyset.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IReferedTopologyset.md index 92364b53e9..c1f4ccaa65 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IReferedTopologyset.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IReferedTopologyset.md @@ -1,4 +1,5 @@ -# Interface IReferedTopologyset +# Interface IReferedTopologyset + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IReferencable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IReferencable.md index e0ad8d4b57..28cf82d2b9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IReferencable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IReferencable.md @@ -1,4 +1,5 @@ -# Interface IReferencable +# Interface IReferencable + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -27,7 +28,7 @@ bool Referencable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Visible @@ -39,7 +40,7 @@ bool Visible { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -57,7 +58,7 @@ void Instantiate(Reference reference, Canvas canvas) The reference. -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. @@ -69,5 +70,5 @@ void MakeReference(LinkedList lstRef) #### Parameters -`lstRef` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1)<[Reference](VM.Managed.Reference.md)\> +`lstRef` LinkedList<[Reference](VM.Managed.Reference.md)\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IReferencableImpl.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IReferencableImpl.md index e958a0e634..044328dfb2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IReferencableImpl.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IReferencableImpl.md @@ -1,4 +1,5 @@ -# Class IReferencableImpl +# Class IReferencableImpl + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class IReferencableImpl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [IReferencableImpl](VM.Managed.IReferencableImpl.md) #### Extension Methods @@ -46,7 +47,7 @@ public static void Instantiate(ObjectBase referencable, Reference reference, Can The reference. -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IReferenceAutoContactable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IReferenceAutoContactable.md index f80d5d8890..3d0d244e54 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IReferenceAutoContactable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IReferenceAutoContactable.md @@ -1,4 +1,5 @@ -# Interface IReferenceAutoContactable +# Interface IReferenceAutoContactable + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -35,7 +36,7 @@ bool IsOwner(Reference owner) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the specified owner; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IRelatedDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IRelatedDocument.md index c6ef1ac8a1..78eb45dc18 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IRelatedDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IRelatedDocument.md @@ -1,4 +1,5 @@ -# Interface IRelatedDocument +# Interface IRelatedDocument + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IRepairable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IRepairable.md index 92cfa67cae..ee8832f2df 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IRepairable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IRepairable.md @@ -1,4 +1,5 @@ -# Interface IRepairable +# Interface IRepairable + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ISetLinkForSymmetricManager.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ISetLinkForSymmetricManager.md index 5830d19300..63fb35a0a7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ISetLinkForSymmetricManager.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ISetLinkForSymmetricManager.md @@ -1,4 +1,5 @@ -# Interface ISetLinkForSymmetricManager +# Interface ISetLinkForSymmetricManager + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ISpecialFitView.PostFit.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ISpecialFitView.PostFit.md index 61c973afe7..c1e8340b14 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ISpecialFitView.PostFit.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ISpecialFitView.PostFit.md @@ -1,4 +1,5 @@ -# Delegate ISpecialFitView.PostFit +# Delegate ISpecialFitView.PostFit + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ISpecialFitView.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ISpecialFitView.md index 6162cc30d5..fdaf4bb492 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ISpecialFitView.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ISpecialFitView.md @@ -1,4 +1,5 @@ -# Interface ISpecialFitView +# Interface ISpecialFitView + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ISpline.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ISpline.md index 3f5e0ac175..7997850c91 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ISpline.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ISpline.md @@ -1,4 +1,5 @@ -# Interface ISpline +# Interface ISpline + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -25,7 +26,7 @@ void GetPoints(List lstX, List lstY) #### Parameters -`lstX` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> +`lstX` List -`lstY` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> +`lstY` List diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITemplateDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITemplateDocument.md index 9bb8d895a3..1a7d94fead 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITemplateDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITemplateDocument.md @@ -1,4 +1,5 @@ -# Interface ITemplateDocument +# Interface ITemplateDocument + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITemplateObject.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITemplateObject.md index 6eef60b319..6d69b6bf1f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITemplateObject.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITemplateObject.md @@ -1,4 +1,5 @@ -# Interface ITemplateObject +# Interface ITemplateObject + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -43,7 +44,7 @@ bool IsReadAndWrite() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReadTemplate\(XmlReader\) @@ -55,7 +56,7 @@ void ReadTemplate(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the template object is deserialized. @@ -69,7 +70,7 @@ bool SkipToUpdateSymmetric() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### WriteTemplate\(XmlWriter\) @@ -81,7 +82,7 @@ void WriteTemplate(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the template object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITemplateObjectImpl.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITemplateObjectImpl.md index 195759e875..39198387b4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITemplateObjectImpl.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITemplateObjectImpl.md @@ -1,4 +1,5 @@ -# Class ITemplateObjectImpl +# Class ITemplateObjectImpl + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class ITemplateObjectImpl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ITemplateObjectImpl](VM.Managed.ITemplateObjectImpl.md) #### Extension Methods @@ -40,7 +41,7 @@ public static Tuple ReadVariable(string strName, Variable var, Xml #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the variable. @@ -48,17 +49,17 @@ Name of the variable. The variable. -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. -`bParameterized` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bParameterized` bool if set to true parameterized. #### Returns - [Tuple](https://learn.microsoft.com/dotnet/api/system.tuple\-2)<[bool](https://learn.microsoft.com/dotnet/api/system.boolean), [double](https://learn.microsoft.com/dotnet/api/system.double)\> + Tuple true if the specified value is change; otherwise, false. @@ -72,7 +73,7 @@ public static void WriteVariable(string strName, Variable var, XmlWriter writer, #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the variable. @@ -80,11 +81,11 @@ Name of the variable. The variable. -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. -`bParameterized` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bParameterized` bool if set to true parameterized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITopology.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITopology.md index 642345b4c8..6d4b845236 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITopology.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITopology.md @@ -1,4 +1,5 @@ -# Interface ITopology +# Interface ITopology + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -25,9 +26,9 @@ List> ToplogyInfo(bool bConnect) #### Parameters -`bConnect` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bConnect` bool #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Tuple](https://learn.microsoft.com/dotnet/api/system.tuple\-2)<[UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr), [int](https://learn.microsoft.com/dotnet/api/system.int32)\>\> + List\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITopologyset.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITopologyset.md index 8f293c7c95..eef165f156 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITopologyset.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITopologyset.md @@ -1,4 +1,5 @@ -# Interface ITopologyset +# Interface ITopologyset + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITransform.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITransform.md index 9905f806ad..d1183b2c7a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITransform.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITransform.md @@ -1,4 +1,5 @@ -# Interface ITransform +# Interface ITransform + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITransformable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITransformable.md index b1a792581c..19a985c1c6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITransformable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITransformable.md @@ -1,4 +1,5 @@ -# Interface ITransformable +# Interface ITransformable + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITransparentable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITransparentable.md index 59ec7779a0..e855088ba5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITransparentable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITransparentable.md @@ -1,4 +1,5 @@ -# Interface ITransparentable +# Interface ITransparentable + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITreatValidObject.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITreatValidObject.md index 003c38ff09..403dfa86fb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITreatValidObject.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITreatValidObject.md @@ -1,4 +1,5 @@ -# Interface ITreatValidObject +# Interface ITreatValidObject + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -27,7 +28,7 @@ void AddInvalidObject(UIntPtr ptrKey) #### Parameters -`ptrKey` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`ptrKey` UIntPtr The key. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITypedLink-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITypedLink-1.md index 429d71e5a5..43c7a7a98f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITypedLink-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ITypedLink-1.md @@ -1,4 +1,5 @@ -# Interface ITypedLink +# Interface ITypedLink + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IUnEditableSubEnttity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IUnEditableSubEnttity.md index 910a96287e..e411435da5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IUnEditableSubEnttity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IUnEditableSubEnttity.md @@ -1,4 +1,5 @@ -# Interface IUnEditableSubEnttity +# Interface IUnEditableSubEnttity + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IUnitChange.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IUnitChange.md index dc0a614977..005db38aa1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IUnitChange.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IUnitChange.md @@ -1,4 +1,5 @@ -# Interface IUnitChange +# Interface IUnitChange + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IVerifiable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IVerifiable.md index a73ab40e5a..a473831eb0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IVerifiable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IVerifiable.md @@ -1,4 +1,5 @@ -# Interface IVerifiable +# Interface IVerifiable + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IVisible.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IVisible.md index f19f198f0e..63fbd21571 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IVisible.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IVisible.md @@ -1,4 +1,5 @@ -# Interface IVisible +# Interface IVisible + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -27,7 +28,7 @@ bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsVisible @@ -39,7 +40,7 @@ bool IsVisible { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Layer diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IVisibleImpl.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IVisibleImpl.md index 15f6fd4836..68690fe8bc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IVisibleImpl.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IVisibleImpl.md @@ -1,4 +1,5 @@ -# Class IVisibleImpl +# Class IVisibleImpl + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class IVisibleImpl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [IVisibleImpl](VM.Managed.IVisibleImpl.md) #### Extension Methods @@ -66,7 +67,7 @@ The object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool The visible state @@ -102,7 +103,7 @@ public static void SetVisibleState(ObjectBase ob, bool bVisible) The object. -`bVisible` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bVisible` bool The visibility. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IXMLFormatable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IXMLFormatable.md index df3d4aad34..c7b2acabc1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IXMLFormatable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.IXMLFormatable.md @@ -1,4 +1,5 @@ -# Interface IXMLFormatable +# Interface IXMLFormatable + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -27,7 +28,7 @@ void Load(TextReader reader) #### Parameters -`reader` [TextReader](https://learn.microsoft.com/dotnet/api/system.io.textreader) +`reader` TextReader The container. @@ -41,7 +42,7 @@ void Save(TextWriter writer) #### Parameters -`writer` [TextWriter](https://learn.microsoft.com/dotnet/api/system.io.textwriter) +`writer` TextWriter The container. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Instance.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Instance.md index 77c486d630..a32a43b1e5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Instance.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Instance.md @@ -1,4 +1,5 @@ -# Class Instance +# Class Instance + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class Instance : Object, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Instance](VM.Managed.Instance.md) @@ -29,7 +30,7 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), [IAttributeContainer](VM.Managed.IAttributeContainer.md), [IInstance](VM.Managed.IInstance.md), IContainer, @@ -131,7 +132,7 @@ IHasID [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -194,7 +195,7 @@ protected override bool ClearChildInfoBeforeDeserialize { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### References @@ -234,7 +235,7 @@ public bool ContainsReference(Reference reference) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Find\(string\) @@ -246,7 +247,7 @@ public IObjectBase Find(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The DAFUL object full name. @@ -266,7 +267,7 @@ public virtual IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The DAFUL object name. @@ -300,11 +301,11 @@ public static Reference FindReferenceWithPrototype(Document3D doc3D, List +`instanceCurrent` List<[Instance](VM.Managed.Instance.md)\> `objTarget` [ObjectBase](VM.Managed.ObjectBase.md) -`nIdx` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIdx` int #### Returns @@ -334,17 +335,17 @@ public virtual string GetNewEntityName(string A_0, bool A_1, int A_2, int A_3) #### Parameters -`A_0` [string](https://learn.microsoft.com/dotnet/api/system.string) +`A_0` string -`A_1` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`A_1` bool -`A_2` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`A_2` int -`A_3` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`A_3` int #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetNewEntityName\(string, bool, int\) @@ -356,15 +357,15 @@ public virtual string GetNewEntityName(string A_0, bool A_1, int A_2) #### Parameters -`A_0` [string](https://learn.microsoft.com/dotnet/api/system.string) +`A_0` string -`A_1` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`A_1` bool -`A_2` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`A_2` int #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetNewEntityName\(string\) @@ -376,11 +377,11 @@ public virtual string GetNewEntityName(string A_0) #### Parameters -`A_0` [string](https://learn.microsoft.com/dotnet/api/system.string) +`A_0` string #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetUnnamedObjectName\(object\) @@ -392,13 +393,13 @@ public virtual string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The unnamed object. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The unnamed object name. @@ -412,7 +413,7 @@ protected override void LinkRequestUpdate(object obNotifier, LinkEventArgs arg) #### Parameters -`obNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obNotifier` object `arg` [LinkEventArgs](VM.Managed.LinkEventArgs.md) @@ -428,7 +429,7 @@ public override void OnDeserialization(object obSender) #### Parameters -`obSender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obSender` object ### SetModified\(ModifiedType\) @@ -462,5 +463,5 @@ public override bool SkipUpdateObjectImpl() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InstanceContainer.InterfaceTable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InstanceContainer.InterfaceTable.md index 6fff6a2ff5..811ea9bb3b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InstanceContainer.InterfaceTable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InstanceContainer.InterfaceTable.md @@ -1,4 +1,5 @@ -# Class InstanceContainer.InterfaceTable +# Class InstanceContainer.InterfaceTable + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,9 +12,9 @@ public class InstanceContainer.InterfaceTable : LinkContainer, IObservableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [InstanceContainer.InterfaceTable](VM.Managed.InstanceContainer.InterfaceTable.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -172,7 +173,7 @@ public string SelectName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ToReference @@ -198,7 +199,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -216,7 +217,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InstanceContainer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InstanceContainer.md index 6bb3bab322..21f903c30f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InstanceContainer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InstanceContainer.md @@ -1,4 +1,5 @@ -# Class InstanceContainer +# Class InstanceContainer + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -12,9 +13,9 @@ public abstract class InstanceContainer : SubEntity, IObservableObject, IDisposa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [SubEntity](VM.Managed.SubEntity.md) ← @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -160,7 +161,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -199,7 +200,7 @@ public InstanceContainer(string strName, Instance instance) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the instance container. @@ -217,11 +218,11 @@ public InstanceContainer(string strName, string strDocumentFilePath, TransformBa #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the instance container. -`strDocumentFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDocumentFilePath` string The document file path. @@ -253,7 +254,7 @@ protected IList InterfaceTableList { get; } #### Property Value - [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[InstanceContainer](VM.Managed.InstanceContainer.md).[InterfaceTable](VM.Managed.InstanceContainer.InterfaceTable.md)\> + IList<[InstanceContainer](VM.Managed.InstanceContainer.md).[InterfaceTable](VM.Managed.InstanceContainer.InterfaceTable.md)\> ### InterfaceTables @@ -277,7 +278,7 @@ public virtual bool IsVisible { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Layer @@ -321,7 +322,7 @@ The [to object]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -349,7 +350,7 @@ public IObjectBase Find(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -369,7 +370,7 @@ public virtual IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -389,7 +390,7 @@ protected virtual IEnumerable GetChildListImpl() #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) + IEnumerable The child list. @@ -417,13 +418,13 @@ public virtual string GetNewEntityName(string strPrefix) #### Parameters -`strPrefix` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefix` string The prefix. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The new name @@ -437,21 +438,21 @@ public string GetNewEntityName(string strPrefix, bool bUseUnderLine, int nNumFig #### Parameters -`strPrefix` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefix` string The DAFUL object prefix name. -`bUseUnderLine` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseUnderLine` bool Whether use underline. -`nNumFigure` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNumFigure` int The Number of Figure. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The DAFUL object name. @@ -465,25 +466,25 @@ public string GetNewEntityName(string strPrefix, bool bUseUnderLine, int nNumFig #### Parameters -`strPrefix` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefix` string The DAFUL object prefix name. -`bUseUnderLine` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseUnderLine` bool Whether use underline. -`nNumFigure` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNumFigure` int The Number of Figure. -`nStartIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nStartIndex` int The start index. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The DAFUL object name. @@ -497,7 +498,7 @@ public override List GetTargetListForUpdate() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### GetUnnamedObjectName\(object\) @@ -509,13 +510,13 @@ public virtual string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The unnamed object. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The unnamed object name. @@ -537,7 +538,7 @@ public virtual bool IsDestroyContainer() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if is [destroy container]; otherwise, false. @@ -551,7 +552,7 @@ protected override void LinkRequestDestroy(object objNotifier, LinkEventArgs arg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -569,7 +570,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -587,7 +588,7 @@ protected virtual void MakeReferenceImpl(LinkedList lstRef) #### Parameters -`lstRef` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) +`lstRef` LinkedList The container. @@ -601,7 +602,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InterfaceAddEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InterfaceAddEvent.md index 28963aa8aa..1d0f150b5f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InterfaceAddEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InterfaceAddEvent.md @@ -1,4 +1,5 @@ -# Class InterfaceAddEvent +# Class InterfaceAddEvent + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,8 +12,8 @@ public class InterfaceAddEvent : InterfaceEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← DocumentMemberModifiedEvent ← DocumentSimpleValueModifiedEvent\> ← [InterfaceEvent](VM.Managed.InterfaceEvent.md) ← @@ -47,17 +48,17 @@ DocumentSimpleValueModifiedEvent\>. DocumentMemberModifiedEvent.m\_doc, DocumentMemberModifiedEvent.m\_obj, DocumentMemberModifiedEvent.Clear\(bool\), -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -79,17 +80,17 @@ public InterfaceAddEvent(Document doc, object obj, string strPropertyName, objec `doc` Document -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object -`strPropertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPropertyName` string -`objTarget` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objTarget` object -`objParam` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objParam` object -`delPostExecute` DocumentSimpleValueModifiedEvent<[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[InterfaceManager](VM.Managed.InterfaceManager.md).[InterfaceInfoForUndo](VM.Managed.InterfaceManager.InterfaceInfoForUndo.md)\>\>.PostExecuteCallback +`delPostExecute` DocumentSimpleValueModifiedEvent\>.PostExecuteCallback -`strXML` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXML` string ## Methods @@ -104,7 +105,7 @@ protected override void AfterRedo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### AfterUndo\(HistoryEventArgs\) @@ -117,5 +118,5 @@ protected override void AfterUndo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InterfaceEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InterfaceEvent.md index 29e8e42ab1..7bdbe83fc6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InterfaceEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InterfaceEvent.md @@ -1,4 +1,5 @@ -# Class InterfaceEvent +# Class InterfaceEvent + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,8 +12,8 @@ public abstract class InterfaceEvent : DocumentSimpleValueModifiedEvent\> ← [InterfaceEvent](VM.Managed.InterfaceEvent.md) @@ -47,17 +48,17 @@ DocumentSimpleValueModifiedEvent\>. DocumentMemberModifiedEvent.m\_doc, DocumentMemberModifiedEvent.m\_obj, DocumentMemberModifiedEvent.Clear\(bool\), -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -79,17 +80,17 @@ public InterfaceEvent(Document doc, object obj, string strPropertyName, object o `doc` Document -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object -`strPropertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPropertyName` string -`objTarget` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objTarget` object -`objParam` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objParam` object -`delPostExecute` DocumentSimpleValueModifiedEvent<[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[InterfaceManager](VM.Managed.InterfaceManager.md).[InterfaceInfoForUndo](VM.Managed.InterfaceManager.InterfaceInfoForUndo.md)\>\>.PostExecuteCallback +`delPostExecute` DocumentSimpleValueModifiedEvent\>.PostExecuteCallback -`strXML` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXML` string ## Methods @@ -112,7 +113,7 @@ protected override void AfterRedo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### AfterUndo\(HistoryEventArgs\) @@ -125,7 +126,7 @@ protected override void AfterUndo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### Remove\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InterfaceManager.InterfaceInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InterfaceManager.InterfaceInfo.md index 3e4dd642f2..7d21033eac 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InterfaceManager.InterfaceInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InterfaceManager.InterfaceInfo.md @@ -1,4 +1,5 @@ -# Struct InterfaceManager.InterfaceInfo +# Struct InterfaceManager.InterfaceInfo + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -21,7 +22,7 @@ public List InterfaceNames #### Field Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List ### InterfaceObject diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InterfaceManager.InterfaceInfoForUndo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InterfaceManager.InterfaceInfoForUndo.md index 00f6820697..9c82a6db54 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InterfaceManager.InterfaceInfoForUndo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InterfaceManager.InterfaceInfoForUndo.md @@ -1,4 +1,5 @@ -# Struct InterfaceManager.InterfaceInfoForUndo +# Struct InterfaceManager.InterfaceInfoForUndo + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -21,11 +22,11 @@ public InterfaceInfoForUndo(UIntPtr interfaceObjectKey, List interfaceNa #### Parameters -`interfaceObjectKey` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`interfaceObjectKey` UIntPtr The interface object key. -`interfaceNames` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`interfaceNames` List The interface names. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InterfaceManager.StateType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InterfaceManager.StateType.md index 4926e2ae87..62eeb8ba78 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InterfaceManager.StateType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InterfaceManager.StateType.md @@ -1,4 +1,5 @@ -# Enum InterfaceManager.StateType +# Enum InterfaceManager.StateType + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InterfaceManager.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InterfaceManager.md index d27217d5b4..93f62c741e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InterfaceManager.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InterfaceManager.md @@ -1,4 +1,5 @@ -# Class InterfaceManager +# Class InterfaceManager + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,9 +12,9 @@ public class InterfaceManager : Object, IObservableObject, IDis #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [InterfaceManager](VM.Managed.InterfaceManager.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer #### Inherited Members @@ -129,7 +130,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -184,7 +185,7 @@ protected List InterfaceInfos { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[InterfaceManager](VM.Managed.InterfaceManager.md).[InterfaceInfo](VM.Managed.InterfaceManager.InterfaceInfo.md)\> + List<[InterfaceManager](VM.Managed.InterfaceManager.md).[InterfaceInfo](VM.Managed.InterfaceManager.InterfaceInfo.md)\> ### Interfaces @@ -208,7 +209,7 @@ public override bool IsExternable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -256,7 +257,7 @@ The interface. #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List The name container @@ -270,13 +271,13 @@ public List GetInterfaceNames(string strFullName) #### Parameters -`strFullName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFullName` string The full name of the interface. #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + List The name container @@ -290,7 +291,7 @@ public int GetNumInterfaceObject() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int number of interface object @@ -310,7 +311,7 @@ The interface. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the specified interface is interface; otherwise, false. @@ -324,7 +325,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -342,13 +343,13 @@ protected string MakeXml(object ob) #### Parameters -`ob` [object](https://learn.microsoft.com/dotnet/api/system.object) +`ob` object The object. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The interface information @@ -380,7 +381,7 @@ public void SetInterfaceNames(IInterface itf, ICollection strList) The itf. -`strList` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`strList` ICollection The STR list. @@ -398,7 +399,7 @@ public void SetInterfaceNames(IInterface itf, ArraySegment strList) The itf. -`strList` [ArraySegment](https://learn.microsoft.com/dotnet/api/system.arraysegment\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`strList` ArraySegment The STR list. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InterfaceRemoveEvent.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InterfaceRemoveEvent.md index f5d9a91bc8..7f10b379a5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InterfaceRemoveEvent.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.InterfaceRemoveEvent.md @@ -1,4 +1,5 @@ -# Class InterfaceRemoveEvent +# Class InterfaceRemoveEvent + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,8 +12,8 @@ public class InterfaceRemoveEvent : InterfaceEvent #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -HistoryEvent ← +object ← +[HistoryEvent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) ← DocumentMemberModifiedEvent ← DocumentSimpleValueModifiedEvent\> ← [InterfaceEvent](VM.Managed.InterfaceEvent.md) ← @@ -47,17 +48,17 @@ DocumentSimpleValueModifiedEvent\>. DocumentMemberModifiedEvent.m\_doc, DocumentMemberModifiedEvent.m\_obj, DocumentMemberModifiedEvent.Clear\(bool\), -HistoryEvent.ClearEvent\(bool\), -HistoryEvent.Undo\(HistoryEventArgs\), -HistoryEvent.Redo\(HistoryEventArgs\), -HistoryEvent.Clear\(bool\), -HistoryEvent.BeforeUndo\(HistoryEventArgs\), -HistoryEvent.AfterUndo\(HistoryEventArgs\), -HistoryEvent.BeforeRedo\(HistoryEventArgs\), -HistoryEvent.AfterRedo\(HistoryEventArgs\), -HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\), -HistoryEvent.AfterAdded\(HistoryEventArgs\), -HistoryEvent.IsValid +[HistoryEvent.ClearEvent\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Undo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Redo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.Clear\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterUndo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterRedo\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.BeforeAdded\(AddToHistoryManagerEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.AfterAdded\(HistoryEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs), +[HistoryEvent.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEvent.cs) #### Extension Methods @@ -79,17 +80,17 @@ public InterfaceRemoveEvent(Document doc, object obj, string strPropertyName, ob `doc` Document -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object -`strPropertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPropertyName` string -`objTarget` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objTarget` object -`objParam` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objParam` object -`delPostExecute` DocumentSimpleValueModifiedEvent<[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[InterfaceManager](VM.Managed.InterfaceManager.md).[InterfaceInfoForUndo](VM.Managed.InterfaceManager.InterfaceInfoForUndo.md)\>\>.PostExecuteCallback +`delPostExecute` DocumentSimpleValueModifiedEvent\>.PostExecuteCallback -`strXML` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXML` string ## Methods @@ -104,7 +105,7 @@ protected override void AfterRedo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) ### AfterUndo\(HistoryEventArgs\) @@ -117,5 +118,5 @@ protected override void AfterUndo(HistoryEventArgs args) #### Parameters -`args` HistoryEventArgs +`args` [HistoryEventArgs](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/HistoryEventArgs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Layer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Layer.md index 2174785758..c7b27ddcbf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Layer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Layer.md @@ -1,4 +1,5 @@ -# Class Layer +# Class Layer + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class Layer : Object, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Layer](VM.Managed.Layer.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), [IAttributeContainer](VM.Managed.IAttributeContainer.md), [INamed](VM.Managed.INamed.md), IPostDeserialized @@ -131,7 +132,7 @@ IPostDeserialized [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -162,7 +163,7 @@ public Layer(string strLayerName) #### Parameters -`strLayerName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strLayerName` string The layer name. @@ -186,7 +187,7 @@ public virtual string FullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IsVisible @@ -198,7 +199,7 @@ public bool IsVisible { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -210,7 +211,7 @@ public virtual string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NonSymmetricName @@ -222,7 +223,7 @@ public virtual string NonSymmetricName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Visibility @@ -244,7 +245,7 @@ public LinkedList VisibleObjects { get; set; } #### Property Value - [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1)<[IVisible](VM.Managed.IVisible.md)\> + LinkedList<[IVisible](VM.Managed.IVisible.md)\> ## Methods @@ -278,7 +279,7 @@ The visible object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if contain; otherwise, false. @@ -292,7 +293,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -310,7 +311,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -330,7 +331,7 @@ The visible object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -344,7 +345,7 @@ public override bool SkipModifiedEvent() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SkipUpdateObjectImpl\(\) @@ -356,5 +357,5 @@ public override bool SkipUpdateObjectImpl() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LayerManager.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LayerManager.md index f4f435de0b..d07853e9d0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LayerManager.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LayerManager.md @@ -1,4 +1,5 @@ -# Class LayerManager +# Class LayerManager + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public sealed class LayerManager : Object, IObservableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [LayerManager](VM.Managed.LayerManager.md) @@ -32,7 +33,7 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), [IAttributeContainer](VM.Managed.IAttributeContainer.md), IPostDeserialized @@ -151,7 +152,7 @@ public ICollection Layers { get; } #### Property Value - [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[Layer](VM.Managed.Layer.md)\> + ICollection<[Layer](VM.Managed.Layer.md)\> ## Methods @@ -177,7 +178,7 @@ protected override sealed void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object

    The sender.

    diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LayerVisibility.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LayerVisibility.md index bd8f14350e..c5bf7e7cdd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LayerVisibility.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LayerVisibility.md @@ -1,4 +1,5 @@ -# Enum LayerVisibility +# Enum LayerVisibility + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Link-4.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Link-4.md index 909aaec4bc..47ab2d4f26 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Link-4.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Link-4.md @@ -1,4 +1,5 @@ -# Class Link +# Class Link + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -21,7 +22,7 @@ public class Link : ITypedLink, ILink, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Link](VM.Managed.Link\-4.md) #### Implements @@ -84,9 +85,9 @@ protected Link(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext ## Fields @@ -122,7 +123,7 @@ public string FullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IsReference @@ -134,7 +135,7 @@ public bool IsReference { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LinkedObj @@ -158,7 +159,7 @@ public string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Object @@ -212,7 +213,7 @@ virtual void DestroyObject(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object

    The linked object.

    @@ -228,7 +229,7 @@ protected virtual void Dispose(bool A_0) #### Parameters -`A_0` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`A_0` bool ### Dispose\(\) @@ -246,7 +247,7 @@ virtual void GetChilds(HashSet A_0) #### Parameters -`A_0` [HashSet](https://learn.microsoft.com/dotnet/api/system.collections.generic.hashset\-1) +`A_0` HashSet ### GetFirstDesignEntities\(\) @@ -258,7 +259,7 @@ virtual IEnumerable GetFirstDesignEntities() #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) + IEnumerable ### GetObjectData\(SerializationInfo, StreamingContext\) @@ -268,9 +269,9 @@ virtual void GetObjectData(SerializationInfo info, StreamingContext __unnamed001 #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo -`__unnamed001` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`__unnamed001` StreamingContext ### RegisterEvent\(bool\) @@ -280,7 +281,7 @@ protected virtual void RegisterEvent(bool bBackup) #### Parameters -`bBackup` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bBackup` bool ### Reserve\(LinkEventArgs\) @@ -298,7 +299,7 @@ The event argument. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if succeess to reserve, otherwise false. @@ -318,7 +319,7 @@ protected virtual void UnregisterEvent(bool bBackup) #### Parameters -`bBackup` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bBackup` bool ## Operators diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LinkContainer.Destroy.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LinkContainer.Destroy.md index a4246fa9b9..d10b8db4d2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LinkContainer.Destroy.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LinkContainer.Destroy.md @@ -1,4 +1,5 @@ -# Struct LinkContainer.Destroy +# Struct LinkContainer.Destroy + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LinkContainer.None.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LinkContainer.None.md index d7f401b6cb..ad24019a7c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LinkContainer.None.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LinkContainer.None.md @@ -1,4 +1,5 @@ -# Struct LinkContainer.None +# Struct LinkContainer.None + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LinkContainer.Update.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LinkContainer.Update.md index b5f139d093..bec3a68635 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LinkContainer.Update.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LinkContainer.Update.md @@ -1,4 +1,5 @@ -# Struct LinkContainer.Update +# Struct LinkContainer.Update + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LinkContainer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LinkContainer.md index 6ec0f13886..9de1f90c0f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LinkContainer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LinkContainer.md @@ -1,4 +1,5 @@ -# Class LinkContainer +# Class LinkContainer + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public abstract class LinkContainer : LinkableBase, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) #### Derived @@ -50,7 +51,7 @@ IEventProvider, #### Inherited Members -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -79,9 +80,9 @@ protected LinkContainer(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext ### LinkContainer\(IOwned\) @@ -117,7 +118,7 @@ virtual bool ClearChildInfoBeforeDeserialize { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Container @@ -165,7 +166,7 @@ virtual bool IsChildExternable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsExternable @@ -177,7 +178,7 @@ virtual bool IsExternable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Owner @@ -201,11 +202,11 @@ protected virtual bool CanBeDestroy(object A_0) #### Parameters -`A_0` [object](https://learn.microsoft.com/dotnet/api/system.object) +`A_0` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CustomGetObjectData\(SerializationInfo, StreamingContext\) @@ -217,11 +218,11 @@ protected virtual void CustomGetObjectData(SerializationInfo info, StreamingCont #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo

    The info.

    -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext

    The context.

    @@ -234,7 +235,7 @@ protected override void Dispose(bool A_0) #### Parameters -`A_0` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`A_0` bool ### DisposeManagedResources\(\) @@ -254,13 +255,13 @@ protected object GetCopy(object original) #### Parameters -`original` [object](https://learn.microsoft.com/dotnet/api/system.object) +`original` object The original object. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The copied object. @@ -274,11 +275,11 @@ protected void GetSerializedData(SerializationInfo info, StreamingContext contex #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo

    The info.

    -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext

    The context.

    @@ -292,7 +293,7 @@ virtual List GetTargetListForUpdate() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### Initialize\(ConvertFactor\) @@ -318,13 +319,13 @@ protected virtual bool IsSerializableEvent(Delegate del) #### Parameters -`del` [Delegate](https://learn.microsoft.com/dotnet/api/system.delegate) +`del` Delegate The delegate. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if is [serializable event] [the specified delegate]; otherwise, false. @@ -338,7 +339,7 @@ protected virtual void LinkAddedToDocument(object objNotifier, AddToDocEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The added object. @@ -356,7 +357,7 @@ protected virtual void LinkRemovedFromDocument(object objNotifier, RemoveFromDoc #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The removed object. @@ -374,7 +375,7 @@ protected virtual void LinkRequestDestroy(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -392,7 +393,7 @@ protected virtual void LinkRequestDestroying(object objNotifier, LinkEventArgs a #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -410,7 +411,7 @@ protected virtual void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -428,7 +429,7 @@ protected virtual void LinkRequestUpdating(object objNotifier, LinkEventArgs arg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -446,7 +447,7 @@ protected virtual void OnChildUpdated(object obj, LinkEventArgs args) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The object. @@ -464,7 +465,7 @@ protected virtual void OnContainerDestroy(object obj, LinkEventArgs args) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The object. @@ -482,7 +483,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -496,9 +497,9 @@ protected virtual void OnLinkReserved(ILink A_0, object A_1, EventArgs A_2) `A_0` [ILink](VM.Managed.ILink.md) -`A_1` [object](https://learn.microsoft.com/dotnet/api/system.object) +`A_1` object -`A_2` [EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) +`A_2` EventArgs ### SetContainer\(IOwned, bool\) @@ -510,7 +511,7 @@ public virtual void SetContainer(IOwned owner, bool bBackup) `owner` IOwned -`bBackup` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bBackup` bool ### SetFlagWhenXMLFile\(string, bool\) @@ -522,11 +523,11 @@ public static void SetFlagWhenXMLFile(string strFilePath, bool bValue) #### Parameters -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string The file path. -`bValue` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bValue` bool The flag. @@ -548,7 +549,7 @@ virtual bool SkipUpdateObjectImpl() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Verify\(VerifiedResult\) @@ -572,7 +573,7 @@ public void raise_OnAdded(object objNotifier, AddToDocEventArgs args) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object `args` [AddToDocEventArgs](VM.Managed.AddToDocEventArgs.md) @@ -584,7 +585,7 @@ public void raise_OnDestroy(object objNotifier, LinkEventArgs args) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object `args` [LinkEventArgs](VM.Managed.LinkEventArgs.md) @@ -596,7 +597,7 @@ public void raise_OnDestroying(object objNotifier, LinkEventArgs args) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object `args` [LinkEventArgs](VM.Managed.LinkEventArgs.md) @@ -608,7 +609,7 @@ public void raise_OnRemoved(object obj, RemoveFromDocEventArgs args) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object `args` [RemoveFromDocEventArgs](VM.Managed.RemoveFromDocEventArgs.md) @@ -620,7 +621,7 @@ public void raise_OnUpdate(object objNotifier, LinkEventArgs args) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object `args` [LinkEventArgs](VM.Managed.LinkEventArgs.md) @@ -632,7 +633,7 @@ public void raise_OnUpdating(object objNotifier, LinkEventArgs args) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object `args` [LinkEventArgs](VM.Managed.LinkEventArgs.md) @@ -646,7 +647,7 @@ public event EventHandler OnAdded #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[AddToDocEventArgs](VM.Managed.AddToDocEventArgs.md)\> + EventHandler<[AddToDocEventArgs](VM.Managed.AddToDocEventArgs.md)\> ### OnDestroy @@ -658,7 +659,7 @@ public event EventHandler OnDestroy #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> + EventHandler<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> ### OnDestroying @@ -670,7 +671,7 @@ public event EventHandler OnDestroying #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> + EventHandler<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> ### OnRemoved @@ -682,7 +683,7 @@ public event EventHandler OnRemoved #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[RemoveFromDocEventArgs](VM.Managed.RemoveFromDocEventArgs.md)\> + EventHandler<[RemoveFromDocEventArgs](VM.Managed.RemoveFromDocEventArgs.md)\> ### OnUpdate @@ -694,7 +695,7 @@ public event EventHandler OnUpdate #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> + EventHandler<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> ### OnUpdating @@ -706,5 +707,5 @@ public event EventHandler OnUpdating #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> + EventHandler<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LinkEqualityComparer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LinkEqualityComparer.md index 1bdcb9097a..dd8b15b70c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LinkEqualityComparer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LinkEqualityComparer.md @@ -1,4 +1,5 @@ -# Class LinkEqualityComparer +# Class LinkEqualityComparer + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class LinkEqualityComparer #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [LinkEqualityComparer](VM.Managed.LinkEqualityComparer.md) #### Extension Methods @@ -50,7 +51,7 @@ The second comparable object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetHashCode\(ILink\) @@ -68,5 +69,5 @@ The object to get hash code. #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LinkEventArgs.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LinkEventArgs.md index c93aabe94c..dedaff74c2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LinkEventArgs.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LinkEventArgs.md @@ -1,4 +1,5 @@ -# Class LinkEventArgs +# Class LinkEventArgs + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public class LinkEventArgs : EventArgs #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) ← +object ← +EventArgs ← [LinkEventArgs](VM.Managed.LinkEventArgs.md) #### Derived @@ -43,7 +44,7 @@ public LinkEventArgs(NotifyReason reason, object extra, LinkEventArgs innerArgs, The type of event. -`extra` [object](https://learn.microsoft.com/dotnet/api/system.object) +`extra` object The extra object information. @@ -51,7 +52,7 @@ The extra object information. The inner event. -`obEventPrevious` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obEventPrevious` object The previous linked object. @@ -73,7 +74,7 @@ The document of event. The type of event. -`extra` [object](https://learn.microsoft.com/dotnet/api/system.object) +`extra` object The extra object information. @@ -91,7 +92,7 @@ public LinkEventArgs(NotifyReason reason, object extra) The type of event. -`extra` [object](https://learn.microsoft.com/dotnet/api/system.object) +`extra` object The extra object information. @@ -113,7 +114,7 @@ The type of event. The inner event. -`obEventPrevious` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obEventPrevious` object The previous linked object. @@ -173,7 +174,7 @@ public HashSet EntitiesForCircularReference { get; set; } #### Property Value - [HashSet](https://learn.microsoft.com/dotnet/api/system.collections.generic.hashset\-1)<[ObjectBase](VM.Managed.ObjectBase.md)\> + HashSet<[ObjectBase](VM.Managed.ObjectBase.md)\> ### Extra @@ -185,7 +186,7 @@ public object Extra { get; } #### Property Value - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### InnerEventArgument @@ -209,7 +210,7 @@ public object PreviousEventNotifier { get; } #### Property Value - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### Reason @@ -233,11 +234,11 @@ public bool ExistDestroyingTarget(object target) #### Parameters -`target` [object](https://learn.microsoft.com/dotnet/api/system.object) +`target` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ExistUpdatingTarget\(object\) @@ -247,11 +248,11 @@ public bool ExistUpdatingTarget(object target) #### Parameters -`target` [object](https://learn.microsoft.com/dotnet/api/system.object) +`target` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsDestroying\(object\) @@ -261,11 +262,11 @@ public bool IsDestroying(object objNotifier) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsUpdating\(object\) @@ -275,9 +276,9 @@ public bool IsUpdating(object objNotifier) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LinkOwnerNullExeption.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LinkOwnerNullExeption.md index 59088dbbd4..0363afdab9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LinkOwnerNullExeption.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.LinkOwnerNullExeption.md @@ -1,4 +1,5 @@ -# Class LinkOwnerNullExeption +# Class LinkOwnerNullExeption + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public class LinkOwnerNullExeption : Exception #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Exception](https://learn.microsoft.com/dotnet/api/system.exception) ← +object ← +Exception ← [LinkOwnerNullExeption](VM.Managed.LinkOwnerNullExeption.md) #### Extension Methods @@ -33,7 +34,7 @@ public LinkOwnerNullExeption(string strMessage) #### Parameters -`strMessage` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMessage` string The error message. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Linker-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Linker-1.md index ee2eabf33c..bcf20b1dfe 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Linker-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Linker-1.md @@ -1,4 +1,5 @@ -# Struct Linker +# Struct Linker + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -49,7 +50,7 @@ public bool IsReference { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Key @@ -61,7 +62,7 @@ public UIntPtr Key { get; } #### Property Value - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### Object @@ -102,7 +103,7 @@ public XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema ### ReadXml\(XmlReader\) @@ -114,7 +115,7 @@ public void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -128,7 +129,7 @@ public void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.ArrudaBoyce.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.ArrudaBoyce.md index 662033fcd3..4c1dc91e8f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.ArrudaBoyce.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.ArrudaBoyce.md @@ -1,4 +1,5 @@ -# Class ArrudaBoyce +# Class ArrudaBoyce + Namespace: [VM.Managed.Material](VM.Managed.Material.md) Assembly: VMObjBase.dll @@ -11,9 +12,9 @@ public class ArrudaBoyce : HyperElastic, IObservableObject, IDisposableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [SubEntity](VM.Managed.SubEntity.md) ← @@ -28,7 +29,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -169,7 +170,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -208,7 +209,7 @@ public ArrudaBoyce(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the arruda-boyce material. @@ -224,7 +225,7 @@ public ExpressionValueVariable D { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Lamda @@ -236,7 +237,7 @@ public ExpressionValueVariable Lamda { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Mu @@ -248,7 +249,7 @@ public ExpressionValueVariable Mu { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -276,7 +277,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -290,7 +291,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.AttributeFatigueMaterial.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.AttributeFatigueMaterial.md index be46ba3904..5f2847257e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.AttributeFatigueMaterial.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.AttributeFatigueMaterial.md @@ -1,4 +1,5 @@ -# Class AttributeFatigueMaterial +# Class AttributeFatigueMaterial + Namespace: [VM.Managed.Material](VM.Managed.Material.md) Assembly: VMObjBase.dll @@ -11,9 +12,9 @@ public class AttributeFatigueMaterial : AttributeBase, IObservableObject, IDispo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeFatigueMaterial](VM.Managed.Material.AttributeFatigueMaterial.md) @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -119,5 +120,5 @@ public string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.Foam.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.Foam.md index 15e1ae140b..22e52f8a95 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.Foam.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.Foam.md @@ -1,4 +1,5 @@ -# Class Foam +# Class Foam + Namespace: [VM.Managed.Material](VM.Managed.Material.md) Assembly: VMObjBase.dll @@ -11,9 +12,9 @@ public class Foam : MaterialBase, IObservableObject, IDisposableObject, ILinkabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [SubEntity](VM.Managed.SubEntity.md) ← @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -162,7 +163,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -201,7 +202,7 @@ public Foam(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the foam material. @@ -217,7 +218,7 @@ public ExpressionValueVariable DampingRatio { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DisableHScaleFactor @@ -230,7 +231,7 @@ public bool DisableHScaleFactor { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Spline @@ -254,7 +255,7 @@ public ExpressionValueVariable YModulus { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### \_Spline @@ -294,7 +295,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -308,7 +309,7 @@ public void SetDisableHScaleFactor(bool bFactor) #### Parameters -`bFactor` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bFactor` bool The [disable Hscale] factor. @@ -322,7 +323,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.HyperElastic.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.HyperElastic.md index 89e9910674..b0a35e0213 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.HyperElastic.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.HyperElastic.md @@ -1,4 +1,5 @@ -# Class HyperElastic +# Class HyperElastic + Namespace: [VM.Managed.Material](VM.Managed.Material.md) Assembly: VMObjBase.dll @@ -11,9 +12,9 @@ public abstract class HyperElastic : MaterialBase, IObservableObject, IDisposabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [SubEntity](VM.Managed.SubEntity.md) ← @@ -34,7 +35,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -169,7 +170,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -208,7 +209,7 @@ public HyperElastic(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the hyper elastic. @@ -224,7 +225,7 @@ public ExpressionValueVariable DampingRatio { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DisableHScaleFactor @@ -237,7 +238,7 @@ public bool DisableHScaleFactor { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -265,7 +266,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -279,7 +280,7 @@ public void SetDisableHScaleFactor(bool bFactor) #### Parameters -`bFactor` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bFactor` bool The [disable Hscale] factor. @@ -293,7 +294,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.IHasMaterial.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.IHasMaterial.md index aa7a1f0d00..2defe33002 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.IHasMaterial.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.IHasMaterial.md @@ -1,4 +1,5 @@ -# Interface IHasMaterial +# Interface IHasMaterial + Namespace: [VM.Managed.Material](VM.Managed.Material.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.IHasMaterials.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.IHasMaterials.md index c269115fcf..33d341e76d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.IHasMaterials.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.IHasMaterials.md @@ -1,4 +1,5 @@ -# Interface IHasMaterials +# Interface IHasMaterials + Namespace: [VM.Managed.Material](VM.Managed.Material.md) Assembly: VMAppCore.dll @@ -27,5 +28,5 @@ IEnumerable Materials { get; } #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IMaterial](VM.Managed.Material.IMaterial.md)\> + IEnumerable<[IMaterial](VM.Managed.Material.IMaterial.md)\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.IMaterial.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.IMaterial.md index 22a1aa94ee..807acec5f3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.IMaterial.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.IMaterial.md @@ -1,4 +1,5 @@ -# Interface IMaterial +# Interface IMaterial + Namespace: [VM.Managed.Material](VM.Managed.Material.md) Assembly: VMAppCore.dll @@ -27,7 +28,7 @@ double DensityValue { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Index @@ -39,5 +40,5 @@ uint Index { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.ISO.CapacityMatrix.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.ISO.CapacityMatrix.md index fe991cfffc..a5ac5c588d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.ISO.CapacityMatrix.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.ISO.CapacityMatrix.md @@ -1,4 +1,5 @@ -# Enum ISO.CapacityMatrix +# Enum ISO.CapacityMatrix + Namespace: [VM.Managed.Material](VM.Managed.Material.md) Assembly: VMObjBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.ISO.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.ISO.md index 97a56a9cd1..f3056b22a4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.ISO.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.ISO.md @@ -1,4 +1,5 @@ -# Class ISO +# Class ISO + Namespace: [VM.Managed.Material](VM.Managed.Material.md) Assembly: VMObjBase.dll @@ -11,9 +12,9 @@ public class ISO : MaterialBase, IObservableObject, IDisposableObject, ILinkable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [SubEntity](VM.Managed.SubEntity.md) ← @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -162,7 +163,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -201,7 +202,7 @@ public ISO(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the isotropic material. @@ -217,7 +218,7 @@ public ExpressionValueVariable DampingRatio { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DisableHScaleFactor @@ -230,7 +231,7 @@ public bool DisableHScaleFactor { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### HeatCapacityMatrix @@ -254,7 +255,7 @@ public ExpressionValueVariable PoissonRatio { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ReferenceTemperature @@ -266,7 +267,7 @@ public ExpressionValueVariable ReferenceTemperature { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ShearModulus @@ -278,7 +279,7 @@ public ExpressionValueVariable ShearModulus { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### SpecificHeat @@ -290,7 +291,7 @@ public ExpressionValueVariable SpecificHeat { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ThermalConductivity @@ -302,7 +303,7 @@ public ExpressionValueVariable ThermalConductivity { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ThermalExpansionCoefficient @@ -314,7 +315,7 @@ public ExpressionValueVariable ThermalExpansionCoefficient { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### UseShearModulusWithUserInput @@ -327,7 +328,7 @@ public bool UseShearModulusWithUserInput { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### YoungsModulus @@ -339,7 +340,7 @@ public ExpressionValueVariable YoungsModulus { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -351,13 +352,13 @@ public static double GetShearModulus(double youngsModulus, double poissonsRatio) #### Parameters -`youngsModulus` [double](https://learn.microsoft.com/dotnet/api/system.double) +`youngsModulus` double -`poissonsRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`poissonsRatio` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetShearModulusString\(double, double\) @@ -367,13 +368,13 @@ public static string GetShearModulusString(double youngsModulus, double poissons #### Parameters -`youngsModulus` [double](https://learn.microsoft.com/dotnet/api/system.double) +`youngsModulus` double -`poissonsRatio` [double](https://learn.microsoft.com/dotnet/api/system.double) +`poissonsRatio` double #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Initialize\(ConvertFactor\) @@ -399,7 +400,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -417,7 +418,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -431,7 +432,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -445,7 +446,7 @@ public void SetDisableHScaleFactor(bool bFactor) #### Parameters -`bFactor` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bFactor` bool The [disable Hscale] factor. @@ -459,7 +460,7 @@ public void SetUseShearModulusWithUserInput(bool bInput) #### Parameters -`bInput` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bInput` bool The [use shear modulus with user input]. @@ -473,7 +474,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.ISONonlinearThermal.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.ISONonlinearThermal.md index bebb844d74..40c697a433 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.ISONonlinearThermal.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.ISONonlinearThermal.md @@ -1,4 +1,5 @@ -# Class ISONonlinearThermal +# Class ISONonlinearThermal + Namespace: [VM.Managed.Material](VM.Managed.Material.md) Assembly: VMObjBase.dll @@ -11,9 +12,9 @@ public class ISONonlinearThermal : MaterialBase, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [SubEntity](VM.Managed.SubEntity.md) ← @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -162,7 +163,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -201,7 +202,7 @@ public ISONonlinearThermal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the isotropic material. @@ -217,7 +218,7 @@ public ExpressionValueVariable DampingRatio { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DisableHScaleFactor @@ -230,7 +231,7 @@ public bool DisableHScaleFactor { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### HeatCapacityMatrix @@ -254,7 +255,7 @@ public ExpressionValueVariable PoissonRatio { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ReferenceTemperature @@ -266,7 +267,7 @@ public ExpressionValueVariable ReferenceTemperature { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### SpecificHeatSpline @@ -390,7 +391,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.Material.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.Material.md index 2b2a860ce8..42e7b4218c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.Material.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.Material.md @@ -1,4 +1,5 @@ -# Class Material +# Class Material + Namespace: [VM.Managed.Material](VM.Managed.Material.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class Material : IMaterial #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Material](VM.Managed.Material.Material.md) #### Implements @@ -46,7 +47,7 @@ public virtual double DensityValue { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Index @@ -58,5 +59,5 @@ public virtual uint Index { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.MaterialBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.MaterialBase.md index 90f23389b6..a4c5f67875 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.MaterialBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.MaterialBase.md @@ -1,4 +1,5 @@ -# Class MaterialBase +# Class MaterialBase + Namespace: [VM.Managed.Material](VM.Managed.Material.md) Assembly: VMObjBase.dll @@ -11,9 +12,9 @@ public abstract class MaterialBase : SubEntity, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [SubEntity](VM.Managed.SubEntity.md) ← @@ -34,7 +35,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -159,7 +160,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -198,7 +199,7 @@ public MaterialBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the material base. @@ -226,7 +227,7 @@ public ExpressionValueVariable Density { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DensityValue @@ -238,7 +239,7 @@ public double DensityValue { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Index @@ -251,7 +252,7 @@ public uint Index { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### ReferenceType @@ -263,7 +264,7 @@ public string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -291,7 +292,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -309,7 +310,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -323,7 +324,7 @@ public void SetID(uint nID) #### Parameters -`nID` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nID` uint The ID. @@ -337,7 +338,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.MooneyRivlin.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.MooneyRivlin.md index 7304229426..404078e1c8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.MooneyRivlin.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.MooneyRivlin.md @@ -1,4 +1,5 @@ -# Class MooneyRivlin +# Class MooneyRivlin + Namespace: [VM.Managed.Material](VM.Managed.Material.md) Assembly: VMObjBase.dll @@ -11,9 +12,9 @@ public class MooneyRivlin : HyperElastic, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [SubEntity](VM.Managed.SubEntity.md) ← @@ -28,7 +29,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -169,7 +170,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -208,7 +209,7 @@ public MooneyRivlin(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the mooney-rivlin material. @@ -224,7 +225,7 @@ public ExpressionValueVariable C01 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### C10 @@ -236,7 +237,7 @@ public ExpressionValueVariable C10 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### D @@ -248,7 +249,7 @@ public ExpressionValueVariable D { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -276,7 +277,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -290,7 +291,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.NeoHookean.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.NeoHookean.md index 29a3509a1c..12f97a00a0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.NeoHookean.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.NeoHookean.md @@ -1,4 +1,5 @@ -# Class NeoHookean +# Class NeoHookean + Namespace: [VM.Managed.Material](VM.Managed.Material.md) Assembly: VMObjBase.dll @@ -11,9 +12,9 @@ public class NeoHookean : HyperElastic, IObservableObject, IDisposableObject, IL #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [SubEntity](VM.Managed.SubEntity.md) ← @@ -28,7 +29,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -169,7 +170,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -208,7 +209,7 @@ public NeoHookean(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the neo-hookean material. @@ -224,7 +225,7 @@ public ExpressionValueVariable C10 { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### D @@ -236,7 +237,7 @@ public ExpressionValueVariable D { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -264,7 +265,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -278,7 +279,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.Ogden.Contents.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.Ogden.Contents.md index 94764f0a47..36a6ab982d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.Ogden.Contents.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.Ogden.Contents.md @@ -1,4 +1,5 @@ -# Class Ogden.Contents +# Class Ogden.Contents + Namespace: [VM.Managed.Material](VM.Managed.Material.md) Assembly: VMObjBase.dll @@ -12,9 +13,9 @@ public class Ogden.Contents : LinkContainer, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Ogden.Contents](VM.Managed.Material.Ogden.Contents.md) @@ -76,7 +77,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -117,7 +118,7 @@ public ExpressionValueVariable Alpha { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### D @@ -129,7 +130,7 @@ public ExpressionValueVariable D { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Mu @@ -141,5 +142,5 @@ public ExpressionValueVariable Mu { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.Ogden.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.Ogden.md index 3284c8ae03..3ec9072fd3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.Ogden.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.Ogden.md @@ -1,4 +1,5 @@ -# Class Ogden +# Class Ogden + Namespace: [VM.Managed.Material](VM.Managed.Material.md) Assembly: VMObjBase.dll @@ -11,9 +12,9 @@ public class Ogden : HyperElastic, IObservableObject, IDisposableObject, ILinkab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [SubEntity](VM.Managed.SubEntity.md) ← @@ -28,7 +29,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -169,7 +170,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -208,7 +209,7 @@ public Ogden(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the ogden material. @@ -236,7 +237,7 @@ public int CountOfContents { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### this\[int\] @@ -276,7 +277,7 @@ protected override void LinkRequestDestroying(object objNotifier, LinkEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -294,7 +295,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -308,7 +309,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -322,7 +323,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.Ortho.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.Ortho.md index 2bfe5f42c7..a92106132c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.Ortho.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.Ortho.md @@ -1,4 +1,5 @@ -# Class Ortho +# Class Ortho + Namespace: [VM.Managed.Material](VM.Managed.Material.md) Assembly: VMObjBase.dll @@ -11,9 +12,9 @@ public class Ortho : MaterialBase, IObservableObject, IDisposableObject, ILinkab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [SubEntity](VM.Managed.SubEntity.md) ← @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -162,7 +163,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -201,7 +202,7 @@ public Ortho(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the orthotropic material. @@ -217,7 +218,7 @@ public ExpressionValueVariable DampingRatio { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DisableHScaleFactor @@ -230,7 +231,7 @@ public bool DisableHScaleFactor { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PoissonRatioXY @@ -242,7 +243,7 @@ public ExpressionValueVariable PoissonRatioXY { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PoissonRatioXZ @@ -254,7 +255,7 @@ public ExpressionValueVariable PoissonRatioXZ { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PoissonRatioYZ @@ -266,7 +267,7 @@ public ExpressionValueVariable PoissonRatioYZ { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ShearModulusXY @@ -278,7 +279,7 @@ public ExpressionValueVariable ShearModulusXY { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ShearModulusXZ @@ -290,7 +291,7 @@ public ExpressionValueVariable ShearModulusXZ { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ShearModulusYZ @@ -302,7 +303,7 @@ public ExpressionValueVariable ShearModulusYZ { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### YoungsModulusX @@ -314,7 +315,7 @@ public ExpressionValueVariable YoungsModulusX { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### YoungsModulusY @@ -326,7 +327,7 @@ public ExpressionValueVariable YoungsModulusY { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### YoungsModulusZ @@ -338,7 +339,7 @@ public ExpressionValueVariable YoungsModulusZ { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -366,7 +367,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -384,7 +385,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -398,7 +399,7 @@ public void SetDisableHScaleFactor(bool bFactor) #### Parameters -`bFactor` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bFactor` bool The [disable Hscale] factor. @@ -412,7 +413,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.Plastic.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.Plastic.md index b57a62337f..de52e134a4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.Plastic.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.Plastic.md @@ -1,4 +1,5 @@ -# Class Plastic +# Class Plastic + Namespace: [VM.Managed.Material](VM.Managed.Material.md) Assembly: VMObjBase.dll @@ -11,9 +12,9 @@ public abstract class Plastic : SubEntity, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [SubEntity](VM.Managed.SubEntity.md) ← @@ -31,7 +32,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -156,7 +157,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -195,7 +196,7 @@ public Plastic(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the plastic material. @@ -223,7 +224,7 @@ public double DensityValue { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### HardeningParameter @@ -235,7 +236,7 @@ public ExpressionValueVariable HardeningParameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### HardeningType @@ -260,7 +261,7 @@ public uint Index { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### InitialYieldingStress @@ -272,7 +273,7 @@ public ExpressionValueVariable InitialYieldingStress { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Material @@ -296,7 +297,7 @@ public string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### \_Material @@ -344,7 +345,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -362,7 +363,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -376,7 +377,7 @@ public void SetID(uint nID) #### Parameters -`nID` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nID` uint The ID. @@ -390,7 +391,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.PlasticBilinear.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.PlasticBilinear.md index 7e58c1184c..75bdebff04 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.PlasticBilinear.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.PlasticBilinear.md @@ -1,4 +1,5 @@ -# Class PlasticBilinear +# Class PlasticBilinear + Namespace: [VM.Managed.Material](VM.Managed.Material.md) Assembly: VMObjBase.dll @@ -11,9 +12,9 @@ public class PlasticBilinear : Plastic, IObservableObject, IDisposableObject, IL #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [SubEntity](VM.Managed.SubEntity.md) ← @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -167,7 +168,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -206,7 +207,7 @@ public PlasticBilinear(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the plastic bi-linear material. @@ -222,7 +223,7 @@ public ExpressionValueVariable PlasticHardeningModulus { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -248,11 +249,11 @@ public static void CheckLinearMaterial(ISO linearMaterial, string strName, doubl The linear material. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The plastic material name. -`dYValue` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dYValue` double The Et value. @@ -280,7 +281,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -294,7 +295,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.PlasticMultilinear.Contents.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.PlasticMultilinear.Contents.md index 9e0c9d3cd1..d0aff358fa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.PlasticMultilinear.Contents.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.PlasticMultilinear.Contents.md @@ -1,4 +1,5 @@ -# Class PlasticMultilinear.Contents +# Class PlasticMultilinear.Contents + Namespace: [VM.Managed.Material](VM.Managed.Material.md) Assembly: VMObjBase.dll @@ -13,9 +14,9 @@ public class PlasticMultilinear.Contents : LinkContainer, IObservableObject, IDi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [PlasticMultilinear.Contents](VM.Managed.Material.PlasticMultilinear.Contents.md) @@ -77,7 +78,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -118,7 +119,7 @@ public ExpressionValueVariable Strain { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Stress @@ -130,7 +131,7 @@ public ExpressionValueVariable Stress { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -144,7 +145,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.PlasticMultilinear.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.PlasticMultilinear.md index cf9e2a2010..4b92e86cf6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.PlasticMultilinear.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.PlasticMultilinear.md @@ -1,4 +1,5 @@ -# Class PlasticMultilinear +# Class PlasticMultilinear + Namespace: [VM.Managed.Material](VM.Managed.Material.md) Assembly: VMObjBase.dll @@ -11,9 +12,9 @@ public class PlasticMultilinear : Plastic, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [SubEntity](VM.Managed.SubEntity.md) ← @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -167,7 +168,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -206,7 +207,7 @@ public PlasticMultilinear(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the plastic multi-linear material. @@ -260,7 +261,7 @@ public static void CheckLinearMaterial(ISO linearMaterial, string strName, ISpli The linear material. -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string The plastic material name. @@ -278,7 +279,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -306,7 +307,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -320,7 +321,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.md index 3673028b07..7b4504230e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Material.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.Material +# Namespace VM.Managed.Material + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.MatrixBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.MatrixBase.md index d8c0a94cfa..b3089aa156 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.MatrixBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.MatrixBase.md @@ -1,4 +1,5 @@ -# Class MatrixBase +# Class MatrixBase + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class MatrixBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [MatrixBase](VM.Managed.MatrixBase.md) #### Derived diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.MeshFreeAnalysisLevel.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.MeshFreeAnalysisLevel.md index ea476fed6e..e9e040a0ab 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.MeshFreeAnalysisLevel.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.MeshFreeAnalysisLevel.md @@ -1,4 +1,5 @@ -# Class MeshFreeAnalysisLevel +# Class MeshFreeAnalysisLevel + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -12,9 +13,9 @@ public class MeshFreeAnalysisLevel : LinkContainer, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [MeshFreeAnalysisLevel](VM.Managed.MeshFreeAnalysisLevel.md) @@ -76,7 +77,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -107,7 +108,7 @@ public MeshFreeAnalysisLevel(uint level) #### Parameters -`level` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`level` uint Level Number. @@ -131,7 +132,7 @@ public uint Level { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### LocalRefinementRatio @@ -143,7 +144,7 @@ public byte LocalRefinementRatio { get; set; } #### Property Value - [byte](https://learn.microsoft.com/dotnet/api/system.byte) + byte ### NodeCount @@ -155,7 +156,7 @@ public uint NodeCount { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### NodeDistance @@ -167,7 +168,7 @@ public double NodeDistance { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UseThisLevel @@ -179,5 +180,5 @@ public bool UseThisLevel { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.MeshFreeAnalysisLevelGroup.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.MeshFreeAnalysisLevelGroup.md index 9e66f32a2f..5ffa53a90e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.MeshFreeAnalysisLevelGroup.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.MeshFreeAnalysisLevelGroup.md @@ -1,4 +1,5 @@ -# Class MeshFreeAnalysisLevelGroup +# Class MeshFreeAnalysisLevelGroup + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -12,9 +13,9 @@ public class MeshFreeAnalysisLevelGroup : LinkContainer, IObservableObject, IDis #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [MeshFreeAnalysisLevelGroup](VM.Managed.MeshFreeAnalysisLevelGroup.md) @@ -76,7 +77,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -107,7 +108,7 @@ public MeshFreeAnalysisLevelGroup(uint levelCount) #### Parameters -`levelCount` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`levelCount` uint ### MeshFreeAnalysisLevelGroup\(\) @@ -149,7 +150,7 @@ public int Count { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### UseLocalRefinement @@ -161,7 +162,7 @@ public bool UseLocalRefinement { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### this\[int\] diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.MeshFreeAnalysisLevelInfoCli.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.MeshFreeAnalysisLevelInfoCli.md index aebe9731a0..b2736aa9a1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.MeshFreeAnalysisLevelInfoCli.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.MeshFreeAnalysisLevelInfoCli.md @@ -1,4 +1,5 @@ -# Class MeshFreeAnalysisLevelInfoCli +# Class MeshFreeAnalysisLevelInfoCli + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class MeshFreeAnalysisLevelInfoCli #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [MeshFreeAnalysisLevelInfoCli](VM.Managed.MeshFreeAnalysisLevelInfoCli.md) #### Extension Methods @@ -40,15 +41,15 @@ public static bool MeshFreeNodeInformation(VectorBase vecBoundary, double dVolum `vecBoundary` [VectorBase](VM.Managed.VectorBase.md) -`dVolume` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVolume` double -`nMaxLevel` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nMaxLevel` int -`lstNodeDistance` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> +`lstNodeDistance` List -`lstNodeCount` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[uint](https://learn.microsoft.com/dotnet/api/system.uint32)\> +`lstNodeCount` List #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.MeshFreeGeometryType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.MeshFreeGeometryType.md index 35b1005545..8073901091 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.MeshFreeGeometryType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.MeshFreeGeometryType.md @@ -1,4 +1,5 @@ -# Enum MeshFreeGeometryType +# Enum MeshFreeGeometryType + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.MeshFreeMeshType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.MeshFreeMeshType.md index 74c20f0607..454d9a15ac 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.MeshFreeMeshType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.MeshFreeMeshType.md @@ -1,4 +1,5 @@ -# Enum MeshFreeMeshType +# Enum MeshFreeMeshType + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.MeshFreeOutputType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.MeshFreeOutputType.md index f2e41b2bba..9b2775538b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.MeshFreeOutputType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.MeshFreeOutputType.md @@ -1,4 +1,5 @@ -# Enum MeshFreeOutputType +# Enum MeshFreeOutputType + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.MesherHelper.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.MesherHelper.md index dd4549094f..ca13da6359 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.MesherHelper.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.MesherHelper.md @@ -1,4 +1,5 @@ -# Class MesherHelper +# Class MesherHelper + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class MesherHelper #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [MesherHelper](VM.Managed.MesherHelper.md) #### Extension Methods @@ -32,7 +33,7 @@ public MesherHelper(string strMesherPath) #### Parameters -`strMesherPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMesherPath` string The string mesher path. @@ -47,7 +48,7 @@ protected virtual void Dispose(bool A_0) #### Parameters -`A_0` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`A_0` bool ### Dispose\(\) @@ -73,9 +74,9 @@ public void GetTetraPosAndConn(List lstPos, List lstConty) #### Parameters -`lstPos` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[VectorBase](VM.Managed.VectorBase.md)\> +`lstPos` List<[VectorBase](VM.Managed.VectorBase.md)\> -`lstConty` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[uint](https://learn.microsoft.com/dotnet/api/system.uint32)\> +`lstConty` List ### GetTetraPosAndConn\(vector<\_VM\_VECTOR,std::allocator<\_VM\_VECTOR\> \>\*, vector \>\*\) @@ -85,9 +86,9 @@ public void GetTetraPosAndConn(vector<_VM_VECTOR,std::allocator<_VM_VECTOR> >* v #### Parameters -`vecPos` [vector<\_VM\_VECTOR,std::allocator<\_VM\_VECTOR\> \>](std.vector<\_VM\_VECTOR,std.md)\* +`vecPos` vector<\_VM\_VECTOR,std::allocator<\_VM\_VECTOR\> \>\* -`vecConty` [vector \>](std.vector \>\* ### MesherExecute\(basic\_string,std::allocator \>\*, vector<\_VM\_VECTOR,std::allocator<\_VM\_VECTOR\> \>\*, vector \>\*, bool, bool, basic\_string,std::allocator \>\*\) @@ -97,21 +98,21 @@ public bool MesherExecute(basic_string,std::al #### Parameters -`strNasPath` [basic\_string,std::allocator \>](std.basic\_string,std::allocator \>\* -`arvPosition` [vector<\_VM\_VECTOR,std::allocator<\_VM\_VECTOR\> \>](std.vector<\_VM\_VECTOR,std.md)\* +`arvPosition` vector<\_VM\_VECTOR,std::allocator<\_VM\_VECTOR\> \>\* -`arConnectivities` [vector \>](std.vector \>\* -`bUseSurfRemesh` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseSurfRemesh` bool -`bMesher` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bMesher` bool -`strOutputType` [basic\_string,std::allocator \>](std.basic\_string,std::allocator \>\* #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MesherExecuteCLR\(string, List, List, bool, bool, string\) @@ -121,21 +122,21 @@ public bool MesherExecuteCLR(string strNasPathCLR, List lstPosition, #### Parameters -`strNasPathCLR` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strNasPathCLR` string -`lstPosition` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[VectorBase](VM.Managed.VectorBase.md)\> +`lstPosition` List<[VectorBase](VM.Managed.VectorBase.md)\> -`lstConnectivities` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[uint](https://learn.microsoft.com/dotnet/api/system.uint32)\> +`lstConnectivities` List -`bUseSurfRemesh` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseSurfRemesh` bool -`bMesher` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bMesher` bool -`strOutputTypeCLR` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOutputTypeCLR` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RunTetraMesher\(vector<\_VM\_VECTOR,std::allocator<\_VM\_VECTOR\> \>\*, vector \>\*\) @@ -145,13 +146,13 @@ public bool RunTetraMesher(vector<_VM_VECTOR,std::allocator<_VM_VECTOR> >* vecPo #### Parameters -`vecPosTria` [vector<\_VM\_VECTOR,std::allocator<\_VM\_VECTOR\> \>](std.vector<\_VM\_VECTOR,std.md)\* +`vecPosTria` vector<\_VM\_VECTOR,std::allocator<\_VM\_VECTOR\> \>\* -`vecConnTria` [vector \>](std.vector \>\* #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RunTetraMesherCLR\(List, List\) @@ -161,11 +162,11 @@ public bool RunTetraMesherCLR(List vecPosTria, List vecConnTri #### Parameters -`vecPosTria` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[VectorBase](VM.Managed.VectorBase.md)\> +`vecPosTria` List<[VectorBase](VM.Managed.VectorBase.md)\> -`vecConnTria` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[uint](https://learn.microsoft.com/dotnet/api/system.uint32)\> +`vecConnTria` List #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ModifiedResult.ModifiedType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ModifiedResult.ModifiedType.md index 2247bc25a0..58bf905fd0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ModifiedResult.ModifiedType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ModifiedResult.ModifiedType.md @@ -1,4 +1,5 @@ -# Enum ModifiedResult.ModifiedType +# Enum ModifiedResult.ModifiedType + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ModifiedResult.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ModifiedResult.md index 739b033d13..b01c0cbba4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ModifiedResult.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ModifiedResult.md @@ -1,4 +1,5 @@ -# Class ModifiedResult +# Class ModifiedResult + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class ModifiedResult #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ModifiedResult](VM.Managed.ModifiedResult.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.NameChangedEventArgs.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.NameChangedEventArgs.md index fc871beb21..db8dcc965e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.NameChangedEventArgs.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.NameChangedEventArgs.md @@ -1,4 +1,5 @@ -# Class NameChangedEventArgs +# Class NameChangedEventArgs + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public sealed class NameChangedEventArgs : LinkEventArgs #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) ← +object ← +EventArgs ← [LinkEventArgs](VM.Managed.LinkEventArgs.md) ← [NameChangedEventArgs](VM.Managed.NameChangedEventArgs.md) @@ -47,7 +48,7 @@ public NameChangedEventArgs(string strOldName, LinkEventArgs innerArgs, object o #### Parameters -`strOldName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOldName` string The previous name information. @@ -55,7 +56,7 @@ The previous name information. The inner event. -`obEventPrevious` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obEventPrevious` object The previous linked object. @@ -69,7 +70,7 @@ public NameChangedEventArgs(string strOldName) #### Parameters -`strOldName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOldName` string The previous name information. @@ -85,5 +86,5 @@ public string OldName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.NameToEntityWhenAddDocExeption.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.NameToEntityWhenAddDocExeption.md index 7d208bd890..6aae06072b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.NameToEntityWhenAddDocExeption.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.NameToEntityWhenAddDocExeption.md @@ -1,4 +1,5 @@ -# Class NameToEntityWhenAddDocExeption +# Class NameToEntityWhenAddDocExeption + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public class NameToEntityWhenAddDocExeption : Exception #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Exception](https://learn.microsoft.com/dotnet/api/system.exception) ← +object ← +Exception ← [NameToEntityWhenAddDocExeption](VM.Managed.NameToEntityWhenAddDocExeption.md) #### Extension Methods @@ -33,7 +34,7 @@ public NameToEntityWhenAddDocExeption(string strMessage) #### Parameters -`strMessage` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMessage` string The error message. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.NameToEntityWhenRenameExeption.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.NameToEntityWhenRenameExeption.md index e09f158d30..af6f24eab7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.NameToEntityWhenRenameExeption.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.NameToEntityWhenRenameExeption.md @@ -1,4 +1,5 @@ -# Class NameToEntityWhenRenameExeption +# Class NameToEntityWhenRenameExeption + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public class NameToEntityWhenRenameExeption : Exception #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Exception](https://learn.microsoft.com/dotnet/api/system.exception) ← +object ← +Exception ← [NameToEntityWhenRenameExeption](VM.Managed.NameToEntityWhenRenameExeption.md) #### Extension Methods @@ -33,7 +34,7 @@ public NameToEntityWhenRenameExeption(string strMessage) #### Parameters -`strMessage` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMessage` string The error message. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.NavigationKeys.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.NavigationKeys.md index 63e43fcd6b..c299438f71 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.NavigationKeys.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.NavigationKeys.md @@ -1,4 +1,5 @@ -# Enum NavigationKeys +# Enum NavigationKeys + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.NotifyReason.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.NotifyReason.md index 95ac4dba7c..467e2374b8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.NotifyReason.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.NotifyReason.md @@ -1,4 +1,5 @@ -# Enum NotifyReason +# Enum NotifyReason + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.NullReferenceWhenAddDocExeption.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.NullReferenceWhenAddDocExeption.md index 7ffb006fe5..5614b2b0c5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.NullReferenceWhenAddDocExeption.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.NullReferenceWhenAddDocExeption.md @@ -1,4 +1,5 @@ -# Class NullReferenceWhenAddDocExeption +# Class NullReferenceWhenAddDocExeption + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public class NullReferenceWhenAddDocExeption : Exception #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Exception](https://learn.microsoft.com/dotnet/api/system.exception) ← +object ← +Exception ← [NullReferenceWhenAddDocExeption](VM.Managed.NullReferenceWhenAddDocExeption.md) #### Extension Methods @@ -33,7 +34,7 @@ public NullReferenceWhenAddDocExeption(string strMessage) #### Parameters -`strMessage` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMessage` string The error message. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.NullReferenceWhenRemoveDocExeption.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.NullReferenceWhenRemoveDocExeption.md index 5e98cb763f..8fd4127126 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.NullReferenceWhenRemoveDocExeption.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.NullReferenceWhenRemoveDocExeption.md @@ -1,4 +1,5 @@ -# Class NullReferenceWhenRemoveDocExeption +# Class NullReferenceWhenRemoveDocExeption + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public class NullReferenceWhenRemoveDocExeption : Exception #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Exception](https://learn.microsoft.com/dotnet/api/system.exception) ← +object ← +Exception ← [NullReferenceWhenRemoveDocExeption](VM.Managed.NullReferenceWhenRemoveDocExeption.md) #### Extension Methods @@ -33,7 +34,7 @@ public NullReferenceWhenRemoveDocExeption(string strMessage) #### Parameters -`strMessage` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMessage` string The error message. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.NullReferenceWhenRenameExeption.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.NullReferenceWhenRenameExeption.md index 041ac3016a..a42d38cf12 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.NullReferenceWhenRenameExeption.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.NullReferenceWhenRenameExeption.md @@ -1,4 +1,5 @@ -# Class NullReferenceWhenRenameExeption +# Class NullReferenceWhenRenameExeption + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public class NullReferenceWhenRenameExeption : Exception #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Exception](https://learn.microsoft.com/dotnet/api/system.exception) ← +object ← +Exception ← [NullReferenceWhenRenameExeption](VM.Managed.NullReferenceWhenRenameExeption.md) #### Extension Methods @@ -33,7 +34,7 @@ public NullReferenceWhenRenameExeption(string strMessage) #### Parameters -`strMessage` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMessage` string The error message. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OMatrix.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OMatrix.md index ce81c8b46f..48c1367de7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OMatrix.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OMatrix.md @@ -1,4 +1,5 @@ -# Class OMatrix +# Class OMatrix + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public sealed class OMatrix : MatrixBase, IOMatrix #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [MatrixBase](VM.Managed.MatrixBase.md) ← [OMatrix](VM.Managed.OMatrix.md) @@ -37,7 +38,7 @@ public OMatrix(double[] arr) #### Parameters -`arr` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arr` double\[\] The data of orientation. @@ -93,9 +94,9 @@ protected OMatrix(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext ## Properties @@ -109,7 +110,7 @@ public virtual double[] Array { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### XVector @@ -155,7 +156,7 @@ public double this[uint r, uint c] { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### this\[Coordinate, Coordinate\] @@ -165,7 +166,7 @@ public double this[Coordinate r, Coordinate c] { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### this\[uint\] @@ -197,7 +198,7 @@ public object Clone() #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### GetArray\(\) @@ -207,7 +208,7 @@ public double[] GetArray() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GetDirectionVector\(uint\) @@ -219,7 +220,7 @@ public VectorBase GetDirectionVector(uint axis) #### Parameters -`axis` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`axis` uint The type of axis. @@ -257,9 +258,9 @@ public void GetObjectData(SerializationInfo info, StreamingContext __unnamed001) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo -`__unnamed001` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`__unnamed001` StreamingContext ### GetSchema\(\) @@ -269,7 +270,7 @@ public XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema ### Initialize\(\) @@ -295,7 +296,7 @@ public void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader ### RotateAxisDeg\(VectorBase, double\) @@ -311,7 +312,7 @@ public void RotateAxisDeg(VectorBase axis, double dAngle) The rotation axis. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -325,11 +326,11 @@ public void RotateAxisDeg(uint nCoord, double dAngle) #### Parameters -`nCoord` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nCoord` uint The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -347,7 +348,7 @@ public void RotateAxisDeg(Coordinate c, double dAngle) The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -365,7 +366,7 @@ public void RotateAxisRad(VectorBase axis, double dAngle) The rotation axis. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -379,11 +380,11 @@ public void RotateAxisRad(uint nCoord, double dAngle) #### Parameters -`nCoord` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nCoord` uint The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -401,7 +402,7 @@ public void RotateAxisRad(Coordinate c, double dAngle) The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -415,7 +416,7 @@ public void RotateXDeg(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -429,7 +430,7 @@ public void RotateXRad(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -443,7 +444,7 @@ public void RotateYDeg(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -457,7 +458,7 @@ public void RotateYRad(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -471,7 +472,7 @@ public void RotateZDeg(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -485,7 +486,7 @@ public void RotateZRad(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -499,7 +500,7 @@ public void Set(double[] arr) #### Parameters -`arr` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arr` double\[\] The data of orientation @@ -527,7 +528,7 @@ public void SetOrientation(double[] arr) #### Parameters -`arr` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arr` double\[\] The data of orientation. @@ -581,15 +582,15 @@ public void SetOrientationEADeg(RotationAxes ea, double dAlpha, double dBeta, do The type of euler angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of euler angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of euler angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of euler angle. @@ -607,15 +608,15 @@ public void SetOrientationEARad(RotationAxes ea, double dAlpha, double dBeta, do The type of euler angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of euler angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of euler angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of euler angle. @@ -633,15 +634,15 @@ public void SetOrientationFixedAngleDeg(RotationAxes ea, double dAlpha, double d The type of fixed angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of fixed angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of fixed angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of fixed angle. @@ -659,15 +660,15 @@ public void SetOrientationFixedAngleRad(RotationAxes ea, double dAlpha, double d The type of fixed angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of fixed angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of fixed angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of fixed angle. @@ -687,7 +688,7 @@ public void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter ### op\_MultiplicationAssignment\(VectorBase, OMatrix\) @@ -737,7 +738,7 @@ public static bool operator ==(OMatrix mat1, OMatrix mat2) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### implicit operator OMatrix\(OMatrix\) @@ -781,7 +782,7 @@ public static bool operator !=(OMatrix mat1, OMatrix mat2) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### operator \*\(VectorBase, OMatrix\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Object-1.EventCoreSerializeHelper.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Object-1.EventCoreSerializeHelper.md index 3fa3051b9c..c55fa7753e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Object-1.EventCoreSerializeHelper.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Object-1.EventCoreSerializeHelper.md @@ -1,4 +1,5 @@ -# Class Object.EventCoreSerializeHelper +# Class Object.EventCoreSerializeHelper + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class Object.EventCoreSerializeHelper #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Object.EventCoreSerializeHelper](VM.Managed.Object\-1.EventCoreSerializeHelper.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Object-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Object-1.md index 048c39797f..7d00001642 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Object-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Object-1.md @@ -1,4 +1,5 @@ -# Class Object +# Class Object + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -15,9 +16,9 @@ public abstract class Object : ObjectBase, IObservableObject, IDispo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) @@ -35,7 +36,7 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), [IAttributeContainer](VM.Managed.IAttributeContainer.md) #### Inherited Members @@ -121,7 +122,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -152,11 +153,11 @@ protected Object(SerializationInfo info, StreamingContext __unnamed001) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`__unnamed001` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`__unnamed001` StreamingContext ### Object\(\) @@ -176,11 +177,11 @@ protected Object(string strProxyName, string strBuildInfo) #### Parameters -`strProxyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strProxyName` string Name of the proxy. -`strBuildInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBuildInfo` string The build information. @@ -194,15 +195,15 @@ protected Object(string strProxyName, string strBuildInfo, bool IsBuilding) #### Parameters -`strProxyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strProxyName` string Name of the proxy. -`strBuildInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBuildInfo` string The build information. -`IsBuilding` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`IsBuilding` bool whether or not building. @@ -268,11 +269,11 @@ protected override void CustomGetObjectData(SerializationInfo info, StreamingCon #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`__unnamed001` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`__unnamed001` StreamingContext ### GetKey\(\) @@ -284,7 +285,7 @@ public UIntPtr GetKey() #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### Initialize\(ConvertFactor\) @@ -310,7 +311,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -322,7 +323,7 @@ public void OnDeserializedCore(object eventCore) #### Parameters -`eventCore` [object](https://learn.microsoft.com/dotnet/api/system.object) +`eventCore` object ### RollbackEvent\(\) @@ -340,7 +341,7 @@ public override void SetIconColor(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ObjectBase.ConvertKey.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ObjectBase.ConvertKey.md index 62feead4b5..7088242f77 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ObjectBase.ConvertKey.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ObjectBase.ConvertKey.md @@ -1,4 +1,5 @@ -# Struct ObjectBase.ConvertKey +# Struct ObjectBase.ConvertKey + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -21,7 +22,7 @@ public ConvertKey(ulong key) #### Parameters -`key` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`key` ulong The key. @@ -35,7 +36,7 @@ public ConvertKey(UIntPtr ptrKey) #### Parameters -`ptrKey` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`ptrKey` UIntPtr The key. @@ -49,7 +50,7 @@ public XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema ### ReadXml\(XmlReader\) @@ -59,7 +60,7 @@ public void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader ### ToString\(\) @@ -69,7 +70,7 @@ public override sealed string ToString() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### WriteXml\(XmlWriter\) @@ -79,7 +80,7 @@ public void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter ## Operators @@ -99,7 +100,7 @@ The key. #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### implicit operator ConvertKey\(UIntPtr\) @@ -111,7 +112,7 @@ public static implicit operator ObjectBase.ConvertKey(UIntPtr ptrKey) #### Parameters -`ptrKey` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`ptrKey` UIntPtr The key. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ObjectBase.Destroy.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ObjectBase.Destroy.md index 4c8fa0fc46..f541c4bfd1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ObjectBase.Destroy.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ObjectBase.Destroy.md @@ -1,4 +1,5 @@ -# Struct ObjectBase.Destroy +# Struct ObjectBase.Destroy + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ObjectBase.None.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ObjectBase.None.md index 22f9cd0fe3..9ea4e8d18b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ObjectBase.None.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ObjectBase.None.md @@ -1,4 +1,5 @@ -# Struct ObjectBase.None +# Struct ObjectBase.None + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ObjectBase.Update.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ObjectBase.Update.md index e02fd2004c..9f69867108 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ObjectBase.Update.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ObjectBase.Update.md @@ -1,4 +1,5 @@ -# Struct ObjectBase.Update +# Struct ObjectBase.Update + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ObjectBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ObjectBase.md index 5a4ae92483..cc7724a303 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ObjectBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ObjectBase.md @@ -1,4 +1,5 @@ -# Class ObjectBase +# Class ObjectBase + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public abstract class ObjectBase : LinkableBase, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) #### Derived @@ -34,11 +35,11 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs) #### Inherited Members -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -77,11 +78,11 @@ protected ObjectBase(SerializationInfo info, StreamingContext __unnamed001) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`__unnamed001` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`__unnamed001` StreamingContext ## Properties @@ -95,7 +96,7 @@ virtual bool ClearChildInfoBeforeDeserialize { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Container @@ -143,7 +144,7 @@ virtual bool IsChildExternable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsExternable @@ -155,7 +156,7 @@ virtual bool IsExternable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### KernelKey @@ -189,7 +190,7 @@ UIntPtr KeyImpl { get; } #### Property Value - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### ObjectState @@ -237,7 +238,7 @@ protected bool SkipModified { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TopologyEntityTypeName @@ -249,7 +250,7 @@ public virtual string TopologyEntityTypeName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UntypedEventCore @@ -275,7 +276,7 @@ protected void AddPostDeserialize(StreamingContext context) #### Parameters -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The . @@ -287,7 +288,7 @@ protected virtual void CheckAndUpdateLink(HashSet lstObj) #### Parameters -`lstObj` [HashSet](https://learn.microsoft.com/dotnet/api/system.collections.generic.hashset\-1)<[ObjectBase](VM.Managed.ObjectBase.md)\> +`lstObj` HashSet<[ObjectBase](VM.Managed.ObjectBase.md)\> ### ConnectProxy\(\) @@ -303,7 +304,7 @@ protected void CreateEntityWhenUpdateContents(Action action) #### Parameters -`action` [Action](https://learn.microsoft.com/dotnet/api/system.action) +`action` Action ### CustomGetObjectData\(SerializationInfo, StreamingContext\) @@ -315,11 +316,11 @@ protected virtual void CustomGetObjectData(SerializationInfo info, StreamingCont #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. @@ -333,7 +334,7 @@ public void DestroyObject(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The event notifier. @@ -372,7 +373,7 @@ protected override void Dispose(bool A_0) #### Parameters -`A_0` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`A_0` bool ### DisposeManagedResources\(\) @@ -400,7 +401,7 @@ public static ObjectBase FindObjectOnXmlDeserialize(string strFullName) #### Parameters -`strFullName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFullName` string The fullname. @@ -426,7 +427,7 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -438,7 +439,7 @@ public virtual void GetArgumentList(LinkedList lstObj) #### Parameters -`lstObj` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1)<[ObjectBase](VM.Managed.ObjectBase.md)\> +`lstObj` LinkedList<[ObjectBase](VM.Managed.ObjectBase.md)\> ### GetDestroyEventExtraData\(\) @@ -448,7 +449,7 @@ protected virtual object GetDestroyEventExtraData() #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### GetObjectByKey\(UIntPtr\) @@ -460,7 +461,7 @@ public static ObjectBase GetObjectByKey(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr The key. @@ -480,7 +481,7 @@ virtual List GetTargetListForUpdate() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### Initialize\(ConvertFactor\) @@ -516,7 +517,7 @@ The array B. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Type Parameters @@ -530,13 +531,13 @@ public static bool IsEqualList(List lstA, List lstB) #### Parameters -`lstA` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> +`lstA` List -`lstB` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> +`lstB` List #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsSerializableEvent\(Delegate\) @@ -548,13 +549,13 @@ protected virtual bool IsSerializableEvent(Delegate del) #### Parameters -`del` [Delegate](https://learn.microsoft.com/dotnet/api/system.delegate) +`del` Delegate The delegate. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if is [serializable event] [the specified delegate]; otherwise, false. @@ -568,7 +569,7 @@ protected virtual void LinkAddedToDocument(object objNotifier, AddToDocEventArgs #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -586,7 +587,7 @@ protected virtual void LinkAddedToDocumentCore(IOwned owner, bool bBackup) `owner` IOwned -`bBackup` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bBackup` bool ### LinkRemovedFromDocument\(object, RemoveFromDocEventArgs\) @@ -598,7 +599,7 @@ protected virtual void LinkRemovedFromDocument(object objNotifier, RemoveFromDoc #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -616,7 +617,7 @@ protected virtual void LinkRequestDestroy(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -634,7 +635,7 @@ protected virtual void LinkRequestDestroying(object objNotifier, LinkEventArgs a #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -652,7 +653,7 @@ protected virtual void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -670,7 +671,7 @@ protected virtual void LinkRequestUpdating(object objNotifier, LinkEventArgs arg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -688,7 +689,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -702,9 +703,9 @@ protected virtual void OnLinkReserved(ILink A_0, object A_1, EventArgs A_2) `A_0` [ILink](VM.Managed.ILink.md) -`A_1` [object](https://learn.microsoft.com/dotnet/api/system.object) +`A_1` object -`A_2` [EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) +`A_2` EventArgs ### PostAddToDocument\(\) @@ -765,7 +766,7 @@ public virtual void SetContainer(IOwned obOwner, bool bBackup) `obOwner` IOwned -`bBackup` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bBackup` bool ### SetFlagWhenXMLFile\(string, bool\) @@ -777,11 +778,11 @@ public static void SetFlagWhenXMLFile(string strFilePath, bool bValue) #### Parameters -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string The file path. -`bValue` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bValue` bool The flag. @@ -795,7 +796,7 @@ public virtual void SetIconColor(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. @@ -875,7 +876,7 @@ virtual bool SkipUpdateObjectImpl() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UpdateContents\(XmlReader, ObjectBase, string\) @@ -887,7 +888,7 @@ public static ObjectBase UpdateContents(XmlReader reader, ObjectBase obOld, stri #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader for object information. @@ -895,7 +896,7 @@ The reader for object information. The old object. -`strRootElement` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRootElement` string The root element name. @@ -915,7 +916,7 @@ public static ObjectBase UpdateContents(XmlReader reader, ObjectBase obOld) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader for object information. @@ -939,11 +940,11 @@ public static ObjectBase UpdateContents(string strXml, string strRootElement) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The xml for object information. -`strRootElement` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRootElement` string The root element name. @@ -963,7 +964,7 @@ public static ObjectBase UpdateContents(string strXml) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The xml for object information. @@ -995,7 +996,7 @@ public void raise_Destroying(object sender, Identifier args) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object `args` Identifier @@ -1007,7 +1008,7 @@ public void raise_OnAdded(object objNotifier, AddToDocEventArgs args) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object `args` [AddToDocEventArgs](VM.Managed.AddToDocEventArgs.md) @@ -1019,9 +1020,9 @@ protected void raise_OnContentsUpdated(object value0, EventArgs value1) #### Parameters -`value0` [object](https://learn.microsoft.com/dotnet/api/system.object) +`value0` object -`value1` [EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) +`value1` EventArgs ### raise\_OnDestroy\(object, LinkEventArgs\) @@ -1031,7 +1032,7 @@ public void raise_OnDestroy(object objNotifier, LinkEventArgs args) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object `args` [LinkEventArgs](VM.Managed.LinkEventArgs.md) @@ -1043,7 +1044,7 @@ public void raise_OnDestroying(object objNotifier, LinkEventArgs args) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object `args` [LinkEventArgs](VM.Managed.LinkEventArgs.md) @@ -1055,7 +1056,7 @@ public void raise_OnRemoved(object obj, RemoveFromDocEventArgs args) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object `args` [RemoveFromDocEventArgs](VM.Managed.RemoveFromDocEventArgs.md) @@ -1067,7 +1068,7 @@ public void raise_OnUpdate(object objNotifier, LinkEventArgs args) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object `args` [LinkEventArgs](VM.Managed.LinkEventArgs.md) @@ -1079,7 +1080,7 @@ public void raise_OnUpdating(object objNotifier, LinkEventArgs args) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object `args` [LinkEventArgs](VM.Managed.LinkEventArgs.md) @@ -1093,7 +1094,7 @@ public event EventHandler Destroying #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1) + EventHandler ### OnAdded @@ -1105,7 +1106,7 @@ public event EventHandler OnAdded #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[AddToDocEventArgs](VM.Managed.AddToDocEventArgs.md)\> + EventHandler<[AddToDocEventArgs](VM.Managed.AddToDocEventArgs.md)\> ### OnContentsUpdated @@ -1115,7 +1116,7 @@ public event EventHandler OnContentsUpdated #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler) + EventHandler ### OnDestroy @@ -1127,7 +1128,7 @@ public event EventHandler OnDestroy #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> + EventHandler<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> ### OnDestroying @@ -1139,7 +1140,7 @@ public event EventHandler OnDestroying #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> + EventHandler<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> ### OnRemoved @@ -1151,7 +1152,7 @@ public event EventHandler OnRemoved #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[RemoveFromDocEventArgs](VM.Managed.RemoveFromDocEventArgs.md)\> + EventHandler<[RemoveFromDocEventArgs](VM.Managed.RemoveFromDocEventArgs.md)\> ### OnUpdate @@ -1163,7 +1164,7 @@ public event EventHandler OnUpdate #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> + EventHandler<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> ### OnUpdating @@ -1175,7 +1176,7 @@ public event EventHandler OnUpdating #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> + EventHandler<[LinkEventArgs](VM.Managed.LinkEventArgs.md)\> ## Operators @@ -1189,7 +1190,7 @@ public static implicit operator ObjectBase(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr The key. @@ -1213,5 +1214,5 @@ The object. #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ObjectBaseEventArgs.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ObjectBaseEventArgs.md index 6f7f52929f..fbf3d9a6b3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ObjectBaseEventArgs.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ObjectBaseEventArgs.md @@ -1,4 +1,5 @@ -# Class ObjectBaseEventArgs +# Class ObjectBaseEventArgs + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -9,8 +10,8 @@ public class ObjectBaseEventArgs : EventArgs #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) ← +object ← +EventArgs ← [ObjectBaseEventArgs](VM.Managed.ObjectBaseEventArgs.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ObjectEventCore.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ObjectEventCore.md index 0c6575ca9d..ac212f6f75 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ObjectEventCore.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ObjectEventCore.md @@ -1,4 +1,5 @@ -# Class ObjectEventCore +# Class ObjectEventCore + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class ObjectEventCore : IObject, ILinkContainer, IOwned, IHasID, IEventPr #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ObjectEventCore](VM.Managed.ObjectEventCore.md) #### Derived @@ -26,7 +27,7 @@ IOwned, IHasID, IEventProvider, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), -IHistoryObjectSerializableDelegate +[IHistoryObjectSerializableDelegate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs) #### Extension Methods @@ -68,11 +69,11 @@ protected ObjectEventCore(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. @@ -112,7 +113,7 @@ bool IsChildExternable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsExternable @@ -124,7 +125,7 @@ bool IsExternable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Object @@ -161,7 +162,7 @@ protected virtual void Dispose(bool A_0) #### Parameters -`A_0` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`A_0` bool ### Dispose\(\) @@ -188,7 +189,7 @@ public List GetInvocationDestroyTargetList() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ObjectBase](VM.Managed.ObjectBase.md)\> + List<[ObjectBase](VM.Managed.ObjectBase.md)\> ### GetInvocationUpdateTargetList\(\) @@ -198,7 +199,7 @@ public List GetInvocationUpdateTargetList() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ObjectBase](VM.Managed.ObjectBase.md)\> + List<[ObjectBase](VM.Managed.ObjectBase.md)\> ### GetObjectDataImpl\(SerializationInfo, StreamingContext\) @@ -210,11 +211,11 @@ virtual void GetObjectDataImpl(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. @@ -228,7 +229,7 @@ virtual List GetTargetListForUpdate() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List ### RemoveInvocationDestroyTargetList\(ObjectBase\) @@ -270,7 +271,7 @@ public virtual void SetContainer(IOwned obOwner, bool bBackup) `obOwner` IOwned -`bBackup` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bBackup` bool ### SkipUpdateObjectImpl\(\) @@ -282,7 +283,7 @@ virtual bool SkipUpdateObjectImpl() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Swap\(ObjectEventCore, ObjectEventCore\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ObjectStateType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ObjectStateType.md index b6bf9129e5..d8d30e93dd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ObjectStateType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ObjectStateType.md @@ -1,4 +1,5 @@ -# Enum ObjectStateType +# Enum ObjectStateType + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OnApplyOperation.OnApplyCallback.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OnApplyOperation.OnApplyCallback.md index 3ad7cbd4f9..a1e9e4e9ee 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OnApplyOperation.OnApplyCallback.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OnApplyOperation.OnApplyCallback.md @@ -1,4 +1,5 @@ -# Delegate OnApplyOperation.OnApplyCallback +# Delegate OnApplyOperation.OnApplyCallback + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,7 +12,7 @@ public delegate bool OnApplyOperation.OnApplyCallback() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OnApplyOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OnApplyOperation.md index 8308caa2a5..748f016c20 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OnApplyOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OnApplyOperation.md @@ -1,4 +1,5 @@ -# Class OnApplyOperation +# Class OnApplyOperation + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,7 +12,7 @@ public class OnApplyOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [OnApplyOperation](VM.Managed.OnApplyOperation.md) @@ -88,7 +89,7 @@ public OnApplyOperation(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string ## Fields @@ -116,7 +117,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Success @@ -128,7 +129,7 @@ public bool Success { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.AddElementsProperty.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.AddElementsProperty.md index 21c6eb8abc..595fdb9dca 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.AddElementsProperty.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.AddElementsProperty.md @@ -1,4 +1,5 @@ -# Class AddElementsProperty +# Class AddElementsProperty + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMOpFEFilm.dll @@ -9,7 +10,7 @@ public class AddElementsProperty : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [AddElementsProperty](VM.Managed.Operation.AddElementsProperty.md) @@ -83,7 +84,7 @@ public AddElementsProperty(List lstInfo) #### Parameters -`lstInfo` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[object](https://learn.microsoft.com/dotnet/api/system.object)\> +`lstInfo` List ### AddElementsProperty\(JournalParameter\) @@ -107,7 +108,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -127,5 +128,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.AddPath.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.AddPath.md index 162ec03bc6..738a444f9c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.AddPath.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.AddPath.md @@ -1,4 +1,5 @@ -# Class AddPath +# Class AddPath + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMOpFEFilm.dll @@ -9,7 +10,7 @@ public class AddPath : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [AddPath](VM.Managed.Operation.AddPath.md) @@ -83,7 +84,7 @@ public AddPath(List lstInfo) #### Parameters -`lstInfo` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[object](https://learn.microsoft.com/dotnet/api/system.object)\> +`lstInfo` List ### AddPath\(JournalParameter\) @@ -107,7 +108,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -127,5 +128,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.AddToDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.AddToDocument.md index f4e549dac5..a31383d1fb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.AddToDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.AddToDocument.md @@ -1,4 +1,5 @@ -# Class AddToDocument +# Class AddToDocument + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMOP.dll @@ -11,7 +12,7 @@ public class AddToDocument : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [AddToDocument](VM.Managed.Operation.AddToDocument.md) @@ -115,7 +116,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.ApplyProperty.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.ApplyProperty.md index 0ff4af7d6d..1ae42433f9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.ApplyProperty.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.ApplyProperty.md @@ -1,4 +1,5 @@ -# Class ApplyProperty +# Class ApplyProperty + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMOP.dll @@ -11,7 +12,7 @@ public class ApplyProperty : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ApplyProperty](VM.Managed.Operation.ApplyProperty.md) @@ -85,7 +86,7 @@ public ApplyProperty(string strXml) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string ## Properties @@ -99,7 +100,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.ChangeName.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.ChangeName.md index db67053c74..d95ac6bc96 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.ChangeName.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.ChangeName.md @@ -1,4 +1,5 @@ -# Class ChangeName +# Class ChangeName + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMOpFEFilm.dll @@ -9,7 +10,7 @@ public class ChangeName : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ChangeName](VM.Managed.Operation.ChangeName.md) @@ -83,7 +84,7 @@ public ChangeName(List lstInfo) #### Parameters -`lstInfo` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[object](https://learn.microsoft.com/dotnet/api/system.object)\> +`lstInfo` List ### ChangeName\(JournalParameter\) @@ -107,7 +108,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -127,5 +128,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.ChangeSolidBodyAnalysisSettingOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.ChangeSolidBodyAnalysisSettingOperation.md index c4fd4b76f3..54e0ef380a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.ChangeSolidBodyAnalysisSettingOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.ChangeSolidBodyAnalysisSettingOperation.md @@ -1,4 +1,5 @@ -# Class ChangeSolidBodyAnalysisSettingOperation +# Class ChangeSolidBodyAnalysisSettingOperation + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMOP.dll @@ -11,7 +12,7 @@ public class ChangeSolidBodyAnalysisSettingOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ChangeSolidBodyAnalysisSettingOperation](VM.Managed.Operation.ChangeSolidBodyAnalysisSettingOperation.md) @@ -87,7 +88,7 @@ public ChangeSolidBodyAnalysisSettingOperation(SolidBody solidBody, BodyAnalysis #### Parameters -`solidBody` SolidBody +`solidBody` [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) The nodal body. @@ -117,7 +118,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -137,5 +138,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.ClearElementsProperty.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.ClearElementsProperty.md index e3e43e70a2..642c401c65 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.ClearElementsProperty.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.ClearElementsProperty.md @@ -1,4 +1,5 @@ -# Class ClearElementsProperty +# Class ClearElementsProperty + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMOpFEFilm.dll @@ -9,7 +10,7 @@ public class ClearElementsProperty : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ClearElementsProperty](VM.Managed.Operation.ClearElementsProperty.md) @@ -83,7 +84,7 @@ public ClearElementsProperty(List lstInfo) #### Parameters -`lstInfo` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[object](https://learn.microsoft.com/dotnet/api/system.object)\> +`lstInfo` List ### ClearElementsProperty\(JournalParameter\) @@ -107,7 +108,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -127,5 +128,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.ClearPath.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.ClearPath.md index a932da45be..4c54c81ac4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.ClearPath.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.ClearPath.md @@ -1,4 +1,5 @@ -# Class ClearPath +# Class ClearPath + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMOpFEFilm.dll @@ -9,7 +10,7 @@ public class ClearPath : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ClearPath](VM.Managed.Operation.ClearPath.md) @@ -83,7 +84,7 @@ public ClearPath(List lstInfo) #### Parameters -`lstInfo` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[object](https://learn.microsoft.com/dotnet/api/system.object)\> +`lstInfo` List ### ClearPath\(JournalParameter\) @@ -107,7 +108,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -127,5 +128,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.Contact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.Contact.md index 5fe37cf19e..dbdeaaf261 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.Contact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.Contact.md @@ -1,4 +1,5 @@ -# Class Contact +# Class Contact + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMOP.dll @@ -9,7 +10,7 @@ public static class Contact #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Contact](VM.Managed.Operation.Contact.md) #### Extension Methods @@ -30,13 +31,13 @@ public static Tie CreateTie(Document3D activeDocument, SetFace setFaceBase, SetF `activeDocument` Document3D -`setFaceBase` SetFace +`setFaceBase` [SetFace](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SetFace.cs) -`setFaceAction` SetFace +`setFaceAction` [SetFace](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/SetFace.cs) -`strPrefixName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPrefixName` string #### Returns - Tie + [Tie](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMFlexibleBase/Tie.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.Create.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.Create.md index 1c78fb1791..dde35681e0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.Create.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.Create.md @@ -1,4 +1,5 @@ -# Class Create +# Class Create + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMOP.dll @@ -11,7 +12,7 @@ public class Create : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [Create](VM.Managed.Operation.Create.md) @@ -101,7 +102,7 @@ public Create(string strInitializerXml) #### Parameters -`strInitializerXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInitializerXml` string The STR initializer XML. @@ -115,7 +116,7 @@ protected string m_strInitializerXml #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Properties @@ -129,7 +130,7 @@ public override bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -141,7 +142,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UseMacro @@ -153,7 +154,7 @@ public override bool UseMacro { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -175,29 +176,29 @@ protected virtual bool ExecutePickOperation(XmlDocument dom, string[] arPickResu #### Parameters -`dom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`dom` XmlDocument The DOM. -`arPickResult` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arPickResult` string\[\] The ar pick result. -`arPickOp` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arPickOp` string\[\] The ar pick op. -`start` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`start` int The start. -`end` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`end` int The end. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PostExecute\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.CreateAssembly.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.CreateAssembly.md index a8356f26b7..b3f04ac7b8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.CreateAssembly.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.CreateAssembly.md @@ -1,4 +1,5 @@ -# Class CreateAssembly +# Class CreateAssembly + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMOP.dll @@ -11,7 +12,7 @@ public class CreateAssembly : Create, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [Create](VM.Managed.Operation.Create.md) ← [CreateAssembly](VM.Managed.Operation.CreateAssembly.md) @@ -105,7 +106,7 @@ public CreateAssembly(string strXml) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string ## Fields @@ -117,7 +118,7 @@ protected static string g_strMeshFilters #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### g\_strPartFilters @@ -127,7 +128,7 @@ protected static string g_strPartFilters #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### g\_strSubsystemFilters @@ -137,7 +138,7 @@ protected static string g_strSubsystemFilters #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.CreateCurvesetByColor.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.CreateCurvesetByColor.md index 9a0d4bfe85..ac94f0a252 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.CreateCurvesetByColor.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.CreateCurvesetByColor.md @@ -1,4 +1,5 @@ -# Class CreateCurvesetByColor +# Class CreateCurvesetByColor + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMOP.dll @@ -11,7 +12,7 @@ public class CreateCurvesetByColor : Create, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [Create](VM.Managed.Operation.Create.md) ← [CreateCurvesetByColor](VM.Managed.Operation.CreateCurvesetByColor.md) @@ -103,7 +104,7 @@ public CreateCurvesetByColor(string strInitializerXml) #### Parameters -`strInitializerXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInitializerXml` string The STR initializer XML. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.CreateFacesetByColor.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.CreateFacesetByColor.md index cd1cb22052..4bf747334e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.CreateFacesetByColor.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.CreateFacesetByColor.md @@ -1,4 +1,5 @@ -# Class CreateFacesetByColor +# Class CreateFacesetByColor + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMOP.dll @@ -11,7 +12,7 @@ public class CreateFacesetByColor : Create, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [Create](VM.Managed.Operation.Create.md) ← [CreateFacesetByColor](VM.Managed.Operation.CreateFacesetByColor.md) @@ -103,7 +104,7 @@ public CreateFacesetByColor(string strInitializerXml) #### Parameters -`strInitializerXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInitializerXml` string The STR initializer XML. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.GenerateFEFilm.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.GenerateFEFilm.md new file mode 100644 index 0000000000..bac40585dc --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.GenerateFEFilm.md @@ -0,0 +1,144 @@ +# Class GenerateFEFilm + + +Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) +Assembly: VMOpFEFilm.dll + +```csharp +public class GenerateFEFilm : OperationBase, IOperation +``` + +#### Inheritance + +object ← +OperationBase ← +[GenerateFEFilm](VM.Managed.Operation.GenerateFEFilm.md) + +#### Implements + +IOperation + +#### Inherited Members + +OperationBase.g\_bRedrawKernel, +OperationBase.g\_bVerify, +OperationBase.g\_bSkipAddEvent, +OperationBase.g\_bDupicateMsg, +OperationBase.m\_bIsHistoryMerge, +OperationBase.Execute\(\), +OperationBase.PostExecute\(\), +OperationBase.GetInformation\(XmlWriter\), +OperationBase.Create\(string, View, object\), +OperationBase.Create\(string, IDocument, object\), +OperationBase.Create\(string, object\), +OperationBase.Create\(string\), +OperationBase.StartSession\(\), +OperationBase.StartSession\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSession\(OperationBase\), +OperationBase.StartSessionAndWait\(\), +OperationBase.StartSessionAndWait\(OperationBase, OperationBase.PostOperation\), +OperationBase.StartSessionAndWait\(OperationBase\), +OperationBase.Initialize\(OperationBase.ShowVerifyResult\), +OperationBase.RecordJournal\(OperationBase\), +OperationBase.UseSession\(string\), +OperationBase.raise\_OnOperationStatusChanged\(object, OperationStatusEventArgs\), +OperationBase.raise\_OnEndOperation\(object, EventArgs\), +OperationBase.ClearCurrentMark\(string\), +OperationBase.ClearCurrentMark\(IDocument\), +OperationBase.ClearCurrentMark\(\), +OperationBase.GlobalOverride, +OperationBase.IsDoingThread, +OperationBase.ExecuteMacro, +OperationBase.SimStatus, +OperationBase.Status, +OperationBase.autoEvents, +OperationBase.IsHistoryMerge, +OperationBase.SkipClearTemporaryLinkContainer, +OperationBase.PostExecuteClearTemporaryLinkContainer, +OperationBase.SkipEndOperation, +OperationBase.UseMacro, +OperationBase.MarkStatus, +OperationBase.UseThread, +OperationBase.Name, +OperationBase.ExecutableOnHold, +OperationBase.Override, +OperationBase.Parameter, +OperationBase.View, +OperationBase.Document, +OperationBase.OnEndOperation, +OperationBase.OnOperationStatusChanged + +#### Extension Methods + +[LinkPropertyItemCache.GetLinkProperties\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkProperties\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkPropertiesAndValues\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkPropertiesAndValues\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkedObjects\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkedObjects\_\_1\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_) + +## Constructors + +### GenerateFEFilm\(Document3D, string\) + +```csharp +public GenerateFEFilm(Document3D document, string feBodyName) +``` + +#### Parameters + +`document` Document3D + +`feBodyName` string + +### GenerateFEFilm\(JournalParameter\) + +```csharp +public GenerateFEFilm(JournalParameter jp) +``` + +#### Parameters + +`jp` JournalParameter + +## Properties + +### Name + +Gets the operation name. + +```csharp +public override string Name { get; } +``` + +#### Property Value + + string + +### Success + +```csharp +public bool Success { get; } +``` + +#### Property Value + + bool + +## Methods + +### Execute\(\) + +Execute the operation. + +```csharp +public override void Execute() +``` + +### GetInformation\(XmlWriter\) + +```csharp +public override void GetInformation(XmlWriter writer) +``` + +#### Parameters + +`writer` XmlWriter + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.HighlightProperty.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.HighlightProperty.md index 9ed92343dd..cc1d6bb9ac 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.HighlightProperty.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.HighlightProperty.md @@ -1,4 +1,5 @@ -# Class HighlightProperty +# Class HighlightProperty + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMOpFEFilm.dll @@ -9,7 +10,7 @@ public class HighlightProperty : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [HighlightProperty](VM.Managed.Operation.HighlightProperty.md) @@ -83,7 +84,7 @@ public HighlightProperty(List lstParam) #### Parameters -`lstParam` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[object](https://learn.microsoft.com/dotnet/api/system.object)\> +`lstParam` List ## Properties @@ -97,7 +98,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.HistroyMarkStatus.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.HistroyMarkStatus.md index 0d1c05e840..0eb58ca0e4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.HistroyMarkStatus.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.HistroyMarkStatus.md @@ -1,4 +1,5 @@ -# Enum HistroyMarkStatus +# Enum HistroyMarkStatus + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.JournalParameter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.JournalParameter.md index dcf8cdea7d..613a3d42ab 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.JournalParameter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.JournalParameter.md @@ -1,4 +1,5 @@ -# Class JournalParameter +# Class JournalParameter + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class JournalParameter #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [JournalParameter](VM.Managed.Operation.JournalParameter.md) #### Extension Methods @@ -32,15 +33,15 @@ public JournalParameter(XmlNode xmlInfo, string journalVersion, string currentVe #### Parameters -`xmlInfo` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`xmlInfo` XmlNode The XML information. -`journalVersion` [string](https://learn.microsoft.com/dotnet/api/system.string) +`journalVersion` string The journal version. -`currentVersion` [string](https://learn.microsoft.com/dotnet/api/system.string) +`currentVersion` string The current version. @@ -56,7 +57,7 @@ public string CurrentVersion #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### JournalVersion @@ -68,7 +69,7 @@ public string JournalVersion #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### XmlInfo @@ -80,5 +81,5 @@ public XmlNode XmlInfo #### Field Value - [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) + XmlNode diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.MacroHelper.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.MacroHelper.md index 195464d0f9..65b9df957f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.MacroHelper.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.MacroHelper.md @@ -1,4 +1,5 @@ -# Class MacroHelper +# Class MacroHelper + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class MacroHelper #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [MacroHelper](VM.Managed.Operation.MacroHelper.md) #### Extension Methods @@ -38,7 +39,7 @@ public static Dictionary g_dicKeyToFullNameForDeleting #### Field Value - [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [string](https://learn.microsoft.com/dotnet/api/system.string)\> + Dictionary ## Methods @@ -50,13 +51,13 @@ public static string ChangeFullNameToKey(string strXml, Document doc) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string `doc` [Document](VM.Managed.Document.md) #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ChangeFullNameToKey\(string\) @@ -66,11 +67,11 @@ public static string ChangeFullNameToKey(string strXml) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ChangeKeyToFullName\(string, Document\) @@ -80,13 +81,13 @@ public static string ChangeKeyToFullName(string strXml, Document doc) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string `doc` [Document](VM.Managed.Document.md) #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ChangeKeyToFullName\(string\) @@ -96,11 +97,11 @@ public static string ChangeKeyToFullName(string strXml) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ChangeKeyToFullNameCore\(XmlNode, bool, IDocument\) @@ -110,9 +111,9 @@ public static void ChangeKeyToFullNameCore(XmlNode nodeXml, bool bReverse, IDocu #### Parameters -`nodeXml` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`nodeXml` XmlNode -`bReverse` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReverse` bool `doc` IDocument @@ -128,7 +129,7 @@ public static Dictionary CreateEntityDictionary(ObjectBase entit #### Returns - [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [string](https://learn.microsoft.com/dotnet/api/system.string)\> + Dictionary ### GetFullNameFromKey\(ObjectBase\) @@ -142,7 +143,7 @@ public static string GetFullNameFromKey(ObjectBase obj) #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ModifyEntityDictionary\(ObjectBase\) @@ -156,5 +157,5 @@ public static Dictionary ModifyEntityDictionary(ObjectBase entit #### Returns - [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [string](https://learn.microsoft.com/dotnet/api/system.string)\> + Dictionary diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.MeshAssembly.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.MeshAssembly.md index a2f5a3cbd1..2502a90216 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.MeshAssembly.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.MeshAssembly.md @@ -1,4 +1,5 @@ -# Class MeshAssembly +# Class MeshAssembly + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMOP.dll @@ -11,7 +12,7 @@ public class MeshAssembly : CreateAssembly, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [Create](VM.Managed.Operation.Create.md) ← [CreateAssembly](VM.Managed.Operation.CreateAssembly.md) ← @@ -104,7 +105,7 @@ public MeshAssembly(string strXml) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OpenFileOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OpenFileOperation.md index e68d05df36..b3840764b9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OpenFileOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OpenFileOperation.md @@ -1,4 +1,5 @@ -# Class OpenFileOperation +# Class OpenFileOperation + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMOP.dll @@ -11,7 +12,7 @@ public class OpenFileOperation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [OpenFileOperation](VM.Managed.Operation.OpenFileOperation.md) @@ -87,7 +88,7 @@ public OpenFileOperation(string strFilePath) #### Parameters -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string The file path. @@ -117,7 +118,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -139,7 +140,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationBase.EndOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationBase.EndOperation.md index a7c9dd8714..47d0984515 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationBase.EndOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationBase.EndOperation.md @@ -1,4 +1,5 @@ -# Delegate OperationBase.EndOperation +# Delegate OperationBase.EndOperation + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMAppCore.dll @@ -11,11 +12,11 @@ public delegate void OperationBase.EndOperation(object obj, EventArgs arg) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The object. -`arg` [EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) +`arg` EventArgs The argument. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationBase.PostOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationBase.PostOperation.md index 6246b61bf0..d320621e4a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationBase.PostOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationBase.PostOperation.md @@ -1,4 +1,5 @@ -# Delegate OperationBase.PostOperation +# Delegate OperationBase.PostOperation + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationBase.ShowVerifyResult.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationBase.ShowVerifyResult.md index dc7987d188..166bfb50b7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationBase.ShowVerifyResult.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationBase.ShowVerifyResult.md @@ -1,4 +1,5 @@ -# Delegate OperationBase.ShowVerifyResult +# Delegate OperationBase.ShowVerifyResult + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public delegate void OperationBase.ShowVerifyResult(string[] arErrors) #### Parameters -`arErrors` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`arErrors` string\[\] #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationBase.md index 12fc88fa2f..6d8c3afde9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationBase.md @@ -1,4 +1,5 @@ -# Class OperationBase +# Class OperationBase + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public abstract class OperationBase : IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OperationBase](VM.Managed.Operation.OperationBase.md) #### Derived @@ -36,6 +37,7 @@ public abstract class OperationBase : IOperation [GetVoidCountOp](VM.Managed.CAD.GetVoidCountOp.md), [GetVoidPointsOp](VM.Managed.CAD.GetVoidPointsOp.md), [OperationDelegate](VM.Managed.Operation.OperationDelegate.md), +[ReDrawForHistoryOp](VM.Managed.CAD.ReDrawForHistoryOp.md), [RebuildHiddenDocOp](VM.Managed.History.RebuildHiddenDocOp.md), [RemoveDuplicatedEventOperation](VM.Managed.CAD.RemoveDuplicatedEventOperation.md), [SetNameAttributeOp](VM.Managed.CAD.SetNameAttributeOp.md), @@ -63,7 +65,7 @@ protected OperationBase(View view, object param) `view` [View](VM.Managed.View.md) -`param` [object](https://learn.microsoft.com/dotnet/api/system.object) +`param` object ### OperationBase\(View\) @@ -85,7 +87,7 @@ protected OperationBase(Document doc, object param) `doc` [Document](VM.Managed.Document.md) -`param` [object](https://learn.microsoft.com/dotnet/api/system.object) +`param` object ### OperationBase\(Document\) @@ -105,7 +107,7 @@ protected OperationBase(object param) #### Parameters -`param` [object](https://learn.microsoft.com/dotnet/api/system.object) +`param` object ### OperationBase\(\) @@ -123,7 +125,7 @@ public static bool g_bDupicateMsg #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### g\_bRedrawKernel @@ -133,7 +135,7 @@ public static bool g_bRedrawKernel #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### g\_bSkipAddEvent @@ -143,7 +145,7 @@ public static bool g_bSkipAddEvent #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### g\_bVerify @@ -153,7 +155,7 @@ public static bool g_bVerify #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_bIsHistoryMerge @@ -163,7 +165,7 @@ protected bool m_bIsHistoryMerge #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Properties @@ -185,7 +187,7 @@ protected virtual bool ExecutableOnHold { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ExecuteMacro @@ -195,7 +197,7 @@ public static bool ExecuteMacro { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GlobalOverride @@ -207,7 +209,7 @@ public static SessionOverride GlobalOverride { get; set; } #### Property Value - [SessionOverride](VM.Managed.Operation.SessionOverride.md) + SessionOverride ### IsDoingThread @@ -217,7 +219,7 @@ public static bool IsDoingThread { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsHistoryMerge @@ -227,7 +229,7 @@ public virtual bool IsHistoryMerge { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MarkStatus @@ -251,7 +253,7 @@ public abstract string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Override @@ -261,7 +263,7 @@ protected SessionOverride Override { get; set; } #### Property Value - [SessionOverride](VM.Managed.Operation.SessionOverride.md) + SessionOverride ### Parameter @@ -271,7 +273,7 @@ protected object Parameter { get; } #### Property Value - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### PostExecuteClearTemporaryLinkContainer @@ -281,7 +283,7 @@ public bool PostExecuteClearTemporaryLinkContainer { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SimStatus @@ -301,7 +303,7 @@ public bool SkipClearTemporaryLinkContainer { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SkipEndOperation @@ -311,7 +313,7 @@ public bool SkipEndOperation { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Status @@ -333,7 +335,7 @@ public virtual bool UseMacro { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseThread @@ -345,7 +347,7 @@ public virtual bool UseThread { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### View @@ -367,7 +369,7 @@ public static AutoResetEvent[] autoEvents { get; set; } #### Property Value - [AutoResetEvent](https://learn.microsoft.com/dotnet/api/system.threading.autoresetevent)\[\] + AutoResetEvent\[\] ## Methods @@ -379,7 +381,7 @@ protected void ClearCurrentMark(string strFilePath) #### Parameters -`strFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFilePath` string ### ClearCurrentMark\(IDocument\) @@ -407,7 +409,7 @@ public static OperationBase Create(string strType, View view, object obParam) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The operation name. @@ -415,7 +417,7 @@ The operation name. The operation parameter that is to represent the view. -`obParam` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obParam` object The operation parameter. @@ -433,7 +435,7 @@ public static OperationBase Create(string strType, IDocument doc, object obParam #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The operation name. @@ -441,7 +443,7 @@ The operation name. The operation parameter that is to represent the document. -`obParam` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obParam` object The operation parameter. @@ -459,11 +461,11 @@ public static OperationBase Create(string strType, object obParam) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The operation name. -`obParam` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obParam` object The operation parameter. @@ -481,7 +483,7 @@ public static OperationBase Create(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The operation name. @@ -505,7 +507,7 @@ public virtual void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter ### Initialize\(ShowVerifyResult\) @@ -629,7 +631,7 @@ public static ISession UseSession(string strSessionName) #### Parameters -`strSessionName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSessionName` string the name of the session @@ -645,9 +647,9 @@ protected static void raise_OnEndOperation(object value0, EventArgs value1) #### Parameters -`value0` [object](https://learn.microsoft.com/dotnet/api/system.object) +`value0` object -`value1` [EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) +`value1` EventArgs ### raise\_OnOperationStatusChanged\(object, OperationStatusEventArgs\) @@ -657,7 +659,7 @@ protected static void raise_OnOperationStatusChanged(object value0, OperationSta #### Parameters -`value0` [object](https://learn.microsoft.com/dotnet/api/system.object) +`value0` object `value1` [OperationStatusEventArgs](VM.Managed.Operation.OperationStatusEventArgs.md) @@ -681,5 +683,5 @@ public static event EventHandler OnOperationStatusChan #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[OperationStatusEventArgs](VM.Managed.Operation.OperationStatusEventArgs.md)\> + EventHandler<[OperationStatusEventArgs](VM.Managed.Operation.OperationStatusEventArgs.md)\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationConstructorNotFoundException.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationConstructorNotFoundException.md index 014b1c7f36..d2d9c0a38f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationConstructorNotFoundException.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationConstructorNotFoundException.md @@ -1,4 +1,5 @@ -# Class OperationConstructorNotFoundException +# Class OperationConstructorNotFoundException + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public class OperationConstructorNotFoundException : Exception #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Exception](https://learn.microsoft.com/dotnet/api/system.exception) ← +object ← +Exception ← [OperationConstructorNotFoundException](VM.Managed.Operation.OperationConstructorNotFoundException.md) #### Extension Methods @@ -33,11 +34,11 @@ public OperationConstructorNotFoundException(string strType, Exception innerExce #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The type of operation that does not founded. -`innerException` [Exception](https://learn.microsoft.com/dotnet/api/system.exception) +`innerException` Exception The inner exception. @@ -51,7 +52,7 @@ public OperationConstructorNotFoundException(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The type of operation that does not founded. @@ -67,5 +68,5 @@ public override string Message { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationDelegate.OpCore.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationDelegate.OpCore.md index e7b0727d51..4b225f1a61 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationDelegate.OpCore.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationDelegate.OpCore.md @@ -1,4 +1,5 @@ -# Delegate OperationDelegate.OpCore +# Delegate OperationDelegate.OpCore + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationDelegate.OpCore1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationDelegate.OpCore1.md index 3ccfeb9646..6378465b4f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationDelegate.OpCore1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationDelegate.OpCore1.md @@ -1,4 +1,5 @@ -# Delegate OperationDelegate.OpCore1 +# Delegate OperationDelegate.OpCore1 + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public delegate void OperationDelegate.OpCore1(object obParam) #### Parameters -`obParam` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obParam` object The operation parameter. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationDelegate.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationDelegate.md index 3bc98b1cf5..f29cf72884 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationDelegate.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationDelegate.md @@ -1,4 +1,5 @@ -# Class OperationDelegate +# Class OperationDelegate + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class OperationDelegate : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OperationBase](VM.Managed.Operation.OperationBase.md) ← [OperationDelegate](VM.Managed.Operation.OperationDelegate.md) @@ -95,7 +96,7 @@ protected OperationDelegate(OperationDelegate.OpCore1 op, object param, View vie The operation. -`param` [object](https://learn.microsoft.com/dotnet/api/system.object) +`param` object The operation parameter. @@ -117,7 +118,7 @@ protected OperationDelegate(OperationDelegate.OpCore1 op, object param, Document The operation. -`param` [object](https://learn.microsoft.com/dotnet/api/system.object) +`param` object The operation parameter. @@ -139,7 +140,7 @@ protected OperationDelegate(OperationDelegate.OpCore1 op, object param) The operation. -`param` [object](https://learn.microsoft.com/dotnet/api/system.object) +`param` object The operation parameter. @@ -193,7 +194,7 @@ protected OperationDelegate(OperationDelegate.OpCore op, bool bIsHistoryMerge) The operation. -`bIsHistoryMerge` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bIsHistoryMerge` bool The history merge flag. @@ -223,7 +224,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UseMacro @@ -233,7 +234,7 @@ public override bool UseMacro { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationDelegateNoJournal.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationDelegateNoJournal.md index e7b26f9478..ec1d7e2313 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationDelegateNoJournal.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationDelegateNoJournal.md @@ -1,4 +1,5 @@ -# Class OperationDelegateNoJournal +# Class OperationDelegateNoJournal + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class OperationDelegateNoJournal : OperationDelegate, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OperationBase](VM.Managed.Operation.OperationBase.md) ← [OperationDelegate](VM.Managed.Operation.OperationDelegate.md) ← [OperationDelegateNoJournal](VM.Managed.Operation.OperationDelegateNoJournal.md) @@ -95,7 +96,7 @@ public OperationDelegateNoJournal(OperationDelegate.OpCore1 op, object param, Vi The operation. -`param` [object](https://learn.microsoft.com/dotnet/api/system.object) +`param` object The operation parameter. @@ -117,7 +118,7 @@ public OperationDelegateNoJournal(OperationDelegate.OpCore1 op, object param, Do The operation. -`param` [object](https://learn.microsoft.com/dotnet/api/system.object) +`param` object The operation parameter. @@ -139,7 +140,7 @@ public OperationDelegateNoJournal(OperationDelegate.OpCore1 op, object param) The operation. -`param` [object](https://learn.microsoft.com/dotnet/api/system.object) +`param` object The operation parameter. @@ -193,7 +194,7 @@ public OperationDelegateNoJournal(OperationDelegate.OpCore op, bool bIsHistoryMe The operation. -`bIsHistoryMerge` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bIsHistoryMerge` bool The history merge flag. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationNotFoundException.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationNotFoundException.md index 6de7ece207..2ce6aaedc2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationNotFoundException.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationNotFoundException.md @@ -1,4 +1,5 @@ -# Class OperationNotFoundException +# Class OperationNotFoundException + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public class OperationNotFoundException : Exception #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Exception](https://learn.microsoft.com/dotnet/api/system.exception) ← +object ← +Exception ← [OperationNotFoundException](VM.Managed.Operation.OperationNotFoundException.md) #### Extension Methods @@ -33,11 +34,11 @@ public OperationNotFoundException(string strType, Exception innerException) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The type of operation that does not founded. -`innerException` [Exception](https://learn.microsoft.com/dotnet/api/system.exception) +`innerException` Exception The inner exception. @@ -51,7 +52,7 @@ public OperationNotFoundException(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string The type of operation that does not founded. @@ -67,5 +68,5 @@ public override string Message { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationStatus.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationStatus.md index ccd8395ff2..8b7b6f1ac9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationStatus.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationStatus.md @@ -1,4 +1,5 @@ -# Enum OperationStatus +# Enum OperationStatus + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationStatusEventArgs.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationStatusEventArgs.md index 5bf96d6241..0a8550d295 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationStatusEventArgs.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.OperationStatusEventArgs.md @@ -1,4 +1,5 @@ -# Class OperationStatusEventArgs +# Class OperationStatusEventArgs + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public class OperationStatusEventArgs : EventArgs #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) ← +object ← +EventArgs ← [OperationStatusEventArgs](VM.Managed.Operation.OperationStatusEventArgs.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.PartAssembly.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.PartAssembly.md index edad4250ab..ec68114287 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.PartAssembly.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.PartAssembly.md @@ -1,4 +1,5 @@ -# Class PartAssembly +# Class PartAssembly + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMOP.dll @@ -11,7 +12,7 @@ public class PartAssembly : CreateAssembly, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [Create](VM.Managed.Operation.Create.md) ← [CreateAssembly](VM.Managed.Operation.CreateAssembly.md) ← @@ -104,7 +105,7 @@ public PartAssembly(string strXml) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.PublishModel.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.PublishModel.md index 9d181323db..9abe005a65 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.PublishModel.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.PublishModel.md @@ -1,4 +1,5 @@ -# Class PublishModel +# Class PublishModel + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMOP.dll @@ -11,9 +12,9 @@ public class PublishModel : DialogOperation, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -DialogOperation ← +[DialogOperation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs) ← [PublishModel](VM.Managed.Operation.PublishModel.md) #### Implements @@ -22,11 +23,11 @@ IOperation #### Inherited Members -DialogOperation.Execute\(\), -DialogOperation.OnApply\(object, CancelEventArgs\), -DialogOperation.IsConainOpenedDic\(Document\), -DialogOperation.Name, -DialogOperation.OpDialog, +[DialogOperation.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.IsConainOpenedDic\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OpDialog](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -111,7 +112,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -133,19 +134,19 @@ public void Execute(string strDocPath, string strExportPath, string strWorkName, #### Parameters -`strDocPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDocPath` string The document path. -`strExportPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strExportPath` string The export path. -`strWorkName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strWorkName` string The work name. -`strModelName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strModelName` string The model name. @@ -157,9 +158,9 @@ public void Execute(string strDocPath, string strExportPath) #### Parameters -`strDocPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDocPath` string -`strExportPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strExportPath` string ### OnApply\(object, CancelEventArgs\) @@ -171,11 +172,11 @@ protected override void OnApply(object sender, CancelEventArgs arg) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. -`arg` [CancelEventArgs](https://learn.microsoft.com/dotnet/api/system.componentmodel.canceleventargs) +`arg` CancelEventArgs The instance containing the event data. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.SeparateContact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.SeparateContact.md index 315cf3e3f0..a85cfc8948 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.SeparateContact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.SeparateContact.md @@ -1,4 +1,5 @@ -# Class SeparateContact +# Class SeparateContact + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMOP.dll @@ -11,7 +12,7 @@ public class SeparateContact : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [SeparateContact](VM.Managed.Operation.SeparateContact.md) @@ -95,7 +96,7 @@ public SeparateContact(string strXml) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The XML. @@ -111,7 +112,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.SimulationStatus.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.SimulationStatus.md index ac3e167e53..4f5e0a70aa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.SimulationStatus.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.SimulationStatus.md @@ -1,4 +1,5 @@ -# Enum SimulationStatus +# Enum SimulationStatus + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.SubsystemAssembly.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.SubsystemAssembly.md index 813a878770..8aad72db6f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.SubsystemAssembly.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.SubsystemAssembly.md @@ -1,4 +1,5 @@ -# Class SubsystemAssembly +# Class SubsystemAssembly + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMOP.dll @@ -11,7 +12,7 @@ public class SubsystemAssembly : CreateAssembly, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [Create](VM.Managed.Operation.Create.md) ← [CreateAssembly](VM.Managed.Operation.CreateAssembly.md) ← @@ -104,7 +105,7 @@ public SubsystemAssembly(string strXml) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.UpdateVariablesFilmBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.UpdateVariablesFilmBody.md index 9878a781b6..903022cdd3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.UpdateVariablesFilmBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.UpdateVariablesFilmBody.md @@ -1,4 +1,5 @@ -# Class UpdateVariablesFilmBody +# Class UpdateVariablesFilmBody + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMOpFEFilm.dll @@ -9,7 +10,7 @@ public class UpdateVariablesFilmBody : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [UpdateVariablesFilmBody](VM.Managed.Operation.UpdateVariablesFilmBody.md) @@ -83,7 +84,7 @@ public UpdateVariablesFilmBody(List lstInfo) #### Parameters -`lstInfo` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[object](https://learn.microsoft.com/dotnet/api/system.object)\> +`lstInfo` List ### UpdateVariablesFilmBody\(JournalParameter\) @@ -107,7 +108,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -127,5 +128,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.UpdateVariablesForTabShape.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.UpdateVariablesForTabShape.md index 32b93c87b6..53c8e7f1cc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.UpdateVariablesForTabShape.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.UpdateVariablesForTabShape.md @@ -1,4 +1,5 @@ -# Class UpdateVariablesForTabShape +# Class UpdateVariablesForTabShape + Namespace: [VM.Managed.Operation](VM.Managed.Operation.md) Assembly: VMOpFEFilm.dll @@ -9,7 +10,7 @@ public class UpdateVariablesForTabShape : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [UpdateVariablesForTabShape](VM.Managed.Operation.UpdateVariablesForTabShape.md) @@ -83,7 +84,7 @@ public UpdateVariablesForTabShape(List lstInfo) #### Parameters -`lstInfo` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[object](https://learn.microsoft.com/dotnet/api/system.object)\> +`lstInfo` List ### UpdateVariablesForTabShape\(JournalParameter\) @@ -107,7 +108,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -127,5 +128,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.md index a66646a6de..605d2464e0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Operation.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.Operation +# Namespace VM.Managed.Operation + ### Classes @@ -42,6 +43,8 @@ The create curveset by color operation The faceset creation by color operation + [GenerateFEFilm](VM.Managed.Operation.GenerateFEFilm.md) + [HighlightProperty](VM.Managed.Operation.HighlightProperty.md) [JournalParameter](VM.Managed.Operation.JournalParameter.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationBase.md index 4643ce2f16..52d5e8a4ec 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationBase.md @@ -1,4 +1,5 @@ -# Class OrientationBase +# Class OrientationBase + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -8,14 +9,14 @@ Getting the information of orientation(OMatrix type) through Value property. After picking, Getting information of OrientationBase through picker. ```csharp -public class OrientationBase : Expression, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IExpression, IOrientationBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider +public class OrientationBase : Expression, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IExpression, IOrientationBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [Expression](VM.Managed.Expression.md) ← [OrientationBase](VM.Managed.OrientationBase.md) @@ -42,7 +43,8 @@ IObject, ILinkContainer, IOwned, IHasID, -IEventProvider +IEventProvider, +IHasReplaceableEntity #### Inherited Members @@ -106,7 +108,7 @@ IEventProvider [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -137,7 +139,7 @@ public OrientationBase(string strValue) #### Parameters -`strValue` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strValue` string The value of Variable(string type). @@ -173,7 +175,7 @@ public virtual bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RotationAngles @@ -185,7 +187,7 @@ public virtual double[] RotationAngles { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### RotationAxis @@ -221,7 +223,7 @@ public bool UseExpression { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Value @@ -262,7 +264,27 @@ public virtual XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema + +### HasReplaceableEntity\(IObjectBase\) + +Gets a value indicating whether this instance has replacable entity. + +```csharp +public virtual bool HasReplaceableEntity(IObjectBase oldObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +#### Returns + + bool + +if this instance has replacable entity, the result is true. ### IsParametric\(\) @@ -274,7 +296,7 @@ public virtual bool IsParametric() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool If set to true is parametric; otherwise, false is none parametric. @@ -288,13 +310,13 @@ public static bool IsParametric(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string Orientation picking type. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool If set to true is parametric; otherwise, false is none parametric. @@ -308,10 +330,34 @@ public virtual void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. +### ReplaceEntity\(IObjectBase, IObjectBase\) + +Replace Entity + +```csharp +public virtual bool ReplaceEntity(IObjectBase oldObject, IObjectBase newObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +`newObject` IObjectBase + +The new object + +#### Returns + + bool + +if success, the result is true. + ### WriteRotationAnglesToXml\(XmlWriter\) Converts an object into its XML representation about rotation angles. @@ -322,7 +368,7 @@ protected void WriteRotationAnglesToXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized about rotation angles. @@ -336,7 +382,7 @@ public virtual void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationEulerAngle.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationEulerAngle.md index 30eba00f93..a5724220e2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationEulerAngle.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationEulerAngle.md @@ -1,4 +1,5 @@ -# Class OrientationEulerAngle +# Class OrientationEulerAngle + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the information of orientation through data(eulerangle type, angle type, alpha, beta, gamma) of euler angle. ```csharp -public class OrientationEulerAngle : OrientationBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IExpression, IOrientationBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider +public class OrientationEulerAngle : OrientationBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IExpression, IOrientationBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [Expression](VM.Managed.Expression.md) ← [OrientationBase](VM.Managed.OrientationBase.md) ← @@ -36,7 +37,8 @@ IObject, ILinkContainer, IOwned, IHasID, -IEventProvider +IEventProvider, +IHasReplaceableEntity #### Inherited Members @@ -45,6 +47,8 @@ IEventProvider [OrientationBase.ReadXml\(XmlReader\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_ReadXml\_System\_Xml\_XmlReader\_), [OrientationBase.WriteXml\(XmlWriter\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_WriteXml\_System\_Xml\_XmlWriter\_), [OrientationBase.GetSchema\(\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_GetSchema), +[OrientationBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[OrientationBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [OrientationBase.WriteRotationAnglesToXml\(XmlWriter\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_WriteRotationAnglesToXml\_System\_Xml\_XmlWriter\_), [OrientationBase.UseExpression](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_UseExpression), [OrientationBase.RotationAngles](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_RotationAngles), @@ -114,7 +118,7 @@ IEventProvider [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -233,7 +237,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RotationAngles @@ -245,7 +249,7 @@ public override double[] RotationAngles { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### RotationAxis @@ -286,7 +290,7 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema ### ReadXml\(XmlReader\) @@ -298,7 +302,7 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -312,7 +316,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationFixedAngle.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationFixedAngle.md index d4ccf9a3ee..d6cfe526c3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationFixedAngle.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationFixedAngle.md @@ -1,4 +1,5 @@ -# Class OrientationFixedAngle +# Class OrientationFixedAngle + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the information of orientation through data(eulerangle type, angle type, alpha, beta, gamma) of fixed angle. ```csharp -public class OrientationFixedAngle : OrientationEulerAngle, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IExpression, IOrientationBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider +public class OrientationFixedAngle : OrientationEulerAngle, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IExpression, IOrientationBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [Expression](VM.Managed.Expression.md) ← [OrientationBase](VM.Managed.OrientationBase.md) ← @@ -33,7 +34,8 @@ IObject, ILinkContainer, IOwned, IHasID, -IEventProvider +IEventProvider, +IHasReplaceableEntity #### Inherited Members @@ -57,6 +59,8 @@ IEventProvider [OrientationBase.ReadXml\(XmlReader\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_ReadXml\_System\_Xml\_XmlReader\_), [OrientationBase.WriteXml\(XmlWriter\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_WriteXml\_System\_Xml\_XmlWriter\_), [OrientationBase.GetSchema\(\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_GetSchema), +[OrientationBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[OrientationBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [OrientationBase.WriteRotationAnglesToXml\(XmlWriter\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_WriteRotationAnglesToXml\_System\_Xml\_XmlWriter\_), [OrientationBase.UseExpression](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_UseExpression), [OrientationBase.RotationAngles](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_RotationAngles), @@ -126,7 +130,7 @@ IEventProvider [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationLink.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationLink.md index 157487bba0..0c5ef3b854 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationLink.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationLink.md @@ -1,4 +1,5 @@ -# Class OrientationLink +# Class OrientationLink + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent information of orientation through Design Frame. ```csharp -public class OrientationLink : OrientationBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IExpression, IOrientationBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IReservable +public class OrientationLink : OrientationBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IExpression, IOrientationBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasReplaceableEntity, IReservable ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [Expression](VM.Managed.Expression.md) ← [OrientationBase](VM.Managed.OrientationBase.md) ← @@ -37,6 +38,7 @@ ILinkContainer, IOwned, IHasID, IEventProvider, +IHasReplaceableEntity, IReservable #### Inherited Members @@ -46,6 +48,8 @@ IReservable [OrientationBase.ReadXml\(XmlReader\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_ReadXml\_System\_Xml\_XmlReader\_), [OrientationBase.WriteXml\(XmlWriter\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_WriteXml\_System\_Xml\_XmlWriter\_), [OrientationBase.GetSchema\(\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_GetSchema), +[OrientationBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[OrientationBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [OrientationBase.WriteRotationAnglesToXml\(XmlWriter\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_WriteRotationAnglesToXml\_System\_Xml\_XmlWriter\_), [OrientationBase.UseExpression](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_UseExpression), [OrientationBase.RotationAngles](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_RotationAngles), @@ -115,7 +119,7 @@ IReservable [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -182,7 +186,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LinkOrientation @@ -244,7 +248,7 @@ public string GetFullName() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetSchema\(\) @@ -259,7 +263,27 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema + +### HasReplaceableEntity\(IObjectBase\) + +Gets a value indicating whether this instance has replacable entity. + +```csharp +public override bool HasReplaceableEntity(IObjectBase oldObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +#### Returns + + bool + +if this instance has replacable entity, the result is true. ### ReadXml\(XmlReader\) @@ -271,10 +295,34 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. +### ReplaceEntity\(IObjectBase, IObjectBase\) + +Replace Entity + +```csharp +public override bool ReplaceEntity(IObjectBase oldObject, IObjectBase newObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +`newObject` IObjectBase + +The new object + +#### Returns + + bool + +if success, the result is true. + ### WriteXml\(XmlWriter\) Converts an object into its XML representation. @@ -285,7 +333,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationLinkDelta.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationLinkDelta.md index b0f2fffe9c..0a46c42900 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationLinkDelta.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationLinkDelta.md @@ -1,4 +1,5 @@ -# Class OrientationLinkDelta +# Class OrientationLinkDelta + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -7,14 +8,14 @@ This class is to represent the information of orientation through Design Frame. Delta orientation is getting transformation's orientation. ```csharp -public class OrientationLinkDelta : OrientationLink, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IExpression, IOrientationBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IReservable +public class OrientationLinkDelta : OrientationLink, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IExpression, IOrientationBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasReplaceableEntity, IReservable ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [Expression](VM.Managed.Expression.md) ← [OrientationBase](VM.Managed.OrientationBase.md) ← @@ -35,6 +36,7 @@ ILinkContainer, IOwned, IHasID, IEventProvider, +IHasReplaceableEntity, IReservable #### Inherited Members @@ -44,6 +46,8 @@ IReservable [OrientationLink.ReadXml\(XmlReader\)](VM.Managed.OrientationLink.md\#VM\_Managed\_OrientationLink\_ReadXml\_System\_Xml\_XmlReader\_), [OrientationLink.WriteXml\(XmlWriter\)](VM.Managed.OrientationLink.md\#VM\_Managed\_OrientationLink\_WriteXml\_System\_Xml\_XmlWriter\_), [OrientationLink.GetSchema\(\)](VM.Managed.OrientationLink.md\#VM\_Managed\_OrientationLink\_GetSchema), +[OrientationLink.HasReplaceableEntity\(IObjectBase\)](VM.Managed.OrientationLink.md\#VM\_Managed\_OrientationLink\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[OrientationLink.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.OrientationLink.md\#VM\_Managed\_OrientationLink\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [OrientationLink.\_LinkOrientation](VM.Managed.OrientationLink.md\#VM\_Managed\_OrientationLink\_\_LinkOrientation), [OrientationLink.LinkOrientation](VM.Managed.OrientationLink.md\#VM\_Managed\_OrientationLink\_LinkOrientation), [OrientationLink.Position](VM.Managed.OrientationLink.md\#VM\_Managed\_OrientationLink\_Position), @@ -54,6 +58,8 @@ IReservable [OrientationBase.ReadXml\(XmlReader\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_ReadXml\_System\_Xml\_XmlReader\_), [OrientationBase.WriteXml\(XmlWriter\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_WriteXml\_System\_Xml\_XmlWriter\_), [OrientationBase.GetSchema\(\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_GetSchema), +[OrientationBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[OrientationBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [OrientationBase.WriteRotationAnglesToXml\(XmlWriter\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_WriteRotationAnglesToXml\_System\_Xml\_XmlWriter\_), [OrientationBase.UseExpression](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_UseExpression), [OrientationBase.RotationAngles](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_RotationAngles), @@ -123,7 +129,7 @@ IReservable [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -251,7 +257,7 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema ### ReadXml\(XmlReader\) @@ -263,7 +269,7 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -277,7 +283,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationMatrix.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationMatrix.md index 4c9f089dea..ed3a141161 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationMatrix.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationMatrix.md @@ -1,4 +1,5 @@ -# Class OrientationMatrix +# Class OrientationMatrix + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the information of orientation through OMatrix type. ```csharp -public class OrientationMatrix : OrientationBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IExpression, IOrientationBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider +public class OrientationMatrix : OrientationBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IExpression, IOrientationBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [Expression](VM.Managed.Expression.md) ← [OrientationBase](VM.Managed.OrientationBase.md) ← @@ -32,7 +33,8 @@ IObject, ILinkContainer, IOwned, IHasID, -IEventProvider +IEventProvider, +IHasReplaceableEntity #### Inherited Members @@ -41,6 +43,8 @@ IEventProvider [OrientationBase.ReadXml\(XmlReader\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_ReadXml\_System\_Xml\_XmlReader\_), [OrientationBase.WriteXml\(XmlWriter\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_WriteXml\_System\_Xml\_XmlWriter\_), [OrientationBase.GetSchema\(\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_GetSchema), +[OrientationBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[OrientationBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [OrientationBase.WriteRotationAnglesToXml\(XmlWriter\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_WriteRotationAnglesToXml\_System\_Xml\_XmlWriter\_), [OrientationBase.UseExpression](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_UseExpression), [OrientationBase.RotationAngles](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_RotationAngles), @@ -110,7 +114,7 @@ IEventProvider [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -165,7 +169,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Value @@ -194,7 +198,7 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema ### IsParametric\(\) @@ -206,7 +210,7 @@ public override bool IsParametric() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool If set to true is parametric; otherwise, false is none parametric. @@ -220,7 +224,7 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -234,7 +238,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationOneDirection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationOneDirection.md index d46ed42138..51ee6e1d67 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationOneDirection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationOneDirection.md @@ -1,4 +1,5 @@ -# Class OrientationOneDirection +# Class OrientationOneDirection + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the information of orientation of z-direction. ```csharp -public class OrientationOneDirection : OrientationBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IExpression, IOrientationBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider +public class OrientationOneDirection : OrientationBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IExpression, IOrientationBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [Expression](VM.Managed.Expression.md) ← [OrientationBase](VM.Managed.OrientationBase.md) ← @@ -32,7 +33,8 @@ IObject, ILinkContainer, IOwned, IHasID, -IEventProvider +IEventProvider, +IHasReplaceableEntity #### Inherited Members @@ -41,6 +43,8 @@ IEventProvider [OrientationBase.ReadXml\(XmlReader\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_ReadXml\_System\_Xml\_XmlReader\_), [OrientationBase.WriteXml\(XmlWriter\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_WriteXml\_System\_Xml\_XmlWriter\_), [OrientationBase.GetSchema\(\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_GetSchema), +[OrientationBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[OrientationBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [OrientationBase.WriteRotationAnglesToXml\(XmlWriter\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_WriteRotationAnglesToXml\_System\_Xml\_XmlWriter\_), [OrientationBase.UseExpression](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_UseExpression), [OrientationBase.RotationAngles](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_RotationAngles), @@ -110,7 +114,7 @@ IEventProvider [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -165,7 +169,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Value @@ -206,7 +210,27 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema + +### HasReplaceableEntity\(IObjectBase\) + +Gets a value indicating whether this instance has replacable entity. + +```csharp +public override bool HasReplaceableEntity(IObjectBase oldObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +#### Returns + + bool + +if this instance has replacable entity, the result is true. ### LinkRequestUpdate\(object, LinkEventArgs\) @@ -218,7 +242,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -236,10 +260,34 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. +### ReplaceEntity\(IObjectBase, IObjectBase\) + +Replace Entity + +```csharp +public override bool ReplaceEntity(IObjectBase oldObject, IObjectBase newObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +`newObject` IObjectBase + +The new object + +#### Returns + + bool + +if success, the result is true. + ### WriteXml\(XmlWriter\) Converts an object into its XML representation. @@ -250,7 +298,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationThreePoints.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationThreePoints.md index 299cb55030..8746e6b041 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationThreePoints.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationThreePoints.md @@ -1,4 +1,5 @@ -# Class OrientationThreePoints +# Class OrientationThreePoints + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the information of orientation through origin, z, and x points. ```csharp -public class OrientationThreePoints : OrientationBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IExpression, IOrientationBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider +public class OrientationThreePoints : OrientationBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IExpression, IOrientationBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [Expression](VM.Managed.Expression.md) ← [OrientationBase](VM.Managed.OrientationBase.md) ← @@ -32,7 +33,8 @@ IObject, ILinkContainer, IOwned, IHasID, -IEventProvider +IEventProvider, +IHasReplaceableEntity #### Inherited Members @@ -41,6 +43,8 @@ IEventProvider [OrientationBase.ReadXml\(XmlReader\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_ReadXml\_System\_Xml\_XmlReader\_), [OrientationBase.WriteXml\(XmlWriter\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_WriteXml\_System\_Xml\_XmlWriter\_), [OrientationBase.GetSchema\(\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_GetSchema), +[OrientationBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[OrientationBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [OrientationBase.WriteRotationAnglesToXml\(XmlWriter\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_WriteRotationAnglesToXml\_System\_Xml\_XmlWriter\_), [OrientationBase.UseExpression](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_UseExpression), [OrientationBase.RotationAngles](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_RotationAngles), @@ -110,7 +114,7 @@ IEventProvider [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -173,7 +177,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OriginPoint @@ -238,7 +242,27 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema + +### HasReplaceableEntity\(IObjectBase\) + +Gets a value indicating whether this instance has replacable entity. + +```csharp +public override bool HasReplaceableEntity(IObjectBase oldObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +#### Returns + + bool + +if this instance has replacable entity, the result is true. ### LinkRequestUpdate\(object, LinkEventArgs\) @@ -250,7 +274,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -268,10 +292,34 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. +### ReplaceEntity\(IObjectBase, IObjectBase\) + +Replace Entity + +```csharp +public override bool ReplaceEntity(IObjectBase oldObject, IObjectBase newObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +`newObject` IObjectBase + +The new object + +#### Returns + + bool + +if success, the result is true. + ### WriteXml\(XmlWriter\) Converts an object into its XML representation. @@ -282,7 +330,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationTwoDirections.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationTwoDirections.md index abf2f31c27..d4505b942f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationTwoDirections.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.OrientationTwoDirections.md @@ -1,4 +1,5 @@ -# Class OrientationTwoDirections +# Class OrientationTwoDirections + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the information of orientation of z and x directions. ```csharp -public class OrientationTwoDirections : OrientationBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IExpression, IOrientationBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider +public class OrientationTwoDirections : OrientationBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IExpression, IOrientationBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [Expression](VM.Managed.Expression.md) ← [OrientationBase](VM.Managed.OrientationBase.md) ← @@ -32,7 +33,8 @@ IObject, ILinkContainer, IOwned, IHasID, -IEventProvider +IEventProvider, +IHasReplaceableEntity #### Inherited Members @@ -41,6 +43,8 @@ IEventProvider [OrientationBase.ReadXml\(XmlReader\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_ReadXml\_System\_Xml\_XmlReader\_), [OrientationBase.WriteXml\(XmlWriter\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_WriteXml\_System\_Xml\_XmlWriter\_), [OrientationBase.GetSchema\(\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_GetSchema), +[OrientationBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[OrientationBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [OrientationBase.WriteRotationAnglesToXml\(XmlWriter\)](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_WriteRotationAnglesToXml\_System\_Xml\_XmlWriter\_), [OrientationBase.UseExpression](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_UseExpression), [OrientationBase.RotationAngles](VM.Managed.OrientationBase.md\#VM\_Managed\_OrientationBase\_RotationAngles), @@ -110,7 +114,7 @@ IEventProvider [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -169,7 +173,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Value @@ -222,7 +226,27 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema + +### HasReplaceableEntity\(IObjectBase\) + +Gets a value indicating whether this instance has replacable entity. + +```csharp +public override bool HasReplaceableEntity(IObjectBase oldObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +#### Returns + + bool + +if this instance has replacable entity, the result is true. ### LinkRequestUpdate\(object, LinkEventArgs\) @@ -234,7 +258,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -252,10 +276,34 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. +### ReplaceEntity\(IObjectBase, IObjectBase\) + +Replace Entity + +```csharp +public override bool ReplaceEntity(IObjectBase oldObject, IObjectBase newObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +`newObject` IObjectBase + +The new object + +#### Returns + + bool + +if success, the result is true. + ### WriteXml\(XmlWriter\) Converts an object into its XML representation. @@ -266,7 +314,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Owned.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Owned.md index 55e7ea0424..a04d3d122e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Owned.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Owned.md @@ -1,4 +1,5 @@ -# Class Owned +# Class Owned + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class Owned #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Owned](VM.Managed.Owned.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.FE.PickerMesh.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.FE.PickerMesh.md index ad80bb43e5..0bd7a84902 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.FE.PickerMesh.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.FE.PickerMesh.md @@ -1,4 +1,5 @@ -# Class PickerMesh +# Class PickerMesh + Namespace: [VM.Managed.Picker.Core.FE](VM.Managed.Picker.Core.FE.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class PickerMesh : PickerBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PickerBase](VM.Managed.Picker.Core.PickerBase.md) ← [PickerMesh](VM.Managed.Picker.Core.FE.PickerMesh.md) @@ -68,7 +69,7 @@ public override string GetPickerInfo() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SetResultImpl\(ref string, bool\) @@ -80,17 +81,17 @@ protected override bool SetResultImpl(ref string strXml, bool bXmlOnly) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The picked data. -`bXmlOnly` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bXmlOnly` bool If it is true, skip the result setting. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.FE.PickerMultiNode.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.FE.PickerMultiNode.md index 3065695d38..be06026dbd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.FE.PickerMultiNode.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.FE.PickerMultiNode.md @@ -1,4 +1,5 @@ -# Class PickerMultiNode +# Class PickerMultiNode + Namespace: [VM.Managed.Picker.Core.FE](VM.Managed.Picker.Core.FE.md) Assembly: VMFE.dll @@ -11,7 +12,7 @@ public class PickerMultiNode : PickerMultiNodeBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← PickerBase ← PickerMulti ← [PickerMultiNodeBase](VM.Managed.Picker.Core.FE.PickerMultiNodeBase.md) ← @@ -69,7 +70,7 @@ public PickerMultiNode(uint[] arUsedNodes) #### Parameters -`arUsedNodes` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`arUsedNodes` uint\[\] unselectable node indexes. @@ -91,7 +92,7 @@ protected List m_lstRejectNode #### Field Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[uint](https://learn.microsoft.com/dotnet/api/system.uint32)\> + List ### m\_lstSelectedNode @@ -101,7 +102,7 @@ protected List m_lstSelectedNode #### Field Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[uint](https://learn.microsoft.com/dotnet/api/system.uint32)\> + List ## Methods @@ -115,7 +116,7 @@ public override string GetPickerInfo() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The picker information. @@ -129,13 +130,13 @@ public override string GetResultXmlFromKey(UIntPtr[] arKey) #### Parameters -`arKey` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\[\] +`arKey` UIntPtr\[\] Picking destination keys. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -149,13 +150,13 @@ public override string GetResultXmlFromKey(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr Picking destination key. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -167,11 +168,11 @@ public override void SetHighlight(List lstNode, bool bHighlight, bool b #### Parameters -`lstNode` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\> +`lstNode` List -`bHighlight` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHighlight` bool -`bUpdate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUpdate` bool ### SetResultImpl\(ref string, bool\) @@ -183,17 +184,17 @@ protected override bool SetResultImpl(ref string strXml, bool bXmlOnly) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The picked data. -`bXmlOnly` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bXmlOnly` bool Whether only xml or not. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.FE.PickerMultiNodeBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.FE.PickerMultiNodeBase.md index 8aa7cf097d..b85d086d2d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.FE.PickerMultiNodeBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.FE.PickerMultiNodeBase.md @@ -1,4 +1,5 @@ -# Class PickerMultiNodeBase +# Class PickerMultiNodeBase + Namespace: [VM.Managed.Picker.Core.FE](VM.Managed.Picker.Core.FE.md) Assembly: VMFE.dll @@ -11,7 +12,7 @@ public abstract class PickerMultiNodeBase : PickerMulti #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← PickerBase ← PickerMulti ← [PickerMultiNodeBase](VM.Managed.Picker.Core.FE.PickerMultiNodeBase.md) @@ -100,7 +101,7 @@ protected IMesh* GetMesh() #### Returns - [IMesh](VM.DAFUL.FE.IMesh.md)\* + IMesh\* The mesh. @@ -114,13 +115,13 @@ public uint GetNodeID(uint nNodeIndex) #### Parameters -`nNodeIndex` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nNodeIndex` uint The node index. #### Returns - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint The node ID. @@ -134,7 +135,7 @@ public void SetOwnerMesh(UIntPtr keyMesh) #### Parameters -`keyMesh` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`keyMesh` UIntPtr The mesh proxy. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.FE.PickerMultiPatch.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.FE.PickerMultiPatch.md index a8854fb106..6f53334133 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.FE.PickerMultiPatch.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.FE.PickerMultiPatch.md @@ -1,4 +1,5 @@ -# Class PickerMultiPatch +# Class PickerMultiPatch + Namespace: [VM.Managed.Picker.Core.FE](VM.Managed.Picker.Core.FE.md) Assembly: VMFE.dll @@ -11,7 +12,7 @@ public class PickerMultiPatch : PickerMultiNodeBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← PickerBase ← PickerMulti ← [PickerMultiNodeBase](VM.Managed.Picker.Core.FE.PickerMultiNodeBase.md) ← @@ -85,7 +86,7 @@ protected int m_nPatchNodeIndex #### Field Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -97,9 +98,9 @@ public override void GetAdjacentPatch(double dAngle, List lstNode) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double -`lstNode` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`lstNode` List ### GetPickerInfo\(\) @@ -111,7 +112,7 @@ public override string GetPickerInfo() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The picker information. @@ -125,13 +126,13 @@ public override string GetResultXmlFromKey(UIntPtr[] arKey) #### Parameters -`arKey` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\[\] +`arKey` UIntPtr\[\] Picking destination keys. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -145,13 +146,13 @@ public override string GetResultXmlFromKey(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr Picking destination key. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -163,11 +164,11 @@ public override void SetHighlight(List lstPatch, bool bHighlight, bool #### Parameters -`lstPatch` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\> +`lstPatch` List -`bHighlight` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHighlight` bool -`bUpdate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUpdate` bool ### SetResultImpl\(ref string, bool\) @@ -179,17 +180,17 @@ protected override bool SetResultImpl(ref string strXml, bool bXmlOnly) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The picked data. -`bXmlOnly` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bXmlOnly` bool Whether only xml or not. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.FE.PickerNode.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.FE.PickerNode.md index 99588a93d9..827a79de05 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.FE.PickerNode.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.FE.PickerNode.md @@ -1,4 +1,5 @@ -# Class PickerNode +# Class PickerNode + Namespace: [VM.Managed.Picker.Core.FE](VM.Managed.Picker.Core.FE.md) Assembly: VMFE.dll @@ -11,7 +12,7 @@ public class PickerNode : PickerBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← PickerBase ← [PickerNode](VM.Managed.Picker.Core.FE.PickerNode.md) @@ -68,13 +69,13 @@ public override bool Filtering(UIntPtr pTarget) #### Parameters -`pTarget` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pTarget` UIntPtr Filtering target. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if sucess; otherwise, false. @@ -88,11 +89,11 @@ public VectorBase GetNodePosition(UIntPtr pOwnerKey, int iNodeIndex) #### Parameters -`pOwnerKey` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pOwnerKey` UIntPtr The Owner mesh key. -`iNodeIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`iNodeIndex` int The node index. @@ -112,7 +113,7 @@ public override string GetPickerInfo() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The picker information. @@ -126,7 +127,7 @@ public override void Highlight(bool bHighlight) #### Parameters -`bHighlight` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHighlight` bool If set to ture is highlight; otherwise, false isn't highlight. @@ -140,17 +141,17 @@ protected override bool SetResultImpl(ref string strXml, bool bXmlOnly) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The picked data. -`bXmlOnly` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bXmlOnly` bool Whether only xml or not. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.FE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.FE.md index eab983e417..14a9e3b98f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.FE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.FE.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.Picker.Core.FE +# Namespace VM.Managed.Picker.Core.FE + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.FilterArgs.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.FilterArgs.md index 46d8251acb..86886502e0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.FilterArgs.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.FilterArgs.md @@ -1,4 +1,5 @@ -# Class FilterArgs +# Class FilterArgs + Namespace: [VM.Managed.Picker.Core](VM.Managed.Picker.Core.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public class FilterArgs : EventArgs #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) ← +object ← +EventArgs ← [FilterArgs](VM.Managed.Picker.Core.FilterArgs.md) #### Extension Methods @@ -47,7 +48,7 @@ public bool OK { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Target diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.FilteringTarget.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.FilteringTarget.md index aa8c1fdacd..1f4dca107e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.FilteringTarget.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.FilteringTarget.md @@ -1,4 +1,5 @@ -# Class FilteringTarget +# Class FilteringTarget + Namespace: [VM.Managed.Picker.Core](VM.Managed.Picker.Core.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class FilteringTarget #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [FilteringTarget](VM.Managed.Picker.Core.FilteringTarget.md) #### Extension Methods @@ -46,7 +47,7 @@ public bool IsReplace { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OriginalObject diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerBase.md index 8682274299..e560981349 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerBase.md @@ -1,4 +1,5 @@ -# Class PickerBase +# Class PickerBase + Namespace: [VM.Managed.Picker.Core](VM.Managed.Picker.Core.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public abstract class PickerBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PickerBase](VM.Managed.Picker.Core.PickerBase.md) #### Derived @@ -67,7 +68,7 @@ protected bool IsOnlyResultXml { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsReference @@ -79,7 +80,7 @@ public bool IsReference { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Result @@ -91,7 +92,7 @@ public virtual object Result { get; protected set; } #### Property Value - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### ResultXml @@ -111,7 +112,7 @@ public string ResultXml { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SymmetricType @@ -123,7 +124,7 @@ public Enum SymmetricType { get; set; } #### Property Value - [Enum](https://learn.microsoft.com/dotnet/api/system.enum) + Enum ## Methods @@ -145,13 +146,13 @@ public virtual bool Filtering(UIntPtr pTarget) #### Parameters -`pTarget` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pTarget` UIntPtr Filtering target. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -165,13 +166,13 @@ public virtual bool FilteringAnother(UIntPtr pTarget) #### Parameters -`pTarget` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pTarget` UIntPtr Filtering target. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -185,17 +186,17 @@ public virtual bool FilteringReference(UIntPtr pOwner, UIntPtr pTarget) #### Parameters -`pOwner` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pOwner` UIntPtr Filtering owner of target. -`pTarget` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pTarget` UIntPtr Filtering target. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -209,13 +210,13 @@ public virtual bool FilteringVMPID(_VM_ID nVMPID) #### Parameters -`nVMPID` [\_VM\_ID](\_VM\_ID.md) +`nVMPID` \_VM\_ID Filtering target PID. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -227,9 +228,9 @@ public virtual void GetAdjacentPatch(double dAngle, List lstNode) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double -`lstNode` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`lstNode` List ### GetChangeNoneParametricXml\(string\) @@ -241,13 +242,13 @@ public virtual string GetChangeNoneParametricXml(string strXml) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string Result of parametric. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The result xml of none parametric. @@ -261,7 +262,7 @@ public abstract string GetPickerInfo() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetResultXmlFromKey\(UIntPtr\) @@ -273,13 +274,13 @@ public virtual string GetResultXmlFromKey(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr Picking destination key. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -293,13 +294,13 @@ public virtual string GetValidResultXml(string strDesireXml) #### Parameters -`strDesireXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDesireXml` string Invalid result xml. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -313,7 +314,7 @@ public virtual void Highlight(bool bHighlight) #### Parameters -`bHighlight` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHighlight` bool If set to ture is highlight; otherwise, false isn't highlight. @@ -329,13 +330,13 @@ public bool Pick(bool bGetXmlOnly) #### Parameters -`bGetXmlOnly` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bGetXmlOnly` bool If set to true set result xml; otherwise, If set to false set result object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -351,17 +352,17 @@ public bool PickWithStartSignal(bool bGetXmlOnly, ManualResetEvent eventPickStar #### Parameters -`bGetXmlOnly` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bGetXmlOnly` bool If set to true set result xml; otherwise, If set to false set result object. -`eventPickStart` [ManualResetEvent](https://learn.microsoft.com/dotnet/api/system.threading.manualresetevent) +`eventPickStart` ManualResetEvent picking start signal. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -375,17 +376,17 @@ protected abstract bool SetResultImpl(ref string strXml, bool bXmlOnly) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The picked data. -`bXmlOnly` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bXmlOnly` bool If it is true, skip the result setting. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -405,7 +406,7 @@ public virtual bool UseEntityFiltering() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### raise\_CustomFilterEvent\(object, FilterArgs\) @@ -415,7 +416,7 @@ protected void raise_CustomFilterEvent(object value0, FilterArgs value1) #### Parameters -`value0` [object](https://learn.microsoft.com/dotnet/api/system.object) +`value0` object `value1` [FilterArgs](VM.Managed.Picker.Core.FilterArgs.md) @@ -427,5 +428,5 @@ public event EventHandler CustomFilterEvent #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[FilterArgs](VM.Managed.Picker.Core.FilterArgs.md)\> + EventHandler<[FilterArgs](VM.Managed.Picker.Core.FilterArgs.md)\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerDirection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerDirection.md index 067923d386..8b44b06802 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerDirection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerDirection.md @@ -1,4 +1,5 @@ -# Class PickerDirection +# Class PickerDirection + Namespace: [VM.Managed.Picker.Core](VM.Managed.Picker.Core.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class PickerDirection : PickerBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PickerBase](VM.Managed.Picker.Core.PickerBase.md) ← [PickerDirection](VM.Managed.Picker.Core.PickerDirection.md) @@ -70,7 +71,7 @@ public override object Result { get; } #### Property Value - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ## Methods @@ -84,13 +85,13 @@ public override bool Filtering(UIntPtr pTarget) #### Parameters -`pTarget` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pTarget` UIntPtr Filtering target. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -104,17 +105,17 @@ public override bool FilteringReference(UIntPtr pOwner, UIntPtr pTarget) #### Parameters -`pOwner` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pOwner` UIntPtr Filtering owner of target. -`pTarget` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pTarget` UIntPtr Filtering target. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -128,13 +129,13 @@ public override string GetChangeNoneParametricXml(string strXml) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string Result of parametric. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The result xml of none parametric. @@ -148,7 +149,7 @@ public override string GetPickerInfo() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetResultXmlFromKey\(UIntPtr\) @@ -160,13 +161,13 @@ public override string GetResultXmlFromKey(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr Picking destination key. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -180,13 +181,13 @@ public override string GetValidResultXml(string strDesireXml) #### Parameters -`strDesireXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDesireXml` string Invalid result xml. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -200,7 +201,7 @@ public override void Highlight(bool bHighlight) #### Parameters -`bHighlight` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHighlight` bool If set to ture is highlight; otherwise, false isn't highlight. @@ -214,17 +215,17 @@ protected override bool SetResultImpl(ref string strXml, bool bXmlOnly) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The picked data. -`bXmlOnly` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bXmlOnly` bool If it is true, skip the result setting. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerEdge.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerEdge.md index 36115206b0..d04f1897b3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerEdge.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerEdge.md @@ -1,4 +1,5 @@ -# Class PickerEdge +# Class PickerEdge + Namespace: [VM.Managed.Picker.Core](VM.Managed.Picker.Core.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class PickerEdge : PickerTopol #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PickerBase](VM.Managed.Picker.Core.PickerBase.md) ← [PickerTopol](VM.Managed.Picker.Core.PickerTopol.md) ← [PickerEdge](VM.Managed.Picker.Core.PickerEdge.md) @@ -72,7 +73,7 @@ public override string GetPickerInfo() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SetResultImpl\(ref string, bool\) @@ -84,17 +85,17 @@ protected override bool SetResultImpl(ref string strXml, bool bXmlOnly) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The picked data. -`bXmlOnly` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bXmlOnly` bool If it is true, skip the result setting. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerEntityVM.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerEntityVM.md index 8f67a47038..4b1dbcd566 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerEntityVM.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerEntityVM.md @@ -1,4 +1,5 @@ -# Class PickerEntityVM +# Class PickerEntityVM + Namespace: [VM.Managed.Picker.Core](VM.Managed.Picker.Core.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class PickerEntityVM : PickerBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PickerBase](VM.Managed.Picker.Core.PickerBase.md) ← [PickerEntityVM](VM.Managed.Picker.Core.PickerEntityVM.md) @@ -60,7 +61,7 @@ public PickerEntityVM(Type[] arTypes) #### Parameters -`arTypes` [Type](https://learn.microsoft.com/dotnet/api/system.type)\[\] +`arTypes` Type\[\] The types of entitys for pick. @@ -74,11 +75,11 @@ public PickerEntityVM(Type type, bool bIsInterface) #### Parameters -`type` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`type` Type The type of entity for pick. -`bIsInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bIsInterface` bool Whether interface or not. @@ -94,13 +95,13 @@ public override bool Filtering(UIntPtr pTarget) #### Parameters -`pTarget` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pTarget` UIntPtr Filtering target. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -114,7 +115,7 @@ public Type[] GetPickableType() #### Returns - [Type](https://learn.microsoft.com/dotnet/api/system.type)\[\] + Type\[\] The array of pickable type. @@ -128,7 +129,7 @@ public override string GetPickerInfo() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetResultXmlFromKey\(UIntPtr\) @@ -140,13 +141,13 @@ public override string GetResultXmlFromKey(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr Picking destination key. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -160,7 +161,7 @@ public override void Highlight(bool bHighlight) #### Parameters -`bHighlight` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHighlight` bool If set to ture is highlight; otherwise, false isn't highlight. @@ -174,17 +175,17 @@ protected override bool SetResultImpl(ref string strXml, bool bXmlOnly) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The picked data. -`bXmlOnly` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bXmlOnly` bool If it is true, skip the result setting. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerFace.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerFace.md index 7fd0380913..52b49d26ab 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerFace.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerFace.md @@ -1,4 +1,5 @@ -# Class PickerFace +# Class PickerFace + Namespace: [VM.Managed.Picker.Core](VM.Managed.Picker.Core.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class PickerFace : PickerTopol #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PickerBase](VM.Managed.Picker.Core.PickerBase.md) ← [PickerTopol](VM.Managed.Picker.Core.PickerTopol.md) ← [PickerFace](VM.Managed.Picker.Core.PickerFace.md) @@ -90,13 +91,13 @@ public override bool Filtering(UIntPtr pTarget) #### Parameters -`pTarget` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pTarget` UIntPtr Filtering target. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -110,13 +111,13 @@ public override bool FilteringAnother(UIntPtr pTarget) #### Parameters -`pTarget` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pTarget` UIntPtr Filtering target. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -130,7 +131,7 @@ public override string GetPickerInfo() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SetResultImpl\(ref string, bool\) @@ -142,17 +143,17 @@ protected override bool SetResultImpl(ref string strXml, bool bXmlOnly) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The picked data. -`bXmlOnly` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bXmlOnly` bool If it is true, skip the result setting. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerFaceset.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerFaceset.md index 88483ae927..dafe88820a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerFaceset.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerFaceset.md @@ -1,4 +1,5 @@ -# Class PickerFaceset +# Class PickerFaceset + Namespace: [VM.Managed.Picker.Core](VM.Managed.Picker.Core.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class PickerFaceset : PickerFace #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PickerBase](VM.Managed.Picker.Core.PickerBase.md) ← [PickerTopol](VM.Managed.Picker.Core.PickerTopol.md) ← [PickerFace](VM.Managed.Picker.Core.PickerFace.md) ← @@ -81,13 +82,13 @@ public override bool Filtering(UIntPtr pTarget) #### Parameters -`pTarget` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pTarget` UIntPtr Filtering target. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -101,13 +102,13 @@ public override bool FilteringAnother(UIntPtr pTarget) #### Parameters -`pTarget` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pTarget` UIntPtr Filtering target. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -121,17 +122,17 @@ public override bool FilteringReference(UIntPtr pOwner, UIntPtr pTarget) #### Parameters -`pOwner` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pOwner` UIntPtr Filtering owner of target. -`pTarget` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pTarget` UIntPtr Filtering target. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -145,7 +146,7 @@ public override string GetPickerInfo() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetResultXmlFromKey\(UIntPtr\) @@ -157,13 +158,13 @@ public override string GetResultXmlFromKey(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr Picking destination key. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -177,7 +178,7 @@ public override void Highlight(bool bHighlight) #### Parameters -`bHighlight` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHighlight` bool If set to ture is highlight; otherwise, false isn't highlight. @@ -191,17 +192,17 @@ protected override bool SetResultImpl(ref string strXml, bool bXmlOnly) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The picked data. -`bXmlOnly` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bXmlOnly` bool If it is true, skip the result setting. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerFacesetSphere.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerFacesetSphere.md index afa3d6d420..b5a747626f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerFacesetSphere.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerFacesetSphere.md @@ -1,4 +1,5 @@ -# Class PickerFacesetSphere +# Class PickerFacesetSphere + Namespace: [VM.Managed.Picker.Core](VM.Managed.Picker.Core.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class PickerFacesetSphere : PickerFaceset #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PickerBase](VM.Managed.Picker.Core.PickerBase.md) ← [PickerTopol](VM.Managed.Picker.Core.PickerTopol.md) ← [PickerFace](VM.Managed.Picker.Core.PickerFace.md) ← @@ -85,5 +86,5 @@ public override string GetPickerInfo() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerGear.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerGear.md index 375b43d77e..559869289c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerGear.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerGear.md @@ -1,4 +1,5 @@ -# Class PickerGear +# Class PickerGear + Namespace: [VM.Managed.Picker.Core](VM.Managed.Picker.Core.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class PickerGear : PickerBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PickerBase](VM.Managed.Picker.Core.PickerBase.md) ← [PickerGear](VM.Managed.Picker.Core.PickerGear.md) @@ -70,13 +71,13 @@ public override bool Filtering(UIntPtr pTarget) #### Parameters -`pTarget` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pTarget` UIntPtr Filtering target. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -90,7 +91,7 @@ public override string GetPickerInfo() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetResultXmlFromKey\(UIntPtr\) @@ -102,13 +103,13 @@ public override string GetResultXmlFromKey(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr Picking destination key. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -122,7 +123,7 @@ public override void Highlight(bool bHighlight) #### Parameters -`bHighlight` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHighlight` bool If set to ture is highlight; otherwise, false isn't highlight. @@ -136,17 +137,17 @@ protected override bool SetResultImpl(ref string strXml, bool bXmlOnly) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The picked data. -`bXmlOnly` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bXmlOnly` bool If it is true, skip the result setting. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerGeneral.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerGeneral.md index 68c1c78952..ef28f782f7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerGeneral.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerGeneral.md @@ -1,4 +1,5 @@ -# Class PickerGeneral +# Class PickerGeneral + Namespace: [VM.Managed.Picker.Core](VM.Managed.Picker.Core.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public abstract class PickerGeneral : PickerBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PickerBase](VM.Managed.Picker.Core.PickerBase.md) ← [PickerGeneral](VM.Managed.Picker.Core.PickerGeneral.md) @@ -58,7 +59,7 @@ public PickerGeneral(ICollection arTypes) #### Parameters -`arTypes` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[Type](https://learn.microsoft.com/dotnet/api/system.type)\> +`arTypes` ICollection ### PickerGeneral\(Type, bool\) @@ -70,11 +71,11 @@ public PickerGeneral(Type type, bool bIsInterface) #### Parameters -`type` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`type` Type The type of entity for pick. -`bIsInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bIsInterface` bool Whether interface or not. @@ -90,7 +91,7 @@ public bool AllowChildSubsystem { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PickableTypes @@ -102,7 +103,7 @@ public Type[] PickableTypes { get; } #### Property Value - [Type](https://learn.microsoft.com/dotnet/api/system.type)\[\] + Type\[\] ## Methods @@ -118,7 +119,7 @@ protected abstract UIntPtr ConvertKeyToInstanceContainerImpl(ObjectBase obj) #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### Filtering\(UIntPtr\) @@ -130,13 +131,13 @@ public override bool Filtering(UIntPtr pTarget) #### Parameters -`pTarget` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pTarget` UIntPtr Filtering target. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -150,17 +151,17 @@ public override bool FilteringReference(UIntPtr pOwner, UIntPtr pTarget) #### Parameters -`pOwner` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pOwner` UIntPtr Filtering owner of target. -`pTarget` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pTarget` UIntPtr Filtering target. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -172,9 +173,9 @@ protected abstract ObjectBase GetBodyImpl(UIntPtr pKey, bool bIgnoreMarker) #### Parameters -`pKey` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pKey` UIntPtr -`bIgnoreMarker` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bIgnoreMarker` bool #### Returns @@ -190,7 +191,7 @@ public override string GetPickerInfo() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetResultXmlFromKey\(UIntPtr\) @@ -202,13 +203,13 @@ public override string GetResultXmlFromKey(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr Picking destination key. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -222,7 +223,7 @@ public override void Highlight(bool bHighlight) #### Parameters -`bHighlight` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHighlight` bool If set to ture is highlight; otherwise, false isn't highlight. @@ -236,7 +237,7 @@ protected void HighlightCurveset(ObjectBase obj, bool bHighlight) `obj` [ObjectBase](VM.Managed.ObjectBase.md) -`bHighlight` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHighlight` bool ### HighlightFaceset\(ObjectBase, bool\) @@ -248,7 +249,7 @@ protected void HighlightFaceset(ObjectBase obj, bool bHighlight) `obj` [ObjectBase](VM.Managed.ObjectBase.md) -`bHighlight` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHighlight` bool ### HighlightGeometry\(ObjectBase, bool\) @@ -260,7 +261,7 @@ protected void HighlightGeometry(ObjectBase obj, bool bHighlight) `obj` [ObjectBase](VM.Managed.ObjectBase.md) -`bHighlight` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHighlight` bool ### HighlightImpl\(ObjectBase, bool\) @@ -272,11 +273,11 @@ protected abstract bool HighlightImpl(ObjectBase obj, bool bHighlight) `obj` [ObjectBase](VM.Managed.ObjectBase.md) -`bHighlight` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHighlight` bool #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### HighlightInstanceContainer\(ObjectBase, bool\) @@ -288,7 +289,7 @@ protected void HighlightInstanceContainer(ObjectBase obj, bool bHighlight) `obj` [ObjectBase](VM.Managed.ObjectBase.md) -`bHighlight` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHighlight` bool ### HighlightOpenDesigner\(ObjectBase, bool\) @@ -300,7 +301,7 @@ protected void HighlightOpenDesigner(ObjectBase obj, bool bHighlight) `obj` [ObjectBase](VM.Managed.ObjectBase.md) -`bHighlight` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHighlight` bool ### HighlightReferenceFaceset\(ObjectBase, bool, bool\) @@ -312,9 +313,9 @@ protected void HighlightReferenceFaceset(ObjectBase obj, bool bHighlight, bool b `obj` [ObjectBase](VM.Managed.ObjectBase.md) -`bHighlight` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHighlight` bool -`bUpdate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUpdate` bool ### IsAcceptedPickAndModifiedTargetObject\(ref ObjectBase\) @@ -332,7 +333,7 @@ The picked object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if accepted; otherwise, false. @@ -346,17 +347,17 @@ protected override bool SetResultImpl(ref string strXml, bool bXmlOnly) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The picked data. -`bXmlOnly` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bXmlOnly` bool If it is true, skip the result setting. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerHole.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerHole.md index 22a686cf8b..48071faaeb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerHole.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerHole.md @@ -1,4 +1,5 @@ -# Class PickerHole +# Class PickerHole + Namespace: [VM.Managed.Picker.Core](VM.Managed.Picker.Core.md) Assembly: VMAppCore.dll @@ -12,7 +13,7 @@ public class PickerHole : PickerBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PickerBase](VM.Managed.Picker.Core.PickerBase.md) ← [PickerHole](VM.Managed.Picker.Core.PickerHole.md) @@ -71,7 +72,7 @@ public override object Result { get; } #### Property Value - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ## Methods @@ -85,7 +86,7 @@ public override string GetPickerInfo() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SetResultImpl\(ref string, bool\) @@ -97,17 +98,17 @@ protected override bool SetResultImpl(ref string strXml, bool bXmlOnly) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The picked data. -`bXmlOnly` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bXmlOnly` bool If it is true, skip the result setting. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerMulti.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerMulti.md index 6e5a1cdafa..091f361c18 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerMulti.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerMulti.md @@ -1,4 +1,5 @@ -# Class PickerMulti +# Class PickerMulti + Namespace: [VM.Managed.Picker.Core](VM.Managed.Picker.Core.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public abstract class PickerMulti : PickerBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PickerBase](VM.Managed.Picker.Core.PickerBase.md) ← [PickerMulti](VM.Managed.Picker.Core.PickerMulti.md) @@ -76,11 +77,11 @@ public virtual string GetResultXmlFromKey(UIntPtr[] A_0) #### Parameters -`A_0` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\[\] +`A_0` UIntPtr\[\] #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -92,9 +93,9 @@ public abstract void SetHighlight(List lstObject, bool bHighlight, bool #### Parameters -`lstObject` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\> +`lstObject` List -`bHighlight` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHighlight` bool -`bUpdate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUpdate` bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerMultiEdge.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerMultiEdge.md index 5e6d318aef..b3ba0c6f42 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerMultiEdge.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerMultiEdge.md @@ -1,4 +1,5 @@ -# Class PickerMultiEdge +# Class PickerMultiEdge + Namespace: [VM.Managed.Picker.Core](VM.Managed.Picker.Core.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class PickerMultiEdge : PickerMultiTopol #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PickerBase](VM.Managed.Picker.Core.PickerBase.md) ← [PickerMulti](VM.Managed.Picker.Core.PickerMulti.md) ← [PickerMultiTopol](VM.Managed.Picker.Core.PickerMultiTopol.md) ← @@ -95,7 +96,7 @@ public Type[] PickableTypes { get; } #### Property Value - [Type](https://learn.microsoft.com/dotnet/api/system.type)\[\] + Type\[\] ## Methods @@ -109,13 +110,13 @@ public override bool Filtering(UIntPtr pTarget) #### Parameters -`pTarget` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pTarget` UIntPtr Filtering target. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -129,13 +130,13 @@ public override bool FilteringAnother(UIntPtr pTarget) #### Parameters -`pTarget` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pTarget` UIntPtr Filtering target. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -149,7 +150,7 @@ public override string GetPickerInfo() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetResultXmlFromKey\(UIntPtr\[\]\) @@ -161,11 +162,11 @@ public override string GetResultXmlFromKey(UIntPtr[] arKey) #### Parameters -`arKey` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\[\] +`arKey` UIntPtr\[\] #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -179,13 +180,13 @@ public override string GetResultXmlFromKey(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr Picking destination key. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -207,17 +208,17 @@ protected override bool SetResultImpl(ref string strXml, bool bXmlOnly) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The picked data. -`bXmlOnly` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bXmlOnly` bool If it is true, skip the result setting. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerMultiEntityVM.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerMultiEntityVM.md index 86ec0060aa..2fea7de37d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerMultiEntityVM.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerMultiEntityVM.md @@ -1,4 +1,5 @@ -# Class PickerMultiEntityVM +# Class PickerMultiEntityVM + Namespace: [VM.Managed.Picker.Core](VM.Managed.Picker.Core.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class PickerMultiEntityVM : PickerMulti #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PickerBase](VM.Managed.Picker.Core.PickerBase.md) ← [PickerMulti](VM.Managed.Picker.Core.PickerMulti.md) ← [PickerMultiEntityVM](VM.Managed.Picker.Core.PickerMultiEntityVM.md) @@ -61,11 +62,11 @@ public PickerMultiEntityVM(Type type, bool bIsInterface, bool bIsReference) #### Parameters -`type` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`type` Type -`bIsInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bIsInterface` bool -`bIsReference` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bIsReference` bool ### PickerMultiEntityVM\(Type\[\]\) @@ -75,7 +76,7 @@ public PickerMultiEntityVM(Type[] arTypes) #### Parameters -`arTypes` [Type](https://learn.microsoft.com/dotnet/api/system.type)\[\] +`arTypes` Type\[\] ### PickerMultiEntityVM\(Type, bool\) @@ -85,9 +86,9 @@ public PickerMultiEntityVM(Type type, bool bIsInterface) #### Parameters -`type` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`type` Type -`bIsInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bIsInterface` bool ## Properties @@ -99,7 +100,7 @@ public Type[] EntityTypes { get; } #### Property Value - [Type](https://learn.microsoft.com/dotnet/api/system.type)\[\] + Type\[\] ## Methods @@ -113,13 +114,13 @@ public override bool Filtering(UIntPtr pTarget) #### Parameters -`pTarget` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pTarget` UIntPtr Filtering target. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -133,17 +134,17 @@ public override bool FilteringReference(UIntPtr pOwner, UIntPtr pTarget) #### Parameters -`pOwner` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pOwner` UIntPtr Filtering owner of target. -`pTarget` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pTarget` UIntPtr Filtering target. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -157,7 +158,7 @@ public override string GetPickerInfo() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetResultXmlFromKey\(UIntPtr\[\]\) @@ -169,11 +170,11 @@ public override string GetResultXmlFromKey(UIntPtr[] arKey) #### Parameters -`arKey` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\[\] +`arKey` UIntPtr\[\] #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -187,13 +188,13 @@ public override string GetResultXmlFromKey(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr Picking destination key. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -205,11 +206,11 @@ public override void SetHighlight(List lstEntity, bool bHighlight, bool #### Parameters -`lstEntity` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\> +`lstEntity` List -`bHighlight` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHighlight` bool -`bUpdate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUpdate` bool ### SetResultImpl\(ref string, bool\) @@ -221,17 +222,17 @@ protected override bool SetResultImpl(ref string strXml, bool bXmlOnly) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The picked data. -`bXmlOnly` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bXmlOnly` bool If it is true, skip the result setting. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -243,5 +244,5 @@ public override bool UseEntityFiltering() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerMultiFace.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerMultiFace.md index 96b18e345a..9076741acf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerMultiFace.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerMultiFace.md @@ -1,4 +1,5 @@ -# Class PickerMultiFace +# Class PickerMultiFace + Namespace: [VM.Managed.Picker.Core](VM.Managed.Picker.Core.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class PickerMultiFace : PickerMultiTopol #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PickerBase](VM.Managed.Picker.Core.PickerBase.md) ← [PickerMulti](VM.Managed.Picker.Core.PickerMulti.md) ← [PickerMultiTopol](VM.Managed.Picker.Core.PickerMultiTopol.md) ← @@ -95,7 +96,7 @@ public Type[] PickableTypes { get; } #### Property Value - [Type](https://learn.microsoft.com/dotnet/api/system.type)\[\] + Type\[\] ## Methods @@ -109,13 +110,13 @@ public override bool Filtering(UIntPtr pTarget) #### Parameters -`pTarget` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pTarget` UIntPtr Filtering target. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -129,13 +130,13 @@ public override bool FilteringAnother(UIntPtr pTarget) #### Parameters -`pTarget` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pTarget` UIntPtr Filtering target. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -149,7 +150,7 @@ public override string GetPickerInfo() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetResultXmlFromKey\(UIntPtr\[\]\) @@ -161,11 +162,11 @@ public override string GetResultXmlFromKey(UIntPtr[] arKey) #### Parameters -`arKey` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\[\] +`arKey` UIntPtr\[\] #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -179,13 +180,13 @@ public override string GetResultXmlFromKey(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr Picking destination key. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -207,17 +208,17 @@ protected override bool SetResultImpl(ref string strXml, bool bXmlOnly) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The picked data. -`bXmlOnly` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bXmlOnly` bool If it is true, skip the result setting. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerMultiGeneral.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerMultiGeneral.md index 129cde658e..0680adf3c0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerMultiGeneral.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerMultiGeneral.md @@ -1,4 +1,5 @@ -# Class PickerMultiGeneral +# Class PickerMultiGeneral + Namespace: [VM.Managed.Picker.Core](VM.Managed.Picker.Core.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public abstract class PickerMultiGeneral : PickerMulti #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PickerBase](VM.Managed.Picker.Core.PickerBase.md) ← [PickerMulti](VM.Managed.Picker.Core.PickerMulti.md) ← [PickerMultiGeneral](VM.Managed.Picker.Core.PickerMultiGeneral.md) @@ -61,7 +62,7 @@ public PickerMultiGeneral(Type[] arTypes) #### Parameters -`arTypes` [Type](https://learn.microsoft.com/dotnet/api/system.type)\[\] +`arTypes` Type\[\] ### PickerMultiGeneral\(Type, bool\) @@ -71,9 +72,9 @@ public PickerMultiGeneral(Type type, bool bIsInterface) #### Parameters -`type` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`type` Type -`bIsInterface` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bIsInterface` bool ## Properties @@ -87,7 +88,7 @@ public bool AllowChildSubsystem { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PickableTypes @@ -99,7 +100,7 @@ public Type[] PickableTypes { get; } #### Property Value - [Type](https://learn.microsoft.com/dotnet/api/system.type)\[\] + Type\[\] ## Methods @@ -115,7 +116,7 @@ protected abstract UIntPtr ConvertKeyToInstanceContainerImpl(ObjectBase obj) #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### Filtering\(UIntPtr\) @@ -127,13 +128,13 @@ public override bool Filtering(UIntPtr pTarget) #### Parameters -`pTarget` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pTarget` UIntPtr Filtering target. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -147,17 +148,17 @@ public override bool FilteringReference(UIntPtr pOwner, UIntPtr pTarget) #### Parameters -`pOwner` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pOwner` UIntPtr Filtering owner of target. -`pTarget` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pTarget` UIntPtr Filtering target. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -169,9 +170,9 @@ protected abstract ObjectBase GetBodyImpl(UIntPtr pKey, bool bIgnoreMarker) #### Parameters -`pKey` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pKey` UIntPtr -`bIgnoreMarker` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bIgnoreMarker` bool #### Returns @@ -187,7 +188,7 @@ public override string GetPickerInfo() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetResultXmlFromKey\(ObjectBase\[\]\) @@ -201,7 +202,7 @@ public string GetResultXmlFromKey(ObjectBase[] arResults) #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetResultXmlFromKey\(UIntPtr\[\]\) @@ -213,11 +214,11 @@ public override string GetResultXmlFromKey(UIntPtr[] arKey) #### Parameters -`arKey` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\[\] +`arKey` UIntPtr\[\] #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -231,13 +232,13 @@ public override string GetResultXmlFromKey(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr Picking destination key. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -251,7 +252,7 @@ protected void HighlightCurveset(ObjectBase obj, bool bHighlight) `obj` [ObjectBase](VM.Managed.ObjectBase.md) -`bHighlight` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHighlight` bool ### HighlightFaceset\(ObjectBase, bool\) @@ -263,7 +264,7 @@ protected void HighlightFaceset(ObjectBase obj, bool bHighlight) `obj` [ObjectBase](VM.Managed.ObjectBase.md) -`bHighlight` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHighlight` bool ### HighlightGeometry\(ObjectBase, bool\) @@ -275,7 +276,7 @@ protected void HighlightGeometry(ObjectBase obj, bool bHighlight) `obj` [ObjectBase](VM.Managed.ObjectBase.md) -`bHighlight` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHighlight` bool ### HighlightImpl\(ObjectBase, bool\) @@ -287,11 +288,11 @@ protected abstract bool HighlightImpl(ObjectBase obj, bool bHighlight) `obj` [ObjectBase](VM.Managed.ObjectBase.md) -`bHighlight` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHighlight` bool #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### HighlightInstanceContainer\(ObjectBase, bool\) @@ -303,7 +304,7 @@ protected void HighlightInstanceContainer(ObjectBase obj, bool bHighlight) `obj` [ObjectBase](VM.Managed.ObjectBase.md) -`bHighlight` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHighlight` bool ### HighlightReferenceConnectable\(ObjectBase, bool\) @@ -315,7 +316,7 @@ protected void HighlightReferenceConnectable(ObjectBase obj, bool bHighlight) `obj` [ObjectBase](VM.Managed.ObjectBase.md) -`bHighlight` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHighlight` bool ### HighlightReferenceFaceset\(ObjectBase, bool, bool\) @@ -327,9 +328,33 @@ protected void HighlightReferenceFaceset(ObjectBase obj, bool bHighlight, bool b `obj` [ObjectBase](VM.Managed.ObjectBase.md) -`bHighlight` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHighlight` bool -`bUpdate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUpdate` bool + +### HighlightReferenceMultiBuilder\(ObjectBase, bool\) + +```csharp +protected void HighlightReferenceMultiBuilder(ObjectBase obj, bool bHighlight) +``` + +#### Parameters + +`obj` [ObjectBase](VM.Managed.ObjectBase.md) + +`bHighlight` bool + +### HighlightReferenceNodalBody\(ObjectBase, bool\) + +```csharp +protected void HighlightReferenceNodalBody(ObjectBase obj, bool bHighlight) +``` + +#### Parameters + +`obj` [ObjectBase](VM.Managed.ObjectBase.md) + +`bHighlight` bool ### HighlightSubsystem\(ObjectBase, bool\) @@ -341,7 +366,7 @@ protected void HighlightSubsystem(ObjectBase obj, bool bHighlight) `obj` [ObjectBase](VM.Managed.ObjectBase.md) -`bHighlight` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHighlight` bool ### SetHighlight\(List, bool, bool\) @@ -351,11 +376,11 @@ public override void SetHighlight(List lstSelectedObject, bool bHighlig #### Parameters -`lstSelectedObject` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\> +`lstSelectedObject` List -`bHighlight` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHighlight` bool -`bUpdate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUpdate` bool ### SetResultImpl\(ref string, bool\) @@ -367,17 +392,17 @@ protected override bool SetResultImpl(ref string strXml, bool bXmlOnly) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The picked data. -`bXmlOnly` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bXmlOnly` bool If it is true, skip the result setting. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerMultiTopol.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerMultiTopol.md index a3b145c173..525028e332 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerMultiTopol.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerMultiTopol.md @@ -1,4 +1,5 @@ -# Class PickerMultiTopol +# Class PickerMultiTopol + Namespace: [VM.Managed.Picker.Core](VM.Managed.Picker.Core.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public abstract class PickerMultiTopol : PickerMulti #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PickerBase](VM.Managed.Picker.Core.PickerBase.md) ← [PickerMulti](VM.Managed.Picker.Core.PickerMulti.md) ← [PickerMultiTopol](VM.Managed.Picker.Core.PickerMultiTopol.md) @@ -90,7 +91,7 @@ protected bool m_bAllBeloinging #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_bDecidedParent @@ -100,7 +101,7 @@ protected bool m_bDecidedParent #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_pParentObject @@ -126,7 +127,7 @@ protected bool CheckResultWhenCreateTopology(Topology topology) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetParentObject\(\) @@ -146,11 +147,11 @@ public override void SetHighlight(List lstTopologyProxy, bool bHighligh #### Parameters -`lstTopologyProxy` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\> +`lstTopologyProxy` List -`bHighlight` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHighlight` bool -`bUpdate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUpdate` bool ### SetParentObject\(ObjectBase\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerOrientation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerOrientation.md index 5c1d707407..6fd56bbd6c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerOrientation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerOrientation.md @@ -1,4 +1,5 @@ -# Class PickerOrientation +# Class PickerOrientation + Namespace: [VM.Managed.Picker.Core](VM.Managed.Picker.Core.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class PickerOrientation : PickerBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PickerBase](VM.Managed.Picker.Core.PickerBase.md) ← [PickerOrientation](VM.Managed.Picker.Core.PickerOrientation.md) @@ -68,7 +69,7 @@ public override object Result { get; } #### Property Value - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ## Methods @@ -82,13 +83,13 @@ public override bool Filtering(UIntPtr pTarget) #### Parameters -`pTarget` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pTarget` UIntPtr Filtering target. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -102,13 +103,13 @@ public override string GetChangeNoneParametricXml(string strXml) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string Result of parametric. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The result xml of none parametric. @@ -122,7 +123,7 @@ public override string GetPickerInfo() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetResultXmlFromKey\(UIntPtr\) @@ -134,13 +135,13 @@ public override string GetResultXmlFromKey(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr Picking destination key. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -154,13 +155,13 @@ public override string GetValidResultXml(string strDesireXml) #### Parameters -`strDesireXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDesireXml` string Invalid result xml. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -174,17 +175,17 @@ protected override bool SetResultImpl(ref string strXml, bool bXmlOnly) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The picked data. -`bXmlOnly` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bXmlOnly` bool If it is true, skip the result setting. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerPoint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerPoint.md index f91c83ffa1..21473b0d10 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerPoint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerPoint.md @@ -1,4 +1,5 @@ -# Class PickerPoint +# Class PickerPoint + Namespace: [VM.Managed.Picker.Core](VM.Managed.Picker.Core.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class PickerPoint : PickerBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PickerBase](VM.Managed.Picker.Core.PickerBase.md) ← [PickerPoint](VM.Managed.Picker.Core.PickerPoint.md) @@ -70,7 +71,7 @@ public override object Result { get; } #### Property Value - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ## Methods @@ -84,13 +85,13 @@ public override bool Filtering(UIntPtr pTarget) #### Parameters -`pTarget` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pTarget` UIntPtr Filtering target. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -104,17 +105,17 @@ public override bool FilteringReference(UIntPtr pOwner, UIntPtr pTarget) #### Parameters -`pOwner` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pOwner` UIntPtr Filtering owner of target. -`pTarget` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pTarget` UIntPtr Filtering target. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -128,7 +129,7 @@ public override string GetPickerInfo() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetResultXmlFromKey\(UIntPtr\) @@ -140,13 +141,13 @@ public override string GetResultXmlFromKey(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr Picking destination key. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -160,13 +161,13 @@ public string GetVaildNPointsCenterXml(string strDesireXml) #### Parameters -`strDesireXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDesireXml` string Invalid result xml. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -180,7 +181,7 @@ public string GetVaildPointOnNodeXml(string strDesireXml, VectorBase vecPosition #### Parameters -`strDesireXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDesireXml` string Invalid result xml. @@ -190,7 +191,7 @@ The position of node. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -204,13 +205,13 @@ public string GetVaildPointsRatedXml(string strDesireXml) #### Parameters -`strDesireXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDesireXml` string Invalid result xml. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -224,13 +225,13 @@ public string GetVaildThreePointsCircleCenterXml(string strDesireXml) #### Parameters -`strDesireXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDesireXml` string Invalid result xml. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -244,13 +245,13 @@ public override string GetValidResultXml(string strDesireXml) #### Parameters -`strDesireXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDesireXml` string Invalid result xml. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -264,7 +265,7 @@ public override void Highlight(bool bHighlight) #### Parameters -`bHighlight` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHighlight` bool If set to ture is highlight; otherwise, false isn't highlight. @@ -278,17 +279,17 @@ protected override bool SetResultImpl(ref string strXml, bool bXmlOnly) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The picked data. -`bXmlOnly` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bXmlOnly` bool If it is true, skip the result setting. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerSolid.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerSolid.md index c493eed762..123e055d34 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerSolid.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerSolid.md @@ -1,4 +1,5 @@ -# Class PickerSolid +# Class PickerSolid + Namespace: [VM.Managed.Picker.Core](VM.Managed.Picker.Core.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class PickerSolid : PickerBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PickerBase](VM.Managed.Picker.Core.PickerBase.md) ← [PickerSolid](VM.Managed.Picker.Core.PickerSolid.md) @@ -70,13 +71,13 @@ public override bool Filtering(UIntPtr pTarget) #### Parameters -`pTarget` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pTarget` UIntPtr Filtering target. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -90,7 +91,7 @@ public override string GetPickerInfo() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetResultXmlFromKey\(UIntPtr\) @@ -102,13 +103,13 @@ public override string GetResultXmlFromKey(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr Picking destination key. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -122,7 +123,7 @@ public override void Highlight(bool bHighlight) #### Parameters -`bHighlight` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHighlight` bool If set to ture is highlight; otherwise, false isn't highlight. @@ -136,17 +137,17 @@ protected override bool SetResultImpl(ref string strXml, bool bXmlOnly) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The picked data. -`bXmlOnly` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bXmlOnly` bool If it is true, skip the result setting. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerTopol.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerTopol.md index 07d03e955f..9c0d9fbcac 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerTopol.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerTopol.md @@ -1,4 +1,5 @@ -# Class PickerTopol +# Class PickerTopol + Namespace: [VM.Managed.Picker.Core](VM.Managed.Picker.Core.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public abstract class PickerTopol : PickerBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PickerBase](VM.Managed.Picker.Core.PickerBase.md) ← [PickerTopol](VM.Managed.Picker.Core.PickerTopol.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerTransform.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerTransform.md index e88e3230a3..4d178f7484 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerTransform.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.PickerTransform.md @@ -1,4 +1,5 @@ -# Class PickerTransform +# Class PickerTransform + Namespace: [VM.Managed.Picker.Core](VM.Managed.Picker.Core.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class PickerTransform : PickerBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PickerBase](VM.Managed.Picker.Core.PickerBase.md) ← [PickerTransform](VM.Managed.Picker.Core.PickerTransform.md) @@ -70,7 +71,7 @@ public override object Result { get; } #### Property Value - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ## Methods @@ -84,13 +85,13 @@ public override bool Filtering(UIntPtr pTarget) #### Parameters -`pTarget` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pTarget` UIntPtr Filtering target. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -104,17 +105,17 @@ public override bool FilteringReference(UIntPtr pOwner, UIntPtr pTarget) #### Parameters -`pOwner` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pOwner` UIntPtr Filtering owner of target. -`pTarget` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`pTarget` UIntPtr Filtering target. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -128,13 +129,13 @@ public override string GetChangeNoneParametricXml(string strXml) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string Result of parametric. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The result xml of none parametric. @@ -148,7 +149,7 @@ public override string GetPickerInfo() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetResultXmlFromKey\(UIntPtr\) @@ -160,13 +161,13 @@ public override string GetResultXmlFromKey(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr Picking destination key. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -180,13 +181,13 @@ public string GetVaildAcisXml(string strDesireXml) #### Parameters -`strDesireXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDesireXml` string Invalid result xml. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -201,7 +202,7 @@ public string GetVaildOnNodeXml(string strDesireXml, VectorBase vecPosition) #### Parameters -`strDesireXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDesireXml` string Invalid result xml. @@ -211,7 +212,7 @@ The position of node. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -225,17 +226,17 @@ public string GetVaildPointAndOrientationXml(string pointXml, string orientation #### Parameters -`pointXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`pointXml` string The result of sub picker of point. -`orientationXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`orientationXml` string The result of sub picker of orientation. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -251,13 +252,13 @@ public string GetValidLinkXml(string strDesireXml) #### Parameters -`strDesireXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDesireXml` string Invalid result xml of link. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The result xml of link. @@ -271,13 +272,13 @@ public override string GetValidResultXml(string strDesireXml) #### Parameters -`strDesireXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDesireXml` string Invalid result xml. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -291,13 +292,13 @@ public string GetValidThreePointsXml(string strDesireXml) #### Parameters -`strDesireXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDesireXml` string Invalid result xml. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The valid result xml. @@ -311,7 +312,7 @@ public override void Highlight(bool bHighlight) #### Parameters -`bHighlight` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHighlight` bool If set to ture is highlight; otherwise, false isn't highlight. @@ -323,11 +324,11 @@ public object ResultDeserialize(string strXml) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### SetResultImpl\(ref string, bool\) @@ -339,17 +340,17 @@ protected override bool SetResultImpl(ref string strXml, bool bXmlOnly) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string The picked data. -`bXmlOnly` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bXmlOnly` bool If it is true, skip the result setting. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.md index 10e95f435c..4f6412497b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Picker.Core.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.Picker.Core +# Namespace VM.Managed.Picker.Core + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PlaneBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PlaneBase.md index 60afbcd5d7..5cf8046f5f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PlaneBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PlaneBase.md @@ -1,4 +1,5 @@ -# Class PlaneBase +# Class PlaneBase + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public abstract class PlaneBase : LinkContainer, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [PlaneBase](VM.Managed.PlaneBase.md) @@ -80,7 +81,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PlaneLink.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PlaneLink.md index d2d60285de..b4e8782bd9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PlaneLink.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PlaneLink.md @@ -1,4 +1,5 @@ -# Class PlaneLink +# Class PlaneLink + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class PlaneLink : PlaneBase, IObservableObject, IDisposableObject, ILinka #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [PlaneBase](VM.Managed.PlaneBase.md) ← [PlaneLink](VM.Managed.PlaneLink.md) @@ -78,7 +79,7 @@ IReservable [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -201,7 +202,7 @@ protected override void LinkRequestUpdate(object obNotifier, LinkEventArgs arg) #### Parameters -`obNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obNotifier` object `arg` [LinkEventArgs](VM.Managed.LinkEventArgs.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PlaneTransformation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PlaneTransformation.md index ed4d6d86c7..1a632cd1bf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PlaneTransformation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PlaneTransformation.md @@ -1,4 +1,5 @@ -# Class PlaneTransformation +# Class PlaneTransformation + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class PlaneTransformation : PlaneBase, IObservableObject, IDisposableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [PlaneBase](VM.Managed.PlaneBase.md) ← [PlaneTransformation](VM.Managed.PlaneTransformation.md) @@ -77,7 +78,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Point.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Point.md index 687490710e..752d2f181c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Point.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Point.md @@ -1,4 +1,5 @@ -# Class Point +# Class Point + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class Point : Expression, IObservableObject, IDisposableObject, ILinkable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [Expression](VM.Managed.Expression.md) ← [Point](VM.Managed.Point.md) @@ -94,7 +95,7 @@ IExpression [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -139,7 +140,7 @@ public Point(string strValue) #### Parameters -`strValue` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strValue` string Value of point. @@ -177,13 +178,13 @@ protected override bool ConvertToValue(string strValue) #### Parameters -`strValue` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strValue` string The string. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OnDeserialization\(object\) @@ -195,7 +196,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -209,7 +210,7 @@ protected override void ParseToValue(char* wstrValue) #### Parameters -`wstrValue` [char](https://learn.microsoft.com/dotnet/api/system.char)\* +`wstrValue` char\* The string. @@ -223,7 +224,7 @@ protected override void SetDefaultString(ref string strValue) #### Parameters -`strValue` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strValue` string The value holds default string. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointBase.md index 14fb844503..221e1879e8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointBase.md @@ -1,4 +1,5 @@ -# Class PointBase +# Class PointBase + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -8,14 +9,14 @@ Getting the VectorBase(x, y, z) information through Value property. After picking, Getting PointBase information through picker. ```csharp -public abstract class PointBase : LinkContainer, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable +public abstract class PointBase : LinkContainer, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [PointBase](VM.Managed.PointBase.md) @@ -39,7 +40,8 @@ IOwned, IHasID, IEventProvider, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), -[IVerifiable](VM.Managed.IVerifiable.md) +[IVerifiable](VM.Managed.IVerifiable.md), +IHasReplaceableEntity #### Inherited Members @@ -86,7 +88,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -125,7 +127,7 @@ public abstract bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Value @@ -149,7 +151,7 @@ public abstract double X { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y @@ -161,7 +163,7 @@ public abstract double Y { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Z @@ -173,7 +175,7 @@ public abstract double Z { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -190,7 +192,27 @@ public abstract XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema + +### HasReplaceableEntity\(IObjectBase\) + +Gets a value indicating whether this instance has replacable entity. + +```csharp +public virtual bool HasReplaceableEntity(IObjectBase oldObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +#### Returns + + bool + +if this instance has replacable entity, the result is true. ### IsParametric\(enRefType\) @@ -208,7 +230,7 @@ Point picking type. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool If set to true is parametric; otherwise, false is none parametric. @@ -222,13 +244,13 @@ public static bool IsParametric(string strType) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string Point picking type. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool If set to true is parametric; otherwise, false is none parametric. @@ -242,10 +264,34 @@ public abstract void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. +### ReplaceEntity\(IObjectBase, IObjectBase\) + +Replace Entity + +```csharp +public virtual bool ReplaceEntity(IObjectBase oldObject, IObjectBase newObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +`newObject` IObjectBase + +The new object + +#### Returns + + bool + +if success, the result is true. + ### WriteXml\(XmlWriter\) Converts an object into its XML representation. @@ -256,7 +302,7 @@ public abstract void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointExpression.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointExpression.md index 39286ceac1..0f41557178 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointExpression.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointExpression.md @@ -1,4 +1,5 @@ -# Class PointExpression +# Class PointExpression + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent information of point through expression(string) parsing. ```csharp -public class PointExpression : PointBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable +public class PointExpression : PointBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [PointBase](VM.Managed.PointBase.md) ← [PointExpression](VM.Managed.PointExpression.md) @@ -29,7 +30,8 @@ IOwned, IHasID, IEventProvider, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), -[IVerifiable](VM.Managed.IVerifiable.md) +[IVerifiable](VM.Managed.IVerifiable.md), +IHasReplaceableEntity #### Inherited Members @@ -38,6 +40,8 @@ IEventProvider, [PointBase.ReadXml\(XmlReader\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_ReadXml\_System\_Xml\_XmlReader\_), [PointBase.WriteXml\(XmlWriter\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_WriteXml\_System\_Xml\_XmlWriter\_), [PointBase.GetSchema\(\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_GetSchema), +[PointBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[PointBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [PointBase.IsParameterized](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_IsParameterized), [PointBase.Z](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_Z), [PointBase.Y](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_Y), @@ -86,7 +90,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -131,15 +135,15 @@ public PointExpression(double X, double Y, double Z) #### Parameters -`X` [double](https://learn.microsoft.com/dotnet/api/system.double) +`X` double Value of X. -`Y` [double](https://learn.microsoft.com/dotnet/api/system.double) +`Y` double Value of Y. -`Z` [double](https://learn.microsoft.com/dotnet/api/system.double) +`Z` double Value of Z. @@ -175,7 +179,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Value @@ -199,7 +203,7 @@ public override double X { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y @@ -211,7 +215,7 @@ public override double Y { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Z @@ -223,7 +227,7 @@ public override double Z { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -235,9 +239,9 @@ public void ChangeExpresstionForDV(string strOldName, string strNewName) #### Parameters -`strOldName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOldName` string -`strNewName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strNewName` string ### GetSchema\(\) @@ -252,7 +256,7 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema ### IsParametric\(enRefType\) @@ -270,7 +274,7 @@ Point picking type. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool If set to true is parametric; otherwise, false is none parametric. @@ -284,7 +288,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -302,7 +306,7 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -316,7 +320,7 @@ public void Set(string strPosition) #### Parameters -`strPosition` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPosition` string Value of position. @@ -330,7 +334,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointLink.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointLink.md index 83924194c8..1bff1f9667 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointLink.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointLink.md @@ -1,4 +1,5 @@ -# Class PointLink +# Class PointLink + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent information of point through Design Point or Design Frame. ```csharp -public class PointLink : PointBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable, IReservable +public class PointLink : PointBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable, IHasReplaceableEntity, IReservable ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [PointBase](VM.Managed.PointBase.md) ← [PointLink](VM.Managed.PointLink.md) @@ -34,6 +35,7 @@ IHasID, IEventProvider, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), +IHasReplaceableEntity, IReservable #### Inherited Members @@ -43,6 +45,8 @@ IReservable [PointBase.ReadXml\(XmlReader\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_ReadXml\_System\_Xml\_XmlReader\_), [PointBase.WriteXml\(XmlWriter\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_WriteXml\_System\_Xml\_XmlWriter\_), [PointBase.GetSchema\(\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_GetSchema), +[PointBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[PointBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [PointBase.IsParameterized](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_IsParameterized), [PointBase.Z](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_Z), [PointBase.Y](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_Y), @@ -91,7 +95,7 @@ IReservable [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -158,7 +162,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LinkPoint @@ -194,7 +198,7 @@ public override double X { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y @@ -206,7 +210,7 @@ public override double Y { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Z @@ -218,7 +222,7 @@ public override double Z { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### \_LinkPoint @@ -244,7 +248,7 @@ public string GetFullName() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetSchema\(\) @@ -259,7 +263,27 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema + +### HasReplaceableEntity\(IObjectBase\) + +Gets a value indicating whether this instance has replacable entity. + +```csharp +public override bool HasReplaceableEntity(IObjectBase oldObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +#### Returns + + bool + +if this instance has replacable entity, the result is true. ### IsParametric\(enRefType\) @@ -277,7 +301,7 @@ Point picking type. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool If set to true is parametric; otherwise, false is none parametric. @@ -291,7 +315,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -309,10 +333,34 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. +### ReplaceEntity\(IObjectBase, IObjectBase\) + +Replace Entity + +```csharp +public override bool ReplaceEntity(IObjectBase oldObject, IObjectBase newObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +`newObject` IObjectBase + +The new object + +#### Returns + + bool + +if success, the result is true. + ### WriteXml\(XmlWriter\) Converts an object into its XML representation. @@ -323,7 +371,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointLinkDelta.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointLinkDelta.md index 34c441d9a1..5f1053fd34 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointLinkDelta.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointLinkDelta.md @@ -1,4 +1,5 @@ -# Class PointLinkDelta +# Class PointLinkDelta + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the information of point through Design Point or Design Frame and Delta(x,y,z). ```csharp -public class PointLinkDelta : PointLink, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable, IReservable +public class PointLinkDelta : PointLink, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable, IHasReplaceableEntity, IReservable ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [PointBase](VM.Managed.PointBase.md) ← [PointLink](VM.Managed.PointLink.md) ← @@ -31,6 +32,7 @@ IHasID, IEventProvider, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), +IHasReplaceableEntity, IReservable #### Inherited Members @@ -41,6 +43,8 @@ IReservable [PointLink.ReadXml\(XmlReader\)](VM.Managed.PointLink.md\#VM\_Managed\_PointLink\_ReadXml\_System\_Xml\_XmlReader\_), [PointLink.WriteXml\(XmlWriter\)](VM.Managed.PointLink.md\#VM\_Managed\_PointLink\_WriteXml\_System\_Xml\_XmlWriter\_), [PointLink.GetSchema\(\)](VM.Managed.PointLink.md\#VM\_Managed\_PointLink\_GetSchema), +[PointLink.HasReplaceableEntity\(IObjectBase\)](VM.Managed.PointLink.md\#VM\_Managed\_PointLink\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[PointLink.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.PointLink.md\#VM\_Managed\_PointLink\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [PointLink.LinkRequestUpdate\(object, LinkEventArgs\)](VM.Managed.PointLink.md\#VM\_Managed\_PointLink\_LinkRequestUpdate\_System\_Object\_VM\_Managed\_LinkEventArgs\_), [PointLink.\_LinkPoint](VM.Managed.PointLink.md\#VM\_Managed\_PointLink\_\_LinkPoint), [PointLink.LinkPoint](VM.Managed.PointLink.md\#VM\_Managed\_PointLink\_LinkPoint), @@ -54,6 +58,8 @@ IReservable [PointBase.ReadXml\(XmlReader\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_ReadXml\_System\_Xml\_XmlReader\_), [PointBase.WriteXml\(XmlWriter\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_WriteXml\_System\_Xml\_XmlWriter\_), [PointBase.GetSchema\(\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_GetSchema), +[PointBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[PointBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [PointBase.IsParameterized](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_IsParameterized), [PointBase.Z](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_Z), [PointBase.Y](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_Y), @@ -102,7 +108,7 @@ IReservable [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -163,15 +169,15 @@ public PointLinkDelta(IPoint pPoint, double deltaX, double deltaY, double deltaZ value of point. -`deltaX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`deltaX` double X of Delta. -`deltaY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`deltaY` double Y of Delta. -`deltaZ` [double](https://learn.microsoft.com/dotnet/api/system.double) +`deltaZ` double Z of Delta. @@ -221,15 +227,15 @@ public PointLinkDelta(double deltaX, double deltaY, double deltaZ) #### Parameters -`deltaX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`deltaX` double X of Delta. -`deltaY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`deltaY` double Y of Delta. -`deltaZ` [double](https://learn.microsoft.com/dotnet/api/system.double) +`deltaZ` double Z of Delta. @@ -281,7 +287,7 @@ protected bool m_bUseFrameOrientation #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### m\_enOrientationFrame @@ -291,7 +297,7 @@ protected OrientationFrame m_enOrientationFrame #### Field Value - [OrientationFrame](VM.Managed.OrientationFrame.md) + OrientationFrame ## Properties @@ -353,7 +359,7 @@ public OrientationFrame OrientationFrameType { get; set; } #### Property Value - [OrientationFrame](VM.Managed.OrientationFrame.md) + OrientationFrame ### UseFrameOrientation @@ -365,7 +371,7 @@ public bool UseFrameOrientation { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Value @@ -389,7 +395,7 @@ public override double X { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y @@ -401,7 +407,7 @@ public override double Y { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Z @@ -413,7 +419,7 @@ public override double Z { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -430,7 +436,7 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema ### ReadXml\(XmlReader\) @@ -442,7 +448,7 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -456,7 +462,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointNPointsCenter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointNPointsCenter.md index 8bc72716c2..49bf61b798 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointNPointsCenter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointNPointsCenter.md @@ -1,4 +1,5 @@ -# Class PointNPointsCenter +# Class PointNPointsCenter + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the information of point of center of N point. ```csharp -public class PointNPointsCenter : PointBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable +public class PointNPointsCenter : PointBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [PointBase](VM.Managed.PointBase.md) ← [PointNPointsCenter](VM.Managed.PointNPointsCenter.md) @@ -29,7 +30,8 @@ IOwned, IHasID, IEventProvider, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), -[IVerifiable](VM.Managed.IVerifiable.md) +[IVerifiable](VM.Managed.IVerifiable.md), +IHasReplaceableEntity #### Inherited Members @@ -38,6 +40,8 @@ IEventProvider, [PointBase.ReadXml\(XmlReader\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_ReadXml\_System\_Xml\_XmlReader\_), [PointBase.WriteXml\(XmlWriter\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_WriteXml\_System\_Xml\_XmlWriter\_), [PointBase.GetSchema\(\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_GetSchema), +[PointBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[PointBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [PointBase.IsParameterized](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_IsParameterized), [PointBase.Z](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_Z), [PointBase.Y](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_Y), @@ -86,7 +90,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -136,7 +140,7 @@ protected List> m_lstPoints #### Field Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Child](VM.Managed.Child\-2.md)<[PointBase](VM.Managed.PointBase.md), [LinkContainer](VM.Managed.LinkContainer.md).[Update](VM.Managed.LinkContainer.Update.md)\>\> + List<[Child](VM.Managed.Child\-2.md)<[PointBase](VM.Managed.PointBase.md), [LinkContainer](VM.Managed.LinkContainer.md).[Update](VM.Managed.LinkContainer.Update.md)\>\> ## Properties @@ -150,7 +154,7 @@ public int Count { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### IsParameterized @@ -162,7 +166,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Points @@ -198,7 +202,7 @@ public override double X { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y @@ -210,7 +214,7 @@ public override double Y { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Z @@ -222,7 +226,7 @@ public override double Z { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### this\[int\] @@ -261,7 +265,27 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema + +### HasReplaceableEntity\(IObjectBase\) + +Gets a value indicating whether this instance has replacable entity. + +```csharp +public override bool HasReplaceableEntity(IObjectBase oldObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +#### Returns + + bool + +if this instance has replacable entity, the result is true. ### OnDeserialization\(object\) @@ -273,7 +297,7 @@ public override void OnDeserialization(object obSender) #### Parameters -`obSender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obSender` object ### ReadXml\(XmlReader\) @@ -285,10 +309,34 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. +### ReplaceEntity\(IObjectBase, IObjectBase\) + +Replace Entity + +```csharp +public override bool ReplaceEntity(IObjectBase oldObject, IObjectBase newObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +`newObject` IObjectBase + +The new object + +#### Returns + + bool + +if success, the result is true. + ### WriteXml\(XmlWriter\) Converts an object into its XML representation. @@ -299,7 +347,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointOnEdge.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointOnEdge.md index 744f98fa39..8bba7c933b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointOnEdge.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointOnEdge.md @@ -1,4 +1,5 @@ -# Class PointOnEdge +# Class PointOnEdge + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the information of point through edge geometry. ```csharp -public class PointOnEdge : PointOnGeometryBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable +public class PointOnEdge : PointOnGeometryBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [PointBase](VM.Managed.PointBase.md) ← [PointOnGeometryBase](VM.Managed.PointOnGeometryBase.md) ← @@ -30,7 +31,8 @@ IOwned, IHasID, IEventProvider, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), -[IVerifiable](VM.Managed.IVerifiable.md) +[IVerifiable](VM.Managed.IVerifiable.md), +IHasReplaceableEntity #### Inherited Members @@ -50,6 +52,8 @@ IEventProvider, [PointBase.ReadXml\(XmlReader\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_ReadXml\_System\_Xml\_XmlReader\_), [PointBase.WriteXml\(XmlWriter\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_WriteXml\_System\_Xml\_XmlWriter\_), [PointBase.GetSchema\(\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_GetSchema), +[PointBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[PointBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [PointBase.IsParameterized](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_IsParameterized), [PointBase.Z](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_Z), [PointBase.Y](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_Y), @@ -98,7 +102,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -142,7 +146,7 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema ### ReadXml\(XmlReader\) @@ -154,7 +158,7 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -168,7 +172,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointOnEllipseCenter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointOnEllipseCenter.md index b29e76484f..9b86d4a058 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointOnEllipseCenter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointOnEllipseCenter.md @@ -1,4 +1,5 @@ -# Class PointOnEllipseCenter +# Class PointOnEllipseCenter + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the information of point through ellipse geometry. ```csharp -public class PointOnEllipseCenter : PointOnGeometryBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable +public class PointOnEllipseCenter : PointOnGeometryBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [PointBase](VM.Managed.PointBase.md) ← [PointOnGeometryBase](VM.Managed.PointOnGeometryBase.md) ← @@ -30,7 +31,8 @@ IOwned, IHasID, IEventProvider, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), -[IVerifiable](VM.Managed.IVerifiable.md) +[IVerifiable](VM.Managed.IVerifiable.md), +IHasReplaceableEntity #### Inherited Members @@ -50,6 +52,8 @@ IEventProvider, [PointBase.ReadXml\(XmlReader\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_ReadXml\_System\_Xml\_XmlReader\_), [PointBase.WriteXml\(XmlWriter\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_WriteXml\_System\_Xml\_XmlWriter\_), [PointBase.GetSchema\(\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_GetSchema), +[PointBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[PointBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [PointBase.IsParameterized](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_IsParameterized), [PointBase.Z](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_Z), [PointBase.Y](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_Y), @@ -98,7 +102,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -142,7 +146,7 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema ### ReadXml\(XmlReader\) @@ -154,7 +158,7 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -168,7 +172,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointOnFace.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointOnFace.md index 33c5c434e2..db3cb2b871 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointOnFace.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointOnFace.md @@ -1,4 +1,5 @@ -# Class PointOnFace +# Class PointOnFace + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the information of point through surface geometry. ```csharp -public class PointOnFace : PointOnGeometryBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable +public class PointOnFace : PointOnGeometryBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [PointBase](VM.Managed.PointBase.md) ← [PointOnGeometryBase](VM.Managed.PointOnGeometryBase.md) ← @@ -30,7 +31,8 @@ IOwned, IHasID, IEventProvider, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), -[IVerifiable](VM.Managed.IVerifiable.md) +[IVerifiable](VM.Managed.IVerifiable.md), +IHasReplaceableEntity #### Inherited Members @@ -50,6 +52,8 @@ IEventProvider, [PointBase.ReadXml\(XmlReader\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_ReadXml\_System\_Xml\_XmlReader\_), [PointBase.WriteXml\(XmlWriter\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_WriteXml\_System\_Xml\_XmlWriter\_), [PointBase.GetSchema\(\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_GetSchema), +[PointBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[PointBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [PointBase.IsParameterized](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_IsParameterized), [PointBase.Z](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_Z), [PointBase.Y](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_Y), @@ -98,7 +102,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -142,7 +146,7 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema ### ReadXml\(XmlReader\) @@ -154,7 +158,7 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -168,7 +172,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointOnGeometryBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointOnGeometryBase.md index 0d4b92c1a2..bfefe4e600 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointOnGeometryBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointOnGeometryBase.md @@ -1,4 +1,5 @@ -# Class PointOnGeometryBase +# Class PointOnGeometryBase + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -7,14 +8,14 @@ This class is to represent the information of point through data of geometry. bug ; When develop stand alone, After defining inherited classes from LinkContainer must parameterize to geometry data. ```csharp -public abstract class PointOnGeometryBase : PointBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable +public abstract class PointOnGeometryBase : PointBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [PointBase](VM.Managed.PointBase.md) ← [PointOnGeometryBase](VM.Managed.PointOnGeometryBase.md) @@ -38,7 +39,8 @@ IOwned, IHasID, IEventProvider, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), -[IVerifiable](VM.Managed.IVerifiable.md) +[IVerifiable](VM.Managed.IVerifiable.md), +IHasReplaceableEntity #### Inherited Members @@ -47,6 +49,8 @@ IEventProvider, [PointBase.ReadXml\(XmlReader\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_ReadXml\_System\_Xml\_XmlReader\_), [PointBase.WriteXml\(XmlWriter\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_WriteXml\_System\_Xml\_XmlWriter\_), [PointBase.GetSchema\(\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_GetSchema), +[PointBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[PointBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [PointBase.IsParameterized](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_IsParameterized), [PointBase.Z](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_Z), [PointBase.Y](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_Y), @@ -95,7 +99,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -134,7 +138,7 @@ protected UIntPtr m_ptrEntityKey #### Field Value - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### m\_vecPosition @@ -158,7 +162,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Value @@ -182,7 +186,7 @@ public override double X { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y @@ -194,7 +198,7 @@ public override double Y { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Z @@ -206,7 +210,7 @@ public override double Z { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -226,7 +230,7 @@ Point picking type. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool If set to true is parametric; otherwise, false is none parametric. @@ -240,7 +244,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -262,7 +266,7 @@ protected void SetPosition(string strPosition) #### Parameters -`strPosition` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPosition` string Position. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointOnSphereCenter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointOnSphereCenter.md index 522ecd268a..2eae6016dc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointOnSphereCenter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointOnSphereCenter.md @@ -1,4 +1,5 @@ -# Class PointOnSphereCenter +# Class PointOnSphereCenter + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the information of point through sphere geometry. ```csharp -public class PointOnSphereCenter : PointOnGeometryBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable +public class PointOnSphereCenter : PointOnGeometryBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [PointBase](VM.Managed.PointBase.md) ← [PointOnGeometryBase](VM.Managed.PointOnGeometryBase.md) ← @@ -30,7 +31,8 @@ IOwned, IHasID, IEventProvider, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), -[IVerifiable](VM.Managed.IVerifiable.md) +[IVerifiable](VM.Managed.IVerifiable.md), +IHasReplaceableEntity #### Inherited Members @@ -50,6 +52,8 @@ IEventProvider, [PointBase.ReadXml\(XmlReader\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_ReadXml\_System\_Xml\_XmlReader\_), [PointBase.WriteXml\(XmlWriter\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_WriteXml\_System\_Xml\_XmlWriter\_), [PointBase.GetSchema\(\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_GetSchema), +[PointBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[PointBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [PointBase.IsParameterized](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_IsParameterized), [PointBase.Z](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_Z), [PointBase.Y](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_Y), @@ -98,7 +102,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -142,7 +146,7 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema ### ReadXml\(XmlReader\) @@ -154,7 +158,7 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -168,7 +172,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointOnVertex.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointOnVertex.md index a582148526..525c7b3db6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointOnVertex.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointOnVertex.md @@ -1,4 +1,5 @@ -# Class PointOnVertex +# Class PointOnVertex + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the information of point through vertex geometry. ```csharp -public class PointOnVertex : PointOnGeometryBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable +public class PointOnVertex : PointOnGeometryBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [PointBase](VM.Managed.PointBase.md) ← [PointOnGeometryBase](VM.Managed.PointOnGeometryBase.md) ← @@ -30,7 +31,8 @@ IOwned, IHasID, IEventProvider, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), -[IVerifiable](VM.Managed.IVerifiable.md) +[IVerifiable](VM.Managed.IVerifiable.md), +IHasReplaceableEntity #### Inherited Members @@ -50,6 +52,8 @@ IEventProvider, [PointBase.ReadXml\(XmlReader\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_ReadXml\_System\_Xml\_XmlReader\_), [PointBase.WriteXml\(XmlWriter\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_WriteXml\_System\_Xml\_XmlWriter\_), [PointBase.GetSchema\(\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_GetSchema), +[PointBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[PointBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [PointBase.IsParameterized](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_IsParameterized), [PointBase.Z](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_Z), [PointBase.Y](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_Y), @@ -98,7 +102,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -142,7 +146,7 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema ### ReadXml\(XmlReader\) @@ -154,7 +158,7 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -168,7 +172,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointRated.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointRated.md index 5bbff639d3..82b3360845 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointRated.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointRated.md @@ -1,4 +1,5 @@ -# Class PointRated +# Class PointRated + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the information of two points, N: M ratios obtained to calculate the position. ```csharp -public class PointRated : PointBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable +public class PointRated : PointBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [PointBase](VM.Managed.PointBase.md) ← [PointRated](VM.Managed.PointRated.md) @@ -29,7 +30,8 @@ IOwned, IHasID, IEventProvider, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), -[IVerifiable](VM.Managed.IVerifiable.md) +[IVerifiable](VM.Managed.IVerifiable.md), +IHasReplaceableEntity #### Inherited Members @@ -38,6 +40,8 @@ IEventProvider, [PointBase.ReadXml\(XmlReader\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_ReadXml\_System\_Xml\_XmlReader\_), [PointBase.WriteXml\(XmlWriter\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_WriteXml\_System\_Xml\_XmlWriter\_), [PointBase.GetSchema\(\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_GetSchema), +[PointBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[PointBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [PointBase.IsParameterized](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_IsParameterized), [PointBase.Z](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_Z), [PointBase.Y](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_Y), @@ -86,7 +90,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -147,7 +151,7 @@ Start point. End point. -`rate` [double](https://learn.microsoft.com/dotnet/api/system.double) +`rate` double Ratio. @@ -233,7 +237,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Rate @@ -281,7 +285,7 @@ public override double X { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y @@ -293,7 +297,7 @@ public override double Y { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Z @@ -305,7 +309,7 @@ public override double Z { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -322,7 +326,27 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema + +### HasReplaceableEntity\(IObjectBase\) + +Gets a value indicating whether this instance has replacable entity. + +```csharp +public override bool HasReplaceableEntity(IObjectBase oldObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +#### Returns + + bool + +if this instance has replacable entity, the result is true. ### ReadXml\(XmlReader\) @@ -334,10 +358,34 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. +### ReplaceEntity\(IObjectBase, IObjectBase\) + +Replace Entity + +```csharp +public override bool ReplaceEntity(IObjectBase oldObject, IObjectBase newObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +`newObject` IObjectBase + +The new object + +#### Returns + + bool + +if success, the result is true. + ### WriteXml\(XmlWriter\) Converts an object into its XML representation. @@ -348,7 +396,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointThreePointsCircleCenter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointThreePointsCircleCenter.md index d59f582887..7daaea4be2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointThreePointsCircleCenter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PointThreePointsCircleCenter.md @@ -1,4 +1,5 @@ -# Class PointThreePointsCircleCenter +# Class PointThreePointsCircleCenter + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the information of point of circle center of 3 point. ```csharp -public class PointThreePointsCircleCenter : PointBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable +public class PointThreePointsCircleCenter : PointBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [PointBase](VM.Managed.PointBase.md) ← [PointThreePointsCircleCenter](VM.Managed.PointThreePointsCircleCenter.md) @@ -29,7 +30,8 @@ IOwned, IHasID, IEventProvider, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), -[IVerifiable](VM.Managed.IVerifiable.md) +[IVerifiable](VM.Managed.IVerifiable.md), +IHasReplaceableEntity #### Inherited Members @@ -38,6 +40,8 @@ IEventProvider, [PointBase.ReadXml\(XmlReader\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_ReadXml\_System\_Xml\_XmlReader\_), [PointBase.WriteXml\(XmlWriter\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_WriteXml\_System\_Xml\_XmlWriter\_), [PointBase.GetSchema\(\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_GetSchema), +[PointBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[PointBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [PointBase.IsParameterized](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_IsParameterized), [PointBase.Z](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_Z), [PointBase.Y](VM.Managed.PointBase.md\#VM\_Managed\_PointBase\_Y), @@ -86,7 +90,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -213,7 +217,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MiddlePoint @@ -273,7 +277,7 @@ public override double X { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y @@ -285,7 +289,7 @@ public override double Y { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Z @@ -297,7 +301,7 @@ public override double Z { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -314,7 +318,27 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema + +### HasReplaceableEntity\(IObjectBase\) + +Gets a value indicating whether this instance has replacable entity. + +```csharp +public override bool HasReplaceableEntity(IObjectBase oldObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +#### Returns + + bool + +if this instance has replacable entity, the result is true. ### ReadXml\(XmlReader\) @@ -326,10 +350,34 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. +### ReplaceEntity\(IObjectBase, IObjectBase\) + +Replace Entity + +```csharp +public override bool ReplaceEntity(IObjectBase oldObject, IObjectBase newObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +`newObject` IObjectBase + +The new object + +#### Returns + + bool + +if success, the result is true. + ### WriteXml\(XmlWriter\) Converts an object into its XML representation. @@ -340,7 +388,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Primitive.enRefType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Primitive.enRefType.md index 165ee31bf9..7820c339b7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Primitive.enRefType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Primitive.enRefType.md @@ -1,4 +1,5 @@ -# Enum Primitive.enRefType +# Enum Primitive.enRefType + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Primitive.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Primitive.md index 8a8a7d80d1..0a594a0d8e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Primitive.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Primitive.md @@ -1,4 +1,5 @@ -# Class Primitive +# Class Primitive + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class Primitive #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Primitive](VM.Managed.Primitive.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Property.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Property.md index 384648e683..a7e50afd03 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Property.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Property.md @@ -1,4 +1,5 @@ -# Class Property +# Class Property + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,9 +12,9 @@ public abstract class Property : ContainerObject, IObservable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← @@ -30,7 +31,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -137,7 +138,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -176,11 +177,11 @@ protected Property(string strProxyName, string strBuildInfo) #### Parameters -`strProxyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strProxyName` string Name of the proxy. -`strBuildInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBuildInfo` string The build information. @@ -196,7 +197,7 @@ public virtual void Draw(Canvas canvas, TMatrix matTBase, TMatrix matTAct, bool #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs)

    The canvas has icon information.

    @@ -208,7 +209,7 @@ public virtual void Draw(Canvas canvas, TMatrix matTBase, TMatrix matTAct, bool

    The action transformation.

    -`bHide` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHide` bool

    The hide flag.

    @@ -222,7 +223,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -242,13 +243,13 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The ob unnamed. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Initialize\(ConvertFactor\) @@ -292,7 +293,7 @@ public void PropertyRequestUpdate(object obj, LinkEventArgs arg) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PropertyCreateInfo.PageInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PropertyCreateInfo.PageInfo.md index d88fd6ed13..f0eecebf78 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PropertyCreateInfo.PageInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PropertyCreateInfo.PageInfo.md @@ -1,4 +1,5 @@ -# Class PropertyCreateInfo.PageInfo +# Class PropertyCreateInfo.PageInfo + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class PropertyCreateInfo.PageInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PropertyCreateInfo.PageInfo](VM.Managed.PropertyCreateInfo.PageInfo.md) #### Extension Methods @@ -40,7 +41,7 @@ public string Assembly #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Name @@ -52,7 +53,7 @@ public string Name #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Page @@ -64,7 +65,7 @@ public string Page #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### XPath @@ -76,5 +77,5 @@ public string XPath #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PropertyCreateInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PropertyCreateInfo.md index 041335aac4..135404a404 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PropertyCreateInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PropertyCreateInfo.md @@ -1,4 +1,5 @@ -# Class PropertyCreateInfo +# Class PropertyCreateInfo + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class PropertyCreateInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PropertyCreateInfo](VM.Managed.PropertyCreateInfo.md) #### Extension Methods @@ -40,7 +41,7 @@ public string Assembly #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Pages @@ -52,5 +53,5 @@ public List Pages #### Field Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[PropertyCreateInfo](VM.Managed.PropertyCreateInfo.md).[PageInfo](VM.Managed.PropertyCreateInfo.PageInfo.md)\> + List<[PropertyCreateInfo](VM.Managed.PropertyCreateInfo.md).[PageInfo](VM.Managed.PropertyCreateInfo.PageInfo.md)\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PropertyDocCreateInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PropertyDocCreateInfo.md index a2db97a1e6..6ff5c4e10c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PropertyDocCreateInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PropertyDocCreateInfo.md @@ -1,4 +1,5 @@ -# Class PropertyDocCreateInfo +# Class PropertyDocCreateInfo + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,7 +12,7 @@ public class PropertyDocCreateInfo : DocCreateInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← DocCreateInfo ← [PropertyDocCreateInfo](VM.Managed.PropertyDocCreateInfo.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PropertyDocument-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PropertyDocument-1.md index de93fd5f25..d86246354b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PropertyDocument-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PropertyDocument-1.md @@ -1,4 +1,5 @@ -# Class PropertyDocument +# Class PropertyDocument + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -17,9 +18,9 @@ The type of the property. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← @@ -42,7 +43,7 @@ IOwned, IHasID, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), [IPropertyDocument](VM.Managed.IPropertyDocument.md), [IUnitChange](VM.Managed.IUnitChange.md), IXMLFormatable @@ -276,7 +277,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -341,7 +342,7 @@ protected override Type PropertyType { get; } #### Property Value - [Type](https://learn.microsoft.com/dotnet/api/system.type) + Type ### UntypedProperty @@ -379,7 +380,7 @@ public override void Load(TextReader reader) #### Parameters -`reader` [TextReader](https://learn.microsoft.com/dotnet/api/system.io.textreader) +`reader` TextReader The reader. @@ -407,7 +408,7 @@ public override void Save(TextWriter writer) #### Parameters -`writer` [TextWriter](https://learn.microsoft.com/dotnet/api/system.io.textwriter) +`writer` TextWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PropertyDocumentBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PropertyDocumentBase.md index b0a805e026..330508a086 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PropertyDocumentBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PropertyDocumentBase.md @@ -1,4 +1,5 @@ -# Class PropertyDocumentBase +# Class PropertyDocumentBase + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,9 +12,9 @@ public abstract class PropertyDocumentBase : Document, IObservableObject, IDispo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← Container ← Document ← @@ -39,7 +40,7 @@ IOwned, IHasID, IEnableManager, IRelatedDocument, -IHistorySupport, +[IHistorySupport](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), [IPropertyDocument](VM.Managed.IPropertyDocument.md), [IUnitChange](VM.Managed.IUnitChange.md), IXMLFormatable @@ -240,7 +241,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -281,7 +282,7 @@ public override sealed bool CanClose { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DocumentSessionOverride @@ -305,7 +306,7 @@ public bool IsPropertySupport { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Modified @@ -317,7 +318,7 @@ public override sealed bool Modified { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OwnedCollection @@ -329,7 +330,7 @@ public IList OwnedCollection { get; } #### Property Value - [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1) + IList ### OwnedList @@ -342,7 +343,7 @@ public List\> + List\> ### PropertyType @@ -354,7 +355,7 @@ protected abstract Type PropertyType { get; } #### Property Value - [Type](https://learn.microsoft.com/dotnet/api/system.type) + Type ### Reload @@ -366,7 +367,7 @@ public bool Reload { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SetDocumentSessionOverride @@ -458,7 +459,7 @@ public override View CreateView(UIntPtr hWnd) #### Parameters -`hWnd` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`hWnd` UIntPtr The handle. @@ -478,15 +479,15 @@ protected static T DeserializeObj(XmlReader reader, string strElementName, Ty #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. -`strElementName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strElementName` string Name of the element. -`type` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`type` Type The object type. @@ -512,7 +513,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -532,7 +533,7 @@ public override void GetData(XmlNode writer) #### Parameters -`writer` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`writer` XmlNode The writer. @@ -546,7 +547,7 @@ public override void IsTypeSupported(Type type) #### Parameters -`type` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`type` Type The type. @@ -560,7 +561,7 @@ public void Load(string strPath) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The STR path. @@ -574,7 +575,7 @@ public abstract void Load(TextReader reader) #### Parameters -`reader` [TextReader](https://learn.microsoft.com/dotnet/api/system.io.textreader) +`reader` TextReader The reader. @@ -588,7 +589,7 @@ public void Load(Stream stream) #### Parameters -`stream` [Stream](https://learn.microsoft.com/dotnet/api/system.io.stream) +`stream` Stream The stream. @@ -602,7 +603,7 @@ protected override void OnDeserialization(object obSender) #### Parameters -`obSender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obSender` object The sender. @@ -658,7 +659,7 @@ public override sealed void Save(string strPath) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string The path. @@ -672,7 +673,7 @@ public abstract void Save(TextWriter writer) #### Parameters -`writer` [TextWriter](https://learn.microsoft.com/dotnet/api/system.io.textwriter) +`writer` TextWriter The writer. @@ -686,7 +687,7 @@ public void Save(Stream stream) #### Parameters -`stream` [Stream](https://learn.microsoft.com/dotnet/api/system.io.stream) +`stream` Stream The stream. @@ -700,7 +701,7 @@ protected static void SerializeObj(XmlWriter writer, T ob, string strElementN #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. @@ -708,7 +709,7 @@ The writer. The object. -`strElementName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strElementName` string Name of the element. @@ -726,7 +727,7 @@ public override void SetData(XmlNode reader) #### Parameters -`reader` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`reader` XmlNode The reader. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PropertyEventCore.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PropertyEventCore.md index 89fbf9b97e..da78a4f48e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PropertyEventCore.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PropertyEventCore.md @@ -1,4 +1,5 @@ -# Class PropertyEventCore +# Class PropertyEventCore + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,7 +12,7 @@ public class PropertyEventCore : ObjectEventCore, IObject, ILinkContainer, IOwne #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObjectEventCore ← [PropertyEventCore](VM.Managed.PropertyEventCore.md) @@ -23,7 +24,7 @@ IOwned, IHasID, IEventProvider, ILinkContainerEvent, -IHistoryObjectSerializableDelegate +[IHistoryObjectSerializableDelegate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs) #### Inherited Members @@ -72,11 +73,11 @@ protected PropertyEventCore(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PropertyXmlSerializer-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PropertyXmlSerializer-1.md index e3c3f30780..c4b47c8acb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PropertyXmlSerializer-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PropertyXmlSerializer-1.md @@ -1,4 +1,5 @@ -# Class PropertyXmlSerializer +# Class PropertyXmlSerializer + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -15,7 +16,7 @@ public class PropertyXmlSerializer : AbstractXmlSerializer #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← AbstractXmlSerializer ← [PropertyXmlSerializer](VM.Managed.PropertyXmlSerializer\-1.md) @@ -61,7 +62,7 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -75,7 +76,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PropertyXmlSerializerHelper-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PropertyXmlSerializerHelper-1.md index dab1666781..b551158fa5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PropertyXmlSerializerHelper-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.PropertyXmlSerializerHelper-1.md @@ -1,4 +1,5 @@ -# Class PropertyXmlSerializerHelper +# Class PropertyXmlSerializerHelper + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -17,7 +18,7 @@ The type of the property. #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PropertyXmlSerializerHelper](VM.Managed.PropertyXmlSerializerHelper\-1.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.QueryTransform.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.QueryTransform.md index 90753969f9..e77a89e427 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.QueryTransform.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.QueryTransform.md @@ -1,4 +1,5 @@ -# Class QueryTransform +# Class QueryTransform + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class QueryTransform #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [QueryTransform](VM.Managed.QueryTransform.md) #### Extension Methods @@ -42,7 +43,7 @@ public int Count { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Single @@ -54,7 +55,7 @@ public List Single { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ITransformable](VM.Managed.ITransformable.md)\> + List<[ITransformable](VM.Managed.ITransformable.md)\> ### SingleParam @@ -66,7 +67,7 @@ public List SingleParam { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ITransformable](VM.Managed.ITransformable.md)\> + List<[ITransformable](VM.Managed.ITransformable.md)\> ### Sym @@ -78,7 +79,7 @@ public List Sym { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ITransformable](VM.Managed.ITransformable.md)\> + List<[ITransformable](VM.Managed.ITransformable.md)\> ### SymParam @@ -90,7 +91,7 @@ public List SymParam { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ITransformable](VM.Managed.ITransformable.md)\> + List<[ITransformable](VM.Managed.ITransformable.md)\> ## Methods @@ -102,7 +103,7 @@ public void AddData(List lstITra, ITransformable ITra) #### Parameters -`lstITra` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ITransformable](VM.Managed.ITransformable.md)\> +`lstITra` List<[ITransformable](VM.Managed.ITransformable.md)\> `ITra` [ITransformable](VM.Managed.ITransformable.md) @@ -114,7 +115,7 @@ public void GetDataNoParam(List lstITra) #### Parameters -`lstITra` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ITransformable](VM.Managed.ITransformable.md)\> +`lstITra` List<[ITransformable](VM.Managed.ITransformable.md)\> ### GetDataParamSingle\(List\) @@ -124,7 +125,7 @@ public void GetDataParamSingle(List lstITra) #### Parameters -`lstITra` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ITransformable](VM.Managed.ITransformable.md)\> +`lstITra` List<[ITransformable](VM.Managed.ITransformable.md)\> ### GetDataParamSym\(List\) @@ -134,5 +135,5 @@ public void GetDataParamSym(List lstITra) #### Parameters -`lstITra` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ITransformable](VM.Managed.ITransformable.md)\> +`lstITra` List<[ITransformable](VM.Managed.ITransformable.md)\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Range.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Range.md index a5ccc598f9..4502c76a25 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Range.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Range.md @@ -1,4 +1,5 @@ -# Class Range +# Class Range + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class Range : LinkContainer, IObservableObject, IDisposableObject, ILinka #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [Range](VM.Managed.Range.md) @@ -75,7 +76,7 @@ IEventProvider, [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Reference.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Reference.md index 12e7fae482..23a264a273 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Reference.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Reference.md @@ -1,4 +1,5 @@ -# Class Reference +# Class Reference + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class Reference : Object, IObservableObject, IDisposable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [ObjectBase](VM.Managed.ObjectBase.md) ← [Object](VM.Managed.Object\-1.md) ← [Reference](VM.Managed.Reference.md) @@ -36,7 +37,7 @@ IEventProvider, IHasKeyObject, [ILinkContainerEvent](VM.Managed.ILinkContainerEvent.md), [IVerifiable](VM.Managed.IVerifiable.md), -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), [IAttributeContainer](VM.Managed.IAttributeContainer.md), [IReferencable](VM.Managed.IReferencable.md), [INamed](VM.Managed.INamed.md), @@ -140,7 +141,7 @@ IHistoryObjectSerializable, [ObjectBase.OnDestroying](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnDestroying), [ObjectBase.OnUpdate](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdate), [ObjectBase.OnUpdating](VM.Managed.ObjectBase.md\#VM\_Managed\_ObjectBase\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -185,11 +186,11 @@ protected Reference(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo Serialization info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext context. @@ -205,7 +206,7 @@ protected override bool ClearChildInfoBeforeDeserialize { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### FullName @@ -217,7 +218,7 @@ public virtual string FullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### FullTransformation @@ -253,7 +254,7 @@ public bool IsVisible { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Layer @@ -277,7 +278,7 @@ public virtual string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NonSymmetricName @@ -289,7 +290,7 @@ public virtual string NonSymmetricName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Object @@ -385,21 +386,21 @@ protected virtual bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, XmlE #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlRootEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlRootEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -423,7 +424,7 @@ The object. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The subsystem name. @@ -439,9 +440,9 @@ protected void GetTotalSubSystemNameCore(Document3D docSS, Document3D docOrigina `docOriginal` [Document3D](VM.Managed.Document3D.md) -`stackName` [Stack](https://learn.microsoft.com/dotnet/api/system.collections.generic.stack\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`stackName` Stack -`bFind` [ValueType](https://learn.microsoft.com/dotnet/api/system.valuetype) +`bFind` ValueType ### GetTransform\(Unit\) @@ -473,7 +474,7 @@ public virtual bool IsAutoContactable() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the specified auto contactable; otherwise, false. @@ -491,7 +492,7 @@ public virtual bool IsOwner(Reference A_0) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the specified owner; otherwise, false. @@ -505,7 +506,7 @@ public override void LinkAddedToDocument(object objNotifier, AddToDocEventArgs a #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -523,7 +524,7 @@ protected override void LinkRequestDestroy(object obNotifier, LinkEventArgs arg) #### Parameters -`obNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obNotifier` object The linked object. @@ -541,7 +542,7 @@ protected override void LinkRequestUpdate(object obNotifier, LinkEventArgs arg) #### Parameters -`obNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obNotifier` object The linked object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ReferenceDesignFrame.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ReferenceDesignFrame.md index 251b41c090..e7947c3c45 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ReferenceDesignFrame.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ReferenceDesignFrame.md @@ -1,4 +1,5 @@ -# Class ReferenceDesignFrame +# Class ReferenceDesignFrame + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,9 +12,9 @@ public class ReferenceDesignFrame : ReferenceDesignSubEntity, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Reference ← @@ -34,7 +35,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, INamed, @@ -169,7 +170,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -200,11 +201,11 @@ protected ReferenceDesignFrame(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. @@ -246,7 +247,7 @@ protected virtual Tuple OriginalPosition { get; } #### Property Value - [Tuple](https://learn.microsoft.com/dotnet/api/system.tuple\-2) + Tuple ### Position @@ -294,7 +295,7 @@ public double X { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y @@ -306,7 +307,7 @@ public double Y { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Z @@ -318,7 +319,7 @@ public double Z { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -352,7 +353,7 @@ public string GetFullName() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The full name. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ReferenceDesignPoint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ReferenceDesignPoint.md index 8b78431392..881d13d1dc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ReferenceDesignPoint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ReferenceDesignPoint.md @@ -1,4 +1,5 @@ -# Class ReferenceDesignPoint +# Class ReferenceDesignPoint + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,9 +12,9 @@ public class ReferenceDesignPoint : ReferenceDesignSubEntity, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Reference ← @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, INamed, @@ -176,7 +177,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -207,11 +208,11 @@ protected ReferenceDesignPoint(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. @@ -289,7 +290,7 @@ public double X { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y @@ -301,7 +302,7 @@ public double Y { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Z @@ -313,7 +314,7 @@ public double Z { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -347,7 +348,7 @@ public string GetFullName() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The full name. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ReferenceDesignSubEntity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ReferenceDesignSubEntity.md index 56a79726c8..1f130b5c0c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ReferenceDesignSubEntity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ReferenceDesignSubEntity.md @@ -1,4 +1,5 @@ -# Class ReferenceDesignSubEntity +# Class ReferenceDesignSubEntity + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,9 +12,9 @@ public class ReferenceDesignSubEntity : Reference, IObservableObject, IDisposabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Reference ← @@ -39,7 +40,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, INamed, @@ -168,7 +169,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -199,11 +200,11 @@ protected ReferenceDesignSubEntity(SerializationInfo info, StreamingContext cont #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ReferenceDesignVariable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ReferenceDesignVariable.md index d03038007c..4de9d2258f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ReferenceDesignVariable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ReferenceDesignVariable.md @@ -1,4 +1,5 @@ -# Class ReferenceDesignVariable +# Class ReferenceDesignVariable + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,9 +12,9 @@ public class ReferenceDesignVariable : ReferenceDesignSubEntity, IObservableObje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Reference ← @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, INamed, @@ -171,7 +172,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -202,11 +203,11 @@ protected ReferenceDesignVariable(SerializationInfo info, StreamingContext conte #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.RemoveFromDocEventArgs.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.RemoveFromDocEventArgs.md index 28d97310aa..9f05a983f9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.RemoveFromDocEventArgs.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.RemoveFromDocEventArgs.md @@ -1,4 +1,5 @@ -# Class RemoveFromDocEventArgs +# Class RemoveFromDocEventArgs + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public sealed class RemoveFromDocEventArgs : EventArgs #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) ← +object ← +EventArgs ← [RemoveFromDocEventArgs](VM.Managed.RemoveFromDocEventArgs.md) #### Extension Methods @@ -37,7 +38,7 @@ public RemoveFromDocEventArgs(Document doc, bool bBackup) The document -`bBackup` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bBackup` bool The backup flag. @@ -79,5 +80,5 @@ public bool IsBackup { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Render.IDraw.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Render.IDraw.md index 2323971b8d..cd1eaa5b95 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Render.IDraw.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Render.IDraw.md @@ -1,4 +1,5 @@ -# Interface IDraw +# Interface IDraw + Namespace: [VM.Managed.Render](VM.Managed.Render.md) Assembly: VMAppCore.dll @@ -27,7 +28,7 @@ bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -41,7 +42,7 @@ void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Render.IDrawChangeFacet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Render.IDrawChangeFacet.md index 67e662e81c..9c82490b5c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Render.IDrawChangeFacet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Render.IDrawChangeFacet.md @@ -1,4 +1,5 @@ -# Interface IDrawChangeFacet +# Interface IDrawChangeFacet + Namespace: [VM.Managed.Render](VM.Managed.Render.md) Assembly: VMAppCore.dll @@ -33,7 +34,7 @@ The target object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if this instance is drawable; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Render.IDrawIcon.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Render.IDrawIcon.md index 54610d4736..f0fe1b0fa4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Render.IDrawIcon.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Render.IDrawIcon.md @@ -1,4 +1,5 @@ -# Interface IDrawIcon +# Interface IDrawIcon + Namespace: [VM.Managed.Render](VM.Managed.Render.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Render.enRenderType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Render.enRenderType.md index 24d6c6f8f8..4084b826fc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Render.enRenderType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Render.enRenderType.md @@ -1,4 +1,5 @@ -# Enum enRenderType +# Enum enRenderType + Namespace: [VM.Managed.Render](VM.Managed.Render.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Render.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Render.md index 3ca592cff4..2f11293fe3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Render.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Render.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.Render +# Namespace VM.Managed.Render + ### Interfaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ReservableDestroyAttribute.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ReservableDestroyAttribute.md index 902d7f7f18..fabc82fe5c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ReservableDestroyAttribute.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ReservableDestroyAttribute.md @@ -1,4 +1,5 @@ -# Class ReservableDestroyAttribute +# Class ReservableDestroyAttribute + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -12,8 +13,8 @@ public class ReservableDestroyAttribute : Attribute #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Attribute](https://learn.microsoft.com/dotnet/api/system.attribute) ← +object ← +Attribute ← [ReservableDestroyAttribute](VM.Managed.ReservableDestroyAttribute.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Resource.Resources.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Resource.Resources.md index af83b87be5..71ba18ab63 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Resource.Resources.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Resource.Resources.md @@ -1,4 +1,5 @@ -# Class Resources +# Class Resources + Namespace: [VM.Managed.Resource](VM.Managed.Resource.md) Assembly: VMAppCore.dll @@ -9,7 +10,7 @@ public class Resources #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Resources](VM.Managed.Resource.Resources.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Resource.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Resource.md index 7adf6082ca..9f4ffc1006 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Resource.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Resource.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.Resource +# Namespace VM.Managed.Resource + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SerializableDictionary-2.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SerializableDictionary-2.md index 5a1d6a20fb..235f86a55d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SerializableDictionary-2.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SerializableDictionary-2.md @@ -1,4 +1,5 @@ -# Class SerializableDictionary +# Class SerializableDictionary + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -17,8 +18,8 @@ public class SerializableDictionary : Dictionary #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2) ← +object ← +Dictionary ← [SerializableDictionary](VM.Managed.SerializableDictionary\-2.md) #### Extension Methods @@ -47,7 +48,7 @@ public SerializableDictionary(Dictionary dic) #### Parameters -`dic` [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2) +`dic` Dictionary ## Methods @@ -61,7 +62,7 @@ public void CopyTo(ref Dictionary dic) #### Parameters -`dic` [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2) +`dic` Dictionary ### GetSchema\(\) @@ -73,7 +74,7 @@ public XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema ### ReadXml\(XmlReader\) @@ -85,7 +86,7 @@ public void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader ### WriteXml\(XmlWriter\) @@ -97,5 +98,5 @@ public void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SerializeUtil.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SerializeUtil.md index 27680b4ead..b1fc49ab10 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SerializeUtil.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SerializeUtil.md @@ -1,4 +1,5 @@ -# Class SerializeUtil +# Class SerializeUtil + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,7 +12,7 @@ public class SerializeUtil #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SerializeUtil](VM.Managed.SerializeUtil.md) #### Extension Methods @@ -40,11 +41,11 @@ public static T Deserial(string xml, Type type) #### Parameters -`xml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`xml` string The object xml -`type` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`type` Type The deserialized explicit type @@ -66,7 +67,7 @@ public static T Deserial(string xml) #### Parameters -`xml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`xml` string The object xml @@ -96,7 +97,7 @@ The object #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The new object. @@ -118,7 +119,7 @@ public static string Serial(ObjectBase obj) #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SerialXmlDoc\(T\) @@ -136,7 +137,7 @@ The object #### Returns - [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) + XmlDocument The new object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.BodyOrientation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.BodyOrientation.md index b64f1c4c91..57d647b081 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.BodyOrientation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.BodyOrientation.md @@ -1,4 +1,5 @@ -# Enum Configuration.BodyOrientation +# Enum Configuration.BodyOrientation + Namespace: [VM.Managed.Simulation](VM.Managed.Simulation.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.Criterion.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.Criterion.md index 5c29e75362..89399c9654 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.Criterion.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.Criterion.md @@ -1,4 +1,5 @@ -# Enum Configuration.Criterion +# Enum Configuration.Criterion + Namespace: [VM.Managed.Simulation](VM.Managed.Simulation.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.CriterionSub.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.CriterionSub.md index dd1582bd21..d52412665a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.CriterionSub.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.CriterionSub.md @@ -1,4 +1,5 @@ -# Enum Configuration.CriterionSub +# Enum Configuration.CriterionSub + Namespace: [VM.Managed.Simulation](VM.Managed.Simulation.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.ExportModuleInformation.ExportFormat.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.ExportModuleInformation.ExportFormat.md new file mode 100644 index 0000000000..f1a58fbe4a --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.ExportModuleInformation.ExportFormat.md @@ -0,0 +1,32 @@ +# Enum Configuration.ExportModuleInformation.ExportFormat + + +Namespace: [VM.Managed.Simulation](VM.Managed.Simulation.md) +Assembly: VMDFBase.dll + +Specifies export format types. + +```csharp +public enum Configuration.ExportModuleInformation.ExportFormat +``` + +## Fields + +`ALL = 2` + +ALL + + + +`DFS = 0` + +DFS + + + +`XML = 1` + +XML + + + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.ExportModuleInformation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.ExportModuleInformation.md new file mode 100644 index 0000000000..f46643ad9c --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.ExportModuleInformation.md @@ -0,0 +1,186 @@ +# Struct Configuration.ExportModuleInformation + + +Namespace: [VM.Managed.Simulation](VM.Managed.Simulation.md) +Assembly: VMDFBase.dll + +This struct is to represent the export module information. + +```csharp +public struct Configuration.ExportModuleInformation +``` + +## Constructors + +### ExportModuleInformation\(\) + +```csharp +public ExportModuleInformation() +``` + +### ExportModuleInformation\(string\) + +```csharp +public ExportModuleInformation(string strFilePath) +``` + +#### Parameters + +`strFilePath` string + +## Properties + +### ExportFormatType + +Gets or sets the export format type + +```csharp +public Configuration.ExportModuleInformation.ExportFormat ExportFormatType { readonly get; set; } +``` + +#### Property Value + + [Configuration](VM.Managed.Simulation.Configuration.md).[ExportModuleInformation](VM.Managed.Simulation.Configuration.ExportModuleInformation.md).[ExportFormat](VM.Managed.Simulation.Configuration.ExportModuleInformation.ExportFormat.md) + +### FilePath + +Gets or sets the file path + +```csharp +public string FilePath { readonly get; set; } +``` + +#### Property Value + + string + +### IncludeReferenceFiles + +Gets or sets the including reference files flag + +```csharp +public bool IncludeReferenceFiles { readonly get; set; } +``` + +#### Property Value + + bool + +### UsePostGraphicFiles + +Gets or sets the using post graphics files flag + +```csharp +public bool UsePostGraphicFiles { readonly get; set; } +``` + +#### Property Value + + bool + +## Methods + +### Equals\(object\) + +

    Check equality of two objects

    + +```csharp +public override bool Equals(object obj) +``` + +#### Parameters + +`obj` object + +

    Object to compare

    + +#### Returns + + bool + +

    true if two objects are equal. Otherwise false.

    + +### Equals\(ExportModuleInformation\) + +

    Check equality of two objects

    + +```csharp +public bool Equals(Configuration.ExportModuleInformation other) +``` + +#### Parameters + +`other` [Configuration](VM.Managed.Simulation.Configuration.md).[ExportModuleInformation](VM.Managed.Simulation.Configuration.ExportModuleInformation.md) + +

    Object to compare

    + +#### Returns + + bool + +

    true if two objects are equal. Otherwise false.

    + +### GetHashCode\(\) + +

    Get hash code of ExportModuleInformation

    + +```csharp +public override int GetHashCode() +``` + +#### Returns + + int + +

    The hash code

    + +## Operators + +### operator ==\(ExportModuleInformation, ExportModuleInformation\) + +

    Compare two ExportModuleInformation and return equality

    + +```csharp +public static bool operator ==(Configuration.ExportModuleInformation left, Configuration.ExportModuleInformation right) +``` + +#### Parameters + +`left` [Configuration](VM.Managed.Simulation.Configuration.md).[ExportModuleInformation](VM.Managed.Simulation.Configuration.ExportModuleInformation.md) + +

    The left parameter to compare

    + +`right` [Configuration](VM.Managed.Simulation.Configuration.md).[ExportModuleInformation](VM.Managed.Simulation.Configuration.ExportModuleInformation.md) + +

    The right parameter to compare

    + +#### Returns + + bool + +

    true if two arguments are same. Otherwise false.

    + +### operator \!=\(ExportModuleInformation, ExportModuleInformation\) + +

    Compare two ExportModuleInformation and return equality

    + +```csharp +public static bool operator !=(Configuration.ExportModuleInformation left, Configuration.ExportModuleInformation right) +``` + +#### Parameters + +`left` [Configuration](VM.Managed.Simulation.Configuration.md).[ExportModuleInformation](VM.Managed.Simulation.Configuration.ExportModuleInformation.md) + +

    The left parameter to compare

    + +`right` [Configuration](VM.Managed.Simulation.Configuration.md).[ExportModuleInformation](VM.Managed.Simulation.Configuration.ExportModuleInformation.md) + +

    The right parameter to compare

    + +#### Returns + + bool + +

    true if two arguments are not same. Otherwise false.

    + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.Jacobian.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.Jacobian.md index 2aa948cc4f..58a731666e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.Jacobian.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.Jacobian.md @@ -1,4 +1,5 @@ -# Enum Configuration.Jacobian +# Enum Configuration.Jacobian + Namespace: [VM.Managed.Simulation](VM.Managed.Simulation.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.LinearProblem.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.LinearProblem.md index ef1e1c22c5..d2b788a4ee 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.LinearProblem.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.LinearProblem.md @@ -1,4 +1,5 @@ -# Enum Configuration.LinearProblem +# Enum Configuration.LinearProblem + Namespace: [VM.Managed.Simulation](VM.Managed.Simulation.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.LinearSolver.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.LinearSolver.md index 312f3a9460..0a8e9e5f23 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.LinearSolver.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.LinearSolver.md @@ -1,4 +1,5 @@ -# Enum Configuration.LinearSolver +# Enum Configuration.LinearSolver + Namespace: [VM.Managed.Simulation](VM.Managed.Simulation.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.MemoryOptimization.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.MemoryOptimization.md index e4e6f2fc9d..35f409e3db 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.MemoryOptimization.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.MemoryOptimization.md @@ -1,4 +1,5 @@ -# Enum Configuration.MemoryOptimization +# Enum Configuration.MemoryOptimization + Namespace: [VM.Managed.Simulation](VM.Managed.Simulation.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.MeshDataForOutput.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.MeshDataForOutput.md index 95234f9ff3..fac1d3bff6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.MeshDataForOutput.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.MeshDataForOutput.md @@ -1,4 +1,5 @@ -# Enum Configuration.MeshDataForOutput +# Enum Configuration.MeshDataForOutput + Namespace: [VM.Managed.Simulation](VM.Managed.Simulation.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.NodalCoordinate.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.NodalCoordinate.md index c0c42fcd80..9ae076be56 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.NodalCoordinate.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.NodalCoordinate.md @@ -1,4 +1,5 @@ -# Enum Configuration.NodalCoordinate +# Enum Configuration.NodalCoordinate + Namespace: [VM.Managed.Simulation](VM.Managed.Simulation.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.RecordOfStressStrain.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.RecordOfStressStrain.md index c2851f5824..3db5da973d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.RecordOfStressStrain.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.RecordOfStressStrain.md @@ -1,4 +1,5 @@ -# Enum Configuration.RecordOfStressStrain +# Enum Configuration.RecordOfStressStrain + Namespace: [VM.Managed.Simulation](VM.Managed.Simulation.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.ResultRecord.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.ResultRecord.md index f92a0f0e8a..53673ccdea 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.ResultRecord.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.ResultRecord.md @@ -1,4 +1,5 @@ -# Struct Configuration.ResultRecord +# Struct Configuration.ResultRecord + Namespace: [VM.Managed.Simulation](VM.Managed.Simulation.md) Assembly: VMDFBase.dll @@ -21,7 +22,7 @@ public bool Constraints { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Contacts @@ -33,7 +34,7 @@ public bool Contacts { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### EHDBearing @@ -45,7 +46,7 @@ public bool EHDBearing { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ExternalLoad @@ -55,7 +56,7 @@ public bool ExternalLoad { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Forces @@ -67,7 +68,7 @@ public bool Forces { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MotorEMForce @@ -79,7 +80,7 @@ public bool MotorEMForce { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SubEntities @@ -91,7 +92,7 @@ public bool SubEntities { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### WriteToOutFile @@ -103,7 +104,7 @@ public bool WriteToOutFile { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -117,13 +118,13 @@ public override bool Equals(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object

    Object to compare

    #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool

    true if two objects are equal. Otherwise false.

    @@ -143,7 +144,7 @@ public bool Equals(Configuration.ResultRecord other) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool

    true if two objects are equal. Otherwise false.

    @@ -157,7 +158,7 @@ public override int GetHashCode() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int

    The hash code

    @@ -191,7 +192,7 @@ public static bool operator ==(Configuration.ResultRecord left, Configuration.Re #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool

    true if two arguments are same. Otherwise false.

    @@ -215,7 +216,7 @@ public static bool operator !=(Configuration.ResultRecord left, Configuration.Re #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool

    true if two arguments are not same. Otherwise false.

    diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.Simulation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.Simulation.md index 894e3e8a64..288baa30e8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.Simulation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.Simulation.md @@ -1,4 +1,5 @@ -# Enum Configuration.Simulation +# Enum Configuration.Simulation + Namespace: [VM.Managed.Simulation](VM.Managed.Simulation.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.SkipAnalysis.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.SkipAnalysis.md index d304dfe0ce..d792309648 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.SkipAnalysis.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.SkipAnalysis.md @@ -1,4 +1,5 @@ -# Enum Configuration.SkipAnalysis +# Enum Configuration.SkipAnalysis + Namespace: [VM.Managed.Simulation](VM.Managed.Simulation.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.TreatmentOfNonContactEntity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.TreatmentOfNonContactEntity.md index b693d6626f..70e33c1b2f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.TreatmentOfNonContactEntity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.TreatmentOfNonContactEntity.md @@ -1,4 +1,5 @@ -# Enum Configuration.TreatmentOfNonContactEntity +# Enum Configuration.TreatmentOfNonContactEntity + Namespace: [VM.Managed.Simulation](VM.Managed.Simulation.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.md index b2196d1815..f8b092a33d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Configuration.md @@ -1,4 +1,5 @@ -# Class Configuration +# Class Configuration + Namespace: [VM.Managed.Simulation](VM.Managed.Simulation.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class Configuration : LinkContainer, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Configuration](VM.Managed.Simulation.Configuration.md) @@ -76,7 +77,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -117,7 +118,7 @@ public int AccuracyOfGMS { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### AppendedDateTime @@ -129,7 +130,7 @@ public bool AppendedDateTime { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Attributes @@ -165,7 +166,7 @@ public bool[] CheckedLevelArray { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean)\[\] + bool\[\] ### ConfigName @@ -177,7 +178,7 @@ public string ConfigName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### CriterionVal @@ -189,7 +190,7 @@ public double[] CriterionVal { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### DisableEntities @@ -213,7 +214,7 @@ public int EigenvalueOutputStep { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### ExportICFFilePath @@ -225,7 +226,19 @@ public string ExportICFFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string + +### ExportInformation + +Gets or sets the export information. + +```csharp +public Configuration.ExportModuleInformation ExportInformation { get; set; } +``` + +#### Property Value + + [Configuration](VM.Managed.Simulation.Configuration.md).[ExportModuleInformation](VM.Managed.Simulation.Configuration.ExportModuleInformation.md) ### ExtraConfigs @@ -249,7 +262,7 @@ public int FlexibleBodyLevelForSuperSolver { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GINFPath @@ -261,7 +274,7 @@ public string GINFPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### HighSpeedRotationOption @@ -283,7 +296,7 @@ public string ImportICFFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IsIncludeEigenvalue @@ -295,7 +308,7 @@ public bool IsIncludeEigenvalue { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsIncludeStatic @@ -307,7 +320,7 @@ public bool IsIncludeStatic { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsIncludeThermal @@ -319,7 +332,7 @@ public bool IsIncludeThermal { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsUseLocalRefinement @@ -331,7 +344,7 @@ public bool IsUseLocalRefinement { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### JacobianOption @@ -355,7 +368,7 @@ public int LevelOfGeometryPrecision { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### MeshFreeAnalysisLevelGroup @@ -378,7 +391,7 @@ public uint MotionStepForPositionAnaly { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### NodalOutputEntities @@ -402,7 +415,7 @@ public uint NumberOfCore { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### ParameterOfDynamicAnalysis @@ -414,7 +427,7 @@ public AnalysisParameterDynamic ParameterOfDynamicAnalysis { get; set; } #### Property Value - AnalysisParameterDynamic + [AnalysisParameterDynamic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SimulationConfiguration.cs) ### ParameterOfEigenvalueAnalysis @@ -426,7 +439,7 @@ public AnalysisParameterEigenvalue ParameterOfEigenvalueAnalysis { get; set; } #### Property Value - AnalysisParameterEigenvalue + [AnalysisParameterEigenvalue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SimulationConfiguration.cs) ### ParameterOfStaticAnalysis @@ -438,7 +451,7 @@ public AnalysisParameterStatic ParameterOfStaticAnalysis { get; set; } #### Property Value - AnalysisParameterStatic + [AnalysisParameterStatic](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SimulationConfiguration.cs) ### ParameterOfThermalAnalysis @@ -450,7 +463,7 @@ public AnalysisParameterThermal ParameterOfThermalAnalysis { get; set; } #### Property Value - AnalysisParameterThermal + [AnalysisParameterThermal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SimulationConfiguration.cs) ### PlasticMaterialStrain @@ -462,6 +475,18 @@ public PlasticMaterialStrain PlasticMaterialStrain { get; set; } [PlasticMaterialStrain](VM.Managed.DAFUL.PlasticMaterialStrain.md) +### PreventPost + +Gets or sets the flag determines whether to prevent post execution. + +```csharp +public bool PreventPost { get; set; } +``` + +#### Property Value + + bool + ### PreventShearLocking ```csharp @@ -470,7 +495,7 @@ public bool PreventShearLocking { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RecordOfResult @@ -506,7 +531,7 @@ public string ResultFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ShowHideAdvancedOption @@ -518,7 +543,7 @@ public bool ShowHideAdvancedOption { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SimulationParam @@ -530,7 +555,7 @@ public SimulationParameter SimulationParam { get; set; } #### Property Value - SimulationParameter + [SimulationParameter](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SimulationConfiguration.cs) ### SimulationStepForPLT @@ -542,7 +567,19 @@ public uint SimulationStepForPLT { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint + +### SolverCommand + +Gets or sets the solver command. + +```csharp +public string SolverCommand { get; set; } +``` + +#### Property Value + + string ### StepOfDynamicSimulation @@ -554,7 +591,7 @@ public uint StepOfDynamicSimulation { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### StepOfStaticSimulation @@ -566,7 +603,7 @@ public uint StepOfStaticSimulation { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### StressStrainReport @@ -600,7 +637,7 @@ public bool SynchronizeMaxStepSize { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TreatAsModalForEFModalBodyResult @@ -612,7 +649,7 @@ public bool TreatAsModalForEFModalBodyResult { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TypeOfCriterion @@ -780,7 +817,7 @@ public bool UseAutoSolverProgressBar { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseExportICF @@ -792,7 +829,7 @@ public bool UseExportICF { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseImportICF @@ -804,7 +841,7 @@ public bool UseImportICF { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseMeshFreeAllBodySettings @@ -817,7 +854,7 @@ public bool UseMeshFreeAllBodySettings { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseMotionStep @@ -829,7 +866,7 @@ public bool UseMotionStep { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseOutOfCore @@ -841,7 +878,7 @@ public bool UseOutOfCore { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UsePLT @@ -853,7 +890,7 @@ public bool UsePLT { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseSolvingSpeedOption @@ -865,7 +902,7 @@ public bool UseSolvingSpeedOption { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UserTetraFilePath @@ -877,7 +914,7 @@ public string UserTetraFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -905,7 +942,7 @@ public void AddToolkitSetting(string strName, ToolKitSettingBase setting) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -923,7 +960,7 @@ public void AddToolkitSettingValue(string strKey, ObjectBase ob) #### Parameters -`strKey` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strKey` string key of toolkit. @@ -949,7 +986,7 @@ public virtual Configuration Clone(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -967,13 +1004,13 @@ public bool ContainsToolkitSetting(string strKey) #### Parameters -`strKey` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strKey` string key of toolkit. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if contains toolkit setting with the specified STR key; otherwise, false. @@ -987,7 +1024,7 @@ public bool ContainsToolkitSettingValue(string strKey, ObjectBase ob) #### Parameters -`strKey` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strKey` string key of toolkit. @@ -997,7 +1034,7 @@ The toolkit setting. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if contains toolkit setting value with the specified toolkit key; otherwise, false. @@ -1011,7 +1048,7 @@ public Configuration DeserializeConfiguration(string strReader) #### Parameters -`strReader` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strReader` string The reader. @@ -1049,7 +1086,7 @@ public ToolKitSettingBase GetToolkitSetting(string strKey) #### Parameters -`strKey` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strKey` string key of toolkit. @@ -1067,7 +1104,7 @@ public void InitializeConfig(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the simulation configuration. @@ -1087,7 +1124,7 @@ The object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the specified object is enabled; otherwise, false. @@ -1101,7 +1138,7 @@ public bool IsThermalAnalysis() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if this instance is thermal analysis; otherwise, false. @@ -1115,7 +1152,7 @@ protected override void LinkRemovedFromDocument(object objNotifier, RemoveFromDo #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -1133,7 +1170,7 @@ protected override void LinkRequestDestroy(object objNotifier, LinkEventArgs arg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -1151,7 +1188,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -1169,7 +1206,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -1197,7 +1234,7 @@ public void RemoveToolkitSetting(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -1211,7 +1248,7 @@ public void RemoveToolkitSettingValue(string strKey, ObjectBase ob) #### Parameters -`strKey` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strKey` string key of toolkit. @@ -1243,7 +1280,7 @@ public void ReplaceToolkitSettingValue(string strKey, ObjectBase obOld, ObjectBa #### Parameters -`strKey` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strKey` string key of toolkit. @@ -1265,7 +1302,7 @@ public string SerializeConfiguration() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SetEnable\(ObjectBase, bool\) @@ -1281,7 +1318,7 @@ public void SetEnable(ObjectBase ob, bool bEnabled) The object. -`bEnabled` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bEnabled` bool if set to true enabled. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.ConfigurationExtraCollection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.ConfigurationExtraCollection.md index f2abb78d3f..587768e9d3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.ConfigurationExtraCollection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.ConfigurationExtraCollection.md @@ -1,4 +1,5 @@ -# Class ConfigurationExtraCollection +# Class ConfigurationExtraCollection + Namespace: [VM.Managed.Simulation](VM.Managed.Simulation.md) Assembly: VMDFBase.dll @@ -11,9 +12,9 @@ public class ConfigurationExtraCollection : LinkContainer, IObservableObject, ID #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ConfigurationExtraCollection](VM.Managed.Simulation.ConfigurationExtraCollection.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,7 +117,7 @@ public virtual int Count { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Keys @@ -128,7 +129,7 @@ public virtual ICollection Keys { get; } #### Property Value - [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + ICollection ### Values @@ -140,7 +141,7 @@ public virtual ICollection Values { get; } #### Property Value - [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1) + ICollection<[SimulationConfigurationExtraBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SimulationConfigurationExtra.cs)\> ### this\[string\] @@ -152,7 +153,7 @@ public virtual SimulationConfigurationExtraBase this[string strKey] { get; set; #### Property Value - SimulationConfigurationExtraBase + [SimulationConfigurationExtraBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SimulationConfigurationExtra.cs) ## Methods @@ -166,25 +167,25 @@ public virtual void Add(string key, SimulationConfigurationExtraBase value) #### Parameters -`key` [string](https://learn.microsoft.com/dotnet/api/system.string) +`key` string The object to use as the key of the element to add. -`value` SimulationConfigurationExtraBase +`value` [SimulationConfigurationExtraBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SimulationConfigurationExtra.cs) The object to use as the value of the element to add. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException key is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException An element with the same key already exists in the . - [NotSupportedException](https://learn.microsoft.com/dotnet/api/system.notsupportedexception) + NotSupportedException The is read-only. @@ -198,7 +199,7 @@ public virtual void Clear() #### Exceptions - [NotSupportedException](https://learn.microsoft.com/dotnet/api/system.notsupportedexception) + NotSupportedException The is read-only. @@ -212,19 +213,19 @@ public virtual bool ContainsKey(string key) #### Parameters -`key` [string](https://learn.microsoft.com/dotnet/api/system.string) +`key` string The key to locate in the . #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the contains an element with the key; otherwise, false. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException key is null. @@ -238,7 +239,7 @@ public virtual IEnumerator\> + IEnumerator\> A that can be used to iterate through the collection. @@ -252,7 +253,7 @@ public virtual XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -266,7 +267,7 @@ public virtual void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The stream from which the object is deserialized. @@ -280,23 +281,23 @@ public virtual bool Remove(string key) #### Parameters -`key` [string](https://learn.microsoft.com/dotnet/api/system.string) +`key` string The key of the element to remove. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the element is successfully removed; otherwise, false. This method also returns false if key was not found in the original . #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException key is null. - [NotSupportedException](https://learn.microsoft.com/dotnet/api/system.notsupportedexception) + NotSupportedException The is read-only. @@ -310,23 +311,23 @@ public virtual bool TryGetValue(string key, out SimulationConfigurationExtraBase #### Parameters -`key` [string](https://learn.microsoft.com/dotnet/api/system.string) +`key` string The key whose value to get. -`value` SimulationConfigurationExtraBase +`value` [SimulationConfigurationExtraBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SimulationConfigurationExtra.cs) When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the value parameter. This parameter is passed uninitialized. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the object that implements contains an element with the specified key; otherwise, false. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException key is null. @@ -340,7 +341,7 @@ public virtual void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Scenario.Action.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Scenario.Action.md index 7d1ca1e011..ea29b6c016 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Scenario.Action.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Scenario.Action.md @@ -1,4 +1,5 @@ -# Enum Scenario.Action +# Enum Scenario.Action + Namespace: [VM.Managed.Simulation](VM.Managed.Simulation.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Scenario.Motion.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Scenario.Motion.md index da8941cd22..e46a9a4a39 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Scenario.Motion.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Scenario.Motion.md @@ -1,4 +1,5 @@ -# Enum Scenario.Motion +# Enum Scenario.Motion + Namespace: [VM.Managed.Simulation](VM.Managed.Simulation.md) Assembly: VMDFBase.dll @@ -23,9 +24,45 @@ R. Motion +`RXMotion = 6` + +R. X Motion + + + +`RYMotion = 7` + +R. Y Motion + + + +`RZMotion = 8` + +R. Z Motion + + + `TMotion = 2` T. Motion +`TXMotion = 3` + +T. X Motion + + + +`TYMotion = 4` + +T. Y Motion + + + +`TZMotion = 5` + +T. Z Motion + + + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Scenario.Sensor.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Scenario.Sensor.md index bfb586d18e..eacf21715b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Scenario.Sensor.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Scenario.Sensor.md @@ -1,4 +1,5 @@ -# Enum Scenario.Sensor +# Enum Scenario.Sensor + Namespace: [VM.Managed.Simulation](VM.Managed.Simulation.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Scenario.Sign.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Scenario.Sign.md index ac9d5b8726..1f5d9cdf18 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Scenario.Sign.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Scenario.Sign.md @@ -1,4 +1,5 @@ -# Enum Scenario.Sign +# Enum Scenario.Sign + Namespace: [VM.Managed.Simulation](VM.Managed.Simulation.md) Assembly: VMDFBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Scenario.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Scenario.md index 80590a91df..a820f568c1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Scenario.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.Scenario.md @@ -1,4 +1,5 @@ -# Class Scenario +# Class Scenario + Namespace: [VM.Managed.Simulation](VM.Managed.Simulation.md) Assembly: VMDFBase.dll @@ -11,12 +12,12 @@ public class Scenario : SubEntity, IObservableObject, IDisposableObject, ILinkab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [Scenario](VM.Managed.Simulation.Scenario.md) #### Implements @@ -26,7 +27,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -45,17 +46,17 @@ INavigatorItem #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -148,7 +149,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -187,7 +188,7 @@ public Scenario(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -203,7 +204,7 @@ public double ActionVal { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### EnableTarget @@ -239,7 +240,7 @@ public string ICFPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TargetOfMotion @@ -299,7 +300,7 @@ public double Val { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### \_EnableTarget @@ -328,13 +329,15 @@ public Linker _ScenarioTarget { get; set; } ### GetTargetType\(\) +Gets the type of the target. + ```csharp public string GetTargetType() ``` #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Initialize\(ConvertFactor\) @@ -360,7 +363,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -376,5 +379,5 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.md index 3bf4813d5f..192e9fd6ec 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Simulation.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.Simulation +# Namespace VM.Managed.Simulation + ### Classes @@ -16,6 +17,10 @@ This class is to represent the scenario. ### Structs + [Configuration.ExportModuleInformation](VM.Managed.Simulation.Configuration.ExportModuleInformation.md) + +This struct is to represent the export module information. + [Configuration.ResultRecord](VM.Managed.Simulation.Configuration.ResultRecord.md) This struct is to represent the result record. @@ -38,6 +43,10 @@ Specifies type for a criterion. Specifies sub-type for a criterion. + [Configuration.ExportModuleInformation.ExportFormat](VM.Managed.Simulation.Configuration.ExportModuleInformation.ExportFormat.md) + +Specifies export format types. + [Configuration.Jacobian](VM.Managed.Simulation.Configuration.Jacobian.md) Specifies type for a jacobian. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.Criterion.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.Criterion.md index 87c2ef9f0b..1ef52ca9c5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.Criterion.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.Criterion.md @@ -1,4 +1,5 @@ -# Enum SimulationConfiguration.Criterion +# Enum SimulationConfiguration.Criterion + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.CriterionSub.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.CriterionSub.md index 9d53ece0d5..1ff7307081 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.CriterionSub.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.CriterionSub.md @@ -1,4 +1,5 @@ -# Enum SimulationConfiguration.CriterionSub +# Enum SimulationConfiguration.CriterionSub + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.Jacobian.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.Jacobian.md index 1964162960..698ae76149 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.Jacobian.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.Jacobian.md @@ -1,4 +1,5 @@ -# Enum SimulationConfiguration.Jacobian +# Enum SimulationConfiguration.Jacobian + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.LinearProblem.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.LinearProblem.md index 3bdfe56fbb..9df80d8eb1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.LinearProblem.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.LinearProblem.md @@ -1,4 +1,5 @@ -# Enum SimulationConfiguration.LinearProblem +# Enum SimulationConfiguration.LinearProblem + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.LinearSolver.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.LinearSolver.md index 01e69db3fe..907651a923 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.LinearSolver.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.LinearSolver.md @@ -1,4 +1,5 @@ -# Enum SimulationConfiguration.LinearSolver +# Enum SimulationConfiguration.LinearSolver + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.MemoryOptimization.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.MemoryOptimization.md index e2070c89a7..d74d91c1e1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.MemoryOptimization.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.MemoryOptimization.md @@ -1,4 +1,5 @@ -# Enum SimulationConfiguration.MemoryOptimization +# Enum SimulationConfiguration.MemoryOptimization + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.MeshDataForOutput.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.MeshDataForOutput.md index 0212a01dc4..073a5fa5d1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.MeshDataForOutput.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.MeshDataForOutput.md @@ -1,4 +1,5 @@ -# Enum SimulationConfiguration.MeshDataForOutput +# Enum SimulationConfiguration.MeshDataForOutput + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.NodalCoordinate.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.NodalCoordinate.md index ed9a49e3d4..c0f8d78dbb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.NodalCoordinate.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.NodalCoordinate.md @@ -1,4 +1,5 @@ -# Enum SimulationConfiguration.NodalCoordinate +# Enum SimulationConfiguration.NodalCoordinate + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.Simulation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.Simulation.md index b59cc03be9..21ea19c912 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.Simulation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.Simulation.md @@ -1,4 +1,5 @@ -# Enum SimulationConfiguration.Simulation +# Enum SimulationConfiguration.Simulation + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.md index 127a356c3b..f4bbf777b2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfiguration.md @@ -1,4 +1,5 @@ -# Class SimulationConfiguration +# Class SimulationConfiguration + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -12,9 +13,9 @@ public class SimulationConfiguration : LinkContainer, IObservableObject, IDispos #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [SimulationConfiguration](VM.Managed.SimulationConfiguration.md) @@ -77,7 +78,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -118,7 +119,7 @@ public bool AppendDateTime { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### AutoSolverProgressBar @@ -130,7 +131,7 @@ public bool AutoSolverProgressBar { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CheckedLevel @@ -142,7 +143,7 @@ public bool[] CheckedLevel { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean)\[\] + bool\[\] ### CriterionSubType @@ -178,7 +179,7 @@ public double[] CriterionValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### DisableEntities @@ -214,7 +215,7 @@ public uint DynamicSimulationStep { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### EigenvalueAnalysisParameter @@ -238,7 +239,7 @@ public string ExportICFPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ExtraConfigs @@ -262,7 +263,7 @@ public string GINFFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GeometryPrecisionLevel @@ -274,7 +275,7 @@ public int GeometryPrecisionLevel { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### ImportICFPath @@ -286,7 +287,7 @@ public string ImportICFPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IncludeEigenvalue @@ -298,7 +299,7 @@ public bool IncludeEigenvalue { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IncludeStatic @@ -310,7 +311,7 @@ public bool IncludeStatic { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsUseExportICF @@ -322,7 +323,7 @@ public bool IsUseExportICF { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsUseImportICF @@ -334,7 +335,7 @@ public bool IsUseImportICF { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsUseMotionStep @@ -346,7 +347,7 @@ public bool IsUseMotionStep { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsUsePLT @@ -358,7 +359,7 @@ public bool IsUsePLT { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### JacobianEvalOption @@ -394,7 +395,7 @@ public int LevelOfFlexibleBodyForSuperSolver { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### LinearSolverType @@ -453,7 +454,7 @@ public uint MotionStepForPositionAnalysis { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### Name @@ -465,7 +466,7 @@ public string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NodalCoordinateType @@ -501,7 +502,7 @@ public IList NodalOutputs { get; } #### Property Value - [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1) + IList ### NumOfCore @@ -513,7 +514,7 @@ public uint NumOfCore { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### OutOfCore @@ -525,7 +526,7 @@ public bool OutOfCore { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ResultPath @@ -537,7 +538,7 @@ public string ResultPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ShowAdvancedOption @@ -549,7 +550,7 @@ public bool ShowAdvancedOption { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SimulationParameter @@ -573,7 +574,7 @@ public uint SimulationStepPLT { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### SimulationType @@ -597,7 +598,7 @@ public bool SolvingSpeedOption { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### StaticAnalysisParameter @@ -621,7 +622,7 @@ public uint StaticSimulationStep { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### SynchronizeMaximumStepSize @@ -633,7 +634,7 @@ public bool SynchronizeMaximumStepSize { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseLocalRefinement @@ -645,7 +646,7 @@ public bool UseLocalRefinement { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseMeshFreeAllBodySettings @@ -658,7 +659,7 @@ public bool UseMeshFreeAllBodySettings { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UserTetraPath @@ -670,7 +671,7 @@ public string UserTetraPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -684,7 +685,7 @@ public void AddToolkitSettingValue(string strKey, ObjectBase ob) #### Parameters -`strKey` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strKey` string key of toolkit. @@ -702,7 +703,7 @@ public virtual SimulationConfiguration Clone(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -720,13 +721,13 @@ public bool ContainsToolkitSetting(string strKey) #### Parameters -`strKey` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strKey` string key of toolkit. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if contains toolkit setting with the specified STR key; otherwise, false. @@ -740,7 +741,7 @@ public bool ContainsToolkitSettingValue(string strKey, ObjectBase ob) #### Parameters -`strKey` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strKey` string key of toolkit. @@ -750,7 +751,7 @@ The toolkit setting. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if contains toolkit setting value with the specified toolkit key; otherwise, false. @@ -764,7 +765,7 @@ public virtual SimulationConfiguration DeserializeConfiguration(string strReader #### Parameters -`strReader` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strReader` string The STR reader. @@ -782,7 +783,7 @@ public void InitializeConfig(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the simulation configuration. @@ -802,7 +803,7 @@ The object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the specified object is enabled; otherwise, false. @@ -816,7 +817,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -834,7 +835,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -862,7 +863,7 @@ public void RemoveToolkitSettingValue(string strKey, ObjectBase ob) #### Parameters -`strKey` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strKey` string key of toolkit. @@ -894,7 +895,7 @@ public void ReplaceToolkitSettingValue(string strKey, ObjectBase obOld, ObjectBa #### Parameters -`strKey` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strKey` string key of toolkit. @@ -920,7 +921,7 @@ public void SetEnable(ObjectBase ob, bool bEnabled) The object. -`bEnabled` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bEnabled` bool if set to true enabled. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfigurationExtraBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfigurationExtraBase.md index 8d90f00d72..5fd94d5bfc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfigurationExtraBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfigurationExtraBase.md @@ -1,4 +1,5 @@ -# Class SimulationConfigurationExtraBase +# Class SimulationConfigurationExtraBase + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,9 +12,9 @@ public abstract class SimulationConfigurationExtraBase : LinkContainer, IObserva #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [SimulationConfigurationExtraBase](VM.Managed.SimulationConfigurationExtraBase.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,7 +117,7 @@ public bool IsUse { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -130,7 +131,7 @@ public virtual string GetExtraInformation() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The extra information. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfigurationExtraCollection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfigurationExtraCollection.md index 19abbdbaf2..6adc07fb28 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfigurationExtraCollection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationConfigurationExtraCollection.md @@ -1,4 +1,5 @@ -# Class SimulationConfigurationExtraCollection +# Class SimulationConfigurationExtraCollection + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -12,9 +13,9 @@ public class SimulationConfigurationExtraCollection : LinkContainer, IObservable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [SimulationConfigurationExtraCollection](VM.Managed.SimulationConfigurationExtraCollection.md) @@ -76,7 +77,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -117,7 +118,7 @@ public virtual int Count { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Keys @@ -129,7 +130,7 @@ public virtual ICollection Keys { get; } #### Property Value - [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + ICollection ### Values @@ -141,7 +142,7 @@ public virtual ICollection Values { get; } #### Property Value - [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[SimulationConfigurationExtraBase](VM.Managed.SimulationConfigurationExtraBase.md)\> + ICollection<[SimulationConfigurationExtraBase](VM.Managed.SimulationConfigurationExtraBase.md)\> ### this\[string\] @@ -167,7 +168,7 @@ public virtual void Add(string key, SimulationConfigurationExtraBase value) #### Parameters -`key` [string](https://learn.microsoft.com/dotnet/api/system.string) +`key` string The object to use as the key of the element to add. @@ -177,15 +178,15 @@ The object to use as the value of the element to add. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException key is null. - [ArgumentException](https://learn.microsoft.com/dotnet/api/system.argumentexception) + ArgumentException An element with the same key already exists in the . - [NotSupportedException](https://learn.microsoft.com/dotnet/api/system.notsupportedexception) + NotSupportedException The is read-only. @@ -199,7 +200,7 @@ public virtual void Clear() #### Exceptions - [NotSupportedException](https://learn.microsoft.com/dotnet/api/system.notsupportedexception) + NotSupportedException The is read-only. @@ -213,19 +214,19 @@ public virtual bool ContainsKey(string key) #### Parameters -`key` [string](https://learn.microsoft.com/dotnet/api/system.string) +`key` string The key to locate in the . #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the contains an element with the key; otherwise, false. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException key is null. @@ -239,7 +240,7 @@ public virtual IEnumerator\> + IEnumerator\> A that can be used to iterate through the collection. @@ -253,7 +254,7 @@ public virtual XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -267,7 +268,7 @@ public virtual void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The stream from which the object is deserialized. @@ -281,23 +282,23 @@ public virtual bool Remove(string key) #### Parameters -`key` [string](https://learn.microsoft.com/dotnet/api/system.string) +`key` string The key of the element to remove. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the element is successfully removed; otherwise, false. This method also returns false if key was not found in the original . #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException key is null. - [NotSupportedException](https://learn.microsoft.com/dotnet/api/system.notsupportedexception) + NotSupportedException The is read-only. @@ -311,7 +312,7 @@ public virtual bool TryGetValue(string key, out SimulationConfigurationExtraBase #### Parameters -`key` [string](https://learn.microsoft.com/dotnet/api/system.string) +`key` string The key whose value to get. @@ -321,13 +322,13 @@ When this method returns, the value associated with the specified key, if the ke #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the object that implements contains an element with the specified key; otherwise, false. #### Exceptions - [ArgumentNullException](https://learn.microsoft.com/dotnet/api/system.argumentnullexception) + ArgumentNullException key is null. @@ -341,7 +342,7 @@ public virtual void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationParameter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationParameter.md index 68c58f1508..67e31c367d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationParameter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationParameter.md @@ -1,4 +1,5 @@ -# Class SimulationParameter +# Class SimulationParameter + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,7 +12,7 @@ public class SimulationParameter #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SimulationParameter](VM.Managed.SimulationParameter.md) #### Extension Methods @@ -52,7 +53,7 @@ public double RelativeErrorValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RoundErrorOfRedundant @@ -64,7 +65,7 @@ public double RoundErrorOfRedundant { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TimeOfDynamicSimulation @@ -76,7 +77,7 @@ public double TimeOfDynamicSimulation { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TimeOfStaticSimulation @@ -88,7 +89,7 @@ public double TimeOfStaticSimulation { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationScenario.Action.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationScenario.Action.md index 5c6d86549f..5564347294 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationScenario.Action.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationScenario.Action.md @@ -1,4 +1,5 @@ -# Enum SimulationScenario.Action +# Enum SimulationScenario.Action + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationScenario.Motion.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationScenario.Motion.md index 289ab8547a..f2685973c2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationScenario.Motion.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationScenario.Motion.md @@ -1,4 +1,5 @@ -# Enum SimulationScenario.Motion +# Enum SimulationScenario.Motion + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationScenario.Sensor.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationScenario.Sensor.md index ca3a903e44..fa8e3c7995 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationScenario.Sensor.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationScenario.Sensor.md @@ -1,4 +1,5 @@ -# Enum SimulationScenario.Sensor +# Enum SimulationScenario.Sensor + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationScenario.Sign.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationScenario.Sign.md index 110ea0f793..203890b8e4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationScenario.Sign.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationScenario.Sign.md @@ -1,4 +1,5 @@ -# Enum SimulationScenario.Sign +# Enum SimulationScenario.Sign + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationScenario.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationScenario.md index dace2404ba..baff7e7943 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationScenario.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SimulationScenario.md @@ -1,4 +1,5 @@ -# Class SimulationScenario +# Class SimulationScenario + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -12,9 +13,9 @@ public class SimulationScenario : SubEntity, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [SubEntity](VM.Managed.SubEntity.md) ← @@ -27,7 +28,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -149,7 +150,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -188,7 +189,7 @@ public SimulationScenario(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the STR. @@ -216,7 +217,7 @@ public double ActionValue { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### EnableTarget @@ -252,7 +253,7 @@ public string ICFFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SensorType @@ -300,7 +301,7 @@ public double Value { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### \_EnableTarget @@ -335,7 +336,7 @@ public string GetTargetType() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Initialize\(ConvertFactor\) @@ -361,7 +362,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -377,5 +378,5 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SolidBodyAnalysisType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SolidBodyAnalysisType.md index bd7a819d36..644e3ed5d7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SolidBodyAnalysisType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SolidBodyAnalysisType.md @@ -1,4 +1,5 @@ -# Enum SolidBodyAnalysisType +# Enum SolidBodyAnalysisType + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.StreamFooter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.StreamFooter.md index 56235a412c..ae0fda3ed2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.StreamFooter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.StreamFooter.md @@ -1,4 +1,5 @@ -# Class StreamFooter +# Class StreamFooter + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class StreamFooter #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [StreamFooter](VM.Managed.StreamFooter.md) #### Extension Methods @@ -42,7 +43,7 @@ public string GetComment() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetPointerSize\(\) @@ -54,7 +55,7 @@ public long GetPointerSize() #### Returns - [long](https://learn.microsoft.com/dotnet/api/system.int64) + long ### GetStreamHead\(\) @@ -66,7 +67,7 @@ public long GetStreamHead() #### Returns - [long](https://learn.microsoft.com/dotnet/api/system.int64) + long ### GetVersionInfo\(\) @@ -78,7 +79,7 @@ public string GetVersionInfo() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetVersionInfoSignature\(\) @@ -90,7 +91,7 @@ public static long GetVersionInfoSignature() #### Returns - [long](https://learn.microsoft.com/dotnet/api/system.int64) + long ### GetVersionInfoSize\(\) @@ -102,7 +103,7 @@ public static long GetVersionInfoSize() #### Returns - [long](https://learn.microsoft.com/dotnet/api/system.int64) + long ### Read\(Stream\) @@ -114,7 +115,7 @@ public void Read(Stream stream) #### Parameters -`stream` [Stream](https://learn.microsoft.com/dotnet/api/system.io.stream) +`stream` Stream The stream. @@ -128,15 +129,15 @@ public static void Write_V1(Stream stream, long posStreamHead, long sizePointer) #### Parameters -`stream` [Stream](https://learn.microsoft.com/dotnet/api/system.io.stream) +`stream` Stream The stream. -`posStreamHead` [long](https://learn.microsoft.com/dotnet/api/system.int64) +`posStreamHead` long The position stream head. -`sizePointer` [long](https://learn.microsoft.com/dotnet/api/system.int64) +`sizePointer` long The size pointer. @@ -150,19 +151,19 @@ public static void Write_V2(Stream stream, long posStreamHead, long sizePointer, #### Parameters -`stream` [Stream](https://learn.microsoft.com/dotnet/api/system.io.stream) +`stream` Stream The stream. -`posStreamHead` [long](https://learn.microsoft.com/dotnet/api/system.int64) +`posStreamHead` long The position stream head. -`sizePointer` [long](https://learn.microsoft.com/dotnet/api/system.int64) +`sizePointer` long The size pointer. -`comment` [string](https://learn.microsoft.com/dotnet/api/system.string) +`comment` string The comment. @@ -176,19 +177,19 @@ public static void Write_V3(Stream stream, long posStreamHead, long sizePointer, #### Parameters -`stream` [Stream](https://learn.microsoft.com/dotnet/api/system.io.stream) +`stream` Stream The stream. -`posStreamHead` [long](https://learn.microsoft.com/dotnet/api/system.int64) +`posStreamHead` long The position stream head. -`sizePointer` [long](https://learn.microsoft.com/dotnet/api/system.int64) +`sizePointer` long The size pointer. -`comment` [string](https://learn.microsoft.com/dotnet/api/system.string) +`comment` string The comment. @@ -202,23 +203,23 @@ protected static void Write_V3Impl(Stream stream, long posStreamHead, long sizeP #### Parameters -`stream` [Stream](https://learn.microsoft.com/dotnet/api/system.io.stream) +`stream` Stream The stream. -`posStreamHead` [long](https://learn.microsoft.com/dotnet/api/system.int64) +`posStreamHead` long The position stream head. -`sizePointer` [long](https://learn.microsoft.com/dotnet/api/system.int64) +`sizePointer` long The size pointer. -`comment` [string](https://learn.microsoft.com/dotnet/api/system.string) +`comment` string The comment. -`nVersion` [long](https://learn.microsoft.com/dotnet/api/system.int64) +`nVersion` long The footer version. @@ -232,19 +233,19 @@ public static void Write_V4(Stream stream, long posStreamHead, long sizePointer, #### Parameters -`stream` [Stream](https://learn.microsoft.com/dotnet/api/system.io.stream) +`stream` Stream The stream. -`posStreamHead` [long](https://learn.microsoft.com/dotnet/api/system.int64) +`posStreamHead` long The position stream head. -`sizePointer` [long](https://learn.microsoft.com/dotnet/api/system.int64) +`sizePointer` long The size pointer. -`comment` [string](https://learn.microsoft.com/dotnet/api/system.string) +`comment` string The comment. @@ -258,19 +259,19 @@ public static void Write_V5(Stream stream, long posStreamHead, long sizePointer, #### Parameters -`stream` [Stream](https://learn.microsoft.com/dotnet/api/system.io.stream) +`stream` Stream The stream. -`posStreamHead` [long](https://learn.microsoft.com/dotnet/api/system.int64) +`posStreamHead` long The position stream head. -`sizePointer` [long](https://learn.microsoft.com/dotnet/api/system.int64) +`sizePointer` long The size pointer. -`comment` [string](https://learn.microsoft.com/dotnet/api/system.string) +`comment` string The comment. @@ -284,19 +285,19 @@ public static void Write_V6(Stream stream, long posStreamHead, long sizePointer, #### Parameters -`stream` [Stream](https://learn.microsoft.com/dotnet/api/system.io.stream) +`stream` Stream The stream. -`posStreamHead` [long](https://learn.microsoft.com/dotnet/api/system.int64) +`posStreamHead` long The position stream head. -`sizePointer` [long](https://learn.microsoft.com/dotnet/api/system.int64) +`sizePointer` long The size pointer. -`comment` [string](https://learn.microsoft.com/dotnet/api/system.string) +`comment` string The comment. @@ -310,19 +311,19 @@ public static void Write_V7(Stream stream, long posStreamHead, long sizePointer, #### Parameters -`stream` [Stream](https://learn.microsoft.com/dotnet/api/system.io.stream) +`stream` Stream The stream. -`posStreamHead` [long](https://learn.microsoft.com/dotnet/api/system.int64) +`posStreamHead` long The position stream head. -`sizePointer` [long](https://learn.microsoft.com/dotnet/api/system.int64) +`sizePointer` long The size pointer. -`comment` [string](https://learn.microsoft.com/dotnet/api/system.string) +`comment` string The comment. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SubEntity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SubEntity.md index 28c9ed3021..c639a973b8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SubEntity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SubEntity.md @@ -1,4 +1,5 @@ -# Class SubEntity +# Class SubEntity + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,9 +12,9 @@ public abstract class SubEntity : Object, IObservableObject, ID #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [SubEntity](VM.Managed.SubEntity.md) @@ -34,7 +35,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -145,7 +146,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -184,11 +185,11 @@ protected SubEntity(string strProxyName, string strBuildInfo) #### Parameters -`strProxyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strProxyName` string Name of the proxy. -`strBuildInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBuildInfo` string The build information. @@ -202,7 +203,7 @@ protected SubEntity(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the sub entity. @@ -218,7 +219,7 @@ public string Comment { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### DisplayName @@ -230,7 +231,7 @@ public virtual string DisplayName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### FullName @@ -242,7 +243,7 @@ public string FullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IsEnabled @@ -254,7 +255,7 @@ public virtual bool IsEnabled { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -266,7 +267,7 @@ public virtual string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NonSymmetricName @@ -278,7 +279,7 @@ public string NonSymmetricName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -298,7 +299,7 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -312,21 +313,21 @@ protected virtual bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, XmlE #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [b has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -354,7 +355,7 @@ protected virtual void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -368,7 +369,7 @@ protected virtual void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.ArgumentListGeneral.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.ArgumentListGeneral.md index 9f9dab2b28..aa18bdb537 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.ArgumentListGeneral.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.ArgumentListGeneral.md @@ -1,4 +1,5 @@ -# Class ArgumentListGeneral +# Class ArgumentListGeneral + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymSB.dll @@ -9,7 +10,7 @@ public class ArgumentListGeneral : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ArgumentListGeneral](VM.Managed.Symmetric.ArgumentListGeneral.md) #### Implements @@ -42,7 +43,7 @@ public object Build(object tool, SymmetricType sym_type, Plane sym_plane, Docume #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Array.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Array.md index d0d3d98861..99feb2ecea 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Array.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Array.md @@ -1,4 +1,5 @@ -# Class Array +# Class Array + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymSP.dll @@ -9,9 +10,9 @@ public class Array : SubEntity, ISymmetricUpdater #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -SubEntity ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/SubEntity.cs) ← [Array](VM.Managed.Symmetric.Array.md) #### Implements @@ -20,11 +21,11 @@ ISymmetricUpdater #### Inherited Members -SubEntity.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[SubEntity.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/SubEntity.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -72,7 +73,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyCylinderSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyCylinderSimple.md index 9d5a576f4b..24c8bee720 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyCylinderSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyCylinderSimple.md @@ -1,4 +1,5 @@ -# Class SolidBodyCylinderSimple +# Class SolidBodyCylinderSimple + Namespace: [VM.Managed.Symmetric.CAD](VM.Managed.Symmetric.CAD.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class SolidBodyCylinderSimple : SolidBodyGeometry, ISymmetricUpdater, ISy #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SolidBodyGeometry](VM.Managed.Symmetric.CAD.SolidBodyGeometry.md) ← [SolidBodyCylinderSimple](VM.Managed.Symmetric.CAD.SolidBodyCylinderSimple.md) @@ -70,7 +71,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -104,7 +105,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyGeometry.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyGeometry.md index e59e2027e9..5a9f350866 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyGeometry.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyGeometry.md @@ -1,4 +1,5 @@ -# Class SolidBodyGeometry +# Class SolidBodyGeometry + Namespace: [VM.Managed.Symmetric.CAD](VM.Managed.Symmetric.CAD.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class SolidBodyGeometry : ISymmetricUpdater, ISymmetricMultiBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SolidBodyGeometry](VM.Managed.Symmetric.CAD.SolidBodyGeometry.md) #### Derived @@ -53,7 +54,7 @@ public virtual bool Initialize(ISymmetricManager Manager) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -87,7 +88,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -121,7 +122,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyIntersect.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyIntersect.md index caab047d1b..cfb1b2e505 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyIntersect.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyIntersect.md @@ -1,4 +1,5 @@ -# Class SolidBodyIntersect +# Class SolidBodyIntersect + Namespace: [VM.Managed.Symmetric.CAD](VM.Managed.Symmetric.CAD.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class SolidBodyIntersect : SolidBodyPair, ISymmetricMultiBuilder, ISymmet #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SolidBodyMulti](VM.Managed.Symmetric.CAD.SolidBodyMulti.md) ← [SolidBodyPair](VM.Managed.Symmetric.CAD.SolidBodyPair.md) ← [SolidBodyIntersect](VM.Managed.Symmetric.CAD.SolidBodyIntersect.md) @@ -72,7 +73,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyMulti.MultiBodyFactory.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyMulti.MultiBodyFactory.md index 8450fed91d..98c9976b4f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyMulti.MultiBodyFactory.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyMulti.MultiBodyFactory.md @@ -1,4 +1,5 @@ -# Class SolidBodyMulti.MultiBodyFactory +# Class SolidBodyMulti.MultiBodyFactory + Namespace: [VM.Managed.Symmetric.CAD](VM.Managed.Symmetric.CAD.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ protected class SolidBodyMulti.MultiBodyFactory #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SolidBodyMulti.MultiBodyFactory](VM.Managed.Symmetric.CAD.SolidBodyMulti.MultiBodyFactory.md) #### Extension Methods @@ -36,5 +37,5 @@ public Dictionary Dic { get; } #### Property Value - [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[Type](https://learn.microsoft.com/dotnet/api/system.type), ISymmetricMultiBuilder\> + Dictionary diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyMulti.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyMulti.md index 42cf6b0e38..e7ef9d50bd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyMulti.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyMulti.md @@ -1,4 +1,5 @@ -# Class SolidBodyMulti +# Class SolidBodyMulti + Namespace: [VM.Managed.Symmetric.CAD](VM.Managed.Symmetric.CAD.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class SolidBodyMulti : ISymmetricMultiBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SolidBodyMulti](VM.Managed.Symmetric.CAD.SolidBodyMulti.md) #### Derived @@ -68,7 +69,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyMultiSubtract.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyMultiSubtract.md index c312038f69..cfb1b37faa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyMultiSubtract.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyMultiSubtract.md @@ -1,4 +1,5 @@ -# Class SolidBodyMultiSubtract +# Class SolidBodyMultiSubtract + Namespace: [VM.Managed.Symmetric.CAD](VM.Managed.Symmetric.CAD.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class SolidBodyMultiSubtract : SolidBodyMulti, ISymmetricMultiBuilder, IS #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SolidBodyMulti](VM.Managed.Symmetric.CAD.SolidBodyMulti.md) ← [SolidBodyMultiSubtract](VM.Managed.Symmetric.CAD.SolidBodyMultiSubtract.md) @@ -52,7 +53,7 @@ public virtual bool Initialize(ISymmetricManager Manager) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -86,7 +87,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyMultiUnite.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyMultiUnite.md index 551f93f5b6..a6cce3a24a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyMultiUnite.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyMultiUnite.md @@ -1,4 +1,5 @@ -# Class SolidBodyMultiUnite +# Class SolidBodyMultiUnite + Namespace: [VM.Managed.Symmetric.CAD](VM.Managed.Symmetric.CAD.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class SolidBodyMultiUnite : SolidBodyMulti, ISymmetricMultiBuilder, ISymm #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SolidBodyMulti](VM.Managed.Symmetric.CAD.SolidBodyMulti.md) ← [SolidBodyMultiUnite](VM.Managed.Symmetric.CAD.SolidBodyMultiUnite.md) @@ -52,7 +53,7 @@ public virtual bool Initialize(ISymmetricManager Manager) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -86,7 +87,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyPair.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyPair.md index c4d77e36d2..372835c69e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyPair.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyPair.md @@ -1,4 +1,5 @@ -# Class SolidBodyPair +# Class SolidBodyPair + Namespace: [VM.Managed.Symmetric.CAD](VM.Managed.Symmetric.CAD.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class SolidBodyPair : SolidBodyMulti, ISymmetricMultiBuilder, ISymmetricU #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SolidBodyMulti](VM.Managed.Symmetric.CAD.SolidBodyMulti.md) ← [SolidBodyPair](VM.Managed.Symmetric.CAD.SolidBodyPair.md) @@ -59,7 +60,7 @@ The Symmetric Manager. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -95,7 +96,7 @@ update document. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -129,7 +130,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodySphereSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodySphereSimple.md index 8fe94cc968..877c2a0bd1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodySphereSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodySphereSimple.md @@ -1,4 +1,5 @@ -# Class SolidBodySphereSimple +# Class SolidBodySphereSimple + Namespace: [VM.Managed.Symmetric.CAD](VM.Managed.Symmetric.CAD.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class SolidBodySphereSimple : SolidBodyGeometry, ISymmetricUpdater, ISymm #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SolidBodyGeometry](VM.Managed.Symmetric.CAD.SolidBodyGeometry.md) ← [SolidBodySphereSimple](VM.Managed.Symmetric.CAD.SolidBodySphereSimple.md) @@ -70,7 +71,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -104,7 +105,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodySubtract.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodySubtract.md index aeca9766d2..c5669d598f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodySubtract.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodySubtract.md @@ -1,4 +1,5 @@ -# Class SolidBodySubtract +# Class SolidBodySubtract + Namespace: [VM.Managed.Symmetric.CAD](VM.Managed.Symmetric.CAD.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class SolidBodySubtract : SolidBodyPair, ISymmetricMultiBuilder, ISymmetr #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SolidBodyMulti](VM.Managed.Symmetric.CAD.SolidBodyMulti.md) ← [SolidBodyPair](VM.Managed.Symmetric.CAD.SolidBodyPair.md) ← [SolidBodySubtract](VM.Managed.Symmetric.CAD.SolidBodySubtract.md) @@ -72,7 +73,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyTriPlateSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyTriPlateSimple.md index 8ae3fad612..30fb83bdac 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyTriPlateSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.SolidBodyTriPlateSimple.md @@ -1,4 +1,5 @@ -# Class SolidBodyTriPlateSimple +# Class SolidBodyTriPlateSimple + Namespace: [VM.Managed.Symmetric.CAD](VM.Managed.Symmetric.CAD.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class SolidBodyTriPlateSimple : SolidBodyGeometry, ISymmetricUpdater, ISy #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SolidBodyGeometry](VM.Managed.Symmetric.CAD.SolidBodyGeometry.md) ← [SolidBodyTriPlateSimple](VM.Managed.Symmetric.CAD.SolidBodyTriPlateSimple.md) @@ -70,7 +71,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -104,7 +105,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.Tire.SolidBodyTireSimple.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.Tire.SolidBodyTireSimple.md index 2ad603dcd3..a5e28facf4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.Tire.SolidBodyTireSimple.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.Tire.SolidBodyTireSimple.md @@ -1,4 +1,5 @@ -# Class SolidBodyTireSimple +# Class SolidBodyTireSimple + Namespace: [VM.Managed.Symmetric.CAD.Tire](VM.Managed.Symmetric.CAD.Tire.md) Assembly: VMSymTire.dll @@ -9,8 +10,8 @@ public class SolidBodyTireSimple : SolidBodyGeometry, ISymmetricUpdater, ISymmet #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -SolidBodyGeometry ← +object ← +[SolidBodyGeometry](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/SolidBodyGeometry.cs) ← [SolidBodyTireSimple](VM.Managed.Symmetric.CAD.Tire.SolidBodyTireSimple.md) #### Implements @@ -21,9 +22,9 @@ ISymmetricUpdaterAfterAddDoc #### Inherited Members -SolidBodyGeometry.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -SolidBodyGeometry.Initialize\(ISymmetricManager\), -SolidBodyGeometry.UpdateBuild\(Builder, Builder, SymmetricType, Plane, Document\) +[SolidBodyGeometry.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/SolidBodyGeometry.cs), +[SolidBodyGeometry.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/SolidBodyGeometry.cs), +[SolidBodyGeometry.UpdateBuild\(Builder, Builder, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/SolidBodyGeometry.cs) #### Extension Methods @@ -55,7 +56,7 @@ public override bool Initialize(ISymmetricManager Manager) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -89,7 +90,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -123,7 +124,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.Tire.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.Tire.md index a94e31498d..82a8a8951d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.Tire.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.Tire.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.Symmetric.CAD.Tire +# Namespace VM.Managed.Symmetric.CAD.Tire + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.md index 4c605d6f45..dd4817041a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CAD.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.Symmetric.CAD +# Namespace VM.Managed.Symmetric.CAD + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Car.Force.Bumpstop.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Car.Force.Bumpstop.md index 5f29b2c4b2..662172fcaf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Car.Force.Bumpstop.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Car.Force.Bumpstop.md @@ -1,4 +1,5 @@ -# Class Bumpstop +# Class Bumpstop + Namespace: [VM.Managed.Symmetric.Car.Force](VM.Managed.Symmetric.Car.Force.md) Assembly: VMSymCar.dll @@ -9,8 +10,8 @@ public class Bumpstop : ForceCar, ISymmetricUpdater #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← [ForceCar](VM.Managed.Symmetric.Car.Force.ForceCar\-2.md) ← [Bumpstop](VM.Managed.Symmetric.Car.Force.Bumpstop.md) @@ -21,10 +22,10 @@ ISymmetricUpdater #### Inherited Members [ForceCar.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](VM.Managed.Symmetric.Car.Force.ForceCar\-2.md\#VM\_Managed\_Symmetric\_Car\_Force\_ForceCar\_2\_Update\_VM\_Managed\_ObjectBase\_VM\_Managed\_ObjectBase\_VM\_Managed\_SymmetricType\_VM\_Plane\_VM\_Managed\_Document\_), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -72,7 +73,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Car.Force.Damper.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Car.Force.Damper.md index 3c938460f4..e820d1902d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Car.Force.Damper.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Car.Force.Damper.md @@ -1,4 +1,5 @@ -# Class Damper +# Class Damper + Namespace: [VM.Managed.Symmetric.Car.Force](VM.Managed.Symmetric.Car.Force.md) Assembly: VMSymCar.dll @@ -9,8 +10,8 @@ public class Damper : ForceCar, ISymmetricUpdater #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← [ForceCar](VM.Managed.Symmetric.Car.Force.ForceCar\-2.md) ← [Damper](VM.Managed.Symmetric.Car.Force.Damper.md) @@ -21,10 +22,10 @@ ISymmetricUpdater #### Inherited Members [ForceCar.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](VM.Managed.Symmetric.Car.Force.ForceCar\-2.md\#VM\_Managed\_Symmetric\_Car\_Force\_ForceCar\_2\_Update\_VM\_Managed\_ObjectBase\_VM\_Managed\_ObjectBase\_VM\_Managed\_SymmetricType\_VM\_Plane\_VM\_Managed\_Document\_), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -72,7 +73,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Car.Force.ForceCar-2.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Car.Force.ForceCar-2.md index d0908e1d6f..2309b16877 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Car.Force.ForceCar-2.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Car.Force.ForceCar-2.md @@ -1,4 +1,5 @@ -# Class ForceCar +# Class ForceCar + Namespace: [VM.Managed.Symmetric.Car.Force](VM.Managed.Symmetric.Car.Force.md) Assembly: VMSymCar.dll @@ -15,8 +16,8 @@ public class ForceCar : Named, ISymmetricUpdater where T : ForceCar #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← [ForceCar](VM.Managed.Symmetric.Car.Force.ForceCar\-2.md) #### Implements @@ -25,10 +26,10 @@ ISymmetricUpdater #### Inherited Members -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -76,7 +77,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Car.Force.Reboundstop.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Car.Force.Reboundstop.md index 5e638abe78..016aba3de4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Car.Force.Reboundstop.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Car.Force.Reboundstop.md @@ -1,4 +1,5 @@ -# Class Reboundstop +# Class Reboundstop + Namespace: [VM.Managed.Symmetric.Car.Force](VM.Managed.Symmetric.Car.Force.md) Assembly: VMSymCar.dll @@ -9,8 +10,8 @@ public class Reboundstop : ForceCar, ISymmetri #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← [ForceCar](VM.Managed.Symmetric.Car.Force.ForceCar\-2.md) ← [Reboundstop](VM.Managed.Symmetric.Car.Force.Reboundstop.md) @@ -21,10 +22,10 @@ ISymmetricUpdater #### Inherited Members [ForceCar.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](VM.Managed.Symmetric.Car.Force.ForceCar\-2.md\#VM\_Managed\_Symmetric\_Car\_Force\_ForceCar\_2\_Update\_VM\_Managed\_ObjectBase\_VM\_Managed\_ObjectBase\_VM\_Managed\_SymmetricType\_VM\_Plane\_VM\_Managed\_Document\_), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -72,7 +73,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Car.Force.Spring.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Car.Force.Spring.md index fc15cbc25c..bfa2e2a559 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Car.Force.Spring.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Car.Force.Spring.md @@ -1,4 +1,5 @@ -# Class Spring +# Class Spring + Namespace: [VM.Managed.Symmetric.Car.Force](VM.Managed.Symmetric.Car.Force.md) Assembly: VMSymCar.dll @@ -9,8 +10,8 @@ public class Spring : ForceCar, ISymmetricUpdater #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← [ForceCar](VM.Managed.Symmetric.Car.Force.ForceCar\-2.md) ← [Spring](VM.Managed.Symmetric.Car.Force.Spring.md) @@ -21,10 +22,10 @@ ISymmetricUpdater #### Inherited Members [ForceCar.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](VM.Managed.Symmetric.Car.Force.ForceCar\-2.md\#VM\_Managed\_Symmetric\_Car\_Force\_ForceCar\_2\_Update\_VM\_Managed\_ObjectBase\_VM\_Managed\_ObjectBase\_VM\_Managed\_SymmetricType\_VM\_Plane\_VM\_Managed\_Document\_), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -72,7 +73,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Car.Force.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Car.Force.md index 362974a1a8..fbe5314b5c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Car.Force.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Car.Force.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.Symmetric.Car.Force +# Namespace VM.Managed.Symmetric.Car.Force + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Car.OrientationToeCamber.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Car.OrientationToeCamber.md index eec9ef7a8d..738ff04a9a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Car.OrientationToeCamber.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Car.OrientationToeCamber.md @@ -1,4 +1,5 @@ -# Class OrientationToeCamber +# Class OrientationToeCamber + Namespace: [VM.Managed.Symmetric.Car](VM.Managed.Symmetric.Car.md) Assembly: VMSymCar.dll @@ -9,7 +10,7 @@ public class OrientationToeCamber : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OrientationToeCamber](VM.Managed.Symmetric.Car.OrientationToeCamber.md) #### Implements @@ -42,7 +43,7 @@ public virtual object Build(object tool, SymmetricType sym_type, Plane sym_plane #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -60,7 +61,7 @@ update document. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Car.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Car.md index 287a3137f0..5c89347204 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Car.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Car.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.Symmetric.Car +# Namespace VM.Managed.Symmetric.Car + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CenterMarker.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CenterMarker.md index 3e489f9fbf..92e8df6837 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CenterMarker.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.CenterMarker.md @@ -1,4 +1,5 @@ -# Class CenterMarker +# Class CenterMarker + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class CenterMarker : Marker, ISymmetricUpdater #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Named](VM.Managed.Symmetric.Named\-1.md) ← [Marker](VM.Managed.Symmetric.Marker.md) ← [CenterMarker](VM.Managed.Symmetric.CenterMarker.md) @@ -75,7 +76,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Connector-2.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Connector-2.md index 33b794297e..caac10e77c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Connector-2.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Connector-2.md @@ -1,4 +1,5 @@ -# Class Connector +# Class Connector + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -15,7 +16,7 @@ public class Connector : Named, ISymmetricUpdater where T : Connect #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Named](VM.Managed.Symmetric.Named\-1.md) ← [Connector](VM.Managed.Symmetric.Connector\-2.md) @@ -76,7 +77,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Ball.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Ball.md index 55c1ed22c3..e91569ef02 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Ball.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Ball.md @@ -1,4 +1,5 @@ -# Class Ball +# Class Ball + Namespace: [VM.Managed.Symmetric.Constraints](VM.Managed.Symmetric.Constraints.md) Assembly: VMSymCB.dll @@ -9,9 +10,9 @@ public class Ball : Constraint, ISymmetricUpdater #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -Connector ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs) ← [Constraint](VM.Managed.Symmetric.Constraints.Constraint\-2.md) ← [Ball](VM.Managed.Symmetric.Constraints.Ball.md) @@ -22,11 +23,11 @@ ISymmetricUpdater #### Inherited Members [Constraint.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](VM.Managed.Symmetric.Constraints.Constraint\-2.md\#VM\_Managed\_Symmetric\_Constraints\_Constraint\_2\_Update\_VM\_Managed\_ObjectBase\_VM\_Managed\_ObjectBase\_VM\_Managed\_SymmetricType\_VM\_Plane\_VM\_Managed\_Document\_), -Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -74,7 +75,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Constraint-2.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Constraint-2.md index 1369af9be9..1d2ef14f67 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Constraint-2.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Constraint-2.md @@ -1,4 +1,5 @@ -# Class Constraint +# Class Constraint + Namespace: [VM.Managed.Symmetric.Constraints](VM.Managed.Symmetric.Constraints.md) Assembly: VMSymCB.dll @@ -15,9 +16,9 @@ public class Constraint : Connector, ISymmetricUpdater where #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -Connector ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs) ← [Constraint](VM.Managed.Symmetric.Constraints.Constraint\-2.md) #### Implements @@ -26,11 +27,11 @@ ISymmetricUpdater #### Inherited Members -Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -78,7 +79,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Convel.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Convel.md index c31f84b5eb..aba21431ca 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Convel.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Convel.md @@ -1,4 +1,5 @@ -# Class Convel +# Class Convel + Namespace: [VM.Managed.Symmetric.Constraints](VM.Managed.Symmetric.Constraints.md) Assembly: VMSymCP.dll @@ -9,10 +10,10 @@ public class Convel : Constraint, ISymmetricUpdater #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -Connector ← -Constraint ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs) ← +[Constraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymCB/Constraint.cs) ← [Convel](VM.Managed.Symmetric.Constraints.Convel.md) #### Implements @@ -21,12 +22,12 @@ ISymmetricUpdater #### Inherited Members -Constraint.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Constraint.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymCB/Constraint.cs), +[Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -74,7 +75,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Coupler.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Coupler.md index 2d9cc0a70f..5cf5e25209 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Coupler.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Coupler.md @@ -1,4 +1,5 @@ -# Class Coupler +# Class Coupler + Namespace: [VM.Managed.Symmetric.Constraints](VM.Managed.Symmetric.Constraints.md) Assembly: VMSymCP.dll @@ -9,8 +10,8 @@ public class Coupler : CouplerBase, ISymmetricUpdater #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← [CouplerBase](VM.Managed.Symmetric.Constraints.CouplerBase\-2.md) ← [Coupler](VM.Managed.Symmetric.Constraints.Coupler.md) @@ -21,10 +22,10 @@ ISymmetricUpdater #### Inherited Members [CouplerBase.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](VM.Managed.Symmetric.Constraints.CouplerBase\-2.md\#VM\_Managed\_Symmetric\_Constraints\_CouplerBase\_2\_Update\_VM\_Managed\_ObjectBase\_VM\_Managed\_ObjectBase\_VM\_Managed\_SymmetricType\_VM\_Plane\_VM\_Managed\_Document\_), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -72,7 +73,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.CouplerBase-2.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.CouplerBase-2.md index 58f9912b05..5a76a62649 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.CouplerBase-2.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.CouplerBase-2.md @@ -1,4 +1,5 @@ -# Class CouplerBase +# Class CouplerBase + Namespace: [VM.Managed.Symmetric.Constraints](VM.Managed.Symmetric.Constraints.md) Assembly: VMSymCP.dll @@ -15,8 +16,8 @@ public class CouplerBase : Named, ISymmetricUpdater where T : Coupl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← [CouplerBase](VM.Managed.Symmetric.Constraints.CouplerBase\-2.md) #### Implements @@ -25,10 +26,10 @@ ISymmetricUpdater #### Inherited Members -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -76,7 +77,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.CouplerCable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.CouplerCable.md index 97f3863013..58b1680db6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.CouplerCable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.CouplerCable.md @@ -1,4 +1,5 @@ -# Class CouplerCable +# Class CouplerCable + Namespace: [VM.Managed.Symmetric.Constraints](VM.Managed.Symmetric.Constraints.md) Assembly: VMSymCP.dll @@ -9,8 +10,8 @@ public class CouplerCable : CouplerBase, ISy #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← [CouplerBase](VM.Managed.Symmetric.Constraints.CouplerBase\-2.md) ← [CouplerCable](VM.Managed.Symmetric.Constraints.CouplerCable.md) @@ -21,10 +22,10 @@ ISymmetricUpdater #### Inherited Members [CouplerBase.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](VM.Managed.Symmetric.Constraints.CouplerBase\-2.md\#VM\_Managed\_Symmetric\_Constraints\_CouplerBase\_2\_Update\_VM\_Managed\_ObjectBase\_VM\_Managed\_ObjectBase\_VM\_Managed\_SymmetricType\_VM\_Plane\_VM\_Managed\_Document\_), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -72,7 +73,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.CouplerGear.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.CouplerGear.md index 6dcc12bb55..215cf18939 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.CouplerGear.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.CouplerGear.md @@ -1,4 +1,5 @@ -# Class CouplerGear +# Class CouplerGear + Namespace: [VM.Managed.Symmetric.Constraints](VM.Managed.Symmetric.Constraints.md) Assembly: VMSymCP.dll @@ -9,8 +10,8 @@ public class CouplerGear : CouplerBase, ISymme #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← [CouplerBase](VM.Managed.Symmetric.Constraints.CouplerBase\-2.md) ← [CouplerGear](VM.Managed.Symmetric.Constraints.CouplerGear.md) @@ -21,10 +22,10 @@ ISymmetricUpdater #### Inherited Members [CouplerBase.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](VM.Managed.Symmetric.Constraints.CouplerBase\-2.md\#VM\_Managed\_Symmetric\_Constraints\_CouplerBase\_2\_Update\_VM\_Managed\_ObjectBase\_VM\_Managed\_ObjectBase\_VM\_Managed\_SymmetricType\_VM\_Plane\_VM\_Managed\_Document\_), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -72,7 +73,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.CouplerRackPinion.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.CouplerRackPinion.md index 43f986644a..9bb2ffb1c9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.CouplerRackPinion.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.CouplerRackPinion.md @@ -1,4 +1,5 @@ -# Class CouplerRackPinion +# Class CouplerRackPinion + Namespace: [VM.Managed.Symmetric.Constraints](VM.Managed.Symmetric.Constraints.md) Assembly: VMSymCP.dll @@ -9,8 +10,8 @@ public class CouplerRackPinion : CouplerBase ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← [CouplerBase](VM.Managed.Symmetric.Constraints.CouplerBase\-2.md) ← [CouplerRackPinion](VM.Managed.Symmetric.Constraints.CouplerRackPinion.md) @@ -21,10 +22,10 @@ ISymmetricUpdater #### Inherited Members [CouplerBase.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](VM.Managed.Symmetric.Constraints.CouplerBase\-2.md\#VM\_Managed\_Symmetric\_Constraints\_CouplerBase\_2\_Update\_VM\_Managed\_ObjectBase\_VM\_Managed\_ObjectBase\_VM\_Managed\_SymmetricType\_VM\_Plane\_VM\_Managed\_Document\_), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -72,7 +73,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Cylindrical.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Cylindrical.md index f061005bc6..555ac3f3b2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Cylindrical.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Cylindrical.md @@ -1,4 +1,5 @@ -# Class Cylindrical +# Class Cylindrical + Namespace: [VM.Managed.Symmetric.Constraints](VM.Managed.Symmetric.Constraints.md) Assembly: VMSymCB.dll @@ -9,9 +10,9 @@ public class Cylindrical : Constraint, ISymmet #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -Connector ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs) ← [Constraint](VM.Managed.Symmetric.Constraints.Constraint\-2.md) ← [Cylindrical](VM.Managed.Symmetric.Constraints.Cylindrical.md) @@ -22,11 +23,11 @@ ISymmetricUpdater #### Inherited Members [Constraint.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](VM.Managed.Symmetric.Constraints.Constraint\-2.md\#VM\_Managed\_Symmetric\_Constraints\_Constraint\_2\_Update\_VM\_Managed\_ObjectBase\_VM\_Managed\_ObjectBase\_VM\_Managed\_SymmetricType\_VM\_Plane\_VM\_Managed\_Document\_), -Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -74,7 +75,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -86,9 +87,9 @@ public static void UpdateProperty(PropertyCylindrical toolProperty, PropertyCyli #### Parameters -`toolProperty` PropertyCylindrical +`toolProperty` [PropertyCylindrical](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Cylindrical.cs) -`targetProperty` PropertyCylindrical +`targetProperty` [PropertyCylindrical](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Cylindrical.cs) `sym_type` SymmetricType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Distance.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Distance.md index 2d13d27f6c..aa9f0e1b3b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Distance.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Distance.md @@ -1,4 +1,5 @@ -# Class Distance +# Class Distance + Namespace: [VM.Managed.Symmetric.Constraints](VM.Managed.Symmetric.Constraints.md) Assembly: VMSymCP.dll @@ -9,10 +10,10 @@ public class Distance : Constraint, ISymmetricUpdate #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -Connector ← -Constraint ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs) ← +[Constraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymCB/Constraint.cs) ← [Distance](VM.Managed.Symmetric.Constraints.Distance.md) #### Implements @@ -21,12 +22,12 @@ ISymmetricUpdater #### Inherited Members -Constraint.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Constraint.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymCB/Constraint.cs), +[Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -74,7 +75,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -86,9 +87,9 @@ public static bool UpdateProperty(PropertyDistance toolProperty, PropertyDistanc #### Parameters -`toolProperty` PropertyDistance +`toolProperty` [PropertyDistance](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCP/Distance.cs) -`targetProperty` PropertyDistance +`targetProperty` [PropertyDistance](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCP/Distance.cs) `sym_type` SymmetricType @@ -98,5 +99,5 @@ public static bool UpdateProperty(PropertyDistance toolProperty, PropertyDistanc #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Driver.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Driver.md index 9378012ab3..1e75ef03c9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Driver.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Driver.md @@ -1,4 +1,5 @@ -# Class Driver +# Class Driver + Namespace: [VM.Managed.Symmetric.Constraints](VM.Managed.Symmetric.Constraints.md) Assembly: VMSymCB.dll @@ -9,7 +10,7 @@ public class Driver : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Driver](VM.Managed.Symmetric.Constraints.Driver.md) #### Derived @@ -48,7 +49,7 @@ public virtual object Build(object tool, SymmetricType sym_type, Plane sym_plane #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -66,7 +67,7 @@ update document. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. @@ -78,9 +79,9 @@ public object MakeObject(object tool) #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.DriverFunction.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.DriverFunction.md index 2f68f25074..5475b13459 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.DriverFunction.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.DriverFunction.md @@ -1,4 +1,5 @@ -# Class DriverFunction +# Class DriverFunction + Namespace: [VM.Managed.Symmetric.Constraints](VM.Managed.Symmetric.Constraints.md) Assembly: VMSymCB.dll @@ -9,7 +10,7 @@ public class DriverFunction : Driver, ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Driver](VM.Managed.Symmetric.Constraints.Driver.md) ← [DriverFunction](VM.Managed.Symmetric.Constraints.DriverFunction.md) @@ -48,7 +49,7 @@ public override object Build(object tool, SymmetricType sym_type, Plane sym_plan #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -64,7 +65,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.DriverInitialCondition.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.DriverInitialCondition.md index 493a12ad5d..2b40e2ace0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.DriverInitialCondition.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.DriverInitialCondition.md @@ -1,4 +1,5 @@ -# Class DriverInitialCondition +# Class DriverInitialCondition + Namespace: [VM.Managed.Symmetric.Constraints](VM.Managed.Symmetric.Constraints.md) Assembly: VMSymCB.dll @@ -9,7 +10,7 @@ public class DriverInitialCondition : Driver, ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Driver](VM.Managed.Symmetric.Constraints.Driver.md) ← [DriverInitialCondition](VM.Managed.Symmetric.Constraints.DriverInitialCondition.md) @@ -48,7 +49,7 @@ public override object Build(object tool, SymmetricType sym_type, Plane sym_plan #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -64,7 +65,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.DriverUserSubroutine.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.DriverUserSubroutine.md index 7c68f0f0a6..94f33d694b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.DriverUserSubroutine.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.DriverUserSubroutine.md @@ -1,4 +1,5 @@ -# Class DriverUserSubroutine +# Class DriverUserSubroutine + Namespace: [VM.Managed.Symmetric.Constraints](VM.Managed.Symmetric.Constraints.md) Assembly: VMSymCB.dll @@ -9,7 +10,7 @@ public class DriverUserSubroutine : Driver, ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Driver](VM.Managed.Symmetric.Constraints.Driver.md) ← [DriverUserSubroutine](VM.Managed.Symmetric.Constraints.DriverUserSubroutine.md) @@ -48,7 +49,7 @@ public override object Build(object tool, SymmetricType sym_type, Plane sym_plan #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -64,7 +65,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Fixed.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Fixed.md index 33b66787f4..eafec8688e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Fixed.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Fixed.md @@ -1,4 +1,5 @@ -# Class Fixed +# Class Fixed + Namespace: [VM.Managed.Symmetric.Constraints](VM.Managed.Symmetric.Constraints.md) Assembly: VMSymCB.dll @@ -9,9 +10,9 @@ public class Fixed : Constraint, ISymmetricUpdater #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -Connector ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs) ← [Constraint](VM.Managed.Symmetric.Constraints.Constraint\-2.md) ← [Fixed](VM.Managed.Symmetric.Constraints.Fixed.md) @@ -22,11 +23,11 @@ ISymmetricUpdater #### Inherited Members [Constraint.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](VM.Managed.Symmetric.Constraints.Constraint\-2.md\#VM\_Managed\_Symmetric\_Constraints\_Constraint\_2\_Update\_VM\_Managed\_ObjectBase\_VM\_Managed\_ObjectBase\_VM\_Managed\_SymmetricType\_VM\_Plane\_VM\_Managed\_Document\_), -Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -74,7 +75,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.FrictionCylindrical.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.FrictionCylindrical.md index b2d6a015da..e0eabdef16 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.FrictionCylindrical.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.FrictionCylindrical.md @@ -1,4 +1,5 @@ -# Class FrictionCylindrical +# Class FrictionCylindrical + Namespace: [VM.Managed.Symmetric.Constraints](VM.Managed.Symmetric.Constraints.md) Assembly: VMSymCB.dll @@ -9,7 +10,7 @@ public class FrictionCylindrical : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [FrictionCylindrical](VM.Managed.Symmetric.Constraints.FrictionCylindrical.md) #### Implements @@ -42,7 +43,7 @@ public object Build(object tool, SymmetricType sym_type, Plane sym_plane, Docume #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.FrictionRevolute.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.FrictionRevolute.md index 820dd73ad8..2fd4ca3023 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.FrictionRevolute.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.FrictionRevolute.md @@ -1,4 +1,5 @@ -# Class FrictionRevolute +# Class FrictionRevolute + Namespace: [VM.Managed.Symmetric.Constraints](VM.Managed.Symmetric.Constraints.md) Assembly: VMSymCB.dll @@ -9,7 +10,7 @@ public class FrictionRevolute : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [FrictionRevolute](VM.Managed.Symmetric.Constraints.FrictionRevolute.md) #### Implements @@ -42,7 +43,7 @@ public object Build(object tool, SymmetricType sym_type, Plane sym_plane, Docume #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.FrictionTranslational.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.FrictionTranslational.md index 00a2c2c5f1..75c2698953 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.FrictionTranslational.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.FrictionTranslational.md @@ -1,4 +1,5 @@ -# Class FrictionTranslational +# Class FrictionTranslational + Namespace: [VM.Managed.Symmetric.Constraints](VM.Managed.Symmetric.Constraints.md) Assembly: VMSymCB.dll @@ -9,7 +10,7 @@ public class FrictionTranslational : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [FrictionTranslational](VM.Managed.Symmetric.Constraints.FrictionTranslational.md) #### Implements @@ -42,7 +43,7 @@ public object Build(object tool, SymmetricType sym_type, Plane sym_plane, Docume #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.FrictionUniversal.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.FrictionUniversal.md index c9157d1752..13796bd883 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.FrictionUniversal.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.FrictionUniversal.md @@ -1,4 +1,5 @@ -# Class FrictionUniversal +# Class FrictionUniversal + Namespace: [VM.Managed.Symmetric.Constraints](VM.Managed.Symmetric.Constraints.md) Assembly: VMSymCP.dll @@ -9,7 +10,7 @@ public class FrictionUniversal : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [FrictionUniversal](VM.Managed.Symmetric.Constraints.FrictionUniversal.md) #### Implements @@ -42,7 +43,7 @@ public object Build(object tool, SymmetricType sym_type, Plane sym_plane, Docume #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.InitialCondition.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.InitialCondition.md index 7ecc357909..7e08dcdbc7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.InitialCondition.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.InitialCondition.md @@ -1,4 +1,5 @@ -# Class InitialCondition +# Class InitialCondition + Namespace: [VM.Managed.Symmetric.Constraints](VM.Managed.Symmetric.Constraints.md) Assembly: VMSymCB.dll @@ -9,7 +10,7 @@ public class InitialCondition : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [InitialCondition](VM.Managed.Symmetric.Constraints.InitialCondition.md) #### Implements @@ -42,7 +43,7 @@ public object Build(object tool, SymmetricType sym_type, Plane sym_plane, Docume #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Inline.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Inline.md index 941c0111b2..a13a4a6b59 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Inline.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Inline.md @@ -1,4 +1,5 @@ -# Class Inline +# Class Inline + Namespace: [VM.Managed.Symmetric.Constraints](VM.Managed.Symmetric.Constraints.md) Assembly: VMSymCP.dll @@ -9,10 +10,10 @@ public class Inline : Constraint, ISymmetricUpdater #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -Connector ← -Constraint ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs) ← +[Constraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymCB/Constraint.cs) ← [Inline](VM.Managed.Symmetric.Constraints.Inline.md) #### Implements @@ -21,12 +22,12 @@ ISymmetricUpdater #### Inherited Members -Constraint.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Constraint.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymCB/Constraint.cs), +[Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -74,7 +75,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Inplane.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Inplane.md index 57b6ce37f5..d7c41d4822 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Inplane.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Inplane.md @@ -1,4 +1,5 @@ -# Class Inplane +# Class Inplane + Namespace: [VM.Managed.Symmetric.Constraints](VM.Managed.Symmetric.Constraints.md) Assembly: VMSymCP.dll @@ -9,10 +10,10 @@ public class Inplane : Constraint, ISymmetricUpdater #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -Connector ← -Constraint ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs) ← +[Constraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymCB/Constraint.cs) ← [Inplane](VM.Managed.Symmetric.Constraints.Inplane.md) #### Implements @@ -21,12 +22,12 @@ ISymmetricUpdater #### Inherited Members -Constraint.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Constraint.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymCB/Constraint.cs), +[Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -74,7 +75,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Orientation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Orientation.md index 35c61effec..4b30026445 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Orientation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Orientation.md @@ -1,4 +1,5 @@ -# Class Orientation +# Class Orientation + Namespace: [VM.Managed.Symmetric.Constraints](VM.Managed.Symmetric.Constraints.md) Assembly: VMSymCP.dll @@ -9,10 +10,10 @@ public class Orientation : Constraint, ISymmet #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -Connector ← -Constraint ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs) ← +[Constraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymCB/Constraint.cs) ← [Orientation](VM.Managed.Symmetric.Constraints.Orientation.md) #### Implements @@ -21,12 +22,12 @@ ISymmetricUpdater #### Inherited Members -Constraint.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Constraint.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymCB/Constraint.cs), +[Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -74,7 +75,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Parallel.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Parallel.md index f25a6fe350..e7a705db93 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Parallel.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Parallel.md @@ -1,4 +1,5 @@ -# Class Parallel +# Class Parallel + Namespace: [VM.Managed.Symmetric.Constraints](VM.Managed.Symmetric.Constraints.md) Assembly: VMSymCP.dll @@ -9,10 +10,10 @@ public class Parallel : Constraint, ISymmetricUpdate #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -Connector ← -Constraint ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs) ← +[Constraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymCB/Constraint.cs) ← [Parallel](VM.Managed.Symmetric.Constraints.Parallel.md) #### Implements @@ -21,12 +22,12 @@ ISymmetricUpdater #### Inherited Members -Constraint.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Constraint.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymCB/Constraint.cs), +[Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -74,7 +75,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Perpendicular.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Perpendicular.md index 09bce651c7..2676405f7b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Perpendicular.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Perpendicular.md @@ -1,4 +1,5 @@ -# Class Perpendicular +# Class Perpendicular + Namespace: [VM.Managed.Symmetric.Constraints](VM.Managed.Symmetric.Constraints.md) Assembly: VMSymCP.dll @@ -9,10 +10,10 @@ public class Perpendicular : Constraint, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -Connector ← -Constraint ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs) ← +[Constraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymCB/Constraint.cs) ← [Perpendicular](VM.Managed.Symmetric.Constraints.Perpendicular.md) #### Implements @@ -21,12 +22,12 @@ ISymmetricUpdater #### Inherited Members -Constraint.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Constraint.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymCB/Constraint.cs), +[Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -74,7 +75,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Planar.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Planar.md index 0df7fa2f7d..78d1b4caa7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Planar.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Planar.md @@ -1,4 +1,5 @@ -# Class Planar +# Class Planar + Namespace: [VM.Managed.Symmetric.Constraints](VM.Managed.Symmetric.Constraints.md) Assembly: VMSymCB.dll @@ -9,9 +10,9 @@ public class Planar : Constraint, ISymmetricUpdater #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -Connector ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs) ← [Constraint](VM.Managed.Symmetric.Constraints.Constraint\-2.md) ← [Planar](VM.Managed.Symmetric.Constraints.Planar.md) @@ -22,11 +23,11 @@ ISymmetricUpdater #### Inherited Members [Constraint.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](VM.Managed.Symmetric.Constraints.Constraint\-2.md\#VM\_Managed\_Symmetric\_Constraints\_Constraint\_2\_Update\_VM\_Managed\_ObjectBase\_VM\_Managed\_ObjectBase\_VM\_Managed\_SymmetricType\_VM\_Plane\_VM\_Managed\_Document\_), -Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -74,7 +75,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Revolute.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Revolute.md index 6bc7dd656d..f8819579cb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Revolute.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Revolute.md @@ -1,4 +1,5 @@ -# Class Revolute +# Class Revolute + Namespace: [VM.Managed.Symmetric.Constraints](VM.Managed.Symmetric.Constraints.md) Assembly: VMSymCB.dll @@ -9,9 +10,9 @@ public class Revolute : Constraint, ISymmetricUpdate #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -Connector ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs) ← [Constraint](VM.Managed.Symmetric.Constraints.Constraint\-2.md) ← [Revolute](VM.Managed.Symmetric.Constraints.Revolute.md) @@ -22,11 +23,11 @@ ISymmetricUpdater #### Inherited Members [Constraint.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](VM.Managed.Symmetric.Constraints.Constraint\-2.md\#VM\_Managed\_Symmetric\_Constraints\_Constraint\_2\_Update\_VM\_Managed\_ObjectBase\_VM\_Managed\_ObjectBase\_VM\_Managed\_SymmetricType\_VM\_Plane\_VM\_Managed\_Document\_), -Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -74,7 +75,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -86,9 +87,9 @@ public static void UpdateProperty(PropertyRevolute toolProperty, PropertyRevolut #### Parameters -`toolProperty` PropertyRevolute +`toolProperty` [PropertyRevolute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Revolute.cs) -`targetProperty` PropertyRevolute +`targetProperty` [PropertyRevolute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Revolute.cs) `sym_type` SymmetricType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Screw.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Screw.md index de9c67ae46..b705496ae5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Screw.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Screw.md @@ -1,4 +1,5 @@ -# Class Screw +# Class Screw + Namespace: [VM.Managed.Symmetric.Constraints](VM.Managed.Symmetric.Constraints.md) Assembly: VMSymCP.dll @@ -9,10 +10,10 @@ public class Screw : Constraint, ISymmetricUpdater #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -Connector ← -Constraint ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs) ← +[Constraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymCB/Constraint.cs) ← [Screw](VM.Managed.Symmetric.Constraints.Screw.md) #### Implements @@ -21,12 +22,12 @@ ISymmetricUpdater #### Inherited Members -Constraint.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Constraint.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymCB/Constraint.cs), +[Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -74,7 +75,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -86,9 +87,9 @@ public static bool UpdateProperty(PropertyScrew toolProperty, PropertyScrew targ #### Parameters -`toolProperty` PropertyScrew +`toolProperty` [PropertyScrew](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCP/Screw.cs) -`targetProperty` PropertyScrew +`targetProperty` [PropertyScrew](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCP/Screw.cs) `sym_type` SymmetricType @@ -98,5 +99,5 @@ public static bool UpdateProperty(PropertyScrew toolProperty, PropertyScrew targ #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Translational.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Translational.md index e128d0c5c1..3f679f6a90 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Translational.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Translational.md @@ -1,4 +1,5 @@ -# Class Translational +# Class Translational + Namespace: [VM.Managed.Symmetric.Constraints](VM.Managed.Symmetric.Constraints.md) Assembly: VMSymCB.dll @@ -9,9 +10,9 @@ public class Translational : Constraint, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -Connector ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs) ← [Constraint](VM.Managed.Symmetric.Constraints.Constraint\-2.md) ← [Translational](VM.Managed.Symmetric.Constraints.Translational.md) @@ -22,11 +23,11 @@ ISymmetricUpdater #### Inherited Members [Constraint.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](VM.Managed.Symmetric.Constraints.Constraint\-2.md\#VM\_Managed\_Symmetric\_Constraints\_Constraint\_2\_Update\_VM\_Managed\_ObjectBase\_VM\_Managed\_ObjectBase\_VM\_Managed\_SymmetricType\_VM\_Plane\_VM\_Managed\_Document\_), -Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -74,7 +75,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -86,9 +87,9 @@ public static void UpdateProperty(PropertyTranslational toolProperty, PropertyTr #### Parameters -`toolProperty` PropertyTranslational +`toolProperty` [PropertyTranslational](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Translational.cs) -`targetProperty` PropertyTranslational +`targetProperty` [PropertyTranslational](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Translational.cs) `sym_type` SymmetricType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Universal.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Universal.md index d6dcf63725..d5b0a3a639 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Universal.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.Universal.md @@ -1,4 +1,5 @@ -# Class Universal +# Class Universal + Namespace: [VM.Managed.Symmetric.Constraints](VM.Managed.Symmetric.Constraints.md) Assembly: VMSymCP.dll @@ -9,10 +10,10 @@ public class Universal : Constraint, ISymmetricUpd #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -Connector ← -Constraint ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs) ← +[Constraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymCB/Constraint.cs) ← [Universal](VM.Managed.Symmetric.Constraints.Universal.md) #### Implements @@ -21,12 +22,12 @@ ISymmetricUpdater #### Inherited Members -Constraint.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Constraint.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymCB/Constraint.cs), +[Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -74,7 +75,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -86,9 +87,9 @@ public static void UpdateProperty(PropertyUniversal toolProperty, PropertyUniver #### Parameters -`toolProperty` PropertyUniversal +`toolProperty` [PropertyUniversal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCP/Universal.cs) -`targetProperty` PropertyUniversal +`targetProperty` [PropertyUniversal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCP/Universal.cs) `sym_type` SymmetricType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.md index 7d862bf4be..9db192ce38 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Constraints.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.Symmetric.Constraints +# Namespace VM.Managed.Symmetric.Constraints + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Contact.Contact-2.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Contact.Contact-2.md index 37f0eb5141..268bd337bd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Contact.Contact-2.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Contact.Contact-2.md @@ -1,4 +1,5 @@ -# Class Contact +# Class Contact + Namespace: [VM.Managed.Symmetric.Contact](VM.Managed.Symmetric.Contact.md) Assembly: VMSymCt.dll @@ -15,8 +16,8 @@ public class Contact : Named, ISymmetricUpdater where T : Contact ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← [Contact](VM.Managed.Symmetric.Contact.Contact\-2.md) #### Implements @@ -25,10 +26,10 @@ ISymmetricUpdater #### Inherited Members -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -76,7 +77,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Contact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Contact.md index da63beb93b..bc0f923996 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Contact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Contact.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.Symmetric.Contact +# Namespace VM.Managed.Symmetric.Contact + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.DesignPoint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.DesignPoint.md index e903b019cc..d7555ac18b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.DesignPoint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.DesignPoint.md @@ -1,4 +1,5 @@ -# Class DesignPoint +# Class DesignPoint + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class DesignPoint : SubEntity, ISymmetricUpdater #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Named](VM.Managed.Symmetric.Named\-1.md) ← [SubEntity](VM.Managed.Symmetric.SubEntity.md) ← [DesignPoint](VM.Managed.Symmetric.DesignPoint.md) @@ -72,7 +73,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Direction.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Direction.md index 1e7a7c306e..472936c29a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Direction.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Direction.md @@ -1,4 +1,5 @@ -# Class Direction +# Class Direction + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class Direction : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Direction](VM.Managed.Symmetric.Direction.md) #### Implements @@ -42,7 +43,7 @@ public virtual object Build(object tool, SymmetricType sym_type, Plane sym_plane #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.DirectionBaseAxis.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.DirectionBaseAxis.md index c3e3aefa9b..4bd8e5615a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.DirectionBaseAxis.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.DirectionBaseAxis.md @@ -1,4 +1,5 @@ -# Class DirectionBaseAxis +# Class DirectionBaseAxis + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class DirectionBaseAxis : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DirectionBaseAxis](VM.Managed.Symmetric.DirectionBaseAxis.md) #### Implements @@ -42,7 +43,7 @@ public virtual object Build(object tool, SymmetricType sym_type, Plane sym_plane #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.DirectionExpression.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.DirectionExpression.md index a41c516523..c17a59bb82 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.DirectionExpression.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.DirectionExpression.md @@ -1,4 +1,5 @@ -# Class DirectionExpression +# Class DirectionExpression + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class DirectionExpression : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DirectionExpression](VM.Managed.Symmetric.DirectionExpression.md) #### Implements @@ -42,7 +43,7 @@ public virtual object Build(object tool, SymmetricType sym_type, Plane sym_plane #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.DirectionLink.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.DirectionLink.md index 3438f43330..7e6d2e4f9b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.DirectionLink.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.DirectionLink.md @@ -1,4 +1,5 @@ -# Class DirectionLink +# Class DirectionLink + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class DirectionLink : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DirectionLink](VM.Managed.Symmetric.DirectionLink.md) #### Implements @@ -42,7 +43,7 @@ public virtual object Build(object tool, SymmetricType sym_type, Plane sym_plane #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.DirectionSymmetric.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.DirectionSymmetric.md index 118d561506..66c62510be 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.DirectionSymmetric.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.DirectionSymmetric.md @@ -1,17 +1,18 @@ -# Class DirectionSymmetric +# Class DirectionSymmetric + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll ```csharp -public class DirectionSymmetric : DirectionBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable +public class DirectionSymmetric : DirectionBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← DirectionBase ← [DirectionSymmetric](VM.Managed.Symmetric.DirectionSymmetric.md) @@ -27,7 +28,8 @@ IOwned, IHasID, IEventProvider, ILinkContainerEvent, -IVerifiable +IVerifiable, +IHasReplaceableEntity #### Inherited Members @@ -37,6 +39,8 @@ DirectionBase.IsParametric\(string\), DirectionBase.ReadXml\(XmlReader\), DirectionBase.WriteXml\(XmlWriter\), DirectionBase.GetSchema\(\), +DirectionBase.HasReplaceableEntity\(IObjectBase\), +DirectionBase.ReplaceEntity\(IObjectBase, IObjectBase\), DirectionBase.Reverse, DirectionBase.IsParameterized, DirectionBase.Value, @@ -83,7 +87,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -134,7 +138,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Value @@ -169,7 +173,7 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -189,7 +193,7 @@ Point picking type. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool If set to true is parametric; otherwise, false is none parametric. @@ -203,7 +207,7 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -217,7 +221,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.DirectionThreePoints.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.DirectionThreePoints.md index 9a0a62461a..83ffc0b35b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.DirectionThreePoints.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.DirectionThreePoints.md @@ -1,4 +1,5 @@ -# Class DirectionThreePoints +# Class DirectionThreePoints + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class DirectionThreePoints : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DirectionThreePoints](VM.Managed.Symmetric.DirectionThreePoints.md) #### Implements @@ -42,7 +43,7 @@ public virtual object Build(object tool, SymmetricType sym_type, Plane sym_plane #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.DirectionTwoPoints.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.DirectionTwoPoints.md index 39b4ec7f55..e9231aacb7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.DirectionTwoPoints.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.DirectionTwoPoints.md @@ -1,4 +1,5 @@ -# Class DirectionTwoPoints +# Class DirectionTwoPoints + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class DirectionTwoPoints : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DirectionTwoPoints](VM.Managed.Symmetric.DirectionTwoPoints.md) #### Implements @@ -42,7 +43,7 @@ public virtual object Build(object tool, SymmetricType sym_type, Plane sym_plane #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Entity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Entity.md index 89922c7ba6..58ba0e2686 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Entity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Entity.md @@ -1,4 +1,5 @@ -# Class Entity +# Class Entity + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class Entity : Named, ISymmetricUpdater #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Named](VM.Managed.Symmetric.Named\-1.md) ← [Entity](VM.Managed.Symmetric.Entity.md) @@ -70,7 +71,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Equation.Differential1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Equation.Differential1.md index 1bf61767bf..07fd16d86e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Equation.Differential1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Equation.Differential1.md @@ -1,4 +1,5 @@ -# Class Differential1 +# Class Differential1 + Namespace: [VM.Managed.Symmetric.Equation](VM.Managed.Symmetric.Equation.md) Assembly: VMSymEq.dll @@ -9,9 +10,9 @@ public class Differential1 : SubEntity, ISymmetricUpdater #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -SubEntity ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/SubEntity.cs) ← [Differential1](VM.Managed.Symmetric.Equation.Differential1.md) #### Derived @@ -24,11 +25,11 @@ ISymmetricUpdater #### Inherited Members -SubEntity.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[SubEntity.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/SubEntity.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -76,7 +77,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Equation.Differential2.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Equation.Differential2.md index 45e6e37fe7..60075762ab 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Equation.Differential2.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Equation.Differential2.md @@ -1,4 +1,5 @@ -# Class Differential2 +# Class Differential2 + Namespace: [VM.Managed.Symmetric.Equation](VM.Managed.Symmetric.Equation.md) Assembly: VMSymEq.dll @@ -9,9 +10,9 @@ public class Differential2 : Differential1, ISymmetricUpdater #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -SubEntity ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/SubEntity.cs) ← [Differential1](VM.Managed.Symmetric.Equation.Differential1.md) ← [Differential2](VM.Managed.Symmetric.Equation.Differential2.md) @@ -22,11 +23,11 @@ ISymmetricUpdater #### Inherited Members [Differential1.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](VM.Managed.Symmetric.Equation.Differential1.md\#VM\_Managed\_Symmetric\_Equation\_Differential1\_Update\_VM\_Managed\_ObjectBase\_VM\_Managed\_ObjectBase\_VM\_Managed\_SymmetricType\_VM\_Plane\_VM\_Managed\_Document\_), -SubEntity.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[SubEntity.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/SubEntity.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Equation.EquationStandard.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Equation.EquationStandard.md index 767dd719b0..ff15c20108 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Equation.EquationStandard.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Equation.EquationStandard.md @@ -1,4 +1,5 @@ -# Class EquationStandard +# Class EquationStandard + Namespace: [VM.Managed.Symmetric.Equation](VM.Managed.Symmetric.Equation.md) Assembly: VMSymEq.dll @@ -9,7 +10,7 @@ public class EquationStandard : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [EquationStandard](VM.Managed.Symmetric.Equation.EquationStandard.md) #### Implements @@ -42,7 +43,7 @@ public object Build(object tool, SymmetricType sym_type, Plane sym_plane, Docume #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Equation.EquationUserSubroutine.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Equation.EquationUserSubroutine.md index acc9f9716f..1552f2234d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Equation.EquationUserSubroutine.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Equation.EquationUserSubroutine.md @@ -1,4 +1,5 @@ -# Class EquationUserSubroutine +# Class EquationUserSubroutine + Namespace: [VM.Managed.Symmetric.Equation](VM.Managed.Symmetric.Equation.md) Assembly: VMSymEq.dll @@ -9,7 +10,7 @@ public class EquationUserSubroutine : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [EquationUserSubroutine](VM.Managed.Symmetric.Equation.EquationUserSubroutine.md) #### Implements @@ -42,7 +43,7 @@ public object Build(object tool, SymmetricType sym_type, Plane sym_plane, Docume #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Equation.VariableEq.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Equation.VariableEq.md index 75c3dd3529..c6b32cf46d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Equation.VariableEq.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Equation.VariableEq.md @@ -1,4 +1,5 @@ -# Class VariableEq +# Class VariableEq + Namespace: [VM.Managed.Symmetric.Equation](VM.Managed.Symmetric.Equation.md) Assembly: VMSymEq.dll @@ -9,9 +10,9 @@ public class VariableEq : SubEntity, ISymmetricUpdater #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -SubEntity ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/SubEntity.cs) ← [VariableEq](VM.Managed.Symmetric.Equation.VariableEq.md) #### Implements @@ -20,11 +21,11 @@ ISymmetricUpdater #### Inherited Members -SubEntity.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[SubEntity.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/SubEntity.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -72,7 +73,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Equation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Equation.md index 1262f21ded..cacb198ce4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Equation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Equation.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.Symmetric.Equation +# Namespace VM.Managed.Symmetric.Equation + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.ExpressionValue-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.ExpressionValue-1.md index 3d24f55cb3..76fbde6f19 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.ExpressionValue-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.ExpressionValue-1.md @@ -1,4 +1,5 @@ -# Class ExpressionValue +# Class ExpressionValue + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -13,7 +14,7 @@ public class ExpressionValue : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ExpressionValue](VM.Managed.Symmetric.ExpressionValue\-1.md) #### Implements @@ -46,7 +47,7 @@ public object Build(object tool, SymmetricType sym_type, Plane sym_plane, Docume #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -62,7 +63,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.ExpressionValueVariable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.ExpressionValueVariable.md index 6900df9883..c1f79acc5b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.ExpressionValueVariable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.ExpressionValueVariable.md @@ -1,4 +1,5 @@ -# Class ExpressionValueVariable +# Class ExpressionValueVariable + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class ExpressionValueVariable : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ExpressionValueVariable](VM.Managed.Symmetric.ExpressionValueVariable.md) #### Implements @@ -42,7 +43,7 @@ public object Build(object tool, SymmetricType sym_type, Plane sym_plane, Docume #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.Bush.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.Bush.md index 338fdc2aa0..29712c1e09 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.Bush.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.Bush.md @@ -1,4 +1,5 @@ -# Class Bush +# Class Bush + Namespace: [VM.Managed.Symmetric.Force](VM.Managed.Symmetric.Force.md) Assembly: VMSymFB.dll @@ -9,9 +10,9 @@ public class Bush : Force, ISymmetricUpdater #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -Connector ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs) ← [Force](VM.Managed.Symmetric.Force.Force\-2.md) ← [Bush](VM.Managed.Symmetric.Force.Bush.md) @@ -22,11 +23,11 @@ ISymmetricUpdater #### Inherited Members [Force.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](VM.Managed.Symmetric.Force.Force\-2.md\#VM\_Managed\_Symmetric\_Force\_Force\_2\_Update\_VM\_Managed\_ObjectBase\_VM\_Managed\_ObjectBase\_VM\_Managed\_SymmetricType\_VM\_Plane\_VM\_Managed\_Document\_), -Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -74,7 +75,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -86,9 +87,9 @@ public static bool UpdateProperty(PropertyBush toolProperty, PropertyBush target #### Parameters -`toolProperty` PropertyBush +`toolProperty` [PropertyBush](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Bush.cs) -`targetProperty` PropertyBush +`targetProperty` [PropertyBush](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Bush.cs) `sym_type` SymmetricType @@ -98,5 +99,5 @@ public static bool UpdateProperty(PropertyBush toolProperty, PropertyBush target #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.Force-2.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.Force-2.md index c31bc87086..01e1331cb1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.Force-2.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.Force-2.md @@ -1,4 +1,5 @@ -# Class Force +# Class Force + Namespace: [VM.Managed.Symmetric.Force](VM.Managed.Symmetric.Force.md) Assembly: VMSymFB.dll @@ -15,9 +16,9 @@ public class Force : Connector, ISymmetricUpdater where T : #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -Connector ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs) ← [Force](VM.Managed.Symmetric.Force.Force\-2.md) #### Implements @@ -26,11 +27,11 @@ ISymmetricUpdater #### Inherited Members -Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -78,7 +79,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.ForceStandard.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.ForceStandard.md index 0af0d09104..f0661ba6d5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.ForceStandard.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.ForceStandard.md @@ -1,4 +1,5 @@ -# Class ForceStandard +# Class ForceStandard + Namespace: [VM.Managed.Symmetric.Force](VM.Managed.Symmetric.Force.md) Assembly: VMSymFP.dll @@ -9,7 +10,7 @@ public class ForceStandard : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ForceStandard](VM.Managed.Symmetric.Force.ForceStandard.md) #### Implements @@ -42,7 +43,7 @@ public object Build(object tool, SymmetricType sym_type, Plane sym_plane, Docume #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.ForceUserSubroutine.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.ForceUserSubroutine.md index b83ef6ca58..ebc3ea8b70 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.ForceUserSubroutine.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.ForceUserSubroutine.md @@ -1,4 +1,5 @@ -# Class ForceUserSubroutine +# Class ForceUserSubroutine + Namespace: [VM.Managed.Symmetric.Force](VM.Managed.Symmetric.Force.md) Assembly: VMSymFP.dll @@ -9,7 +10,7 @@ public class ForceUserSubroutine : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ForceUserSubroutine](VM.Managed.Symmetric.Force.ForceUserSubroutine.md) #### Implements @@ -42,7 +43,7 @@ public object Build(object tool, SymmetricType sym_type, Plane sym_plane, Docume #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.Matrix.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.Matrix.md index 2a7371b792..80227ab9e2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.Matrix.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.Matrix.md @@ -1,4 +1,5 @@ -# Class Matrix +# Class Matrix + Namespace: [VM.Managed.Symmetric.Force](VM.Managed.Symmetric.Force.md) Assembly: VMSymFP.dll @@ -9,10 +10,10 @@ public class Matrix : Force, ISymmetricUpdater #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -Connector ← -Force ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs) ← +[Force](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymFB/Force.cs) ← [Matrix](VM.Managed.Symmetric.Force.Matrix.md) #### Implements @@ -21,12 +22,12 @@ ISymmetricUpdater #### Inherited Members -Force.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Force.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymFB/Force.cs), +[Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -74,7 +75,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -86,9 +87,9 @@ public static bool UpdateProperty(PropertyMatrix toolProperty, PropertyMatrix ta #### Parameters -`toolProperty` PropertyMatrix +`toolProperty` [PropertyMatrix](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFP/Matrix.cs) -`targetProperty` PropertyMatrix +`targetProperty` [PropertyMatrix](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFP/Matrix.cs) `sym_type` SymmetricType @@ -98,5 +99,5 @@ public static bool UpdateProperty(PropertyMatrix toolProperty, PropertyMatrix ta #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.MatrixForceStandard.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.MatrixForceStandard.md index 6e7080afca..468f187443 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.MatrixForceStandard.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.MatrixForceStandard.md @@ -1,4 +1,5 @@ -# Class MatrixForceStandard +# Class MatrixForceStandard + Namespace: [VM.Managed.Symmetric.Force](VM.Managed.Symmetric.Force.md) Assembly: VMSymFP.dll @@ -9,7 +10,7 @@ public class MatrixForceStandard : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [MatrixForceStandard](VM.Managed.Symmetric.Force.MatrixForceStandard.md) #### Implements @@ -42,7 +43,7 @@ public object Build(object tool, SymmetricType sym_type, Plane sym_plane, Docume #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.MatrixForceUserSubroutine.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.MatrixForceUserSubroutine.md index f9a9f97ea8..f2ced57e20 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.MatrixForceUserSubroutine.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.MatrixForceUserSubroutine.md @@ -1,4 +1,5 @@ -# Class MatrixForceUserSubroutine +# Class MatrixForceUserSubroutine + Namespace: [VM.Managed.Symmetric.Force](VM.Managed.Symmetric.Force.md) Assembly: VMSymFP.dll @@ -9,7 +10,7 @@ public class MatrixForceUserSubroutine : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [MatrixForceUserSubroutine](VM.Managed.Symmetric.Force.MatrixForceUserSubroutine.md) #### Implements @@ -42,7 +43,7 @@ public object Build(object tool, SymmetricType sym_type, Plane sym_plane, Docume #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.RScalar.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.RScalar.md index 024fb47fb0..dffadb4a53 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.RScalar.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.RScalar.md @@ -1,4 +1,5 @@ -# Class RScalar +# Class RScalar + Namespace: [VM.Managed.Symmetric.Force](VM.Managed.Symmetric.Force.md) Assembly: VMSymFP.dll @@ -9,10 +10,10 @@ public class RScalar : Force, ISymmetricUpdater #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -Connector ← -Force ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs) ← +[Force](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymFB/Force.cs) ← [RScalar](VM.Managed.Symmetric.Force.RScalar.md) #### Implements @@ -21,12 +22,12 @@ ISymmetricUpdater #### Inherited Members -Force.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Force.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymFB/Force.cs), +[Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -74,7 +75,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.RSpringDamper.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.RSpringDamper.md index 5d400f4122..f656c22e42 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.RSpringDamper.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.RSpringDamper.md @@ -1,4 +1,5 @@ -# Class RSpringDamper +# Class RSpringDamper + Namespace: [VM.Managed.Symmetric.Force](VM.Managed.Symmetric.Force.md) Assembly: VMSymFB.dll @@ -9,9 +10,9 @@ public class RSpringDamper : Force, ISymme #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -Connector ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs) ← [Force](VM.Managed.Symmetric.Force.Force\-2.md) ← [RSpringDamper](VM.Managed.Symmetric.Force.RSpringDamper.md) @@ -22,11 +23,11 @@ ISymmetricUpdater #### Inherited Members [Force.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](VM.Managed.Symmetric.Force.Force\-2.md\#VM\_Managed\_Symmetric\_Force\_Force\_2\_Update\_VM\_Managed\_ObjectBase\_VM\_Managed\_ObjectBase\_VM\_Managed\_SymmetricType\_VM\_Plane\_VM\_Managed\_Document\_), -Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -74,7 +75,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.TScalar.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.TScalar.md index 53b15fdd10..551a603e72 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.TScalar.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.TScalar.md @@ -1,4 +1,5 @@ -# Class TScalar +# Class TScalar + Namespace: [VM.Managed.Symmetric.Force](VM.Managed.Symmetric.Force.md) Assembly: VMSymFP.dll @@ -9,10 +10,10 @@ public class TScalar : Force, ISymmetricUpdater #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -Connector ← -Force ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs) ← +[Force](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymFB/Force.cs) ← [TScalar](VM.Managed.Symmetric.Force.TScalar.md) #### Implements @@ -21,12 +22,12 @@ ISymmetricUpdater #### Inherited Members -Force.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Force.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymFB/Force.cs), +[Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -74,7 +75,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.TSpringDamper.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.TSpringDamper.md index 8d84d9645c..61cf79bf1b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.TSpringDamper.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.TSpringDamper.md @@ -1,4 +1,5 @@ -# Class TSpringDamper +# Class TSpringDamper + Namespace: [VM.Managed.Symmetric.Force](VM.Managed.Symmetric.Force.md) Assembly: VMSymFB.dll @@ -9,9 +10,9 @@ public class TSpringDamper : Force, ISymme #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -Connector ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs) ← [Force](VM.Managed.Symmetric.Force.Force\-2.md) ← [TSpringDamper](VM.Managed.Symmetric.Force.TSpringDamper.md) @@ -22,11 +23,11 @@ ISymmetricUpdater #### Inherited Members [Force.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](VM.Managed.Symmetric.Force.Force\-2.md\#VM\_Managed\_Symmetric\_Force\_Force\_2\_Update\_VM\_Managed\_ObjectBase\_VM\_Managed\_ObjectBase\_VM\_Managed\_SymmetricType\_VM\_Plane\_VM\_Managed\_Document\_), -Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -74,7 +75,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.Vector.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.Vector.md index 7aef5095d2..c85908cfb2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.Vector.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.Vector.md @@ -1,4 +1,5 @@ -# Class Vector +# Class Vector + Namespace: [VM.Managed.Symmetric.Force](VM.Managed.Symmetric.Force.md) Assembly: VMSymFP.dll @@ -9,10 +10,10 @@ public class Vector : Force, ISymmetricUpdater #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -Connector ← -Force ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs) ← +[Force](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymFB/Force.cs) ← [Vector](VM.Managed.Symmetric.Force.Vector.md) #### Implements @@ -21,12 +22,12 @@ ISymmetricUpdater #### Inherited Members -Force.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Force.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymFB/Force.cs), +[Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -74,7 +75,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.VectorForceFunction.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.VectorForceFunction.md index 133361db04..c847889f46 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.VectorForceFunction.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.VectorForceFunction.md @@ -1,4 +1,5 @@ -# Class VectorForceFunction +# Class VectorForceFunction + Namespace: [VM.Managed.Symmetric.Force](VM.Managed.Symmetric.Force.md) Assembly: VMSymFP.dll @@ -9,7 +10,7 @@ public class VectorForceFunction #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [VectorForceFunction](VM.Managed.Symmetric.Force.VectorForceFunction.md) #### Derived @@ -41,7 +42,7 @@ protected object FindObject(string strToolName, SymmetricType sym_type, Plane sy #### Parameters -`strToolName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strToolName` string `sym_type` SymmetricType @@ -51,7 +52,7 @@ protected object FindObject(string strToolName, SymmetricType sym_type, Plane sy #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### SetRefereceMarker\(IMarker, Document\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.VectorForceStandard.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.VectorForceStandard.md index f105238c7c..f352a05762 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.VectorForceStandard.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.VectorForceStandard.md @@ -1,4 +1,5 @@ -# Class VectorForceStandard +# Class VectorForceStandard + Namespace: [VM.Managed.Symmetric.Force](VM.Managed.Symmetric.Force.md) Assembly: VMSymFP.dll @@ -9,7 +10,7 @@ public class VectorForceStandard : VectorForceFunction, ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [VectorForceFunction](VM.Managed.Symmetric.Force.VectorForceFunction.md) ← [VectorForceStandard](VM.Managed.Symmetric.Force.VectorForceStandard.md) @@ -48,7 +49,7 @@ public object Build(object tool, SymmetricType sym_type, Plane sym_plane, Docume #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -64,7 +65,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.VectorForceUserSubroutine.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.VectorForceUserSubroutine.md index 44ad5b46b2..208ce5c051 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.VectorForceUserSubroutine.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.VectorForceUserSubroutine.md @@ -1,4 +1,5 @@ -# Class VectorForceUserSubroutine +# Class VectorForceUserSubroutine + Namespace: [VM.Managed.Symmetric.Force](VM.Managed.Symmetric.Force.md) Assembly: VMSymFP.dll @@ -9,7 +10,7 @@ public class VectorForceUserSubroutine : VectorForceFunction, ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [VectorForceFunction](VM.Managed.Symmetric.Force.VectorForceFunction.md) ← [VectorForceUserSubroutine](VM.Managed.Symmetric.Force.VectorForceUserSubroutine.md) @@ -48,7 +49,7 @@ public object Build(object tool, SymmetricType sym_type, Plane sym_plane, Docume #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -64,7 +65,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.md index f380124aea..4bb6adae2b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Force.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.Symmetric.Force +# Namespace VM.Managed.Symmetric.Force + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Function.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Function.md index fea586bf67..f5c3d60c0c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Function.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Function.md @@ -1,4 +1,5 @@ -# Class Function +# Class Function + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymSB.dll @@ -9,9 +10,9 @@ public class Function : SubEntity, ISymmetricUpdater #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -SubEntity ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/SubEntity.cs) ← [Function](VM.Managed.Symmetric.Function.md) #### Implements @@ -20,11 +21,11 @@ ISymmetricUpdater #### Inherited Members -SubEntity.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[SubEntity.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/SubEntity.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -72,7 +73,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.IConnectable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.IConnectable.md index 883ea6b7ad..8026e11528 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.IConnectable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.IConnectable.md @@ -1,4 +1,5 @@ -# Class IConnectable +# Class IConnectable + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class IConnectable : ISymmetricUpdater #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [IConnectable](VM.Managed.Symmetric.IConnectable.md) #### Implements @@ -46,7 +47,7 @@ public virtual bool Initialize(ISymmetricManager Manager) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -80,7 +81,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.ISymmetricBuilder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.ISymmetricBuilder.md index f293c06f99..f6c8b4536f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.ISymmetricBuilder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.ISymmetricBuilder.md @@ -1,4 +1,5 @@ -# Interface ISymmetricBuilder +# Interface ISymmetricBuilder + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMAppCore.dll @@ -27,7 +28,7 @@ object Build(object tool, SymmetricType sym_type, Plane sym_plane, Document docO #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -45,7 +46,7 @@ update document. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.ISymmetricManager.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.ISymmetricManager.md index 4e8f438c7e..ce1cbb03db 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.ISymmetricManager.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.ISymmetricManager.md @@ -1,4 +1,5 @@ -# Interface ISymmetricManager +# Interface ISymmetricManager + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMAppCore.dll @@ -39,7 +40,7 @@ bool NonSymmetric { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Original diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.ISymmetricMultiBuilder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.ISymmetricMultiBuilder.md index f2d3b0bd86..da3a2b180d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.ISymmetricMultiBuilder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.ISymmetricMultiBuilder.md @@ -1,4 +1,5 @@ -# Interface ISymmetricMultiBuilder +# Interface ISymmetricMultiBuilder + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMAppCore.dll @@ -49,7 +50,7 @@ update document. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.ISymmetricUpdater.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.ISymmetricUpdater.md index a3de24b870..60972a2eff 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.ISymmetricUpdater.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.ISymmetricUpdater.md @@ -1,4 +1,5 @@ -# Interface ISymmetricUpdater +# Interface ISymmetricUpdater + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMAppCore.dll @@ -33,7 +34,7 @@ The Symmetric Manager. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -69,7 +70,7 @@ update document. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.ISymmetricUpdaterAfterAddDoc.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.ISymmetricUpdaterAfterAddDoc.md index 6dd6ee5941..4ef460aa12 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.ISymmetricUpdaterAfterAddDoc.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.ISymmetricUpdaterAfterAddDoc.md @@ -1,4 +1,5 @@ -# Interface ISymmetricUpdaterAfterAddDoc +# Interface ISymmetricUpdaterAfterAddDoc + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.InitialVelocity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.InitialVelocity.md index 924059b07e..e8ebe34a5f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.InitialVelocity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.InitialVelocity.md @@ -1,4 +1,5 @@ -# Class InitialVelocity +# Class InitialVelocity + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class InitialVelocity : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [InitialVelocity](VM.Managed.Symmetric.InitialVelocity.md) #### Implements @@ -42,7 +43,7 @@ public object Build(object tool, SymmetricType sym_type, Plane sym_plane, Docume #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Marker.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Marker.md index 0ea1e8318a..a680541047 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Marker.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Marker.md @@ -1,4 +1,5 @@ -# Class Marker +# Class Marker + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class Marker : Named, ISymmetricUpdater #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Named](VM.Managed.Symmetric.Named\-1.md) ← [Marker](VM.Managed.Symmetric.Marker.md) @@ -74,7 +75,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -86,9 +87,9 @@ public bool UpdateMarker(ref Marker m_tool, ref Marker m_target, SymmetricType s #### Parameters -`m_tool` Marker +`m_tool` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) -`m_target` Marker +`m_target` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) `sym_type` SymmetricType @@ -98,7 +99,7 @@ public bool UpdateMarker(ref Marker m_tool, ref Marker m_target, SymmetricType s #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UpdateToNonSymName\(ref ObjectBase, ref ObjectBase\) @@ -114,7 +115,7 @@ public bool UpdateToNonSymName(ref ObjectBase tool, ref ObjectBase target) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UpdateToSymName\(ref ObjectBase, ref ObjectBase, SymmetricType\) @@ -132,5 +133,5 @@ public bool UpdateToSymName(ref ObjectBase tool, ref ObjectBase target, Symmetri #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Named-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Named-1.md index b41997d1e2..2dee2f4947 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Named-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Named-1.md @@ -1,4 +1,5 @@ -# Class Named +# Class Named + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -13,7 +14,7 @@ public class Named : ISymmetricUpdater where T : INamed #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Named](VM.Managed.Symmetric.Named\-1.md) #### Implements @@ -56,7 +57,7 @@ protected static object FindObject(string strToolName, SymmetricType sym_type, P #### Parameters -`strToolName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strToolName` string `sym_type` SymmetricType @@ -66,7 +67,7 @@ protected static object FindObject(string strToolName, SymmetricType sym_type, P #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### Initialize\(ISymmetricManager\) @@ -82,7 +83,7 @@ public virtual bool Initialize(ISymmetricManager Manager) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -116,7 +117,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OMatrix.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OMatrix.md index f32426bc58..59923a2354 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OMatrix.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OMatrix.md @@ -1,4 +1,5 @@ -# Class OMatrix +# Class OMatrix + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class OMatrix : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OMatrix](VM.Managed.Symmetric.OMatrix.md) #### Implements @@ -42,7 +43,7 @@ public virtual object Build(object tool, SymmetricType sym_type, Plane sym_plane #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OrientationEulerAngle.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OrientationEulerAngle.md index 2ba46f2b38..051b6cc1d1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OrientationEulerAngle.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OrientationEulerAngle.md @@ -1,4 +1,5 @@ -# Class OrientationEulerAngle +# Class OrientationEulerAngle + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class OrientationEulerAngle : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OrientationEulerAngle](VM.Managed.Symmetric.OrientationEulerAngle.md) #### Implements @@ -42,7 +43,7 @@ public virtual object Build(object tool, SymmetricType sym_type, Plane sym_plane #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OrientationFixedAngle.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OrientationFixedAngle.md index ac1ec598cb..558743f9a6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OrientationFixedAngle.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OrientationFixedAngle.md @@ -1,4 +1,5 @@ -# Class OrientationFixedAngle +# Class OrientationFixedAngle + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class OrientationFixedAngle : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OrientationFixedAngle](VM.Managed.Symmetric.OrientationFixedAngle.md) #### Implements @@ -42,7 +43,7 @@ public virtual object Build(object tool, SymmetricType sym_type, Plane sym_plane #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OrientationLink.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OrientationLink.md index 35d550e5b5..a9e8a8d74e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OrientationLink.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OrientationLink.md @@ -1,4 +1,5 @@ -# Class OrientationLink +# Class OrientationLink + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class OrientationLink : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OrientationLink](VM.Managed.Symmetric.OrientationLink.md) #### Implements @@ -42,7 +43,7 @@ public virtual object Build(object tool, SymmetricType sym_type, Plane sym_plane #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OrientationLinkDelta.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OrientationLinkDelta.md index 6dbf96fa25..8bf573786d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OrientationLinkDelta.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OrientationLinkDelta.md @@ -1,4 +1,5 @@ -# Class OrientationLinkDelta +# Class OrientationLinkDelta + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class OrientationLinkDelta : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OrientationLinkDelta](VM.Managed.Symmetric.OrientationLinkDelta.md) #### Implements @@ -42,7 +43,7 @@ public virtual object Build(object tool, SymmetricType sym_type, Plane sym_plane #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OrientationMatrix.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OrientationMatrix.md index a5bc3f2b58..9d421c0e32 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OrientationMatrix.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OrientationMatrix.md @@ -1,4 +1,5 @@ -# Class OrientationMatrix +# Class OrientationMatrix + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class OrientationMatrix : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OrientationMatrix](VM.Managed.Symmetric.OrientationMatrix.md) #### Implements @@ -42,7 +43,7 @@ public virtual object Build(object tool, SymmetricType sym_type, Plane sym_plane #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OrientationOneDirection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OrientationOneDirection.md index 09393c3f48..0307d3a010 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OrientationOneDirection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OrientationOneDirection.md @@ -1,4 +1,5 @@ -# Class OrientationOneDirection +# Class OrientationOneDirection + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class OrientationOneDirection : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OrientationOneDirection](VM.Managed.Symmetric.OrientationOneDirection.md) #### Implements @@ -42,7 +43,7 @@ public virtual object Build(object tool, SymmetricType sym_type, Plane sym_plane #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OrientationThreePoints.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OrientationThreePoints.md index 88b47b6d85..a2ae7eaab8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OrientationThreePoints.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OrientationThreePoints.md @@ -1,4 +1,5 @@ -# Class OrientationThreePoints +# Class OrientationThreePoints + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class OrientationThreePoints : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OrientationThreePoints](VM.Managed.Symmetric.OrientationThreePoints.md) #### Implements @@ -42,7 +43,7 @@ public virtual object Build(object tool, SymmetricType sym_type, Plane sym_plane #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OrientationTwoDirections.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OrientationTwoDirections.md index bff2b1d7ec..a43adab620 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OrientationTwoDirections.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.OrientationTwoDirections.md @@ -1,4 +1,5 @@ -# Class OrientationTwoDirections +# Class OrientationTwoDirections + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class OrientationTwoDirections : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [OrientationTwoDirections](VM.Managed.Symmetric.OrientationTwoDirections.md) #### Implements @@ -42,7 +43,7 @@ public virtual object Build(object tool, SymmetricType sym_type, Plane sym_plane #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Point.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Point.md index f87df515e4..fcbb9bccb9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Point.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Point.md @@ -1,4 +1,5 @@ -# Class Point +# Class Point + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class Point : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Point](VM.Managed.Symmetric.Point.md) #### Implements @@ -42,7 +43,7 @@ public virtual object Build(object tool, SymmetricType sym_type, Plane sym_plane #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.PointExpression.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.PointExpression.md index be8a2520a4..273c0f990e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.PointExpression.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.PointExpression.md @@ -1,4 +1,5 @@ -# Class PointExpression +# Class PointExpression + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class PointExpression : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PointExpression](VM.Managed.Symmetric.PointExpression.md) #### Implements @@ -42,7 +43,7 @@ public virtual object Build(object tool, SymmetricType sym_type, Plane sym_plane #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.PointLink.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.PointLink.md index 5ad84fe882..8013f2947b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.PointLink.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.PointLink.md @@ -1,4 +1,5 @@ -# Class PointLink +# Class PointLink + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class PointLink : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PointLink](VM.Managed.Symmetric.PointLink.md) #### Implements @@ -42,7 +43,7 @@ public virtual object Build(object tool, SymmetricType sym_type, Plane sym_plane #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.PointLinkDelta.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.PointLinkDelta.md index e2c5a32627..27aafec715 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.PointLinkDelta.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.PointLinkDelta.md @@ -1,4 +1,5 @@ -# Class PointLinkDelta +# Class PointLinkDelta + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class PointLinkDelta : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PointLinkDelta](VM.Managed.Symmetric.PointLinkDelta.md) #### Implements @@ -42,7 +43,7 @@ public virtual object Build(object tool, SymmetricType sym_type, Plane sym_plane #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.PointNPointsCenter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.PointNPointsCenter.md index e67ce0f1a5..c92c90f3e7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.PointNPointsCenter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.PointNPointsCenter.md @@ -1,4 +1,5 @@ -# Class PointNPointsCenter +# Class PointNPointsCenter + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class PointNPointsCenter : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PointNPointsCenter](VM.Managed.Symmetric.PointNPointsCenter.md) #### Implements @@ -42,7 +43,7 @@ public virtual object Build(object tool, SymmetricType sym_type, Plane sym_plane #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.PointRated.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.PointRated.md index 757903ce55..193f8b25a9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.PointRated.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.PointRated.md @@ -1,4 +1,5 @@ -# Class PointRated +# Class PointRated + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class PointRated : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PointRated](VM.Managed.Symmetric.PointRated.md) #### Implements @@ -42,7 +43,7 @@ public virtual object Build(object tool, SymmetricType sym_type, Plane sym_plane #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.PointSymmetric.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.PointSymmetric.md index 9775a00bce..9427e9af42 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.PointSymmetric.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.PointSymmetric.md @@ -1,17 +1,18 @@ -# Class PointSymmetric +# Class PointSymmetric + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll ```csharp -public class PointSymmetric : PointBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable +public class PointSymmetric : PointBase, IObservableObject, IDisposableObject, ILinkable, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, ILinkContainerEvent, IVerifiable, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← PointBase ← [PointSymmetric](VM.Managed.Symmetric.PointSymmetric.md) @@ -27,7 +28,8 @@ IOwned, IHasID, IEventProvider, ILinkContainerEvent, -IVerifiable +IVerifiable, +IHasReplaceableEntity #### Inherited Members @@ -36,6 +38,8 @@ PointBase.IsParametric\(string\), PointBase.ReadXml\(XmlReader\), PointBase.WriteXml\(XmlWriter\), PointBase.GetSchema\(\), +PointBase.HasReplaceableEntity\(IObjectBase\), +PointBase.ReplaceEntity\(IObjectBase, IObjectBase\), PointBase.IsParameterized, PointBase.Z, PointBase.Y, @@ -84,7 +88,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -135,7 +139,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Value @@ -159,7 +163,7 @@ public override double X { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y @@ -171,7 +175,7 @@ public override double Y { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Z @@ -183,7 +187,7 @@ public override double Z { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -206,7 +210,7 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema ### IsParametric\(enRefType\) @@ -224,7 +228,7 @@ Point picking type. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool If set to true is parametric; otherwise, false is none parametric. @@ -238,7 +242,7 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -252,7 +256,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.SolidBodyBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.SolidBodyBase.md index 959274ecc6..f4ef4348ee 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.SolidBodyBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.SolidBodyBase.md @@ -1,4 +1,5 @@ -# Class SolidBodyBase +# Class SolidBodyBase + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class SolidBodyBase : Named, ISymmetricUpdater, ISymmetricUpda #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Named](VM.Managed.Symmetric.Named\-1.md) ← [SolidBodyBase](VM.Managed.Symmetric.SolidBodyBase.md) @@ -71,7 +72,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Spline.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Spline.md index d05b3cc8be..9a17cf9dd8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Spline.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Spline.md @@ -1,4 +1,5 @@ -# Class Spline +# Class Spline + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymSB.dll @@ -9,9 +10,9 @@ public class Spline : SubEntity, ISymmetricUpdater #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -SubEntity ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/SubEntity.cs) ← [Spline](VM.Managed.Symmetric.Spline.md) #### Implements @@ -20,11 +21,11 @@ ISymmetricUpdater #### Inherited Members -SubEntity.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[SubEntity.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/SubEntity.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -72,7 +73,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Spline3D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Spline3D.md index e27f350072..6d9bb5af63 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Spline3D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Spline3D.md @@ -1,4 +1,5 @@ -# Class Spline3D +# Class Spline3D + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymSB.dll @@ -9,9 +10,9 @@ public class Spline3D : SubEntity, ISymmetricUpdater #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -SubEntity ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/SubEntity.cs) ← [Spline3D](VM.Managed.Symmetric.Spline3D.md) #### Implements @@ -20,11 +21,11 @@ ISymmetricUpdater #### Inherited Members -SubEntity.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[SubEntity.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/SubEntity.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -72,7 +73,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.SubEntity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.SubEntity.md index add32d3f02..f76811265a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.SubEntity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.SubEntity.md @@ -1,4 +1,5 @@ -# Class SubEntity +# Class SubEntity + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class SubEntity : Named, ISymmetricUpdater #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Named](VM.Managed.Symmetric.Named\-1.md) ← [SubEntity](VM.Managed.Symmetric.SubEntity.md) @@ -74,7 +75,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.SwitchableBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.SwitchableBody.md index bc4289516e..72e57b8ab9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.SwitchableBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.SwitchableBody.md @@ -1,4 +1,5 @@ -# Class SwitchableBody +# Class SwitchableBody + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class SwitchableBody : Named, ISymmetricUpdater #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Named](VM.Managed.Symmetric.Named\-1.md) ← [SwitchableBody](VM.Managed.Symmetric.SwitchableBody.md) @@ -70,7 +71,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.TMatrix.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.TMatrix.md index a8107a8e27..2f1047177c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.TMatrix.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.TMatrix.md @@ -1,4 +1,5 @@ -# Class TMatrix +# Class TMatrix + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class TMatrix : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [TMatrix](VM.Managed.Symmetric.TMatrix.md) #### Implements @@ -42,7 +43,7 @@ public virtual object Build(object tool, SymmetricType sym_type, Plane sym_plane #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Tire.Car.Force.TireCar.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Tire.Car.Force.TireCar.md index eeee44c3fc..a39a1b7dc9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Tire.Car.Force.TireCar.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Tire.Car.Force.TireCar.md @@ -1,4 +1,5 @@ -# Class TireCar +# Class TireCar + Namespace: [VM.Managed.Symmetric.Tire.Car.Force](VM.Managed.Symmetric.Tire.Car.Force.md) Assembly: VMSymTireCar.dll @@ -9,11 +10,11 @@ public class TireCar : TireBase, ISymmetricUpdater, ISymmetricUpdaterAf #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -Connector ← -Force ← -TireBase ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs) ← +[Force](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymFB/Force.cs) ← +[TireBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymTire/TireBase.cs) ← [TireCar](VM.Managed.Symmetric.Tire.Car.Force.TireCar.md) #### Implements @@ -23,13 +24,13 @@ ISymmetricUpdaterAfterAddDoc #### Inherited Members -TireBase.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Force.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[TireBase.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymTire/TireBase.cs), +[Force.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymFB/Force.cs), +[Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Tire.Car.Force.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Tire.Car.Force.md index 3e8fd33000..9c6dba9143 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Tire.Car.Force.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Tire.Car.Force.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.Symmetric.Tire.Car.Force +# Namespace VM.Managed.Symmetric.Tire.Car.Force + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Tire.Force.Tire.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Tire.Force.Tire.md index 17d89220d8..94b0a3c296 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Tire.Force.Tire.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Tire.Force.Tire.md @@ -1,4 +1,5 @@ -# Class Tire +# Class Tire + Namespace: [VM.Managed.Symmetric.Tire.Force](VM.Managed.Symmetric.Tire.Force.md) Assembly: VMSymTire.dll @@ -9,10 +10,10 @@ public class Tire : TireBase, ISymmetricUpdater, ISymmetricUpdaterAfterAdd #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -Connector ← -Force ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs) ← +[Force](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymFB/Force.cs) ← [TireBase](VM.Managed.Symmetric.Tire.TireBase\-1.md) ← [Tire](VM.Managed.Symmetric.Tire.Force.Tire.md) @@ -24,12 +25,12 @@ ISymmetricUpdaterAfterAddDoc #### Inherited Members [TireBase.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](VM.Managed.Symmetric.Tire.TireBase\-1.md\#VM\_Managed\_Symmetric\_Tire\_TireBase\_1\_Update\_VM\_Managed\_ObjectBase\_VM\_Managed\_ObjectBase\_VM\_Managed\_SymmetricType\_VM\_Plane\_VM\_Managed\_Document\_), -Force.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Force.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymFB/Force.cs), +[Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Tire.Force.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Tire.Force.md index f754eb7495..40f9967fa9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Tire.Force.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Tire.Force.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.Symmetric.Tire.Force +# Namespace VM.Managed.Symmetric.Tire.Force + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Tire.TireBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Tire.TireBase-1.md index 9a5e9da9eb..616809a357 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Tire.TireBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Tire.TireBase-1.md @@ -1,4 +1,5 @@ -# Class TireBase +# Class TireBase + Namespace: [VM.Managed.Symmetric.Tire](VM.Managed.Symmetric.Tire.md) Assembly: VMSymTire.dll @@ -13,10 +14,10 @@ public abstract class TireBase : Force, ISymmetricUpdater, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -Connector ← -Force ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs) ← +[Force](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymFB/Force.cs) ← [TireBase](VM.Managed.Symmetric.Tire.TireBase\-1.md) #### Implements @@ -26,12 +27,12 @@ ISymmetricUpdaterAfterAddDoc #### Inherited Members -Force.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Force.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymFB/Force.cs), +[Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -79,7 +80,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Tire.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Tire.md index 1fa4ff9ec4..0bd89ee1fc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Tire.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Tire.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.Symmetric.Tire +# Namespace VM.Managed.Symmetric.Tire + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.TransformLink.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.TransformLink.md index fc4ec7b100..f3dfea2736 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.TransformLink.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.TransformLink.md @@ -1,4 +1,5 @@ -# Class TransformLink +# Class TransformLink + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class TransformLink : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [TransformLink](VM.Managed.Symmetric.TransformLink.md) #### Implements @@ -42,7 +43,7 @@ public virtual object Build(object tool, SymmetricType sym_type, Plane sym_plane #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.TransformMatrix.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.TransformMatrix.md index 1bdacb456b..fdbea42353 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.TransformMatrix.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.TransformMatrix.md @@ -1,4 +1,5 @@ -# Class TransformMatrix +# Class TransformMatrix + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class TransformMatrix : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [TransformMatrix](VM.Managed.Symmetric.TransformMatrix.md) #### Implements @@ -42,7 +43,7 @@ public virtual object Build(object tool, SymmetricType sym_type, Plane sym_plane #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.TransformPointAndOrientation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.TransformPointAndOrientation.md index a7745b4048..61227fd6af 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.TransformPointAndOrientation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.TransformPointAndOrientation.md @@ -1,4 +1,5 @@ -# Class TransformPointAndOrientation +# Class TransformPointAndOrientation + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class TransformPointAndOrientation : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [TransformPointAndOrientation](VM.Managed.Symmetric.TransformPointAndOrientation.md) #### Implements @@ -42,7 +43,7 @@ public virtual object Build(object tool, SymmetricType sym_type, Plane sym_plane #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.TransformThreePoints.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.TransformThreePoints.md index ae1448d34f..ddec625bb0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.TransformThreePoints.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.TransformThreePoints.md @@ -1,4 +1,5 @@ -# Class TransformThreePoints +# Class TransformThreePoints + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class TransformThreePoints : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [TransformThreePoints](VM.Managed.Symmetric.TransformThreePoints.md) #### Implements @@ -42,7 +43,7 @@ public virtual object Build(object tool, SymmetricType sym_type, Plane sym_plane #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.UserSubroutine.Result.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.UserSubroutine.Result.md index a2b5ae7893..5abb37e831 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.UserSubroutine.Result.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.UserSubroutine.Result.md @@ -1,4 +1,5 @@ -# Class UserSubroutine.Result +# Class UserSubroutine.Result + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymSP.dll @@ -9,7 +10,7 @@ public class UserSubroutine.Result : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [UserSubroutine.Result](VM.Managed.Symmetric.UserSubroutine.Result.md) #### Implements @@ -42,7 +43,7 @@ public object Build(object tool, SymmetricType sym_type, Plane sym_plane, Docume #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -60,7 +61,7 @@ update document. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.UserSubroutine.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.UserSubroutine.md index 6c68a7fea0..c9a59ed038 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.UserSubroutine.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.UserSubroutine.md @@ -1,4 +1,5 @@ -# Class UserSubroutine +# Class UserSubroutine + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymSP.dll @@ -9,9 +10,9 @@ public class UserSubroutine : SubEntity, ISymmetricUpdater #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -SubEntity ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/SubEntity.cs) ← [UserSubroutine](VM.Managed.Symmetric.UserSubroutine.md) #### Implements @@ -20,11 +21,11 @@ ISymmetricUpdater #### Inherited Members -SubEntity.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[SubEntity.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/SubEntity.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -72,7 +73,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Variable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Variable.md index 6fd799e963..d9e8cf090c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Variable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.Variable.md @@ -1,4 +1,5 @@ -# Class Variable +# Class Variable + Namespace: [VM.Managed.Symmetric](VM.Managed.Symmetric.md) Assembly: VMSymBase.dll @@ -9,7 +10,7 @@ public class Variable : ISymmetricBuilder #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Variable](VM.Managed.Symmetric.Variable.md) #### Implements @@ -42,7 +43,7 @@ public object Build(object tool, SymmetricType sym_type, Plane sym_plane, Docume #### Parameters -`tool` [object](https://learn.microsoft.com/dotnet/api/system.object) +`tool` object The object. @@ -58,7 +59,7 @@ Plane of symmetric. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The new object of symmetric. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.md index 070dc53030..e1ee99f50b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Symmetric.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.Symmetric +# Namespace VM.Managed.Symmetric + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SymmetricManager.OnlyUpdateName.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SymmetricManager.OnlyUpdateName.md index fc95a9647b..e7cf63a69c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SymmetricManager.OnlyUpdateName.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SymmetricManager.OnlyUpdateName.md @@ -1,4 +1,5 @@ -# Delegate SymmetricManager.OnlyUpdateName +# Delegate SymmetricManager.OnlyUpdateName + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -23,7 +24,7 @@ public delegate bool SymmetricManager.OnlyUpdateName(ObjectBase tool, ObjectBase #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SymmetricManager.SymmetricFactory-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SymmetricManager.SymmetricFactory-1.md index 9fb2ea8e0b..effa2b9103 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SymmetricManager.SymmetricFactory-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SymmetricManager.SymmetricFactory-1.md @@ -1,4 +1,5 @@ -# Class SymmetricManager.SymmetricFactory +# Class SymmetricManager.SymmetricFactory + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -15,7 +16,7 @@ public class SymmetricManager.SymmetricFactory #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SymmetricManager.SymmetricFactory](VM.Managed.SymmetricManager.SymmetricFactory\-1.md) #### Extension Methods @@ -36,7 +37,7 @@ public SymmetricFactory(XmlNodeList nodeInitialInfo) #### Parameters -`nodeInitialInfo` [XmlNodeList](https://learn.microsoft.com/dotnet/api/system.xml.xmlnodelist) +`nodeInitialInfo` XmlNodeList The node initial information. @@ -78,7 +79,7 @@ public void Add(Type type, T value) #### Parameters -`type` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`type` Type The type of symmetric object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SymmetricManager.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SymmetricManager.md index 73f1480271..98bf4afa2a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SymmetricManager.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SymmetricManager.md @@ -1,4 +1,5 @@ -# Class SymmetricManager +# Class SymmetricManager + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,9 +12,9 @@ public sealed class SymmetricManager : SubEntity, IObservableObject, IDisposable #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← [SubEntity](VM.Managed.SubEntity.md) ← @@ -26,7 +27,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -191,7 +192,7 @@ public bool NonSymmetric { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Original @@ -271,7 +272,7 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -285,21 +286,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [b has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -313,7 +314,7 @@ public XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema An that describes the XML representation of the object that is produced by the method and consumed by the method. @@ -327,7 +328,7 @@ protected override void LinkRequestDestroy(object objNotifier, LinkEventArgs arg #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -345,7 +346,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -363,7 +364,7 @@ public void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The stream from which the object is deserialized. @@ -403,13 +404,13 @@ public static bool SetSymmetricDictionary(string fileDir) #### Parameters -`fileDir` [string](https://learn.microsoft.com/dotnet/api/system.string) +`fileDir` string The file directory. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -423,7 +424,7 @@ public override bool SkipUpdateObjectImpl() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UpdateAssembly\(Document, ObjectBase\) @@ -474,7 +475,7 @@ public void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SymmetricType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SymmetricType.md index e51b22be9b..a80852851d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SymmetricType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.SymmetricType.md @@ -1,4 +1,5 @@ -# Enum SymmetricType +# Enum SymmetricType + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.TMatrix.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.TMatrix.md index 49010b3569..552aa515c8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.TMatrix.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.TMatrix.md @@ -1,4 +1,5 @@ -# Class TMatrix +# Class TMatrix + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public sealed class TMatrix : MatrixBase, IOMatrix #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [MatrixBase](VM.Managed.MatrixBase.md) ← [TMatrix](VM.Managed.TMatrix.md) @@ -37,7 +38,7 @@ public TMatrix(double[] arr) #### Parameters -`arr` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arr` double\[\] The data of orientation. @@ -119,9 +120,9 @@ protected TMatrix(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext ## Properties @@ -135,7 +136,7 @@ public virtual double[] Array { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### InverseTransformationMatrix @@ -217,7 +218,7 @@ public double this[uint r, uint c] { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### this\[Coordinate, Coordinate\] @@ -227,7 +228,7 @@ public double this[Coordinate r, Coordinate c] { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### this\[uint\] @@ -259,7 +260,7 @@ public object Clone() #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### GetArray\(\) @@ -269,7 +270,7 @@ public double[] GetArray() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GetDirectionVector\(uint\) @@ -281,7 +282,7 @@ public VectorBase GetDirectionVector(uint axis) #### Parameters -`axis` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`axis` uint The type of axis. @@ -319,9 +320,9 @@ public void GetObjectData(SerializationInfo info, StreamingContext __unnamed001) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo -`__unnamed001` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`__unnamed001` StreamingContext ### GetSchema\(\) @@ -331,7 +332,7 @@ public XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema ### Initialize\(\) @@ -357,7 +358,7 @@ public void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader ### RotateAxisDeg\(VectorBase, double\) @@ -373,7 +374,7 @@ public void RotateAxisDeg(VectorBase axis, double dAngle) The rotation axis. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -387,11 +388,11 @@ public void RotateAxisDeg(uint nCoord, double dAngle) #### Parameters -`nCoord` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nCoord` uint The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -409,7 +410,7 @@ public void RotateAxisDeg(Coordinate c, double dAngle) The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -427,7 +428,7 @@ public void RotateAxisRad(VectorBase axis, double dAngle) The rotation axis. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -441,11 +442,11 @@ public void RotateAxisRad(uint nCoord, double dAngle) #### Parameters -`nCoord` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nCoord` uint The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -463,7 +464,7 @@ public void RotateAxisRad(Coordinate c, double dAngle) The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -477,7 +478,7 @@ public void RotateXDeg(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -491,7 +492,7 @@ public void RotateXRad(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -505,7 +506,7 @@ public void RotateYDeg(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -519,7 +520,7 @@ public void RotateYRad(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -533,7 +534,7 @@ public void RotateZDeg(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -547,7 +548,7 @@ public void RotateZRad(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -561,7 +562,7 @@ public void Set(double[] arr) #### Parameters -`arr` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arr` double\[\] The data of transform @@ -589,7 +590,7 @@ public void SetOrientation(double[] arr) #### Parameters -`arr` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arr` double\[\] The data of orientation. @@ -643,15 +644,15 @@ public void SetOrientationEADeg(RotationAxes ea, double dAlpha, double dBeta, do The type of euler angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of euler angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of euler angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of euler angle. @@ -669,15 +670,15 @@ public void SetOrientationEARad(RotationAxes ea, double dAlpha, double dBeta, do The type of euler angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of euler angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of euler angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of euler angle. @@ -695,15 +696,15 @@ public void SetOrientationFixedAngleDeg(RotationAxes ea, double dAlpha, double d The type of fixed angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of fixed angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of fixed angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of fixed angle. @@ -721,15 +722,15 @@ public void SetOrientationFixedAngleRad(RotationAxes ea, double dAlpha, double d The type of fixed angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of fixed angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of fixed angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of fixed angle. @@ -743,15 +744,15 @@ public void Translate(double dX, double dY, double dZ) #### Parameters -`dX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dX` double The value of X -`dY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dY` double The value of y -`dZ` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dZ` double The value of z @@ -785,7 +786,7 @@ public void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter ### op\_MultiplicationAssignment\(VectorBase, TMatrix\) @@ -835,7 +836,7 @@ public static bool operator ==(TMatrix mat1, TMatrix mat2) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### implicit operator TMatrix\(TMatrix\) @@ -879,7 +880,7 @@ public static bool operator !=(TMatrix mat1, TMatrix mat2) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### operator \*\(VectorBase, TMatrix\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.TransformBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.TransformBase.md index 09c37e81da..582c7c73b1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.TransformBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.TransformBase.md @@ -1,4 +1,5 @@ -# Class TransformBase +# Class TransformBase + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -10,14 +11,14 @@ Getting the information of orientation(OMatrix type) through Orientation propert After picking, Getting information of TransformBase through picker. ```csharp -public class TransformBase : Expression, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IExpression, ITransformBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider +public class TransformBase : Expression, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IExpression, ITransformBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [Expression](VM.Managed.Expression.md) ← [TransformBase](VM.Managed.TransformBase.md) @@ -42,7 +43,8 @@ IObject, ILinkContainer, IOwned, IHasID, -IEventProvider +IEventProvider, +IHasReplaceableEntity #### Inherited Members @@ -106,7 +108,7 @@ IEventProvider [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -137,7 +139,7 @@ public TransformBase(string strValue) #### Parameters -`strValue` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strValue` string The value of Variable(string type). @@ -185,7 +187,7 @@ public virtual bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Orientation @@ -245,7 +247,7 @@ public virtual double[] RotationAngles { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### RotationAxis @@ -305,7 +307,7 @@ public bool UseExpression { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -322,7 +324,27 @@ public virtual XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema + +### HasReplaceableEntity\(IObjectBase\) + +Gets a value indicating whether this instance has replacable entity. + +```csharp +public virtual bool HasReplaceableEntity(IObjectBase oldObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +#### Returns + + bool + +if this instance has replacable entity, the result is true. ### ReadXml\(XmlReader\) @@ -334,10 +356,34 @@ public virtual void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. +### ReplaceEntity\(IObjectBase, IObjectBase\) + +Replace Entity + +```csharp +public virtual bool ReplaceEntity(IObjectBase oldObject, IObjectBase newObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +`newObject` IObjectBase + +The new object + +#### Returns + + bool + +if success, the result is true. + ### WritePosAndOriToXml\(XmlWriter\) Converts an object into its XML representation about pointAndOrientation. @@ -348,7 +394,7 @@ protected void WritePosAndOriToXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized about pointAndOrientation. @@ -362,7 +408,7 @@ public virtual void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.TransformLink.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.TransformLink.md index e13b8b9420..ef324df9cc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.TransformLink.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.TransformLink.md @@ -1,4 +1,5 @@ -# Class TransformLink +# Class TransformLink + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent information of orientation through Design Frame and Design Point. ```csharp -public class TransformLink : TransformBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IExpression, ITransformBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IReservable +public class TransformLink : TransformBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IExpression, ITransformBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasReplaceableEntity, IReservable ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [Expression](VM.Managed.Expression.md) ← [TransformBase](VM.Managed.TransformBase.md) ← @@ -33,6 +34,7 @@ ILinkContainer, IOwned, IHasID, IEventProvider, +IHasReplaceableEntity, IReservable #### Inherited Members @@ -42,6 +44,8 @@ IReservable [TransformBase.ReadXml\(XmlReader\)](VM.Managed.TransformBase.md\#VM\_Managed\_TransformBase\_ReadXml\_System\_Xml\_XmlReader\_), [TransformBase.WriteXml\(XmlWriter\)](VM.Managed.TransformBase.md\#VM\_Managed\_TransformBase\_WriteXml\_System\_Xml\_XmlWriter\_), [TransformBase.GetSchema\(\)](VM.Managed.TransformBase.md\#VM\_Managed\_TransformBase\_GetSchema), +[TransformBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.TransformBase.md\#VM\_Managed\_TransformBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[TransformBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.TransformBase.md\#VM\_Managed\_TransformBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [TransformBase.UseExpression](VM.Managed.TransformBase.md\#VM\_Managed\_TransformBase\_UseExpression), [TransformBase.RotationAngles](VM.Managed.TransformBase.md\#VM\_Managed\_TransformBase\_RotationAngles), [TransformBase.RotationAxis](VM.Managed.TransformBase.md\#VM\_Managed\_TransformBase\_RotationAxis), @@ -114,7 +118,7 @@ IReservable [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -181,7 +185,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LinkTransform @@ -258,7 +262,27 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema + +### HasReplaceableEntity\(IObjectBase\) + +Gets a value indicating whether this instance has replacable entity. + +```csharp +public override bool HasReplaceableEntity(IObjectBase oldObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +#### Returns + + bool + +if this instance has replacable entity, the result is true. ### LinkRequestUpdate\(object, LinkEventArgs\) @@ -270,7 +294,7 @@ protected override void LinkRequestUpdate(object obNotifier, LinkEventArgs arg) #### Parameters -`obNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obNotifier` object `arg` [LinkEventArgs](VM.Managed.LinkEventArgs.md) @@ -286,10 +310,34 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. +### ReplaceEntity\(IObjectBase, IObjectBase\) + +Replace Entity + +```csharp +public override bool ReplaceEntity(IObjectBase oldObject, IObjectBase newObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +`newObject` IObjectBase + +The new object + +#### Returns + + bool + +if success, the result is true. + ### WriteXml\(XmlWriter\) Converts an object into its XML representation. @@ -300,7 +348,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.TransformMatrix.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.TransformMatrix.md index f5f2f46d29..a70de4da5f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.TransformMatrix.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.TransformMatrix.md @@ -1,4 +1,5 @@ -# Class TransformMatrix +# Class TransformMatrix + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the information of transform through TMatrix type. ```csharp -public class TransformMatrix : TransformBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IExpression, ITransformBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider +public class TransformMatrix : TransformBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IExpression, ITransformBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [Expression](VM.Managed.Expression.md) ← [TransformBase](VM.Managed.TransformBase.md) ← @@ -32,7 +33,8 @@ IObject, ILinkContainer, IOwned, IHasID, -IEventProvider +IEventProvider, +IHasReplaceableEntity #### Inherited Members @@ -41,6 +43,8 @@ IEventProvider [TransformBase.ReadXml\(XmlReader\)](VM.Managed.TransformBase.md\#VM\_Managed\_TransformBase\_ReadXml\_System\_Xml\_XmlReader\_), [TransformBase.WriteXml\(XmlWriter\)](VM.Managed.TransformBase.md\#VM\_Managed\_TransformBase\_WriteXml\_System\_Xml\_XmlWriter\_), [TransformBase.GetSchema\(\)](VM.Managed.TransformBase.md\#VM\_Managed\_TransformBase\_GetSchema), +[TransformBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.TransformBase.md\#VM\_Managed\_TransformBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[TransformBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.TransformBase.md\#VM\_Managed\_TransformBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [TransformBase.UseExpression](VM.Managed.TransformBase.md\#VM\_Managed\_TransformBase\_UseExpression), [TransformBase.RotationAngles](VM.Managed.TransformBase.md\#VM\_Managed\_TransformBase\_RotationAngles), [TransformBase.RotationAxis](VM.Managed.TransformBase.md\#VM\_Managed\_TransformBase\_RotationAxis), @@ -113,7 +117,7 @@ IEventProvider [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -168,7 +172,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Orientation @@ -221,7 +225,7 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema ### ReadXml\(XmlReader\) @@ -233,7 +237,7 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -247,7 +251,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.TransformPointAndOrientation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.TransformPointAndOrientation.md index b3aacccda2..807829f00e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.TransformPointAndOrientation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.TransformPointAndOrientation.md @@ -1,4 +1,5 @@ -# Class TransformPointAndOrientation +# Class TransformPointAndOrientation + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the information of transform through point and orientation. ```csharp -public class TransformPointAndOrientation : TransformBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IExpression, ITransformBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider +public class TransformPointAndOrientation : TransformBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IExpression, ITransformBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [Expression](VM.Managed.Expression.md) ← [TransformBase](VM.Managed.TransformBase.md) ← @@ -32,7 +33,8 @@ IObject, ILinkContainer, IOwned, IHasID, -IEventProvider +IEventProvider, +IHasReplaceableEntity #### Inherited Members @@ -41,6 +43,8 @@ IEventProvider [TransformBase.ReadXml\(XmlReader\)](VM.Managed.TransformBase.md\#VM\_Managed\_TransformBase\_ReadXml\_System\_Xml\_XmlReader\_), [TransformBase.WriteXml\(XmlWriter\)](VM.Managed.TransformBase.md\#VM\_Managed\_TransformBase\_WriteXml\_System\_Xml\_XmlWriter\_), [TransformBase.GetSchema\(\)](VM.Managed.TransformBase.md\#VM\_Managed\_TransformBase\_GetSchema), +[TransformBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.TransformBase.md\#VM\_Managed\_TransformBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[TransformBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.TransformBase.md\#VM\_Managed\_TransformBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [TransformBase.UseExpression](VM.Managed.TransformBase.md\#VM\_Managed\_TransformBase\_UseExpression), [TransformBase.RotationAngles](VM.Managed.TransformBase.md\#VM\_Managed\_TransformBase\_RotationAngles), [TransformBase.RotationAxis](VM.Managed.TransformBase.md\#VM\_Managed\_TransformBase\_RotationAxis), @@ -113,7 +117,7 @@ IEventProvider [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -212,7 +216,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Orientation @@ -272,7 +276,7 @@ public override double[] RotationAngles { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### RotationAxis @@ -325,7 +329,27 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema + +### HasReplaceableEntity\(IObjectBase\) + +Gets a value indicating whether this instance has replacable entity. + +```csharp +public override bool HasReplaceableEntity(IObjectBase oldObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +#### Returns + + bool + +if this instance has replacable entity, the result is true. ### LinkRequestUpdate\(object, LinkEventArgs\) @@ -337,7 +361,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -355,10 +379,34 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. +### ReplaceEntity\(IObjectBase, IObjectBase\) + +Replace Entity + +```csharp +public override bool ReplaceEntity(IObjectBase oldObject, IObjectBase newObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +`newObject` IObjectBase + +The new object + +#### Returns + + bool + +if success, the result is true. + ### WriteXml\(XmlWriter\) Converts an object into its XML representation. @@ -369,7 +417,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.TransformThreePoints.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.TransformThreePoints.md index 9366c0fa15..9c4ba9bc2c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.TransformThreePoints.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.TransformThreePoints.md @@ -1,4 +1,5 @@ -# Class TransformThreePoints +# Class TransformThreePoints + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -6,14 +7,14 @@ Assembly: VMAppCore.dll This class is to represent the information of transform through origin, z, and x points. ```csharp -public class TransformThreePoints : TransformBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IExpression, ITransformBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider +public class TransformThreePoints : TransformBase, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IExpression, ITransformBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasReplaceableEntity ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [Expression](VM.Managed.Expression.md) ← [TransformBase](VM.Managed.TransformBase.md) ← @@ -32,7 +33,8 @@ IObject, ILinkContainer, IOwned, IHasID, -IEventProvider +IEventProvider, +IHasReplaceableEntity #### Inherited Members @@ -41,6 +43,8 @@ IEventProvider [TransformBase.ReadXml\(XmlReader\)](VM.Managed.TransformBase.md\#VM\_Managed\_TransformBase\_ReadXml\_System\_Xml\_XmlReader\_), [TransformBase.WriteXml\(XmlWriter\)](VM.Managed.TransformBase.md\#VM\_Managed\_TransformBase\_WriteXml\_System\_Xml\_XmlWriter\_), [TransformBase.GetSchema\(\)](VM.Managed.TransformBase.md\#VM\_Managed\_TransformBase\_GetSchema), +[TransformBase.HasReplaceableEntity\(IObjectBase\)](VM.Managed.TransformBase.md\#VM\_Managed\_TransformBase\_HasReplaceableEntity\_VM\_Models\_Pre\_IObjectBase\_), +[TransformBase.ReplaceEntity\(IObjectBase, IObjectBase\)](VM.Managed.TransformBase.md\#VM\_Managed\_TransformBase\_ReplaceEntity\_VM\_Models\_Pre\_IObjectBase\_VM\_Models\_Pre\_IObjectBase\_), [TransformBase.UseExpression](VM.Managed.TransformBase.md\#VM\_Managed\_TransformBase\_UseExpression), [TransformBase.RotationAngles](VM.Managed.TransformBase.md\#VM\_Managed\_TransformBase\_RotationAngles), [TransformBase.RotationAxis](VM.Managed.TransformBase.md\#VM\_Managed\_TransformBase\_RotationAxis), @@ -113,7 +117,7 @@ IEventProvider [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -176,7 +180,7 @@ public override bool IsParameterized { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Orientation @@ -265,7 +269,27 @@ public override XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema + +### HasReplaceableEntity\(IObjectBase\) + +Gets a value indicating whether this instance has replacable entity. + +```csharp +public override bool HasReplaceableEntity(IObjectBase oldObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +#### Returns + + bool + +if this instance has replacable entity, the result is true. ### LinkRequestUpdate\(object, LinkEventArgs\) @@ -277,7 +301,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -295,10 +319,34 @@ public override void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. +### ReplaceEntity\(IObjectBase, IObjectBase\) + +Replace Entity + +```csharp +public override bool ReplaceEntity(IObjectBase oldObject, IObjectBase newObject) +``` + +#### Parameters + +`oldObject` IObjectBase + +The old object + +`newObject` IObjectBase + +The new object + +#### Returns + + bool + +if success, the result is true. + ### WriteXml\(XmlWriter\) Converts an object into its XML representation. @@ -309,7 +357,7 @@ public override void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.UnverifySavedFileExeption.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.UnverifySavedFileExeption.md index 3722ad9769..cd2cf1d68c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.UnverifySavedFileExeption.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.UnverifySavedFileExeption.md @@ -1,4 +1,5 @@ -# Class UnverifySavedFileExeption +# Class UnverifySavedFileExeption + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public class UnverifySavedFileExeption : Exception #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Exception](https://learn.microsoft.com/dotnet/api/system.exception) ← +object ← +Exception ← [UnverifySavedFileExeption](VM.Managed.UnverifySavedFileExeption.md) #### Extension Methods @@ -33,7 +34,7 @@ public UnverifySavedFileExeption(string strMessage) #### Parameters -`strMessage` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMessage` string The error message. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Utility.Convert.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Utility.Convert.md index 760d62222f..de764a2d00 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Utility.Convert.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Utility.Convert.md @@ -1,4 +1,5 @@ -# Class Convert +# Class Convert + Namespace: [VM.Managed.Utility](VM.Managed.Utility.md) Assembly: VM.dll @@ -11,7 +12,7 @@ public static class Convert #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Convert](VM.Managed.Utility.Convert.md) #### Extension Methods @@ -32,7 +33,7 @@ public static double DToR { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### RToD @@ -44,7 +45,7 @@ public static double RToD { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SignificantFigure @@ -56,7 +57,7 @@ public static int SignificantFigure { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -68,11 +69,11 @@ public static Color GetContrastColor(Color baseColor) #### Parameters -`baseColor` [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) +`baseColor` Color #### Returns - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### ToString\(double\) @@ -84,13 +85,13 @@ public static string ToString(double dVal) #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The val. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string A that represents this instance. @@ -108,7 +109,7 @@ public static string ToString(Vector vec) #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string A that represents this instance. @@ -122,17 +123,17 @@ public static string ToString(double dVal, double dConvertFactor) #### Parameters -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double The val. -`dConvertFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dConvertFactor` double The convert factor. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string A that represents this instance. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Utility.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Utility.md index 017d17de39..94c4146ba6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Utility.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Utility.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed.Utility +# Namespace VM.Managed.Utility + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Variable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Variable.md index 99f13ea90d..d6c6b95acd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Variable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Variable.md @@ -1,4 +1,5 @@ -# Class Variable +# Class Variable + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -12,9 +13,9 @@ public class Variable : Expression, IObservableObject, IDisposableObject, ILinka #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← [LinkContainer](VM.Managed.LinkContainer.md) ← [Expression](VM.Managed.Expression.md) ← [Variable](VM.Managed.Variable.md) @@ -96,7 +97,7 @@ IEventProvider [LinkContainer.OnDestroying](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnDestroying), [LinkContainer.OnUpdate](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdate), [LinkContainer.OnUpdating](VM.Managed.LinkContainer.md\#VM\_Managed\_LinkContainer\_OnUpdating), -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -127,11 +128,11 @@ public Variable(double dValue, bool bRoundUp) #### Parameters -`dValue` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dValue` double The value of Variable(double type). -`bRoundUp` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bRoundUp` bool Determines whether is value without limiting the precision. @@ -145,7 +146,7 @@ public Variable(double dValue) #### Parameters -`dValue` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dValue` double The value of Variable(double type). This value will be rounded. @@ -159,7 +160,7 @@ public Variable(string strValue) #### Parameters -`strValue` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strValue` string The value of Variable(string type). @@ -181,7 +182,7 @@ public bool DontUpdateByReferenceObject { set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsSimpleValue @@ -193,7 +194,7 @@ public virtual bool IsSimpleValue { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### PreciseValue @@ -205,7 +206,7 @@ public double PreciseValue { set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Value @@ -217,7 +218,7 @@ public virtual double Value { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -229,7 +230,7 @@ public virtual object Clone() #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### ConvertToValue\(string\) @@ -241,13 +242,13 @@ protected override bool ConvertToValue(string strValue) #### Parameters -`strValue` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strValue` string The string. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetFullName\(\) @@ -257,7 +258,7 @@ public virtual string GetFullName() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetNumericValue\(\) @@ -269,7 +270,7 @@ protected override double GetNumericValue() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetSchema\(\) @@ -284,7 +285,7 @@ public virtual XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema ### GetValue\(string\) @@ -294,11 +295,11 @@ public static double GetValue(string strValue) #### Parameters -`strValue` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strValue` string #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### LinkRequestDestroying\(object, LinkEventArgs\) @@ -310,7 +311,7 @@ protected override void LinkRequestDestroying(object obNotifier, LinkEventArgs a #### Parameters -`obNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obNotifier` object `arg` [LinkEventArgs](VM.Managed.LinkEventArgs.md) @@ -326,7 +327,7 @@ protected override void LinkRequestUpdate(object objNotifier, LinkEventArgs arg) #### Parameters -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The linked object. @@ -344,7 +345,7 @@ protected override void ParseToValue(char* wstrValue) #### Parameters -`wstrValue` [char](https://learn.microsoft.com/dotnet/api/system.char)\* +`wstrValue` char\* The string. @@ -358,7 +359,7 @@ public virtual void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -372,7 +373,7 @@ protected override void SetDefaultString(ref string strValue) #### Parameters -`strValue` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strValue` string The value holds default string. @@ -386,7 +387,7 @@ public virtual void SetExpression(string strValue) #### Parameters -`strValue` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strValue` string The value. @@ -400,7 +401,7 @@ public override void UpdateByReferenceObject(object obj, LinkEventArgs arg) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The reference object. @@ -418,7 +419,7 @@ public virtual void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. @@ -440,7 +441,7 @@ The Variable. #### Returns - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### implicit operator Variable\(ExpressionValueVariable\) @@ -452,7 +453,7 @@ public static implicit operator Variable(ExpressionValueVariable expressionValue #### Parameters -`expressionValue` ExpressionValueVariable +`expressionValue` [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) The ExpressionValue. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.VariableMatrix.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.VariableMatrix.md index 657bd8fdc8..ecbf58c8be 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.VariableMatrix.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.VariableMatrix.md @@ -1,4 +1,5 @@ -# Class VariableMatrix +# Class VariableMatrix + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -11,9 +12,9 @@ public class VariableMatrix : LinkContainer, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [VariableMatrix](VM.Managed.VariableMatrix.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -114,11 +115,11 @@ public VariableMatrix(int nRow, int nColumn) #### Parameters -`nRow` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nRow` int The n row. -`nColumn` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nColumn` int The n column. @@ -132,7 +133,7 @@ public int ColumnCount { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Matrix @@ -154,7 +155,7 @@ public int RowCount { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -168,7 +169,7 @@ public string GetAllValue() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetArray\(\) @@ -180,7 +181,7 @@ public ExpressionValueVariable[,] GetArray() #### Returns - ExpressionValueVariable\[,\] + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs)\[,\] ### GetValueArray\(\) @@ -192,7 +193,7 @@ public double[,] GetValueArray() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[,\] + double\[,\] ### GetVariable\(int, int\) @@ -204,11 +205,11 @@ public Variable GetVariable(int nRow, int nColumn) #### Parameters -`nRow` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nRow` int The n row. -`nColumn` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nColumn` int The n column. @@ -230,11 +231,11 @@ public void SetData(Variable value, int nRow, int nColumn) The value. -`nRow` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nRow` int The n row. -`nColumn` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nColumn` int The n column. @@ -248,7 +249,7 @@ public void SetValueArray(double[,] ardValue) #### Parameters -`ardValue` [double](https://learn.microsoft.com/dotnet/api/system.double)\[,\] +`ardValue` double\[,\] The values. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Vector.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Vector.md index c5c30689d2..92a59dfb30 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Vector.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.Vector.md @@ -1,4 +1,5 @@ -# Class Vector +# Class Vector + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public sealed class Vector : VectorBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [VectorBase](VM.Managed.VectorBase.md) ← [Vector](VM.Managed.Vector.md) @@ -61,7 +62,7 @@ public Vector(double[] arVec) #### Parameters -`arVec` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arVec` double\[\] The arVec. @@ -75,15 +76,15 @@ public Vector(double dX, double dY, double dZ) #### Parameters -`dX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dX` double The X. -`dY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dY` double The Y. -`dZ` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dZ` double The Z. @@ -119,11 +120,11 @@ protected Vector(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context. @@ -139,7 +140,7 @@ public override double Magnitude { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### X @@ -151,7 +152,7 @@ public override double X { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y @@ -163,7 +164,7 @@ public override double Y { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Z @@ -175,7 +176,7 @@ public override double Z { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### this\[uint\] @@ -185,7 +186,7 @@ public override double this[uint n] { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### this\[Coordinate\] @@ -195,7 +196,7 @@ public override double this[Coordinate n] { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -209,7 +210,7 @@ public override sealed object Clone() #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The clone. @@ -249,7 +250,7 @@ The vec. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double Result of product @@ -263,7 +264,7 @@ public override sealed double[] GetArray() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] The array. @@ -283,7 +284,7 @@ The vec. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double The distance @@ -297,11 +298,11 @@ public override sealed void GetObjectData(SerializationInfo info, StreamingConte #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo The info. -`__unnamed001` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`__unnamed001` StreamingContext ### GetOrthoVector\(VectorBase\) @@ -350,7 +351,7 @@ public XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema ### MakeUnitVector\(\) @@ -370,7 +371,7 @@ public void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream from which the object is deserialized. @@ -384,15 +385,15 @@ public override sealed void Set(double dX, double dY, double dZ) #### Parameters -`dX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dX` double The X. -`dY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dY` double The Y. -`dZ` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dZ` double The Z. @@ -406,7 +407,7 @@ public override sealed void Set(double[] arr) #### Parameters -`arr` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arr` double\[\] The arr. @@ -434,7 +435,7 @@ public void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The XmlWriter stream to which the object is serialized. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.VectorBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.VectorBase.md index 83d5091563..49510861ae 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.VectorBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.VectorBase.md @@ -1,4 +1,5 @@ -# Class VectorBase +# Class VectorBase + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public abstract class VectorBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [VectorBase](VM.Managed.VectorBase.md) #### Derived @@ -44,7 +45,7 @@ public abstract double Magnitude { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### X @@ -56,7 +57,7 @@ public abstract double X { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y @@ -68,7 +69,7 @@ public abstract double Y { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Z @@ -80,7 +81,7 @@ public abstract double Z { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### this\[uint\] @@ -90,7 +91,7 @@ public abstract double this[uint n] { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### this\[Coordinate\] @@ -100,7 +101,7 @@ public abstract double this[Coordinate n] { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -114,7 +115,7 @@ public abstract object Clone() #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The clone. @@ -154,7 +155,7 @@ The vec. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double Result of product @@ -166,11 +167,11 @@ public override bool Equals(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetArray\(\) @@ -182,7 +183,7 @@ public abstract double[] GetArray() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] The array. @@ -202,7 +203,7 @@ The vec. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double The distance @@ -216,9 +217,9 @@ public virtual void GetObjectData(SerializationInfo A_0, StreamingContext A_1) #### Parameters -`A_0` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`A_0` SerializationInfo -`A_1` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`A_1` StreamingContext ### GetOrthoVector\(VectorBase\) @@ -272,15 +273,15 @@ public abstract void Set(double dX, double dY, double dZ) #### Parameters -`dX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dX` double The X. -`dY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dY` double The Y. -`dZ` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dZ` double The Z. @@ -294,7 +295,7 @@ public abstract void Set(double[] arr) #### Parameters -`arr` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arr` double\[\] The arr. @@ -320,7 +321,7 @@ public override string ToString() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### op\_AdditionAssignment\(VectorBase, VectorBase\) @@ -348,7 +349,7 @@ public static VectorBase op_DivisionAssignment(VectorBase vec1, double dVal) `vec1` [VectorBase](VM.Managed.VectorBase.md) -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double #### Returns @@ -364,7 +365,7 @@ public static VectorBase op_MultiplicationAssignment(VectorBase vec1, double dVa `vec1` [VectorBase](VM.Managed.VectorBase.md) -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double #### Returns @@ -430,7 +431,7 @@ public static Vector operator /(VectorBase vec1, double dVal) `vec1` [VectorBase](VM.Managed.VectorBase.md) -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double #### Returns @@ -450,7 +451,7 @@ public static bool operator ==(VectorBase vec1, VectorBase vec2) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### implicit operator VectorBase\(Vector\) @@ -494,7 +495,7 @@ public static bool operator !=(VectorBase vec1, VectorBase vec2) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### operator \*\(VectorBase, double\) @@ -506,7 +507,7 @@ public static Vector operator *(VectorBase vec1, double dVal) `vec1` [VectorBase](VM.Managed.VectorBase.md) -`dVal` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dVal` double #### Returns diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.VerifiedResult.ResultType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.VerifiedResult.ResultType.md index daa1b3992c..70fffc20dd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.VerifiedResult.ResultType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.VerifiedResult.ResultType.md @@ -1,4 +1,5 @@ -# Enum VerifiedResult.ResultType +# Enum VerifiedResult.ResultType + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.VerifiedResult.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.VerifiedResult.md index 78477d89f8..44898c4a9b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.VerifiedResult.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.VerifiedResult.md @@ -1,4 +1,5 @@ -# Class VerifiedResult +# Class VerifiedResult + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class VerifiedResult #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [VerifiedResult](VM.Managed.VerifiedResult.md) #### Extension Methods @@ -42,7 +43,7 @@ public int Level { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### TypeOfResult @@ -82,7 +83,7 @@ public string[] GetAllErrors() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] The error list. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.View.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.View.md index 7e5e908cfa..ad0cfc8404 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.View.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.View.md @@ -1,4 +1,5 @@ -# Class View +# Class View + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public abstract class View #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [View](VM.Managed.View.md) #### Derived @@ -72,7 +73,7 @@ public virtual void Activate(bool A_0) #### Parameters -`A_0` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`A_0` bool ### Close\(\) @@ -90,7 +91,7 @@ protected virtual void Dispose(bool A_0) #### Parameters -`A_0` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`A_0` bool ### Dispose\(\) @@ -116,9 +117,9 @@ public virtual void OnLButtonDblClk(uint A_0, Point A_1) #### Parameters -`A_0` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`A_0` uint -`A_1` [Point](https://learn.microsoft.com/dotnet/api/system.drawing.point) +`A_1` Point ### OnLButtonDown\(uint, Point\) @@ -130,9 +131,9 @@ public virtual void OnLButtonDown(uint A_0, Point A_1) #### Parameters -`A_0` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`A_0` uint -`A_1` [Point](https://learn.microsoft.com/dotnet/api/system.drawing.point) +`A_1` Point ### OnLButtonUp\(uint, Point\) @@ -144,9 +145,9 @@ public virtual void OnLButtonUp(uint A_0, Point A_1) #### Parameters -`A_0` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`A_0` uint -`A_1` [Point](https://learn.microsoft.com/dotnet/api/system.drawing.point) +`A_1` Point ### OnMButtonDown\(uint, Point\) @@ -158,9 +159,9 @@ public virtual void OnMButtonDown(uint A_0, Point A_1) #### Parameters -`A_0` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`A_0` uint -`A_1` [Point](https://learn.microsoft.com/dotnet/api/system.drawing.point) +`A_1` Point ### OnMButtonUp\(uint, Point\) @@ -172,9 +173,9 @@ public virtual void OnMButtonUp(uint A_0, Point A_1) #### Parameters -`A_0` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`A_0` uint -`A_1` [Point](https://learn.microsoft.com/dotnet/api/system.drawing.point) +`A_1` Point ### OnMouseMove\(uint, Point\) @@ -186,9 +187,9 @@ public virtual void OnMouseMove(uint A_0, Point A_1) #### Parameters -`A_0` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`A_0` uint -`A_1` [Point](https://learn.microsoft.com/dotnet/api/system.drawing.point) +`A_1` Point ### OnMouseWheel\(uint, short, Point\) @@ -200,11 +201,11 @@ public virtual void OnMouseWheel(uint A_0, short A_1, Point A_2) #### Parameters -`A_0` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`A_0` uint -`A_1` [short](https://learn.microsoft.com/dotnet/api/system.int16) +`A_1` short -`A_2` [Point](https://learn.microsoft.com/dotnet/api/system.drawing.point) +`A_2` Point ### OnRButtonDown\(uint, Point\) @@ -216,9 +217,9 @@ public virtual void OnRButtonDown(uint A_0, Point A_1) #### Parameters -`A_0` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`A_0` uint -`A_1` [Point](https://learn.microsoft.com/dotnet/api/system.drawing.point) +`A_1` Point ### OnRButtonUp\(uint, Point\) @@ -230,9 +231,9 @@ public virtual void OnRButtonUp(uint A_0, Point A_1) #### Parameters -`A_0` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`A_0` uint -`A_1` [Point](https://learn.microsoft.com/dotnet/api/system.drawing.point) +`A_1` Point ### Resize\(int, int\) @@ -244,11 +245,11 @@ public abstract void Resize(int nWidth, int nHeight) #### Parameters -`nWidth` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nWidth` int The width. -`nHeight` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nHeight` int The height. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.View3D.CursorMode.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.View3D.CursorMode.md index e7d2ccd198..104bdc9faa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.View3D.CursorMode.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.View3D.CursorMode.md @@ -1,4 +1,5 @@ -# Enum View3D.CursorMode +# Enum View3D.CursorMode + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.View3D.RenderingMode.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.View3D.RenderingMode.md index 095000ba5e..fbde4d3c0a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.View3D.RenderingMode.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.View3D.RenderingMode.md @@ -1,4 +1,5 @@ -# Enum View3D.RenderingMode +# Enum View3D.RenderingMode + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.View3D.ViewBackgroundColor.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.View3D.ViewBackgroundColor.md index e43e2eded4..b13ba54fb5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.View3D.ViewBackgroundColor.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.View3D.ViewBackgroundColor.md @@ -1,4 +1,5 @@ -# Class View3D.ViewBackgroundColor +# Class View3D.ViewBackgroundColor + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public abstract class View3D.ViewBackgroundColor #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [View3D.ViewBackgroundColor](VM.Managed.View3D.ViewBackgroundColor.md) #### Extension Methods @@ -40,7 +41,7 @@ public abstract Color Bottom { get; set; } #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### Top @@ -52,5 +53,5 @@ public abstract Color Top { get; set; } #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.View3D.ViewMode.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.View3D.ViewMode.md index d9cf6c5d77..66550d44f7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.View3D.ViewMode.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.View3D.ViewMode.md @@ -1,4 +1,5 @@ -# Enum View3D.ViewMode +# Enum View3D.ViewMode + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.View3D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.View3D.md index 1680f38174..3ee76d9b8e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.View3D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.View3D.md @@ -1,4 +1,5 @@ -# Class View3D +# Class View3D + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class View3D : HandledView #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [View](VM.Managed.View.md) ← [HandledView](VM.Managed.HandledView.md) ← [View3D](VM.Managed.View3D.md) @@ -59,7 +60,7 @@ public View3D(UIntPtr handleView, Document doc) #### Parameters -`handleView` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`handleView` UIntPtr The view handle. @@ -87,7 +88,7 @@ public static bool g_bAdjacent #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Properties @@ -111,7 +112,7 @@ public virtual bool IsPropertySupport { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Perspective @@ -123,7 +124,7 @@ public bool Perspective { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RenderMode @@ -147,7 +148,7 @@ public bool Shadow { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -161,7 +162,7 @@ public override void Activate(bool bActivate) #### Parameters -`bActivate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bActivate` bool ### Close\(\) @@ -180,7 +181,7 @@ protected override void Dispose(bool A_0) #### Parameters -`A_0` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`A_0` bool ### Draw\(\) @@ -230,7 +231,7 @@ public virtual void GetData(XmlNode writer) #### Parameters -`writer` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`writer` XmlNode The writer. @@ -254,7 +255,7 @@ The max value of bounding box. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetPopupMenuResult\(\) @@ -266,7 +267,7 @@ public int GetPopupMenuResult() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int The result. @@ -280,7 +281,7 @@ public int GetSpecialMenuResult() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int The result. @@ -294,7 +295,7 @@ public bool GetUseFaceNormal() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool The use. @@ -308,7 +309,7 @@ public bool IsDefaultOperation() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if default; otherwise, false. @@ -330,9 +331,9 @@ public override void OnLButtonDblClk(uint nFlags, Point point) #### Parameters -`nFlags` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nFlags` uint -`point` [Point](https://learn.microsoft.com/dotnet/api/system.drawing.point) +`point` Point ### OnLButtonDown\(uint, Point\) @@ -344,9 +345,9 @@ public override void OnLButtonDown(uint nFlags, Point point) #### Parameters -`nFlags` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nFlags` uint -`point` [Point](https://learn.microsoft.com/dotnet/api/system.drawing.point) +`point` Point ### OnLButtonUp\(uint, Point\) @@ -358,9 +359,9 @@ public override void OnLButtonUp(uint nFlags, Point point) #### Parameters -`nFlags` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nFlags` uint -`point` [Point](https://learn.microsoft.com/dotnet/api/system.drawing.point) +`point` Point ### OnMButtonDown\(uint, Point\) @@ -372,9 +373,9 @@ public override void OnMButtonDown(uint nFlags, Point point) #### Parameters -`nFlags` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nFlags` uint -`point` [Point](https://learn.microsoft.com/dotnet/api/system.drawing.point) +`point` Point ### OnMButtonUp\(uint, Point\) @@ -386,9 +387,9 @@ public override void OnMButtonUp(uint nFlags, Point point) #### Parameters -`nFlags` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nFlags` uint -`point` [Point](https://learn.microsoft.com/dotnet/api/system.drawing.point) +`point` Point ### OnMouseMove\(uint, Point\) @@ -400,9 +401,9 @@ public override void OnMouseMove(uint nFlags, Point point) #### Parameters -`nFlags` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nFlags` uint -`point` [Point](https://learn.microsoft.com/dotnet/api/system.drawing.point) +`point` Point ### OnMouseWheel\(uint, short, Point\) @@ -414,11 +415,11 @@ public override void OnMouseWheel(uint nFlags, short zDelta, Point pt) #### Parameters -`nFlags` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nFlags` uint -`zDelta` [short](https://learn.microsoft.com/dotnet/api/system.int16) +`zDelta` short -`pt` [Point](https://learn.microsoft.com/dotnet/api/system.drawing.point) +`pt` Point ### OnRButtonDown\(uint, Point\) @@ -430,9 +431,9 @@ public override void OnRButtonDown(uint nFlags, Point point) #### Parameters -`nFlags` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nFlags` uint -`point` [Point](https://learn.microsoft.com/dotnet/api/system.drawing.point) +`point` Point ### OnRButtonUp\(uint, Point\) @@ -444,9 +445,9 @@ public override void OnRButtonUp(uint nFlags, Point point) #### Parameters -`nFlags` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nFlags` uint -`point` [Point](https://learn.microsoft.com/dotnet/api/system.drawing.point) +`point` Point ### Resize\(int, int\) @@ -458,11 +459,11 @@ public override void Resize(int nWidth, int nHeight) #### Parameters -`nWidth` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nWidth` int The width. -`nHeight` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nHeight` int The height. @@ -476,7 +477,7 @@ public virtual void SetData(XmlNode reader) #### Parameters -`reader` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`reader` XmlNode The reader. @@ -488,7 +489,7 @@ public void SetPopupMenuResult(int nResult) #### Parameters -`nResult` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nResult` int ### SetSpecialMenuResult\(int\) @@ -500,7 +501,7 @@ public void SetSpecialMenuResult(int nResult) #### Parameters -`nResult` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nResult` int The result. @@ -514,7 +515,7 @@ public void SetSurfaceTolerance(double dSurfaceTolerance) #### Parameters -`dSurfaceTolerance` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dSurfaceTolerance` double The surface tolerance. @@ -528,7 +529,7 @@ public void SetUseFaceNormal(bool bNormal) #### Parameters -`bNormal` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bNormal` bool The use. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.View3DSpecialFit.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.View3DSpecialFit.md index f3bae7f10a..a4b7f8bfe8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.View3DSpecialFit.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.View3DSpecialFit.md @@ -1,4 +1,5 @@ -# Class View3DSpecialFit +# Class View3DSpecialFit + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,7 +12,7 @@ public class View3DSpecialFit : View3D, ISpecialFitView #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [View](VM.Managed.View.md) ← [HandledView](VM.Managed.HandledView.md) ← [View3D](VM.Managed.View3D.md) ← @@ -98,7 +99,7 @@ public View3DSpecialFit(UIntPtr handleView, Document doc) #### Parameters -`handleView` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`handleView` UIntPtr The view handle. @@ -117,7 +118,7 @@ protected override void Dispose(bool A_0) #### Parameters -`A_0` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`A_0` bool ### \~View3DSpecialFit\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ViewPlane.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ViewPlane.md index 8433fe7f58..42a3baa70b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ViewPlane.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ViewPlane.md @@ -1,4 +1,5 @@ -# Enum ViewPlane +# Enum ViewPlane + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.VisibleEntity-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.VisibleEntity-1.md index 9032282c7f..249c75662e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.VisibleEntity-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.VisibleEntity-1.md @@ -1,4 +1,5 @@ -# Class VisibleEntity +# Class VisibleEntity + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMObjBase.dll @@ -13,9 +14,9 @@ public abstract class VisibleEntity : Entity, IObservableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← @@ -30,7 +31,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -182,7 +183,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -221,7 +222,7 @@ protected VisibleEntity(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the entity. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.WrapperStream.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.WrapperStream.md index 120f1d1670..80228d49c8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.WrapperStream.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.WrapperStream.md @@ -1,4 +1,5 @@ -# Class WrapperStream +# Class WrapperStream + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,9 +12,9 @@ public class WrapperStream : Stream #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[MarshalByRefObject](https://learn.microsoft.com/dotnet/api/system.marshalbyrefobject) ← -[Stream](https://learn.microsoft.com/dotnet/api/system.io.stream) ← +object ← +MarshalByRefObject ← +Stream ← [WrapperStream](VM.Managed.WrapperStream.md) #### Extension Methods @@ -34,15 +35,15 @@ public WrapperStream(string strFileName, FileMode mode, string comment) #### Parameters -`strFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFileName` string Name of the string file. -`mode` [FileMode](https://learn.microsoft.com/dotnet/api/system.io.filemode) +`mode` FileMode The mode. -`comment` [string](https://learn.microsoft.com/dotnet/api/system.string) +`comment` string The comment. @@ -58,7 +59,7 @@ public override bool CanRead { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CanSeek @@ -70,7 +71,7 @@ public override bool CanSeek { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CanWrite @@ -82,7 +83,7 @@ public override bool CanWrite { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Comment @@ -94,7 +95,7 @@ public string Comment { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Length @@ -106,7 +107,7 @@ public override long Length { get; } #### Property Value - [long](https://learn.microsoft.com/dotnet/api/system.int64) + long ### PointerSize @@ -118,7 +119,7 @@ public long PointerSize { get; } #### Property Value - [long](https://learn.microsoft.com/dotnet/api/system.int64) + long ### Position @@ -130,7 +131,7 @@ public override long Position { get; set; } #### Property Value - [long](https://learn.microsoft.com/dotnet/api/system.int64) + long ## Methods @@ -160,21 +161,21 @@ public override int Read(byte[] buffer, int offset, int count) #### Parameters -`buffer` [byte](https://learn.microsoft.com/dotnet/api/system.byte)\[\] +`buffer` byte\[\] The buffer. -`offset` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`offset` int The offset. -`count` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`count` int The count. #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Seek\(long, SeekOrigin\) @@ -186,17 +187,17 @@ public override long Seek(long offset, SeekOrigin origin) #### Parameters -`offset` [long](https://learn.microsoft.com/dotnet/api/system.int64) +`offset` long The offset. -`origin` [SeekOrigin](https://learn.microsoft.com/dotnet/api/system.io.seekorigin) +`origin` SeekOrigin The origin. #### Returns - [long](https://learn.microsoft.com/dotnet/api/system.int64) + long ### SetLength\(long\) @@ -208,7 +209,7 @@ public override void SetLength(long len) #### Parameters -`len` [long](https://learn.microsoft.com/dotnet/api/system.int64) +`len` long The length. @@ -222,15 +223,15 @@ public override void Write(byte[] buffer, int offset, int count) #### Parameters -`buffer` [byte](https://learn.microsoft.com/dotnet/api/system.byte)\[\] +`buffer` byte\[\] The buffer. -`offset` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`offset` int The offset. -`count` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`count` int The count. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ZeroKeyWhenAddDocExeption.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ZeroKeyWhenAddDocExeption.md index 5ba1b10b17..340d0e7310 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ZeroKeyWhenAddDocExeption.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.ZeroKeyWhenAddDocExeption.md @@ -1,4 +1,5 @@ -# Class ZeroKeyWhenAddDocExeption +# Class ZeroKeyWhenAddDocExeption + Namespace: [VM.Managed](VM.Managed.md) Assembly: VMAppCore.dll @@ -11,8 +12,8 @@ public class ZeroKeyWhenAddDocExeption : Exception #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Exception](https://learn.microsoft.com/dotnet/api/system.exception) ← +object ← +Exception ← [ZeroKeyWhenAddDocExeption](VM.Managed.ZeroKeyWhenAddDocExeption.md) #### Extension Methods @@ -33,7 +34,7 @@ public ZeroKeyWhenAddDocExeption(string strMessage) #### Parameters -`strMessage` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strMessage` string The error message. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.md index cb3bf7602a..185e0abd0a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Managed.md @@ -1,4 +1,5 @@ -# Namespace VM.Managed +# Namespace VM.Managed + ### Namespaces @@ -896,14 +897,14 @@ This class is to represent the zero key exeption when entity is adding to docume This class is to represent the converted Key. - [ObjectBase.Destroy](VM.Managed.ObjectBase.Destroy.md) - -This class is to represent the destroy event. - [LinkContainer.Destroy](VM.Managed.LinkContainer.Destroy.md) This class is to represent the linked object's destroy evnet builder. + [ObjectBase.Destroy](VM.Managed.ObjectBase.Destroy.md) + +This class is to represent the destroy event. + [InterfaceManager.InterfaceInfo](VM.Managed.InterfaceManager.InterfaceInfo.md) This struct is to represent interface info. @@ -924,14 +925,14 @@ This class is to represent the none event. This class is to represent the linked object's none evnet builder. - [ObjectBase.Update](VM.Managed.ObjectBase.Update.md) - -This class is to represent the update event. - [LinkContainer.Update](VM.Managed.LinkContainer.Update.md) This class is to represent the linked object's update evnet builder. + [ObjectBase.Update](VM.Managed.ObjectBase.Update.md) + +This class is to represent the update event. + ### Interfaces [IAssemblyOwner](VM.Managed.IAssemblyOwner.md) @@ -1264,10 +1265,6 @@ Interface for the chained system compatibility. This interface is to represent the generic linked object. - [IUCControl](VM.Managed.IUCControl.md) - -This interface is to represent the property document. - [IUnEditableSubEnttity](VM.Managed.IUnEditableSubEnttity.md) This interface is to represent the uneditable subentity. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.MemberItem-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.MemberItem-1.md index 66c6a2433f..83183e1ec4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.MemberItem-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.MemberItem-1.md @@ -1,4 +1,5 @@ -# Class MemberItem +# Class MemberItem + Namespace: [VM](VM.md) Assembly: VM.dll @@ -13,7 +14,7 @@ public abstract class MemberItem where TDescriptor : MemberDescript #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [MemberItem](VM.MemberItem\-1.md) #### Extension Methods @@ -44,7 +45,7 @@ public IEnumerable Attributes { get; } #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Attribute](https://learn.microsoft.com/dotnet/api/system.attribute)\> + IEnumerable ### MemberDescriptor @@ -66,7 +67,7 @@ public bool HasAttribute() where T : Attribute #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Type Parameters @@ -84,7 +85,7 @@ public bool TryGetAttributeInstance(out T attribute) where T : Attribute #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Type Parameters diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.CategoryType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.CategoryType.md index 5da15ba171..e24a3da0ad 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.CategoryType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.CategoryType.md @@ -1,4 +1,5 @@ -# Enum CategoryType +# Enum CategoryType + Namespace: [VM.Models](VM.Models.md) Assembly: VM.Models.Project.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.CommandStepItem.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.CommandStepItem.md index 70fe574ae0..64a3114097 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.CommandStepItem.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.CommandStepItem.md @@ -1,4 +1,5 @@ -# Class CommandStepItem +# Class CommandStepItem + Namespace: [VM.Models](VM.Models.md) Assembly: VM.Models.Project.dll @@ -9,7 +10,7 @@ public abstract class CommandStepItem : ObservableObject, IObservableObject, IDi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← [CommandStepItem](VM.Models.CommandStepItem.md) @@ -61,7 +62,7 @@ public ICommand Command { get; protected set; } #### Property Value - [ICommand](https://learn.microsoft.com/dotnet/api/system.windows.input.icommand) + ICommand ### DisplayName @@ -71,7 +72,7 @@ public string DisplayName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Icon @@ -81,7 +82,7 @@ public object Icon { get; protected set; } #### Property Value - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### IsEnabled @@ -91,7 +92,7 @@ public bool IsEnabled { get; protected set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsVisible @@ -101,7 +102,7 @@ public bool IsVisible { get; protected set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -111,7 +112,7 @@ public abstract string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Parent @@ -131,7 +132,7 @@ public string ToolTip { get; protected set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.BeamCrossSectionShapes.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.BeamCrossSectionShapes.md index f350a1d657..39be2bfcca 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.BeamCrossSectionShapes.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.BeamCrossSectionShapes.md @@ -1,4 +1,5 @@ -# Enum BeamCrossSectionShapes +# Enum BeamCrossSectionShapes + Namespace: [VM.Models.FE.Mesh](VM.Models.FE.Mesh.md) Assembly: VM.Models.FE.Mesh.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.ElementTypes.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.ElementTypes.md index ce6607dbf0..cd71aa1d93 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.ElementTypes.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.ElementTypes.md @@ -1,4 +1,5 @@ -# Enum ElementTypes +# Enum ElementTypes + Namespace: [VM.Models.FE.Mesh](VM.Models.FE.Mesh.md) Assembly: VM.Models.FE.Mesh.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Beam2.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Beam2.md index e3291bca3d..ec90a77256 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Beam2.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Beam2.md @@ -1,4 +1,5 @@ -# Class Beam2 +# Class Beam2 + Namespace: [VM.Models.FE.Mesh.Elements](VM.Models.FE.Mesh.Elements.md) Assembly: VM.Models.FE.Mesh.dll @@ -10,7 +11,7 @@ public class Beam2 : Element2Nodes, IEntity #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Entity](VM.Models.FE.Mesh.Entity.md) ← [Element](VM.Models.FE.Mesh.Elements.Element.md) ← [Element2Nodes](VM.Models.FE.Mesh.Elements.Element2Nodes.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element.md index ca6dca2175..6bb56d8fd2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element.md @@ -1,4 +1,5 @@ -# Class Element +# Class Element + Namespace: [VM.Models.FE.Mesh.Elements](VM.Models.FE.Mesh.Elements.md) Assembly: VM.Models.FE.Mesh.dll @@ -9,7 +10,7 @@ public abstract class Element : Entity, IEntity #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Entity](VM.Models.FE.Mesh.Entity.md) ← [Element](VM.Models.FE.Mesh.Elements.Element.md) @@ -65,7 +66,7 @@ public int Node1Id { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NodeIds @@ -75,7 +76,7 @@ public IList NodeIds { get; } #### Property Value - [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> + IList ### NumberOfNodes @@ -85,7 +86,7 @@ protected abstract int NumberOfNodes { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### PropertyId @@ -96,7 +97,7 @@ public int PropertyId { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -108,9 +109,9 @@ public override sealed bool Equals(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element10Nodes.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element10Nodes.md index 486fec6063..208d6d9577 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element10Nodes.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element10Nodes.md @@ -1,4 +1,5 @@ -# Class Element10Nodes +# Class Element10Nodes + Namespace: [VM.Models.FE.Mesh.Elements](VM.Models.FE.Mesh.Elements.md) Assembly: VM.Models.FE.Mesh.dll @@ -9,7 +10,7 @@ public abstract class Element10Nodes : Element8Nodes, IEntity #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Entity](VM.Models.FE.Mesh.Entity.md) ← [Element](VM.Models.FE.Mesh.Elements.Element.md) ← [Element2Nodes](VM.Models.FE.Mesh.Elements.Element2Nodes.md) ← @@ -81,7 +82,7 @@ public int Node10Id { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Node9Id @@ -92,7 +93,7 @@ public int Node9Id { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfNodes @@ -102,5 +103,5 @@ protected override int NumberOfNodes { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element13Nodes.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element13Nodes.md index 8ce2f871d0..50127de56a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element13Nodes.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element13Nodes.md @@ -1,4 +1,5 @@ -# Class Element13Nodes +# Class Element13Nodes + Namespace: [VM.Models.FE.Mesh.Elements](VM.Models.FE.Mesh.Elements.md) Assembly: VM.Models.FE.Mesh.dll @@ -9,7 +10,7 @@ public abstract class Element13Nodes : Element10Nodes, IEntity #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Entity](VM.Models.FE.Mesh.Entity.md) ← [Element](VM.Models.FE.Mesh.Elements.Element.md) ← [Element2Nodes](VM.Models.FE.Mesh.Elements.Element2Nodes.md) ← @@ -85,7 +86,7 @@ public int Node11Id { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Node12Id @@ -96,7 +97,7 @@ public int Node12Id { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Node13Id @@ -107,7 +108,7 @@ public int Node13Id { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfNodes @@ -117,5 +118,5 @@ protected override int NumberOfNodes { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element2Nodes.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element2Nodes.md index d3f0ec917f..009428dc96 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element2Nodes.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element2Nodes.md @@ -1,4 +1,5 @@ -# Class Element2Nodes +# Class Element2Nodes + Namespace: [VM.Models.FE.Mesh.Elements](VM.Models.FE.Mesh.Elements.md) Assembly: VM.Models.FE.Mesh.dll @@ -9,7 +10,7 @@ public abstract class Element2Nodes : Element, IEntity #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Entity](VM.Models.FE.Mesh.Entity.md) ← [Element](VM.Models.FE.Mesh.Elements.Element.md) ← [Element2Nodes](VM.Models.FE.Mesh.Elements.Element2Nodes.md) @@ -63,7 +64,7 @@ public int Node2Id { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfNodes @@ -73,5 +74,5 @@ protected override int NumberOfNodes { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element3Nodes.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element3Nodes.md index c7555db55a..695e6d7f41 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element3Nodes.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element3Nodes.md @@ -1,4 +1,5 @@ -# Class Element3Nodes +# Class Element3Nodes + Namespace: [VM.Models.FE.Mesh.Elements](VM.Models.FE.Mesh.Elements.md) Assembly: VM.Models.FE.Mesh.dll @@ -9,7 +10,7 @@ public abstract class Element3Nodes : Element2Nodes, IEntity #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Entity](VM.Models.FE.Mesh.Entity.md) ← [Element](VM.Models.FE.Mesh.Elements.Element.md) ← [Element2Nodes](VM.Models.FE.Mesh.Elements.Element2Nodes.md) ← @@ -65,7 +66,7 @@ public int Node3Id { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfNodes @@ -75,5 +76,5 @@ protected override int NumberOfNodes { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element4Nodes.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element4Nodes.md index c50e01c3d6..a1ec0d7562 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element4Nodes.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element4Nodes.md @@ -1,4 +1,5 @@ -# Class Element4Nodes +# Class Element4Nodes + Namespace: [VM.Models.FE.Mesh.Elements](VM.Models.FE.Mesh.Elements.md) Assembly: VM.Models.FE.Mesh.dll @@ -9,7 +10,7 @@ public abstract class Element4Nodes : Element3Nodes, IEntity #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Entity](VM.Models.FE.Mesh.Entity.md) ← [Element](VM.Models.FE.Mesh.Elements.Element.md) ← [Element2Nodes](VM.Models.FE.Mesh.Elements.Element2Nodes.md) ← @@ -69,7 +70,7 @@ public int Node4Id { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfNodes @@ -79,5 +80,5 @@ protected override int NumberOfNodes { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element5Nodes.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element5Nodes.md index df5a914d07..3a62262beb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element5Nodes.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element5Nodes.md @@ -1,4 +1,5 @@ -# Class Element5Nodes +# Class Element5Nodes + Namespace: [VM.Models.FE.Mesh.Elements](VM.Models.FE.Mesh.Elements.md) Assembly: VM.Models.FE.Mesh.dll @@ -9,7 +10,7 @@ public abstract class Element5Nodes : Element4Nodes, IEntity #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Entity](VM.Models.FE.Mesh.Entity.md) ← [Element](VM.Models.FE.Mesh.Elements.Element.md) ← [Element2Nodes](VM.Models.FE.Mesh.Elements.Element2Nodes.md) ← @@ -72,7 +73,7 @@ public int Node5Id { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfNodes @@ -82,5 +83,5 @@ protected override int NumberOfNodes { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element6Nodes.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element6Nodes.md index 7a1197a5ee..313e4dc630 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element6Nodes.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element6Nodes.md @@ -1,4 +1,5 @@ -# Class Element6Nodes +# Class Element6Nodes + Namespace: [VM.Models.FE.Mesh.Elements](VM.Models.FE.Mesh.Elements.md) Assembly: VM.Models.FE.Mesh.dll @@ -9,7 +10,7 @@ public abstract class Element6Nodes : Element5Nodes, IEntity #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Entity](VM.Models.FE.Mesh.Entity.md) ← [Element](VM.Models.FE.Mesh.Elements.Element.md) ← [Element2Nodes](VM.Models.FE.Mesh.Elements.Element2Nodes.md) ← @@ -74,7 +75,7 @@ public int Node6Id { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfNodes @@ -84,5 +85,5 @@ protected override int NumberOfNodes { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element8Nodes.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element8Nodes.md index 94daa3d391..d76ef6bb55 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element8Nodes.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Element8Nodes.md @@ -1,4 +1,5 @@ -# Class Element8Nodes +# Class Element8Nodes + Namespace: [VM.Models.FE.Mesh.Elements](VM.Models.FE.Mesh.Elements.md) Assembly: VM.Models.FE.Mesh.dll @@ -9,7 +10,7 @@ public abstract class Element8Nodes : Element6Nodes, IEntity #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Entity](VM.Models.FE.Mesh.Entity.md) ← [Element](VM.Models.FE.Mesh.Elements.Element.md) ← [Element2Nodes](VM.Models.FE.Mesh.Elements.Element2Nodes.md) ← @@ -79,7 +80,7 @@ public int Node7Id { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Node8Id @@ -90,7 +91,7 @@ public int Node8Id { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfNodes @@ -100,5 +101,5 @@ protected override int NumberOfNodes { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Hexa8.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Hexa8.md index 33306bf56f..00fd81e089 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Hexa8.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Hexa8.md @@ -1,4 +1,5 @@ -# Class Hexa8 +# Class Hexa8 + Namespace: [VM.Models.FE.Mesh.Elements](VM.Models.FE.Mesh.Elements.md) Assembly: VM.Models.FE.Mesh.dll @@ -10,7 +11,7 @@ public class Hexa8 : Element8Nodes, IEntity #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Entity](VM.Models.FE.Mesh.Entity.md) ← [Element](VM.Models.FE.Mesh.Elements.Element.md) ← [Element2Nodes](VM.Models.FE.Mesh.Elements.Element2Nodes.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Pyra13.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Pyra13.md index 77a8d9bc0e..3d88921737 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Pyra13.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Pyra13.md @@ -1,4 +1,5 @@ -# Class Pyra13 +# Class Pyra13 + Namespace: [VM.Models.FE.Mesh.Elements](VM.Models.FE.Mesh.Elements.md) Assembly: VM.Models.FE.Mesh.dll @@ -10,7 +11,7 @@ public class Pyra13 : Element13Nodes, IEntity #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Entity](VM.Models.FE.Mesh.Entity.md) ← [Element](VM.Models.FE.Mesh.Elements.Element.md) ← [Element2Nodes](VM.Models.FE.Mesh.Elements.Element2Nodes.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Pyra5.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Pyra5.md index 90f4c87cd6..86d155cb16 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Pyra5.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Pyra5.md @@ -1,4 +1,5 @@ -# Class Pyra5 +# Class Pyra5 + Namespace: [VM.Models.FE.Mesh.Elements](VM.Models.FE.Mesh.Elements.md) Assembly: VM.Models.FE.Mesh.dll @@ -10,7 +11,7 @@ public class Pyra5 : Element5Nodes, IEntity #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Entity](VM.Models.FE.Mesh.Entity.md) ← [Element](VM.Models.FE.Mesh.Elements.Element.md) ← [Element2Nodes](VM.Models.FE.Mesh.Elements.Element2Nodes.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Quad4.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Quad4.md index 4df322866a..6a6064fa6c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Quad4.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Quad4.md @@ -1,4 +1,5 @@ -# Class Quad4 +# Class Quad4 + Namespace: [VM.Models.FE.Mesh.Elements](VM.Models.FE.Mesh.Elements.md) Assembly: VM.Models.FE.Mesh.dll @@ -10,7 +11,7 @@ public class Quad4 : Element4Nodes, IEntity #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Entity](VM.Models.FE.Mesh.Entity.md) ← [Element](VM.Models.FE.Mesh.Elements.Element.md) ← [Element2Nodes](VM.Models.FE.Mesh.Elements.Element2Nodes.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Quad8.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Quad8.md index 29e1fc7f16..31b11c9f24 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Quad8.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.Quad8.md @@ -1,4 +1,5 @@ -# Class Quad8 +# Class Quad8 + Namespace: [VM.Models.FE.Mesh.Elements](VM.Models.FE.Mesh.Elements.md) Assembly: VM.Models.FE.Mesh.dll @@ -10,7 +11,7 @@ public class Quad8 : Element8Nodes, IEntity #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Entity](VM.Models.FE.Mesh.Entity.md) ← [Element](VM.Models.FE.Mesh.Elements.Element.md) ← [Element2Nodes](VM.Models.FE.Mesh.Elements.Element2Nodes.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.RBE2.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.RBE2.md index 1d147d3c9e..16541b4be6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.RBE2.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.RBE2.md @@ -1,4 +1,5 @@ -# Class RBE2 +# Class RBE2 + Namespace: [VM.Models.FE.Mesh.Elements](VM.Models.FE.Mesh.Elements.md) Assembly: VM.Models.FE.Mesh.dll @@ -10,7 +11,7 @@ public class RBE2 : HasMultipleNodes, IEntity #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Entity](VM.Models.FE.Mesh.Entity.md) ← [HasMultipleNodes](VM.Models.FE.Mesh.HasMultipleNodes.md) ← [RBE2](VM.Models.FE.Mesh.Elements.RBE2.md) @@ -56,7 +57,7 @@ public int MasterNodeId { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NodeIdsWrapper @@ -67,7 +68,7 @@ public byte[] NodeIdsWrapper { get; set; } #### Property Value - [byte](https://learn.microsoft.com/dotnet/api/system.byte)\[\] + byte\[\] ## Methods @@ -79,11 +80,11 @@ public override bool Equals(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetHashCode\(\) @@ -93,5 +94,5 @@ public override int GetHashCode() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.md index bb23db2636..a425b3f73e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Elements.md @@ -1,4 +1,5 @@ -# Namespace VM.Models.FE.Mesh.Elements +# Namespace VM.Models.FE.Mesh.Elements + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Entity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Entity.md index 94adba683a..f14e096539 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Entity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Entity.md @@ -1,4 +1,5 @@ -# Class Entity +# Class Entity + Namespace: [VM.Models.FE.Mesh](VM.Models.FE.Mesh.md) Assembly: VM.Models.FE.Mesh.dll @@ -9,7 +10,7 @@ public abstract class Entity : IEntity #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Entity](VM.Models.FE.Mesh.Entity.md) #### Derived @@ -49,7 +50,7 @@ public int Id { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -61,11 +62,11 @@ public override bool Equals(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### FromByteArray\(byte\[\]\) @@ -75,7 +76,7 @@ protected static T FromByteArray(byte[] arr) #### Parameters -`arr` [byte](https://learn.microsoft.com/dotnet/api/system.byte)\[\] +`arr` byte\[\] #### Returns @@ -93,7 +94,7 @@ public override int GetHashCode() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### ToByteArray\(T\) @@ -107,7 +108,7 @@ protected static byte[] ToByteArray(T value) #### Returns - [byte](https://learn.microsoft.com/dotnet/api/system.byte)\[\] + byte\[\] #### Type Parameters diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Generator.BeamFile.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Generator.BeamFile.md index 646ad0529d..803da7fc43 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Generator.BeamFile.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Generator.BeamFile.md @@ -1,4 +1,5 @@ -# Class BeamFile +# Class BeamFile + Namespace: [VM.Models.FE.Mesh.Generator](VM.Models.FE.Mesh.Generator.md) Assembly: VM.Models.FE.Mesh.Generator.dll @@ -9,7 +10,7 @@ public sealed class BeamFile #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BeamFile](VM.Models.FE.Mesh.Generator.BeamFile.md) #### Extension Methods @@ -28,11 +29,11 @@ public BeamFile(double radius, int numberOfCircularNodes, int numberOfBeamNodes, #### Parameters -`radius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`radius` double -`numberOfCircularNodes` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`numberOfCircularNodes` int -`numberOfBeamNodes` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`numberOfBeamNodes` int `startPoint` Vector @@ -60,7 +61,7 @@ public double BeamMaterialDampingRatio { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### BeamMaterialDensity @@ -70,7 +71,7 @@ public double BeamMaterialDensity { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### BeamMaterialPoissonsRatio @@ -80,7 +81,7 @@ public double BeamMaterialPoissonsRatio { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### BeamMaterialShearModulus @@ -90,7 +91,7 @@ public double BeamMaterialShearModulus { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### BeamMaterialYoungsModulus @@ -100,7 +101,7 @@ public double BeamMaterialYoungsModulus { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### BufferCount @@ -110,7 +111,7 @@ public int BufferCount { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GenerateInnerRBE @@ -120,7 +121,7 @@ public bool GenerateInnerRBE { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### InnerRBEs @@ -130,7 +131,7 @@ public IEnumerable InnerRBEs { get; } #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) + IEnumerable<[RBE2](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.Models.FE.Mesh/Models/Elements/RBE2.cs)\> ### NumberOfBeamNodes @@ -140,7 +141,7 @@ public int NumberOfBeamNodes { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfCircularNodes @@ -150,7 +151,7 @@ public int NumberOfCircularNodes { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Radius @@ -160,7 +161,7 @@ public double Radius { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### WriteMessage @@ -170,7 +171,7 @@ public Action WriteMessage { get; set; } #### Property Value - [Action](https://learn.microsoft.com/dotnet/api/system.action\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + Action ### YDirection @@ -192,5 +193,5 @@ public void Generate(string bdfFilePath) #### Parameters -`bdfFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`bdfFilePath` string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Generator.BeamFileParams.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Generator.BeamFileParams.md index 46813cc03e..656e72313f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Generator.BeamFileParams.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Generator.BeamFileParams.md @@ -1,4 +1,5 @@ -# Class BeamFileParams +# Class BeamFileParams + Namespace: [VM.Models.FE.Mesh.Generator](VM.Models.FE.Mesh.Generator.md) Assembly: VM.Models.FE.Mesh.Generator.dll @@ -9,7 +10,7 @@ public class BeamFileParams #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BeamFileParams](VM.Models.FE.Mesh.Generator.BeamFileParams.md) #### Extension Methods @@ -36,7 +37,7 @@ public double BeamMaterialDampingRatio { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### BeamMaterialDensity @@ -46,7 +47,7 @@ public double BeamMaterialDensity { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### BeamMaterialPoissonsRatio @@ -56,7 +57,7 @@ public double BeamMaterialPoissonsRatio { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### BeamMaterialShearModulus @@ -66,7 +67,7 @@ public double BeamMaterialShearModulus { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### BeamMaterialYoungsModulus @@ -76,7 +77,7 @@ public double BeamMaterialYoungsModulus { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### BufferCount @@ -86,7 +87,7 @@ public int BufferCount { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### EndPoint @@ -106,7 +107,7 @@ public bool GenerateInnerRBE { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### NumberOfBeamNodes @@ -116,7 +117,7 @@ public int NumberOfBeamNodes { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfCircularNodes @@ -126,7 +127,7 @@ public int NumberOfCircularNodes { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Radius @@ -136,7 +137,7 @@ public double Radius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StartPoint diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Generator.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Generator.md index 2cabf067bd..aa8495b460 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Generator.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Generator.md @@ -1,4 +1,5 @@ -# Namespace VM.Models.FE.Mesh.Generator +# Namespace VM.Models.FE.Mesh.Generator + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.HasMultipleNodes.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.HasMultipleNodes.md index 28e9773e69..754e0ef728 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.HasMultipleNodes.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.HasMultipleNodes.md @@ -1,4 +1,5 @@ -# Class HasMultipleNodes +# Class HasMultipleNodes + Namespace: [VM.Models.FE.Mesh](VM.Models.FE.Mesh.md) Assembly: VM.Models.FE.Mesh.dll @@ -9,7 +10,7 @@ public class HasMultipleNodes : Entity, IEntity #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Entity](VM.Models.FE.Mesh.Entity.md) ← [HasMultipleNodes](VM.Models.FE.Mesh.HasMultipleNodes.md) @@ -54,7 +55,7 @@ public int[] NodeIds { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] + int\[\] ## Methods @@ -66,11 +67,11 @@ public override bool Equals(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetHashCode\(\) @@ -80,5 +81,5 @@ public override int GetHashCode() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.IEntity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.IEntity.md index d14dee8567..30ee8df470 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.IEntity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.IEntity.md @@ -1,4 +1,5 @@ -# Interface IEntity +# Interface IEntity + Namespace: [VM.Models.FE.Mesh](VM.Models.FE.Mesh.md) Assembly: VM.Models.FE.Mesh.dll @@ -23,5 +24,5 @@ int Id { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.IPropertyBeam.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.IPropertyBeam.md index 511b32877a..6477795db0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.IPropertyBeam.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.IPropertyBeam.md @@ -1,4 +1,5 @@ -# Interface IPropertyBeam +# Interface IPropertyBeam + Namespace: [VM.Models.FE.Mesh](VM.Models.FE.Mesh.md) Assembly: VM.Models.FE.Mesh.dll @@ -37,7 +38,7 @@ double YX { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### YY @@ -47,7 +48,7 @@ double YY { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### YZ @@ -57,5 +58,5 @@ double YZ { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.ISet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.ISet.md index 3a53e8b561..87446bdf49 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.ISet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.ISet.md @@ -1,4 +1,5 @@ -# Interface ISet +# Interface ISet + Namespace: [VM.Models.FE.Mesh](VM.Models.FE.Mesh.md) Assembly: VM.Models.FE.Mesh.dll @@ -23,5 +24,5 @@ int ItemCount { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Materials.ISO.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Materials.ISO.md index a8beb6302d..fff6632f78 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Materials.ISO.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Materials.ISO.md @@ -1,4 +1,5 @@ -# Class ISO +# Class ISO + Namespace: [VM.Models.FE.Mesh.Materials](VM.Models.FE.Mesh.Materials.md) Assembly: VM.Models.FE.Mesh.dll @@ -10,7 +11,7 @@ public class ISO : Material, IEntity #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Entity](VM.Models.FE.Mesh.Entity.md) ← [Material](VM.Models.FE.Mesh.Materials.Material.md) ← [ISO](VM.Models.FE.Mesh.Materials.ISO.md) @@ -56,7 +57,7 @@ public double DampingRatio { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### PoissonsRation @@ -67,7 +68,7 @@ public double PoissonsRation { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ShearModulus @@ -78,7 +79,7 @@ public double ShearModulus { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### YoungsModulus @@ -89,7 +90,7 @@ public double YoungsModulus { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -101,11 +102,11 @@ public override bool Equals(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetHashCode\(\) @@ -115,5 +116,5 @@ public override int GetHashCode() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Materials.Material.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Materials.Material.md index b68b3c4bf6..1b7d7fb569 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Materials.Material.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Materials.Material.md @@ -1,4 +1,5 @@ -# Class Material +# Class Material + Namespace: [VM.Models.FE.Mesh.Materials](VM.Models.FE.Mesh.Materials.md) Assembly: VM.Models.FE.Mesh.dll @@ -9,7 +10,7 @@ public abstract class Material : Entity, IEntity #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Entity](VM.Models.FE.Mesh.Entity.md) ← [Material](VM.Models.FE.Mesh.Materials.Material.md) @@ -54,7 +55,7 @@ public double Density { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -66,11 +67,11 @@ public override bool Equals(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetHashCode\(\) @@ -80,5 +81,5 @@ public override int GetHashCode() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Materials.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Materials.md index 46947a18f6..61fe2ddb6b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Materials.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Materials.md @@ -1,4 +1,5 @@ -# Namespace VM.Models.FE.Mesh.Materials +# Namespace VM.Models.FE.Mesh.Materials + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.MeshFile.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.MeshFile.md index 720cf9fc86..c270675884 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.MeshFile.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.MeshFile.md @@ -1,4 +1,5 @@ -# Class MeshFile +# Class MeshFile + Namespace: [VM.Models.FE.Mesh](VM.Models.FE.Mesh.md) Assembly: VM.Models.FE.Mesh.dll @@ -9,7 +10,7 @@ public class MeshFile #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [MeshFile](VM.Models.FE.Mesh.MeshFile.md) #### Extension Methods @@ -42,7 +43,7 @@ protected bool IsTemporary { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -54,7 +55,7 @@ public void Add(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object ### AddBunch\(IEnumerable\) @@ -64,7 +65,7 @@ public void AddBunch(IEnumerable enumObjs) #### Parameters -`enumObjs` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.ienumerable) +`enumObjs` IEnumerable ### Connect\(string\) @@ -74,7 +75,7 @@ public static MeshFile Connect(string pathMeshFile) #### Parameters -`pathMeshFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`pathMeshFile` string #### Returns @@ -88,7 +89,7 @@ public static MeshFile Create(string pathMeshFile) #### Parameters -`pathMeshFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`pathMeshFile` string #### Returns @@ -128,7 +129,7 @@ protected virtual void Dispose(bool disposing) #### Parameters -`disposing` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`disposing` bool ### Initialize\(string\) @@ -138,7 +139,7 @@ protected void Initialize(string pathMeshFile) #### Parameters -`pathMeshFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`pathMeshFile` string ### QueryByColumn\(string, object\) @@ -148,13 +149,13 @@ public IEnumerable QueryByColumn(string columnName, object value) where T #### Parameters -`columnName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`columnName` string -`value` [object](https://learn.microsoft.com/dotnet/api/system.object) +`value` object #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) + IEnumerable #### Type Parameters @@ -168,7 +169,7 @@ public IEnumerable Table() where T : class, new() #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) + IEnumerable #### Type Parameters @@ -182,13 +183,13 @@ public bool TryQueryByID(int id, out T result) where T : class, new() #### Parameters -`id` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`id` int `result` T #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Type Parameters diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Node.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Node.md index 9615d71ee7..88a04c4f31 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Node.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Node.md @@ -1,4 +1,5 @@ -# Class Node +# Class Node + Namespace: [VM.Models.FE.Mesh](VM.Models.FE.Mesh.md) Assembly: VM.Models.FE.Mesh.dll @@ -10,7 +11,7 @@ public class Node : Entity, IEntity #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Entity](VM.Models.FE.Mesh.Entity.md) ← [Node](VM.Models.FE.Mesh.Node.md) @@ -62,7 +63,7 @@ public double X { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y @@ -73,7 +74,7 @@ public double Y { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Z @@ -84,7 +85,7 @@ public double Z { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -96,11 +97,11 @@ public override bool Equals(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetHashCode\(\) @@ -110,5 +111,5 @@ public override int GetHashCode() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Properties.BeamL.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Properties.BeamL.md index d5565418be..ed9610a07d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Properties.BeamL.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Properties.BeamL.md @@ -1,4 +1,5 @@ -# Class BeamL +# Class BeamL + Namespace: [VM.Models.FE.Mesh.Properties](VM.Models.FE.Mesh.Properties.md) Assembly: VM.Models.FE.Mesh.dll @@ -10,7 +11,7 @@ public class BeamL : Solid, IPropertyBeam, IEntity #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Entity](VM.Models.FE.Mesh.Entity.md) ← [Solid](VM.Models.FE.Mesh.Properties.Solid.md) ← [BeamL](VM.Models.FE.Mesh.Properties.BeamL.md) @@ -57,12 +58,10 @@ public double[] Dimensions { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### DimensionsWrapper -This is wrapping property for SQLite-net - ```csharp [Column] public byte[] DimensionsWrapper { get; set; } @@ -70,7 +69,7 @@ public byte[] DimensionsWrapper { get; set; } #### Property Value - [byte](https://learn.microsoft.com/dotnet/api/system.byte)\[\] + byte\[\] ### Shape @@ -102,7 +101,7 @@ public double YX { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### YY @@ -113,7 +112,7 @@ public double YY { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### YZ @@ -124,7 +123,7 @@ public double YZ { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -136,9 +135,9 @@ public override bool Equals(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Properties.Shell.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Properties.Shell.md index 73ffa21bae..ba9306db6c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Properties.Shell.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Properties.Shell.md @@ -1,4 +1,5 @@ -# Class Shell +# Class Shell + Namespace: [VM.Models.FE.Mesh.Properties](VM.Models.FE.Mesh.Properties.md) Assembly: VM.Models.FE.Mesh.dll @@ -10,7 +11,7 @@ public class Shell : Solid, IEntity #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Entity](VM.Models.FE.Mesh.Entity.md) ← [Solid](VM.Models.FE.Mesh.Properties.Solid.md) ← [Shell](VM.Models.FE.Mesh.Properties.Shell.md) @@ -56,7 +57,7 @@ public double Thickness { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -68,9 +69,9 @@ public override bool Equals(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Properties.Solid.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Properties.Solid.md index 07ab40ba46..3748b0d43d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Properties.Solid.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Properties.Solid.md @@ -1,4 +1,5 @@ -# Class Solid +# Class Solid + Namespace: [VM.Models.FE.Mesh.Properties](VM.Models.FE.Mesh.Properties.md) Assembly: VM.Models.FE.Mesh.dll @@ -10,7 +11,7 @@ public class Solid : Entity, IEntity #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Entity](VM.Models.FE.Mesh.Entity.md) ← [Solid](VM.Models.FE.Mesh.Properties.Solid.md) @@ -57,7 +58,7 @@ public int MarkerId { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### MaterialId @@ -68,7 +69,7 @@ public int MaterialId { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Methods @@ -80,9 +81,9 @@ public override bool Equals(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Properties.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Properties.md index dba5e115d3..327f64c38c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Properties.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Properties.md @@ -1,4 +1,5 @@ -# Namespace VM.Models.FE.Mesh.Properties +# Namespace VM.Models.FE.Mesh.Properties + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Sets.ElementSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Sets.ElementSet.md index 0f77f5fbd6..ee0afe32c4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Sets.ElementSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Sets.ElementSet.md @@ -1,4 +1,5 @@ -# Class ElementSet +# Class ElementSet + Namespace: [VM.Models.FE.Mesh.Sets](VM.Models.FE.Mesh.Sets.md) Assembly: VM.Models.FE.Mesh.dll @@ -10,7 +11,7 @@ public class ElementSet : Set, IEntity, ISet #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Entity](VM.Models.FE.Mesh.Entity.md) ← [HasMultipleNodes](VM.Models.FE.Mesh.HasMultipleNodes.md) ← [Set](VM.Models.FE.Mesh.Sets.Set.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Sets.NodeSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Sets.NodeSet.md index 084d39c450..7b587252fa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Sets.NodeSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Sets.NodeSet.md @@ -1,4 +1,5 @@ -# Class NodeSet +# Class NodeSet + Namespace: [VM.Models.FE.Mesh.Sets](VM.Models.FE.Mesh.Sets.md) Assembly: VM.Models.FE.Mesh.dll @@ -10,7 +11,7 @@ public class NodeSet : Set, IEntity, ISet #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Entity](VM.Models.FE.Mesh.Entity.md) ← [HasMultipleNodes](VM.Models.FE.Mesh.HasMultipleNodes.md) ← [Set](VM.Models.FE.Mesh.Sets.Set.md) ← diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Sets.PatchSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Sets.PatchSet.md index 58132e45c0..a0a6a324d9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Sets.PatchSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Sets.PatchSet.md @@ -1,4 +1,5 @@ -# Class PatchSet +# Class PatchSet + Namespace: [VM.Models.FE.Mesh.Sets](VM.Models.FE.Mesh.Sets.md) Assembly: VM.Models.FE.Mesh.dll @@ -10,7 +11,7 @@ public class PatchSet : Set, IEntity, ISet #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Entity](VM.Models.FE.Mesh.Entity.md) ← [HasMultipleNodes](VM.Models.FE.Mesh.HasMultipleNodes.md) ← [Set](VM.Models.FE.Mesh.Sets.Set.md) ← @@ -57,5 +58,5 @@ public override int ItemCount { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Sets.Set.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Sets.Set.md index 75ffbf2cae..2e5c56f2a2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Sets.Set.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Sets.Set.md @@ -1,4 +1,5 @@ -# Class Set +# Class Set + Namespace: [VM.Models.FE.Mesh.Sets](VM.Models.FE.Mesh.Sets.md) Assembly: VM.Models.FE.Mesh.dll @@ -9,7 +10,7 @@ public abstract class Set : HasMultipleNodes, IEntity, ISet #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Entity](VM.Models.FE.Mesh.Entity.md) ← [HasMultipleNodes](VM.Models.FE.Mesh.HasMultipleNodes.md) ← [Set](VM.Models.FE.Mesh.Sets.Set.md) @@ -60,5 +61,5 @@ public virtual int ItemCount { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Sets.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Sets.md index c2b59ecab9..b83ebc42ce 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Sets.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Sets.md @@ -1,4 +1,5 @@ -# Namespace VM.Models.FE.Mesh.Sets +# Namespace VM.Models.FE.Mesh.Sets + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Writer.BDFWriter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Writer.BDFWriter.md index ea7c1cc57c..90148e7979 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Writer.BDFWriter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Writer.BDFWriter.md @@ -1,4 +1,5 @@ -# Class BDFWriter +# Class BDFWriter + Namespace: [VM.Models.FE.Mesh.Writer](VM.Models.FE.Mesh.Writer.md) Assembly: VM.Models.FE.Mesh.dll @@ -9,7 +10,7 @@ public static class BDFWriter #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [BDFWriter](VM.Models.FE.Mesh.Writer.BDFWriter.md) #### Extension Methods @@ -28,7 +29,7 @@ public static Action WriteMessage { get; set; } #### Property Value - [Action](https://learn.microsoft.com/dotnet/api/system.action\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + Action ## Methods @@ -40,11 +41,11 @@ public static string FormatDoubleForBDF(double dValue) #### Parameters -`dValue` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dValue` double #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetElementTypeName\(ElementTypes\) @@ -58,7 +59,7 @@ public static string GetElementTypeName(ElementTypes elementType) #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### WriteBDFFile\(MeshFile, string, Action, Action\) @@ -70,11 +71,11 @@ public static void WriteBDFFile(this MeshFile file, string pathToWrite, Action +`actWriteBeforeBulk` Action -`actWriteExtra` [Action](https://learn.microsoft.com/dotnet/api/system.action\-1)<[TextWriter](https://learn.microsoft.com/dotnet/api/system.io.textwriter)\> +`actWriteExtra` Action ### WriteBDFFile\(MeshFile, Stream, Action, Action\) @@ -86,11 +87,11 @@ public static void WriteBDFFile(this MeshFile file, Stream stream, Action +`actWriteBeforeBulk` Action -`actWriteExtra` [Action](https://learn.microsoft.com/dotnet/api/system.action\-1)<[TextWriter](https://learn.microsoft.com/dotnet/api/system.io.textwriter)\> +`actWriteExtra` Action ### WriteBDFFile\(MeshFile, TextWriter, Action, Action\) @@ -102,11 +103,11 @@ public static void WriteBDFFile(this MeshFile file, TextWriter writer, Action +`actWriteBeforeBulk` Action -`actWriteExtra` [Action](https://learn.microsoft.com/dotnet/api/system.action\-1)<[TextWriter](https://learn.microsoft.com/dotnet/api/system.io.textwriter)\> +`actWriteExtra` Action ### WriteSingleBDFElement\(TextWriter, ref int, string\) @@ -116,11 +117,11 @@ public static void WriteSingleBDFElement(this TextWriter writer, ref int index, #### Parameters -`writer` [TextWriter](https://learn.microsoft.com/dotnet/api/system.io.textwriter) +`writer` TextWriter -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int -`strElement` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strElement` string ### WriteSingleBDFElement\(TextWriter, ref int, int\) @@ -130,11 +131,11 @@ public static void WriteSingleBDFElement(this TextWriter writer, ref int index, #### Parameters -`writer` [TextWriter](https://learn.microsoft.com/dotnet/api/system.io.textwriter) +`writer` TextWriter -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int -`nElement` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nElement` int ### WriteSingleBDFElement\(TextWriter, ref int, double\) @@ -144,11 +145,11 @@ public static void WriteSingleBDFElement(this TextWriter writer, ref int index, #### Parameters -`writer` [TextWriter](https://learn.microsoft.com/dotnet/api/system.io.textwriter) +`writer` TextWriter -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int -`dElement` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dElement` double ### WriteToBDF\(Node, TextWriter\) @@ -160,7 +161,7 @@ public static void WriteToBDF(this Node node, TextWriter writer) `node` [Node](VM.Models.FE.Mesh.Node.md) -`writer` [TextWriter](https://learn.microsoft.com/dotnet/api/system.io.textwriter) +`writer` TextWriter ### WriteToBDF\(ISO, TextWriter\) @@ -172,7 +173,7 @@ public static void WriteToBDF(this ISO material, TextWriter writer) `material` [ISO](VM.Models.FE.Mesh.Materials.ISO.md) -`writer` [TextWriter](https://learn.microsoft.com/dotnet/api/system.io.textwriter) +`writer` TextWriter ### WriteToBDF\(BeamL, TextWriter\) @@ -184,7 +185,7 @@ public static void WriteToBDF(this BeamL property, TextWriter writer) `property` [BeamL](VM.Models.FE.Mesh.Properties.BeamL.md) -`writer` [TextWriter](https://learn.microsoft.com/dotnet/api/system.io.textwriter) +`writer` TextWriter ### WriteToBDF\(Solid, TextWriter\) @@ -196,7 +197,7 @@ public static void WriteToBDF(this Solid property, TextWriter writer) `property` [Solid](VM.Models.FE.Mesh.Properties.Solid.md) -`writer` [TextWriter](https://learn.microsoft.com/dotnet/api/system.io.textwriter) +`writer` TextWriter ### WriteToBDF\(Beam2, TextWriter, MeshFile\) @@ -208,7 +209,7 @@ public static void WriteToBDF(this Beam2 beam, TextWriter writer, MeshFile file) `beam` [Beam2](VM.Models.FE.Mesh.Elements.Beam2.md) -`writer` [TextWriter](https://learn.microsoft.com/dotnet/api/system.io.textwriter) +`writer` TextWriter `file` [MeshFile](VM.Models.FE.Mesh.MeshFile.md) @@ -222,7 +223,7 @@ public static void WriteToBDF(this Element element, TextWriter writer) `element` [Element](VM.Models.FE.Mesh.Elements.Element.md) -`writer` [TextWriter](https://learn.microsoft.com/dotnet/api/system.io.textwriter) +`writer` TextWriter ### WriteToBDF\(RBE2, TextWriter\) @@ -234,5 +235,5 @@ public static void WriteToBDF(this RBE2 rbe, TextWriter writer) `rbe` [RBE2](VM.Models.FE.Mesh.Elements.RBE2.md) -`writer` [TextWriter](https://learn.microsoft.com/dotnet/api/system.io.textwriter) +`writer` TextWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Writer.NeutralWriter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Writer.NeutralWriter.md index 2d0ace47a2..d80f73a1a4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Writer.NeutralWriter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Writer.NeutralWriter.md @@ -1,4 +1,5 @@ -# Class NeutralWriter +# Class NeutralWriter + Namespace: [VM.Models.FE.Mesh.Writer](VM.Models.FE.Mesh.Writer.md) Assembly: VM.Models.FE.Mesh.dll @@ -9,7 +10,7 @@ public static class NeutralWriter #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [NeutralWriter](VM.Models.FE.Mesh.Writer.NeutralWriter.md) #### Extension Methods @@ -28,15 +29,15 @@ public static BinaryWriter WriteBigBlock(this BinaryWriter writer, string blockN #### Parameters -`writer` [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) +`writer` BinaryWriter -`blockName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`blockName` string -`writeBlock` [Action](https://learn.microsoft.com/dotnet/api/system.action) +`writeBlock` Action #### Returns - [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) + BinaryWriter ### WriteBlock\(BinaryWriter, MeshFile, string, int, Action\) @@ -46,19 +47,19 @@ public static BinaryWriter WriteBlock(this BinaryWriter writer, MeshFile file #### Parameters -`writer` [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) +`writer` BinaryWriter `file` [MeshFile](VM.Models.FE.Mesh.MeshFile.md) -`blockName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`blockName` string -`nBlockVersion` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nBlockVersion` int -`actWrite` [Action](https://learn.microsoft.com/dotnet/api/system.action\-1) +`actWrite` Action #### Returns - [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) + BinaryWriter #### Type Parameters @@ -72,19 +73,19 @@ public static BinaryWriter WriteBlock(this BinaryWriter writer, ReadOnlyColle #### Parameters -`writer` [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) +`writer` BinaryWriter -`file` [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1) +`file` ReadOnlyCollection -`blockName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`blockName` string -`nBlockVersion` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nBlockVersion` int -`actWrite` [Action](https://learn.microsoft.com/dotnet/api/system.action\-1) +`actWrite` Action #### Returns - [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) + BinaryWriter #### Type Parameters @@ -98,13 +99,13 @@ public static void WriteContact(BinaryWriter writer, FEConstraintTie tie, uint b #### Parameters -`writer` [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) +`writer` BinaryWriter -`tie` FEConstraintTie +`tie` [FEConstraintTie](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.FE.Utilities/Models/DFMFReader.Structs.cs) -`baseGeomID` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`baseGeomID` uint -`actionGeomID` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`actionGeomID` uint ### WriteElement\(BinaryWriter, Element\) @@ -114,7 +115,7 @@ public static void WriteElement(BinaryWriter writer, Element element) #### Parameters -`writer` [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) +`writer` BinaryWriter `element` [Element](VM.Models.FE.Mesh.Elements.Element.md) @@ -126,9 +127,9 @@ public static void WriteElement(BinaryWriter writer, FEElement element) #### Parameters -`writer` [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) +`writer` BinaryWriter -`element` FEElement +`element` [FEElement](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.FE.Utilities/Models/DFMFReader.Structs.cs) ### WriteElementRBE\(BinaryWriter, FEConstraintRBE\) @@ -138,9 +139,9 @@ public static void WriteElementRBE(BinaryWriter writer, FEConstraintRBE rbe) #### Parameters -`writer` [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) +`writer` BinaryWriter -`rbe` FEConstraintRBE +`rbe` [FEConstraintRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.FE.Utilities/Models/DFMFReader.Structs.cs) ### WriteElementRBE2\(BinaryWriter, RBE2\) @@ -150,7 +151,7 @@ public static void WriteElementRBE2(BinaryWriter writer, RBE2 rbe) #### Parameters -`writer` [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) +`writer` BinaryWriter `rbe` [RBE2](VM.Models.FE.Mesh.Elements.RBE2.md) @@ -162,15 +163,15 @@ public static BinaryWriter WriteEmptyBlock(this BinaryWriter writer, string bloc #### Parameters -`writer` [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) +`writer` BinaryWriter -`blockName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`blockName` string -`blockVersion` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`blockVersion` int #### Returns - [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) + BinaryWriter ### WriteMaterialArrudaBoyce\(BinaryWriter, MaterialAB, bool, int\) @@ -180,13 +181,13 @@ public static void WriteMaterialArrudaBoyce(BinaryWriter writer, MaterialAB mat, #### Parameters -`writer` [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) +`writer` BinaryWriter -`mat` MaterialAB +`mat` [MaterialAB](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.FE.Utilities/Models/DFMFReader.Structs.cs) -`bUseIndex` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseIndex` bool -`nIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIndex` int ### WriteMaterialISO\(BinaryWriter, ISO\) @@ -196,7 +197,7 @@ public static void WriteMaterialISO(BinaryWriter writer, ISO mat) #### Parameters -`writer` [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) +`writer` BinaryWriter `mat` [ISO](VM.Models.FE.Mesh.Materials.ISO.md) @@ -208,13 +209,13 @@ public static void WriteMaterialISO(BinaryWriter writer, MaterialISO mat, bool b #### Parameters -`writer` [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) +`writer` BinaryWriter -`mat` MaterialISO +`mat` [MaterialISO](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.FE.Utilities/Models/DFMFReader.Structs.cs) -`bUseIndex` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseIndex` bool -`nIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIndex` int ### WriteMaterialMooneyRivlin\(BinaryWriter, MaterialMR, bool, int\) @@ -224,13 +225,13 @@ public static void WriteMaterialMooneyRivlin(BinaryWriter writer, MaterialMR mat #### Parameters -`writer` [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) +`writer` BinaryWriter -`mat` MaterialMR +`mat` [MaterialMR](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.FE.Utilities/Models/DFMFReader.Structs.cs) -`bUseIndex` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseIndex` bool -`nIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIndex` int ### WriteMaterialNeoHookean\(BinaryWriter, MaterialNH, bool, int\) @@ -240,13 +241,13 @@ public static void WriteMaterialNeoHookean(BinaryWriter writer, MaterialNH mat, #### Parameters -`writer` [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) +`writer` BinaryWriter -`mat` MaterialNH +`mat` [MaterialNH](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.FE.Utilities/Models/DFMFReader.Structs.cs) -`bUseIndex` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseIndex` bool -`nIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIndex` int ### WriteMaterialORTHO\(BinaryWriter, MaterialORTHO, bool, int\) @@ -256,13 +257,13 @@ public static void WriteMaterialORTHO(BinaryWriter writer, MaterialORTHO mat, bo #### Parameters -`writer` [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) +`writer` BinaryWriter -`mat` MaterialORTHO +`mat` [MaterialORTHO](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.FE.Utilities/Models/DFMFReader.Structs.cs) -`bUseIndex` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseIndex` bool -`nIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIndex` int ### WriteMaterialOgden\(BinaryWriter, MaterialOG, bool, int\) @@ -272,13 +273,13 @@ public static void WriteMaterialOgden(BinaryWriter writer, MaterialOG mat, bool #### Parameters -`writer` [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) +`writer` BinaryWriter -`mat` MaterialOG +`mat` [MaterialOG](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.FE.Utilities/Models/DFMFReader.Structs.cs) -`bUseIndex` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseIndex` bool -`nIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIndex` int ### WriteNeutralFile\(MeshFile, string\) @@ -290,7 +291,7 @@ public static void WriteNeutralFile(this MeshFile file, string pathToWrite) `file` [MeshFile](VM.Models.FE.Mesh.MeshFile.md) -`pathToWrite` [string](https://learn.microsoft.com/dotnet/api/system.string) +`pathToWrite` string ### WriteNeutralFile\(MeshFile, Stream\) @@ -302,7 +303,7 @@ public static void WriteNeutralFile(this MeshFile file, Stream stream) `file` [MeshFile](VM.Models.FE.Mesh.MeshFile.md) -`stream` [Stream](https://learn.microsoft.com/dotnet/api/system.io.stream) +`stream` Stream ### WriteNeutralFile\(MeshFile, BinaryWriter\) @@ -314,7 +315,7 @@ public static void WriteNeutralFile(this MeshFile file, BinaryWriter writer) `file` [MeshFile](VM.Models.FE.Mesh.MeshFile.md) -`writer` [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) +`writer` BinaryWriter ### WriteNeutralFile\(IDFMFReader, string\) @@ -324,9 +325,9 @@ public static void WriteNeutralFile(this IDFMFReader file, string pathToWrite) #### Parameters -`file` IDFMFReader +`file` [IDFMFReader](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.FE.Utilities/Interfaces/IDFMFReader.cs) -`pathToWrite` [string](https://learn.microsoft.com/dotnet/api/system.string) +`pathToWrite` string ### WriteNeutralFile\(IDFMFReader, Stream\) @@ -336,9 +337,9 @@ public static void WriteNeutralFile(this IDFMFReader file, Stream stream) #### Parameters -`file` IDFMFReader +`file` [IDFMFReader](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.FE.Utilities/Interfaces/IDFMFReader.cs) -`stream` [Stream](https://learn.microsoft.com/dotnet/api/system.io.stream) +`stream` Stream ### WriteNeutralFile\(IDFMFReader, BinaryWriter\) @@ -348,9 +349,9 @@ public static void WriteNeutralFile(this IDFMFReader file, BinaryWriter writer) #### Parameters -`file` IDFMFReader +`file` [IDFMFReader](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.FE.Utilities/Interfaces/IDFMFReader.cs) -`writer` [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) +`writer` BinaryWriter ### WriteNode\(BinaryWriter, Node\) @@ -360,7 +361,7 @@ public static void WriteNode(BinaryWriter writer, Node node) #### Parameters -`writer` [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) +`writer` BinaryWriter `node` [Node](VM.Models.FE.Mesh.Node.md) @@ -372,9 +373,9 @@ public static void WriteNode(BinaryWriter writer, NBody node) #### Parameters -`writer` [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) +`writer` BinaryWriter -`node` NBody +`node` [NBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.FE.Utilities/Models/DFMFReader.Structs.cs) ### WritePropertyBeam\(BinaryWriter, BeamL\) @@ -384,7 +385,7 @@ public static void WritePropertyBeam(BinaryWriter writer, BeamL prop) #### Parameters -`writer` [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) +`writer` BinaryWriter `prop` [BeamL](VM.Models.FE.Mesh.Properties.BeamL.md) @@ -396,13 +397,13 @@ public static void WritePropertyBeam(BinaryWriter writer, FEPropertyBeam prop, b #### Parameters -`writer` [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) +`writer` BinaryWriter -`prop` FEPropertyBeam +`prop` [FEPropertyBeam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.FE.Utilities/Models/DFMFReader.Structs.cs) -`bUseIndex` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseIndex` bool -`nIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIndex` int ### WritePropertyBeamL\(BinaryWriter, FEPropertyBeamL, bool, int\) @@ -412,13 +413,13 @@ public static void WritePropertyBeamL(BinaryWriter writer, FEPropertyBeamL prop, #### Parameters -`writer` [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) +`writer` BinaryWriter -`prop` FEPropertyBeamL +`prop` [FEPropertyBeamL](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.FE.Utilities/Models/DFMFReader.Structs.cs) -`bUseIndex` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseIndex` bool -`nIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIndex` int ### WritePropertyShell\(BinaryWriter, Shell\) @@ -428,7 +429,7 @@ public static void WritePropertyShell(BinaryWriter writer, Shell prop) #### Parameters -`writer` [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) +`writer` BinaryWriter `prop` [Shell](VM.Models.FE.Mesh.Properties.Shell.md) @@ -440,13 +441,13 @@ public static void WritePropertyShell(BinaryWriter writer, FEPropertyShell prop, #### Parameters -`writer` [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) +`writer` BinaryWriter -`prop` FEPropertyShell +`prop` [FEPropertyShell](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.FE.Utilities/Models/DFMFReader.Structs.cs) -`bUseIndex` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseIndex` bool -`nIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIndex` int ### WritePropertySolid\(BinaryWriter, Solid\) @@ -456,7 +457,7 @@ public static void WritePropertySolid(BinaryWriter writer, Solid prop) #### Parameters -`writer` [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) +`writer` BinaryWriter `prop` [Solid](VM.Models.FE.Mesh.Properties.Solid.md) @@ -468,13 +469,13 @@ public static void WritePropertySolid(BinaryWriter writer, FEPropertySolid prop, #### Parameters -`writer` [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) +`writer` BinaryWriter -`prop` FEPropertySolid +`prop` [FEPropertySolid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.FE.Utilities/Models/DFMFReader.Structs.cs) -`bUseIndex` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseIndex` bool -`nIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIndex` int ### WriteSet\(BinaryWriter, Set\) @@ -484,7 +485,7 @@ public static void WriteSet(BinaryWriter writer, Set set) #### Parameters -`writer` [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) +`writer` BinaryWriter `set` [Set](VM.Models.FE.Mesh.Sets.Set.md) @@ -496,7 +497,7 @@ public static void WriteSet(BinaryWriter writer, NamedSelection namedSelection) #### Parameters -`writer` [BinaryWriter](https://learn.microsoft.com/dotnet/api/system.io.binarywriter) +`writer` BinaryWriter -`namedSelection` NamedSelection +`namedSelection` [NamedSelection](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.FE.Utilities/Models/DFMFReader.Structs.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Writer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Writer.md index 0cd3b3f7a3..6e67e1843e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Writer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.Writer.md @@ -1,4 +1,5 @@ -# Namespace VM.Models.FE.Mesh.Writer +# Namespace VM.Models.FE.Mesh.Writer + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.md index 0bca33aee0..9a4baabd64 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Mesh.md @@ -1,4 +1,5 @@ -# Namespace VM.Models.FE.Mesh +# Namespace VM.Models.FE.Mesh + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.DFMFFileType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.DFMFFileType.md index f6f33deb24..4da02f083b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.DFMFFileType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.DFMFFileType.md @@ -1,4 +1,5 @@ -# Enum DFMFFileType +# Enum DFMFFileType + Namespace: [VM.Models.FE.Utilities](VM.Models.FE.Utilities.md) Assembly: VM.Models.FE.Utilities.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.DFMFManagedReader.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.DFMFManagedReader.md index 29fd06f22a..39d70d3e1d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.DFMFManagedReader.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.DFMFManagedReader.md @@ -1,4 +1,5 @@ -# Class DFMFManagedReader +# Class DFMFManagedReader + Namespace: [VM.Models.FE.Utilities](VM.Models.FE.Utilities.md) Assembly: VM.Models.FE.Utilities.dll @@ -9,7 +10,7 @@ public class DFMFManagedReader : DFMFReader, IDFMFReader #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DFMFReader](VM.Models.FE.Utilities.DFMFReader.md) ← [DFMFManagedReader](VM.Models.FE.Utilities.DFMFManagedReader.md) @@ -50,6 +51,7 @@ public class DFMFManagedReader : DFMFReader, IDFMFReader [DFMFReader.ReadPropertyInformation\(\)](VM.Models.FE.Utilities.DFMFReader.md\#VM\_Models\_FE\_Utilities\_DFMFReader\_ReadPropertyInformation), [DFMFReader.ReadConstraintInformation\(\)](VM.Models.FE.Utilities.DFMFReader.md\#VM\_Models\_FE\_Utilities\_DFMFReader\_ReadConstraintInformation), [DFMFReader.ReadNamedSelectionInformation\(\)](VM.Models.FE.Utilities.DFMFReader.md\#VM\_Models\_FE\_Utilities\_DFMFReader\_ReadNamedSelectionInformation), +[DFMFReader.ReadHashInformation\(\)](VM.Models.FE.Utilities.DFMFReader.md\#VM\_Models\_FE\_Utilities\_DFMFReader\_ReadHashInformation), [DFMFReader.SetInterfacePoints\(Vector\[\]\)](VM.Models.FE.Utilities.DFMFReader.md\#VM\_Models\_FE\_Utilities\_DFMFReader\_SetInterfacePoints\_VM\_Vector\_\_\_), [DFMFReader.SetMarkerPositions\(Vector\[\]\)](VM.Models.FE.Utilities.DFMFReader.md\#VM\_Models\_FE\_Utilities\_DFMFReader\_SetMarkerPositions\_VM\_Vector\_\_\_), [DFMFReader.SetMassInfosForOldVer\(MassInfoForOldVer\[\]\)](VM.Models.FE.Utilities.DFMFReader.md\#VM\_Models\_FE\_Utilities\_DFMFReader\_SetMassInfosForOldVer\_VM\_Models\_FE\_Utilities\_MassInfoForOldVer\_\_\_), @@ -62,6 +64,7 @@ public class DFMFManagedReader : DFMFReader, IDFMFReader [DFMFReader.SetPropertyInformation\(FEPropertyBeam\[\], FEPropertyBeamL\[\], FEPropertyShell\[\], FEPropertySolid\[\]\)](VM.Models.FE.Utilities.DFMFReader.md\#VM\_Models\_FE\_Utilities\_DFMFReader\_SetPropertyInformation\_VM\_Models\_FE\_Utilities\_FEPropertyBeam\_\_\_VM\_Models\_FE\_Utilities\_FEPropertyBeamL\_\_\_VM\_Models\_FE\_Utilities\_FEPropertyShell\_\_\_VM\_Models\_FE\_Utilities\_FEPropertySolid\_\_\_), [DFMFReader.SetConstraintInformation\(FEConstraintRBE\[\], FEConstraintRBE\[\], FEConstraintTie\[\]\)](VM.Models.FE.Utilities.DFMFReader.md\#VM\_Models\_FE\_Utilities\_DFMFReader\_SetConstraintInformation\_VM\_Models\_FE\_Utilities\_FEConstraintRBE\_\_\_VM\_Models\_FE\_Utilities\_FEConstraintRBE\_\_\_VM\_Models\_FE\_Utilities\_FEConstraintTie\_\_\_), [DFMFReader.SetNamedSelectionInformation\(NamedSelection\[\], NamedSelection\[\]\)](VM.Models.FE.Utilities.DFMFReader.md\#VM\_Models\_FE\_Utilities\_DFMFReader\_SetNamedSelectionInformation\_VM\_Models\_FE\_Utilities\_NamedSelection\_\_\_VM\_Models\_FE\_Utilities\_NamedSelection\_\_\_), +[DFMFReader.SetHashInformation\(string\)](VM.Models.FE.Utilities.DFMFReader.md\#VM\_Models\_FE\_Utilities\_DFMFReader\_SetHashInformation\_System\_String\_), [DFMFReader.ReadNamedSelectionFromConstraintInformation\(\)](VM.Models.FE.Utilities.DFMFReader.md\#VM\_Models\_FE\_Utilities\_DFMFReader\_ReadNamedSelectionFromConstraintInformation), [DFMFReader.DisposeManagedResource\(\)](VM.Models.FE.Utilities.DFMFReader.md\#VM\_Models\_FE\_Utilities\_DFMFReader\_DisposeManagedResource), [DFMFReader.DisposeNativeResources\(\)](VM.Models.FE.Utilities.DFMFReader.md\#VM\_Models\_FE\_Utilities\_DFMFReader\_DisposeNativeResources), @@ -132,7 +135,8 @@ public class DFMFManagedReader : DFMFReader, IDFMFReader [DFMFReader.UnitMass](VM.Models.FE.Utilities.DFMFReader.md\#VM\_Models\_FE\_Utilities\_DFMFReader\_UnitMass), [DFMFReader.UnitTime](VM.Models.FE.Utilities.DFMFReader.md\#VM\_Models\_FE\_Utilities\_DFMFReader\_UnitTime), [DFMFReader.Version](VM.Models.FE.Utilities.DFMFReader.md\#VM\_Models\_FE\_Utilities\_DFMFReader\_Version), -[DFMFReader.AvailableAsNodal](VM.Models.FE.Utilities.DFMFReader.md\#VM\_Models\_FE\_Utilities\_DFMFReader\_AvailableAsNodal) +[DFMFReader.AvailableAsNodal](VM.Models.FE.Utilities.DFMFReader.md\#VM\_Models\_FE\_Utilities\_DFMFReader\_AvailableAsNodal), +[DFMFReader.Hash](VM.Models.FE.Utilities.DFMFReader.md\#VM\_Models\_FE\_Utilities\_DFMFReader\_Hash) #### Extension Methods @@ -160,11 +164,11 @@ protected override sealed void GetMultipleShapes(DFMFReader.ModeMeta meta, IColl `meta` [DFMFReader](VM.Models.FE.Utilities.DFMFReader.md).[ModeMeta](VM.Models.FE.Utilities.DFMFReader.ModeMeta.md) -`arnModeSeq` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`arnModeSeq` ICollection -`nNodeSeq` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNodeSeq` int -`dFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dFactor` double `arVecMode` Vector\[\] @@ -178,13 +182,13 @@ protected override sealed void GetMultipleStress(DFMFReader.ModeMeta meta, IColl `meta` [DFMFReader](VM.Models.FE.Utilities.DFMFReader.md).[ModeMeta](VM.Models.FE.Utilities.DFMFReader.ModeMeta.md) -`colModeSeq` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`colModeSeq` ICollection -`nodeSeq` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nodeSeq` int -`factor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`factor` double -`colStress` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\[\]\> +`colStress` ICollection ### GetPointInformation\(ICollection, ModeMeta, Vector, int, out Vector, out Vector\) @@ -194,13 +198,13 @@ protected override sealed bool GetPointInformation(ICollection points, D #### Parameters -`points` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1) +`points` ICollection `meta` [DFMFReader](VM.Models.FE.Utilities.DFMFReader.md).[ModeMeta](VM.Models.FE.Utilities.DFMFReader.ModeMeta.md) `position` Vector -`modeSequence` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`modeSequence` int `vecTra` Vector @@ -208,7 +212,7 @@ protected override sealed bool GetPointInformation(ICollection points, D #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetSingleShape\(ModeMeta, int, int, double, out Vector\) @@ -220,11 +224,11 @@ protected override sealed void GetSingleShape(DFMFReader.ModeMeta meta, int nMod `meta` [DFMFReader](VM.Models.FE.Utilities.DFMFReader.md).[ModeMeta](VM.Models.FE.Utilities.DFMFReader.ModeMeta.md) -`nModeSeq` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nModeSeq` int -`nNodeSeq` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNodeSeq` int -`dFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dFactor` double `vecMode` Vector @@ -238,13 +242,13 @@ protected override sealed void GetSingleStress(DFMFReader.ModeMeta meta, int mod `meta` [DFMFReader](VM.Models.FE.Utilities.DFMFReader.md).[ModeMeta](VM.Models.FE.Utilities.DFMFReader.ModeMeta.md) -`modeSeq` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`modeSeq` int -`nodeSeq` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nodeSeq` int -`factor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`factor` double -`stress` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`stress` double\[\] ### ImportImpl\(string, Unit\) @@ -254,7 +258,7 @@ protected override sealed void ImportImpl(string strModeFileName, Unit unit) #### Parameters -`strModeFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strModeFileName` string `unit` Unit @@ -264,6 +268,12 @@ protected override sealed void ImportImpl(string strModeFileName, Unit unit) protected override void ReadConstraintInformation() ``` +### ReadHashInformation\(\) + +```csharp +protected override void ReadHashInformation() +``` + ### ReadInterfacePoints\(\) ```csharp diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.DFMFReader.ModeMeta.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.DFMFReader.ModeMeta.md index 8f6f616cb6..3578dcf936 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.DFMFReader.ModeMeta.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.DFMFReader.ModeMeta.md @@ -1,4 +1,5 @@ -# Enum DFMFReader.ModeMeta +# Enum DFMFReader.ModeMeta + Namespace: [VM.Models.FE.Utilities](VM.Models.FE.Utilities.md) Assembly: VM.Models.FE.Utilities.dll @@ -21,6 +22,8 @@ public enum DFMFReader.ModeMeta `Grid = 2` +`HashInformation = 27` + `InterPoint = 10` `InvariantVariable = 7` diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.DFMFReader.ModeMetaInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.DFMFReader.ModeMetaInfo.md index eea1423eb6..894d489c59 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.DFMFReader.ModeMetaInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.DFMFReader.ModeMetaInfo.md @@ -1,4 +1,5 @@ -# Struct DFMFReader.ModeMetaInfo +# Struct DFMFReader.ModeMetaInfo + Namespace: [VM.Models.FE.Utilities](VM.Models.FE.Utilities.md) Assembly: VM.Models.FE.Utilities.dll @@ -17,9 +18,9 @@ public ModeMetaInfo(string name, long contentSize) #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string -`contentSize` [long](https://learn.microsoft.com/dotnet/api/system.int64) +`contentSize` long ## Properties @@ -31,7 +32,7 @@ public long ContentsSize { readonly get; set; } #### Property Value - [long](https://learn.microsoft.com/dotnet/api/system.int64) + long ### Name @@ -41,5 +42,5 @@ public string Name { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.DFMFReader.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.DFMFReader.md index b9a216b3e9..8a5962c996 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.DFMFReader.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.DFMFReader.md @@ -1,4 +1,5 @@ -# Class DFMFReader +# Class DFMFReader + Namespace: [VM.Models.FE.Utilities](VM.Models.FE.Utilities.md) Assembly: VM.Models.FE.Utilities.dll @@ -9,7 +10,7 @@ public abstract class DFMFReader : IDFMFReader #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DFMFReader](VM.Models.FE.Utilities.DFMFReader.md) #### Derived @@ -44,7 +45,7 @@ protected const int V1Version = 2010011432 #### Field Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Properties @@ -56,7 +57,7 @@ public ReadOnlyCollection AddedNodesForRBE { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1) + ReadOnlyCollection ### ArrudaBoyceMaterials @@ -66,7 +67,7 @@ public ReadOnlyCollection ArrudaBoyceMaterials { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[MaterialAB](VM.Models.FE.Utilities.MaterialAB.md)\> + ReadOnlyCollection<[MaterialAB](VM.Models.FE.Utilities.MaterialAB.md)\> ### AvailableAsNodal @@ -76,7 +77,7 @@ public bool AvailableAsNodal { get; protected set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Beam2Elements @@ -86,7 +87,7 @@ public ReadOnlyCollection Beam2Elements { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> + ReadOnlyCollection<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> ### BeamLProperties @@ -96,7 +97,7 @@ public ReadOnlyCollection BeamLProperties { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEPropertyBeamL](VM.Models.FE.Utilities.FEPropertyBeamL.md)\> + ReadOnlyCollection<[FEPropertyBeamL](VM.Models.FE.Utilities.FEPropertyBeamL.md)\> ### BeamProperties @@ -106,7 +107,7 @@ public ReadOnlyCollection BeamProperties { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEPropertyBeam](VM.Models.FE.Utilities.FEPropertyBeam.md)\> + ReadOnlyCollection<[FEPropertyBeam](VM.Models.FE.Utilities.FEPropertyBeam.md)\> ### DFMFFileType @@ -126,7 +127,7 @@ public ReadOnlyCollection EdgeSets { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[NamedSelection](VM.Models.FE.Utilities.NamedSelection.md)\> + ReadOnlyCollection<[NamedSelection](VM.Models.FE.Utilities.NamedSelection.md)\> ### FactorForce @@ -136,7 +137,7 @@ public double FactorForce { get; protected set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### FactorLength @@ -146,7 +147,7 @@ public double FactorLength { get; protected set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### FactorMass @@ -156,7 +157,7 @@ public double FactorMass { get; protected set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### FactorScale @@ -166,7 +167,7 @@ public double FactorScale { get; protected set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### FactorTime @@ -176,7 +177,7 @@ public double FactorTime { get; protected set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### FilePath @@ -186,7 +187,17 @@ public string FilePath { get; protected set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string + +### Hash + +```csharp +public string Hash { get; } +``` + +#### Property Value + + string ### ISOMaterials @@ -196,7 +207,7 @@ public ReadOnlyCollection ISOMaterials { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[MaterialISO](VM.Models.FE.Utilities.MaterialISO.md)\> + ReadOnlyCollection<[MaterialISO](VM.Models.FE.Utilities.MaterialISO.md)\> ### InterfacePoints @@ -206,7 +217,7 @@ public ReadOnlyCollection InterfacePoints { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1) + ReadOnlyCollection ### InvariantFilePosition @@ -216,7 +227,7 @@ public long InvariantFilePosition { get; protected set; } #### Property Value - [long](https://learn.microsoft.com/dotnet/api/system.int64) + long ### Level @@ -226,7 +237,7 @@ public uint Level { get; protected set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### MarkerPositions @@ -236,7 +247,7 @@ public ReadOnlyCollection MarkerPositions { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1) + ReadOnlyCollection ### Mass @@ -246,7 +257,7 @@ public double Mass { get; protected set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MassCenter @@ -266,7 +277,7 @@ public ReadOnlyCollection MassInfoForOldVerArray { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[MassInfoForOldVer](VM.Models.FE.Utilities.MassInfoForOldVer.md)\> + ReadOnlyCollection<[MassInfoForOldVer](VM.Models.FE.Utilities.MassInfoForOldVer.md)\> ### MasterPoints @@ -276,7 +287,7 @@ public ReadOnlyCollection MasterPoints { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[uint](https://learn.microsoft.com/dotnet/api/system.uint32)\> + ReadOnlyCollection ### ModalType @@ -296,7 +307,7 @@ public ReadOnlyCollection Modes { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[Mode](VM.Models.FE.Utilities.Mode.md)\> + ReadOnlyCollection<[Mode](VM.Models.FE.Utilities.Mode.md)\> ### MomentOfInertia @@ -306,7 +317,7 @@ public ReadOnlyCollection MomentOfInertia { get; protected set; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> + ReadOnlyCollection ### MooneyRivlinMaterials @@ -316,7 +327,7 @@ public ReadOnlyCollection MooneyRivlinMaterials { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[MaterialMR](VM.Models.FE.Utilities.MaterialMR.md)\> + ReadOnlyCollection<[MaterialMR](VM.Models.FE.Utilities.MaterialMR.md)\> ### NBodies @@ -326,7 +337,7 @@ public ReadOnlyCollection NBodies { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[NBody](VM.Models.FE.Utilities.NBody.md)\> + ReadOnlyCollection<[NBody](VM.Models.FE.Utilities.NBody.md)\> ### NeoHookeanMaterials @@ -336,7 +347,7 @@ public ReadOnlyCollection NeoHookeanMaterials { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[MaterialNH](VM.Models.FE.Utilities.MaterialNH.md)\> + ReadOnlyCollection<[MaterialNH](VM.Models.FE.Utilities.MaterialNH.md)\> ### NodePositions @@ -346,7 +357,7 @@ public ReadOnlyCollection NodePositions { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1) + ReadOnlyCollection ### NumberOfDummyNode @@ -356,7 +367,7 @@ public int NumberOfDummyNode { get; protected set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfInterfacePoints @@ -366,7 +377,7 @@ public int NumberOfInterfacePoints { get; protected set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfMarkerPositions @@ -376,7 +387,7 @@ public int NumberOfMarkerPositions { get; protected set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfMassInfosForOldVersion @@ -386,7 +397,7 @@ public int NumberOfMassInfosForOldVersion { get; protected set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfMasterPoints @@ -396,7 +407,7 @@ public int NumberOfMasterPoints { get; protected set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfModes @@ -406,7 +417,7 @@ public int NumberOfModes { get; protected set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfNodes @@ -416,7 +427,7 @@ public int NumberOfNodes { get; protected set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfTetraConnectivities @@ -426,7 +437,7 @@ public int NumberOfTetraConnectivities { get; protected set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfTriaConnectivities @@ -436,7 +447,7 @@ public int NumberOfTriaConnectivities { get; protected set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### ORTHOMaterials @@ -446,7 +457,7 @@ public ReadOnlyCollection ORTHOMaterials { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[MaterialORTHO](VM.Models.FE.Utilities.MaterialORTHO.md)\> + ReadOnlyCollection<[MaterialORTHO](VM.Models.FE.Utilities.MaterialORTHO.md)\> ### OgdenMaterials @@ -456,7 +467,7 @@ public ReadOnlyCollection OgdenMaterials { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[MaterialOG](VM.Models.FE.Utilities.MaterialOG.md)\> + ReadOnlyCollection<[MaterialOG](VM.Models.FE.Utilities.MaterialOG.md)\> ### PatchSets @@ -466,7 +477,7 @@ public ReadOnlyCollection PatchSets { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[NamedSelection](VM.Models.FE.Utilities.NamedSelection.md)\> + ReadOnlyCollection<[NamedSelection](VM.Models.FE.Utilities.NamedSelection.md)\> ### RBE2s @@ -476,7 +487,7 @@ public ReadOnlyCollection RBE2s { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEConstraintRBE](VM.Models.FE.Utilities.FEConstraintRBE.md)\> + ReadOnlyCollection<[FEConstraintRBE](VM.Models.FE.Utilities.FEConstraintRBE.md)\> ### RBE3s @@ -486,7 +497,7 @@ public ReadOnlyCollection RBE3s { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEConstraintRBE](VM.Models.FE.Utilities.FEConstraintRBE.md)\> + ReadOnlyCollection<[FEConstraintRBE](VM.Models.FE.Utilities.FEConstraintRBE.md)\> ### Shell3Elements @@ -496,7 +507,7 @@ public ReadOnlyCollection Shell3Elements { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> + ReadOnlyCollection<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> ### Shell4Elements @@ -506,7 +517,7 @@ public ReadOnlyCollection Shell4Elements { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> + ReadOnlyCollection<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> ### Shell6Elements @@ -516,7 +527,7 @@ public ReadOnlyCollection Shell6Elements { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> + ReadOnlyCollection<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> ### Shell8Elements @@ -526,7 +537,7 @@ public ReadOnlyCollection Shell8Elements { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> + ReadOnlyCollection<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> ### ShellProperties @@ -536,7 +547,7 @@ public ReadOnlyCollection ShellProperties { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEPropertyShell](VM.Models.FE.Utilities.FEPropertyShell.md)\> + ReadOnlyCollection<[FEPropertyShell](VM.Models.FE.Utilities.FEPropertyShell.md)\> ### Solid10Elements @@ -546,7 +557,7 @@ public ReadOnlyCollection Solid10Elements { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> + ReadOnlyCollection<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> ### Solid13Elements @@ -556,7 +567,7 @@ public ReadOnlyCollection Solid13Elements { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> + ReadOnlyCollection<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> ### Solid15Elements @@ -566,7 +577,7 @@ public ReadOnlyCollection Solid15Elements { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> + ReadOnlyCollection<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> ### Solid20Elements @@ -576,7 +587,7 @@ public ReadOnlyCollection Solid20Elements { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> + ReadOnlyCollection<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> ### Solid4Elements @@ -586,7 +597,7 @@ public ReadOnlyCollection Solid4Elements { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> + ReadOnlyCollection<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> ### Solid5Elements @@ -596,7 +607,7 @@ public ReadOnlyCollection Solid5Elements { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> + ReadOnlyCollection<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> ### Solid6Elements @@ -606,7 +617,7 @@ public ReadOnlyCollection Solid6Elements { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> + ReadOnlyCollection<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> ### Solid8Elements @@ -616,7 +627,7 @@ public ReadOnlyCollection Solid8Elements { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> + ReadOnlyCollection<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> ### SolidProperties @@ -626,7 +637,7 @@ public ReadOnlyCollection SolidProperties { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEPropertySolid](VM.Models.FE.Utilities.FEPropertySolid.md)\> + ReadOnlyCollection<[FEPropertySolid](VM.Models.FE.Utilities.FEPropertySolid.md)\> ### TetraConnectivities @@ -636,7 +647,7 @@ public ReadOnlyCollection TetraConnectivities { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> + ReadOnlyCollection ### Ties @@ -646,7 +657,7 @@ public ReadOnlyCollection Ties { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEConstraintTie](VM.Models.FE.Utilities.FEConstraintTie.md)\> + ReadOnlyCollection<[FEConstraintTie](VM.Models.FE.Utilities.FEConstraintTie.md)\> ### TotalNodesForModal @@ -656,7 +667,7 @@ public int TotalNodesForModal { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### TriaConnectivities @@ -666,7 +677,7 @@ public ReadOnlyCollection TriaConnectivities { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> + ReadOnlyCollection ### UnitForce @@ -676,7 +687,7 @@ public double UnitForce { get; protected set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UnitLength @@ -686,7 +697,7 @@ public double UnitLength { get; protected set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UnitMass @@ -696,7 +707,7 @@ public double UnitMass { get; protected set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UnitTime @@ -706,7 +717,7 @@ public double UnitTime { get; protected set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Version @@ -716,7 +727,7 @@ public uint Version { get; protected set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ## Methods @@ -738,11 +749,11 @@ public static IDFMFReader Create(string path, Unit unit, bool readAutomatically #### Parameters -`path` [string](https://learn.microsoft.com/dotnet/api/system.string) +`path` string `unit` Unit -`readAutomatically` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`readAutomatically` bool #### Returns @@ -756,7 +767,7 @@ protected virtual void Dispose(bool disposing) #### Parameters -`disposing` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`disposing` bool ### DisposeManagedResource\(\) @@ -784,7 +795,7 @@ public bool EqualsPatch(FEPatchInfo[] infoTarget, FEPatchInfo[] infoTool) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### \~DFMFReader\(\) @@ -802,7 +813,7 @@ public bool GetMarkerInformation(Vector position, int modeSequence, out Vector v `position` Vector -`modeSequence` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`modeSequence` int `vecTrans` Vector @@ -810,7 +821,7 @@ public bool GetMarkerInformation(Vector position, int modeSequence, out Vector v #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetModeInterPoint\(Vector, int, out Vector, out Vector\) @@ -822,7 +833,7 @@ public bool GetModeInterPoint(Vector position, int modeSequence, out Vector vecT `position` Vector -`modeSequence` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`modeSequence` int `vecTransMode` Vector @@ -830,7 +841,7 @@ public bool GetModeInterPoint(Vector position, int modeSequence, out Vector vecT #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetMultipleShapes\(ModeMeta, ICollection, int, double, out Vector\[\]\) @@ -842,11 +853,11 @@ protected abstract void GetMultipleShapes(DFMFReader.ModeMeta rotationalShape, I `rotationalShape` [DFMFReader](VM.Models.FE.Utilities.DFMFReader.md).[ModeMeta](VM.Models.FE.Utilities.DFMFReader.ModeMeta.md) -`colModeSeq` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`colModeSeq` ICollection -`nodeSeq` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nodeSeq` int -`v` [double](https://learn.microsoft.com/dotnet/api/system.double) +`v` double `vecModes` Vector\[\] @@ -860,13 +871,13 @@ protected abstract void GetMultipleStress(DFMFReader.ModeMeta meta, ICollection< `meta` [DFMFReader](VM.Models.FE.Utilities.DFMFReader.md).[ModeMeta](VM.Models.FE.Utilities.DFMFReader.ModeMeta.md) -`colModeSeq` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`colModeSeq` ICollection -`nodeSeq` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nodeSeq` int -`factor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`factor` double -`stress` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\[\]\> +`stress` ICollection ### GetPointInformation\(ICollection, ModeMeta, Vector, int, out Vector, out Vector\) @@ -876,13 +887,13 @@ protected abstract bool GetPointInformation(ICollection points, DFMFRead #### Parameters -`points` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1) +`points` ICollection `meta` [DFMFReader](VM.Models.FE.Utilities.DFMFReader.md).[ModeMeta](VM.Models.FE.Utilities.DFMFReader.ModeMeta.md) `position` Vector -`modeSequence` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`modeSequence` int `vecTra` Vector @@ -890,7 +901,7 @@ protected abstract bool GetPointInformation(ICollection points, DFMFRead #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetPointInformationImpl\(ICollection, ModeMeta, Vector, int, out Vector, out Vector, Func\) @@ -900,23 +911,23 @@ protected bool GetPointInformationImpl(ICollection points, DFMFReader.Mo #### Parameters -`points` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1) +`points` ICollection `meta` [DFMFReader](VM.Models.FE.Utilities.DFMFReader.md).[ModeMeta](VM.Models.FE.Utilities.DFMFReader.ModeMeta.md) `position` Vector -`modeSequence` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`modeSequence` int `vecTra` Vector `vecRot` Vector -`functionToRead` [Func](https://learn.microsoft.com/dotnet/api/system.func\-2)<[int](https://learn.microsoft.com/dotnet/api/system.int32), \(Vector, Vector\)\> +`functionToRead` Func #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetRotationalShape\(int, int, out Vector\) @@ -926,9 +937,9 @@ public void GetRotationalShape(int nModeSeq, int nNodeSeq, out Vector vecMode) #### Parameters -`nModeSeq` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nModeSeq` int -`nNodeSeq` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNodeSeq` int `vecMode` Vector @@ -940,9 +951,9 @@ public void GetRotationalShape(ICollection colModeSeq, int nNodeSeq, out Ve #### Parameters -`colModeSeq` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`colModeSeq` ICollection -`nNodeSeq` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNodeSeq` int `arVecMode` Vector\[\] @@ -956,11 +967,11 @@ protected abstract void GetSingleShape(DFMFReader.ModeMeta meta, int modeSeq, in `meta` [DFMFReader](VM.Models.FE.Utilities.DFMFReader.md).[ModeMeta](VM.Models.FE.Utilities.DFMFReader.ModeMeta.md) -`modeSeq` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`modeSeq` int -`nodeSeq` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nodeSeq` int -`factor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`factor` double `mode` Vector @@ -974,13 +985,13 @@ protected abstract void GetSingleStress(DFMFReader.ModeMeta meta, int modeSeq, i `meta` [DFMFReader](VM.Models.FE.Utilities.DFMFReader.md).[ModeMeta](VM.Models.FE.Utilities.DFMFReader.ModeMeta.md) -`modeSeq` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`modeSeq` int -`nodeSeq` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nodeSeq` int -`factor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`factor` double -`stress` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`stress` double\[\] ### GetStressShape\(int, int, out double\[\]\) @@ -990,11 +1001,11 @@ public void GetStressShape(int modeSeq, int nodeSeq, out double[] stress) #### Parameters -`modeSeq` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`modeSeq` int -`nodeSeq` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nodeSeq` int -`stress` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`stress` double\[\] ### GetStressShape\(ICollection, int, out ICollection\) @@ -1004,11 +1015,11 @@ public void GetStressShape(ICollection colModeSeq, int nodeSeq, out ICollec #### Parameters -`colModeSeq` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`colModeSeq` ICollection -`nodeSeq` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nodeSeq` int -`stress` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\[\]\> +`stress` ICollection ### GetTranslationalShape\(int, int, out Vector\) @@ -1018,9 +1029,9 @@ public void GetTranslationalShape(int nModeSeq, int nNodeSeq, out Vector vecMode #### Parameters -`nModeSeq` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nModeSeq` int -`nNodeSeq` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNodeSeq` int `vecMode` Vector @@ -1032,9 +1043,9 @@ public void GetTranslationalShape(ICollection colModeSeq, int nNodeSeq, out #### Parameters -`colModeSeq` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`colModeSeq` ICollection -`nNodeSeq` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNodeSeq` int `arVecMode` Vector\[\] @@ -1046,7 +1057,7 @@ public ReadOnlyCollection GetUnusedModeIndexes() #### Returns - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> + ReadOnlyCollection ### ImportImpl\(string, Unit\) @@ -1056,7 +1067,7 @@ protected abstract void ImportImpl(string strModeFileName, Unit unit) #### Parameters -`strModeFileName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strModeFileName` string `unit` Unit @@ -1066,6 +1077,12 @@ protected abstract void ImportImpl(string strModeFileName, Unit unit) protected abstract void ReadConstraintInformation() ``` +### ReadHashInformation\(\) + +```csharp +protected abstract void ReadHashInformation() +``` + ### ReadInterfacePoints\(\) ```csharp @@ -1140,6 +1157,16 @@ protected void SetConstraintInformation(FEConstraintRBE[] rbe2s, FEConstraintRBE `ties` [FEConstraintTie](VM.Models.FE.Utilities.FEConstraintTie.md)\[\] +### SetHashInformation\(string\) + +```csharp +protected void SetHashInformation(string hash) +``` + +#### Parameters + +`hash` string + ### SetInterfacePoints\(Vector\[\]\) ```csharp @@ -1178,7 +1205,7 @@ protected void SetMasterPoints(uint[] points) #### Parameters -`points` [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] +`points` uint\[\] ### SetMaterialInformation\(MaterialISO\[\], MaterialORTHO\[\], MaterialAB\[\], MaterialNH\[\], MaterialMR\[\], MaterialOG\[\]\) @@ -1220,9 +1247,9 @@ protected void SetNBodyInformations(Vector[] nodes, int[] triaConnectivities, in `nodes` Vector\[\] -`triaConnectivities` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`triaConnectivities` int\[\] -`tetraConnectivities` [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] +`tetraConnectivities` int\[\] ### SetNBodyInformations\(NBody\[\], FEElement\[\], FEElement\[\], FEElement\[\], FEElement\[\], FEElement\[\], FEElement\[\], FEElement\[\], FEElement\[\], FEElement\[\], FEElement\[\], FEElement\[\], FEElement\[\], FEElement\[\]\) @@ -1306,5 +1333,5 @@ public void SetUnusedModeIndexes(IEnumerable collection) #### Parameters -`collection` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`collection` IEnumerable diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.DFMFType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.DFMFType.md index d25743987f..c681604822 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.DFMFType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.DFMFType.md @@ -1,4 +1,5 @@ -# Enum DFMFType +# Enum DFMFType + Namespace: [VM.Models.FE.Utilities](VM.Models.FE.Utilities.md) Assembly: VM.Models.FE.Utilities.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.FEConstraintRBE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.FEConstraintRBE.md index aff09607cc..5df51c9f19 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.FEConstraintRBE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.FEConstraintRBE.md @@ -1,4 +1,5 @@ -# Struct FEConstraintRBE +# Struct FEConstraintRBE + Namespace: [VM.Models.FE.Utilities](VM.Models.FE.Utilities.md) Assembly: VM.Models.FE.Utilities.dll @@ -17,7 +18,7 @@ public uint ID { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### MasterNodeSequence @@ -27,7 +28,7 @@ public uint MasterNodeSequence { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### Name @@ -37,7 +38,7 @@ public string Name { readonly get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### NumberOfSlaveNode @@ -47,7 +48,7 @@ public uint NumberOfSlaveNode { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### SlaveNodeSequences @@ -57,7 +58,7 @@ public uint[] SlaveNodeSequences { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] + uint\[\] ### TypeOfRBE diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.FEConstraintTie.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.FEConstraintTie.md index 8e62a63dbd..caad519a9a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.FEConstraintTie.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.FEConstraintTie.md @@ -1,4 +1,5 @@ -# Struct FEConstraintTie +# Struct FEConstraintTie + Namespace: [VM.Models.FE.Utilities](VM.Models.FE.Utilities.md) Assembly: VM.Models.FE.Utilities.dll @@ -37,7 +38,7 @@ public uint ID { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### NumberOfPatchOfActionGeom @@ -47,7 +48,7 @@ public uint NumberOfPatchOfActionGeom { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### NumberOfPatchOfBaseGeom @@ -57,5 +58,5 @@ public uint NumberOfPatchOfBaseGeom { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.FEElement.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.FEElement.md index 41875c0cfb..61a3ce1224 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.FEElement.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.FEElement.md @@ -1,4 +1,5 @@ -# Struct FEElement +# Struct FEElement + Namespace: [VM.Models.FE.Utilities](VM.Models.FE.Utilities.md) Assembly: VM.Models.FE.Utilities.dll @@ -17,7 +18,7 @@ public uint ID { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### NodeSequences @@ -27,7 +28,7 @@ public uint[] NodeSequences { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] + uint\[\] ### PropertySequence @@ -37,5 +38,5 @@ public uint PropertySequence { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.FEPatchInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.FEPatchInfo.md index 28a3ae1061..5c4705a505 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.FEPatchInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.FEPatchInfo.md @@ -1,4 +1,5 @@ -# Struct FEPatchInfo +# Struct FEPatchInfo + Namespace: [VM.Models.FE.Utilities](VM.Models.FE.Utilities.md) Assembly: VM.Models.FE.Utilities.dll @@ -17,7 +18,7 @@ public uint[] NodeSequences { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32)\[\] + uint\[\] ### NumberOfNode @@ -27,5 +28,5 @@ public uint NumberOfNode { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.FEPropertyBeam.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.FEPropertyBeam.md index 0e03a5f7b6..84ed40446e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.FEPropertyBeam.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.FEPropertyBeam.md @@ -1,4 +1,5 @@ -# Struct FEPropertyBeam +# Struct FEPropertyBeam + Namespace: [VM.Models.FE.Utilities](VM.Models.FE.Utilities.md) Assembly: VM.Models.FE.Utilities.dll @@ -17,7 +18,7 @@ public double Area { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DirectionVector @@ -37,7 +38,7 @@ public uint ID { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### Ixx @@ -47,7 +48,7 @@ public double Ixx { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Iyy @@ -57,7 +58,7 @@ public double Iyy { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Izy @@ -67,7 +68,7 @@ public double Izy { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Izz @@ -77,7 +78,7 @@ public double Izz { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MaterialSequence @@ -87,7 +88,7 @@ public uint MaterialSequence { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### ShearFactorY @@ -97,7 +98,7 @@ public double ShearFactorY { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ShearFactorZ @@ -107,5 +108,5 @@ public double ShearFactorZ { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.FEPropertyBeamL.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.FEPropertyBeamL.md index 2113cc72ad..bf18a5feb5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.FEPropertyBeamL.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.FEPropertyBeamL.md @@ -1,4 +1,5 @@ -# Struct FEPropertyBeamL +# Struct FEPropertyBeamL + Namespace: [VM.Models.FE.Utilities](VM.Models.FE.Utilities.md) Assembly: VM.Models.FE.Utilities.dll @@ -27,7 +28,7 @@ public uint ID { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### MaterialSequence @@ -37,7 +38,7 @@ public uint MaterialSequence { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### NumberOfSection @@ -47,7 +48,7 @@ public uint NumberOfSection { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### SectionDimension @@ -57,7 +58,7 @@ public double[] SectionDimension { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### SectionTypeID @@ -67,5 +68,5 @@ public uint SectionTypeID { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.FEPropertyShell.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.FEPropertyShell.md index 825893d35d..a6ca54ae53 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.FEPropertyShell.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.FEPropertyShell.md @@ -1,4 +1,5 @@ -# Struct FEPropertyShell +# Struct FEPropertyShell + Namespace: [VM.Models.FE.Utilities](VM.Models.FE.Utilities.md) Assembly: VM.Models.FE.Utilities.dll @@ -17,7 +18,7 @@ public uint ID { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### MaterialSequence @@ -27,7 +28,7 @@ public uint MaterialSequence { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### Thickness @@ -37,5 +38,5 @@ public double Thickness { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.FEPropertySolid.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.FEPropertySolid.md index 83013434ff..a80bff0bbc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.FEPropertySolid.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.FEPropertySolid.md @@ -1,4 +1,5 @@ -# Struct FEPropertySolid +# Struct FEPropertySolid + Namespace: [VM.Models.FE.Utilities](VM.Models.FE.Utilities.md) Assembly: VM.Models.FE.Utilities.dll @@ -17,7 +18,7 @@ public uint ID { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### MaterialSequence @@ -27,5 +28,5 @@ public uint MaterialSequence { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.IDFMFReader.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.IDFMFReader.md index e9e17b749e..5410205633 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.IDFMFReader.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.IDFMFReader.md @@ -1,4 +1,5 @@ -# Interface IDFMFReader +# Interface IDFMFReader + Namespace: [VM.Models.FE.Utilities](VM.Models.FE.Utilities.md) Assembly: VM.Models.FE.Utilities.dll @@ -23,7 +24,7 @@ ReadOnlyCollection AddedNodesForRBE { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1) + ReadOnlyCollection ### ArrudaBoyceMaterials @@ -33,7 +34,7 @@ ReadOnlyCollection ArrudaBoyceMaterials { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[MaterialAB](VM.Models.FE.Utilities.MaterialAB.md)\> + ReadOnlyCollection<[MaterialAB](VM.Models.FE.Utilities.MaterialAB.md)\> ### AvailableAsNodal @@ -43,7 +44,7 @@ bool AvailableAsNodal { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Beam2Elements @@ -53,7 +54,7 @@ ReadOnlyCollection Beam2Elements { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> + ReadOnlyCollection<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> ### BeamLProperties @@ -63,7 +64,7 @@ ReadOnlyCollection BeamLProperties { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEPropertyBeamL](VM.Models.FE.Utilities.FEPropertyBeamL.md)\> + ReadOnlyCollection<[FEPropertyBeamL](VM.Models.FE.Utilities.FEPropertyBeamL.md)\> ### BeamProperties @@ -73,7 +74,7 @@ ReadOnlyCollection BeamProperties { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEPropertyBeam](VM.Models.FE.Utilities.FEPropertyBeam.md)\> + ReadOnlyCollection<[FEPropertyBeam](VM.Models.FE.Utilities.FEPropertyBeam.md)\> ### DFMFFileType @@ -93,7 +94,7 @@ ReadOnlyCollection EdgeSets { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[NamedSelection](VM.Models.FE.Utilities.NamedSelection.md)\> + ReadOnlyCollection<[NamedSelection](VM.Models.FE.Utilities.NamedSelection.md)\> ### FactorForce @@ -103,7 +104,7 @@ double FactorForce { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### FactorLength @@ -113,7 +114,7 @@ double FactorLength { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### FactorMass @@ -123,7 +124,7 @@ double FactorMass { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### FactorScale @@ -133,7 +134,7 @@ double FactorScale { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### FactorTime @@ -143,7 +144,7 @@ double FactorTime { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### FilePath @@ -153,7 +154,17 @@ string FilePath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string + +### Hash + +```csharp +string Hash { get; } +``` + +#### Property Value + + string ### ISOMaterials @@ -163,7 +174,7 @@ ReadOnlyCollection ISOMaterials { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[MaterialISO](VM.Models.FE.Utilities.MaterialISO.md)\> + ReadOnlyCollection<[MaterialISO](VM.Models.FE.Utilities.MaterialISO.md)\> ### InterfacePoints @@ -173,7 +184,7 @@ ReadOnlyCollection InterfacePoints { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1) + ReadOnlyCollection ### InvariantFilePosition @@ -183,7 +194,7 @@ long InvariantFilePosition { get; } #### Property Value - [long](https://learn.microsoft.com/dotnet/api/system.int64) + long ### Level @@ -193,7 +204,7 @@ uint Level { get; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### MarkerPositions @@ -203,7 +214,7 @@ ReadOnlyCollection MarkerPositions { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1) + ReadOnlyCollection ### Mass @@ -213,7 +224,7 @@ double Mass { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### MassCenter @@ -233,7 +244,7 @@ ReadOnlyCollection MassInfoForOldVerArray { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[MassInfoForOldVer](VM.Models.FE.Utilities.MassInfoForOldVer.md)\> + ReadOnlyCollection<[MassInfoForOldVer](VM.Models.FE.Utilities.MassInfoForOldVer.md)\> ### MasterPoints @@ -243,7 +254,7 @@ ReadOnlyCollection MasterPoints { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[uint](https://learn.microsoft.com/dotnet/api/system.uint32)\> + ReadOnlyCollection ### ModalType @@ -263,7 +274,7 @@ ReadOnlyCollection Modes { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[Mode](VM.Models.FE.Utilities.Mode.md)\> + ReadOnlyCollection<[Mode](VM.Models.FE.Utilities.Mode.md)\> ### MomentOfInertia @@ -273,7 +284,7 @@ ReadOnlyCollection MomentOfInertia { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> + ReadOnlyCollection ### MooneyRivlinMaterials @@ -283,7 +294,7 @@ ReadOnlyCollection MooneyRivlinMaterials { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[MaterialMR](VM.Models.FE.Utilities.MaterialMR.md)\> + ReadOnlyCollection<[MaterialMR](VM.Models.FE.Utilities.MaterialMR.md)\> ### NBodies @@ -293,7 +304,7 @@ ReadOnlyCollection NBodies { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[NBody](VM.Models.FE.Utilities.NBody.md)\> + ReadOnlyCollection<[NBody](VM.Models.FE.Utilities.NBody.md)\> ### NeoHookeanMaterials @@ -303,7 +314,7 @@ ReadOnlyCollection NeoHookeanMaterials { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[MaterialNH](VM.Models.FE.Utilities.MaterialNH.md)\> + ReadOnlyCollection<[MaterialNH](VM.Models.FE.Utilities.MaterialNH.md)\> ### NodePositions @@ -313,7 +324,7 @@ ReadOnlyCollection NodePositions { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1) + ReadOnlyCollection ### NumberOfDummyNode @@ -323,7 +334,7 @@ int NumberOfDummyNode { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfInterfacePoints @@ -333,7 +344,7 @@ int NumberOfInterfacePoints { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfMarkerPositions @@ -343,7 +354,7 @@ int NumberOfMarkerPositions { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfMassInfosForOldVersion @@ -353,7 +364,7 @@ int NumberOfMassInfosForOldVersion { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfMasterPoints @@ -363,7 +374,7 @@ int NumberOfMasterPoints { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfModes @@ -373,7 +384,7 @@ int NumberOfModes { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfNodes @@ -383,7 +394,7 @@ int NumberOfNodes { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfTetraConnectivities @@ -393,7 +404,7 @@ int NumberOfTetraConnectivities { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfTriaConnectivities @@ -403,7 +414,7 @@ int NumberOfTriaConnectivities { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### ORTHOMaterials @@ -413,7 +424,7 @@ ReadOnlyCollection ORTHOMaterials { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[MaterialORTHO](VM.Models.FE.Utilities.MaterialORTHO.md)\> + ReadOnlyCollection<[MaterialORTHO](VM.Models.FE.Utilities.MaterialORTHO.md)\> ### OgdenMaterials @@ -423,7 +434,7 @@ ReadOnlyCollection OgdenMaterials { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[MaterialOG](VM.Models.FE.Utilities.MaterialOG.md)\> + ReadOnlyCollection<[MaterialOG](VM.Models.FE.Utilities.MaterialOG.md)\> ### PatchSets @@ -433,7 +444,7 @@ ReadOnlyCollection PatchSets { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[NamedSelection](VM.Models.FE.Utilities.NamedSelection.md)\> + ReadOnlyCollection<[NamedSelection](VM.Models.FE.Utilities.NamedSelection.md)\> ### RBE2s @@ -443,7 +454,7 @@ ReadOnlyCollection RBE2s { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEConstraintRBE](VM.Models.FE.Utilities.FEConstraintRBE.md)\> + ReadOnlyCollection<[FEConstraintRBE](VM.Models.FE.Utilities.FEConstraintRBE.md)\> ### RBE3s @@ -453,7 +464,7 @@ ReadOnlyCollection RBE3s { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEConstraintRBE](VM.Models.FE.Utilities.FEConstraintRBE.md)\> + ReadOnlyCollection<[FEConstraintRBE](VM.Models.FE.Utilities.FEConstraintRBE.md)\> ### Shell3Elements @@ -463,7 +474,7 @@ ReadOnlyCollection Shell3Elements { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> + ReadOnlyCollection<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> ### Shell4Elements @@ -473,7 +484,7 @@ ReadOnlyCollection Shell4Elements { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> + ReadOnlyCollection<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> ### Shell6Elements @@ -483,7 +494,7 @@ ReadOnlyCollection Shell6Elements { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> + ReadOnlyCollection<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> ### Shell8Elements @@ -493,7 +504,7 @@ ReadOnlyCollection Shell8Elements { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> + ReadOnlyCollection<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> ### ShellProperties @@ -503,7 +514,7 @@ ReadOnlyCollection ShellProperties { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEPropertyShell](VM.Models.FE.Utilities.FEPropertyShell.md)\> + ReadOnlyCollection<[FEPropertyShell](VM.Models.FE.Utilities.FEPropertyShell.md)\> ### Solid10Elements @@ -513,7 +524,7 @@ ReadOnlyCollection Solid10Elements { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> + ReadOnlyCollection<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> ### Solid13Elements @@ -523,7 +534,7 @@ ReadOnlyCollection Solid13Elements { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> + ReadOnlyCollection<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> ### Solid15Elements @@ -533,7 +544,7 @@ ReadOnlyCollection Solid15Elements { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> + ReadOnlyCollection<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> ### Solid20Elements @@ -543,7 +554,7 @@ ReadOnlyCollection Solid20Elements { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> + ReadOnlyCollection<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> ### Solid4Elements @@ -553,7 +564,7 @@ ReadOnlyCollection Solid4Elements { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> + ReadOnlyCollection<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> ### Solid5Elements @@ -563,7 +574,7 @@ ReadOnlyCollection Solid5Elements { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> + ReadOnlyCollection<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> ### Solid6Elements @@ -573,7 +584,7 @@ ReadOnlyCollection Solid6Elements { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> + ReadOnlyCollection<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> ### Solid8Elements @@ -583,7 +594,7 @@ ReadOnlyCollection Solid8Elements { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> + ReadOnlyCollection<[FEElement](VM.Models.FE.Utilities.FEElement.md)\> ### SolidProperties @@ -593,7 +604,7 @@ ReadOnlyCollection SolidProperties { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEPropertySolid](VM.Models.FE.Utilities.FEPropertySolid.md)\> + ReadOnlyCollection<[FEPropertySolid](VM.Models.FE.Utilities.FEPropertySolid.md)\> ### TetraConnectivities @@ -603,7 +614,7 @@ ReadOnlyCollection TetraConnectivities { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> + ReadOnlyCollection ### Ties @@ -613,7 +624,7 @@ ReadOnlyCollection Ties { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[FEConstraintTie](VM.Models.FE.Utilities.FEConstraintTie.md)\> + ReadOnlyCollection<[FEConstraintTie](VM.Models.FE.Utilities.FEConstraintTie.md)\> ### TotalNodesForModal @@ -623,7 +634,7 @@ int TotalNodesForModal { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### TriaConnectivities @@ -633,7 +644,7 @@ ReadOnlyCollection TriaConnectivities { get; } #### Property Value - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> + ReadOnlyCollection ### UnitForce @@ -643,7 +654,7 @@ double UnitForce { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UnitLength @@ -653,7 +664,7 @@ double UnitLength { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UnitMass @@ -663,7 +674,7 @@ double UnitMass { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UnitTime @@ -673,7 +684,7 @@ double UnitTime { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Version @@ -683,7 +694,7 @@ uint Version { get; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ## Methods @@ -701,7 +712,7 @@ bool EqualsPatch(FEPatchInfo[] infoTarget, FEPatchInfo[] infoTool) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetMarkerInformation\(Vector, int, out Vector, out Vector\) @@ -713,7 +724,7 @@ bool GetMarkerInformation(Vector position, int modeSequence, out Vector trans, o `position` Vector -`modeSequence` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`modeSequence` int `trans` Vector @@ -721,7 +732,7 @@ bool GetMarkerInformation(Vector position, int modeSequence, out Vector trans, o #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetModeInterPoint\(Vector, int, out Vector, out Vector\) @@ -733,7 +744,7 @@ bool GetModeInterPoint(Vector position, int modeSequence, out Vector transMode, `position` Vector -`modeSequence` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`modeSequence` int `transMode` Vector @@ -741,7 +752,7 @@ bool GetModeInterPoint(Vector position, int modeSequence, out Vector transMode, #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetRotationalShape\(int, int, out Vector\) @@ -751,9 +762,9 @@ void GetRotationalShape(int modeSeq, int nodeSeq, out Vector mode) #### Parameters -`modeSeq` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`modeSeq` int -`nodeSeq` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nodeSeq` int `mode` Vector @@ -765,9 +776,9 @@ void GetRotationalShape(ICollection colModeSeq, int nodeSeq, out Vector[] m #### Parameters -`colModeSeq` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`colModeSeq` ICollection -`nodeSeq` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nodeSeq` int `modes` Vector\[\] @@ -779,11 +790,11 @@ void GetStressShape(int modeSeq, int nodeSeq, out double[] stress) #### Parameters -`modeSeq` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`modeSeq` int -`nodeSeq` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nodeSeq` int -`stress` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`stress` double\[\] ### GetStressShape\(ICollection, int, out ICollection\) @@ -793,11 +804,11 @@ void GetStressShape(ICollection colModeSeq, int nodeSeq, out ICollection +`colModeSeq` ICollection -`nodeSeq` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nodeSeq` int -`stress` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\[\]\> +`stress` ICollection ### GetTranslationalShape\(int, int, out Vector\) @@ -807,9 +818,9 @@ void GetTranslationalShape(int modeSeq, int nodeSeq, out Vector mode) #### Parameters -`modeSeq` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`modeSeq` int -`nodeSeq` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nodeSeq` int `mode` Vector @@ -821,9 +832,9 @@ void GetTranslationalShape(ICollection colModeSeq, int nodeSeq, out Vector[ #### Parameters -`colModeSeq` [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`colModeSeq` ICollection -`nodeSeq` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nodeSeq` int `modes` Vector\[\] @@ -835,7 +846,7 @@ ReadOnlyCollection GetUnusedModeIndexes() #### Returns - [ReadOnlyCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> + ReadOnlyCollection ### SetUnusedModeIndexes\(IEnumerable\) @@ -845,5 +856,5 @@ void SetUnusedModeIndexes(IEnumerable collection) #### Parameters -`collection` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`collection` IEnumerable diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.MassInfoForOldVer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.MassInfoForOldVer.md index 0394609b08..3b9fd12daa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.MassInfoForOldVer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.MassInfoForOldVer.md @@ -1,4 +1,5 @@ -# Struct MassInfoForOldVer +# Struct MassInfoForOldVer + Namespace: [VM.Models.FE.Utilities](VM.Models.FE.Utilities.md) Assembly: VM.Models.FE.Utilities.dll @@ -17,7 +18,7 @@ public double IXX { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### IYY @@ -27,7 +28,7 @@ public double IYY { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### IZZ @@ -37,7 +38,7 @@ public double IZZ { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NodeMass @@ -47,7 +48,7 @@ public double NodeMass { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -59,11 +60,11 @@ public override readonly bool Equals(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetHashCode\(\) @@ -73,7 +74,7 @@ public override readonly int GetHashCode() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Operators @@ -91,7 +92,7 @@ public static bool operator ==(MassInfoForOldVer left, MassInfoForOldVer right) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### operator \!=\(MassInfoForOldVer, MassInfoForOldVer\) @@ -107,5 +108,5 @@ public static bool operator !=(MassInfoForOldVer left, MassInfoForOldVer right) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.MaterialAB.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.MaterialAB.md index 539680efa9..1febde52be 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.MaterialAB.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.MaterialAB.md @@ -1,4 +1,5 @@ -# Struct MaterialAB +# Struct MaterialAB + Namespace: [VM.Models.FE.Utilities](VM.Models.FE.Utilities.md) Assembly: VM.Models.FE.Utilities.dll @@ -17,7 +18,7 @@ public double D { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Density @@ -27,7 +28,7 @@ public double Density { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ID @@ -37,7 +38,7 @@ public uint ID { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### Lambda @@ -47,7 +48,7 @@ public double Lambda { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Mu @@ -57,5 +58,5 @@ public double Mu { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.MaterialISO.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.MaterialISO.md index eb634bf25c..1e4d7117eb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.MaterialISO.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.MaterialISO.md @@ -1,4 +1,5 @@ -# Struct MaterialISO +# Struct MaterialISO + Namespace: [VM.Models.FE.Utilities](VM.Models.FE.Utilities.md) Assembly: VM.Models.FE.Utilities.dll @@ -17,7 +18,7 @@ public double Density { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### E @@ -27,7 +28,7 @@ public double E { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### G @@ -37,7 +38,7 @@ public double G { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ID @@ -47,7 +48,7 @@ public uint ID { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### Nu @@ -57,7 +58,7 @@ public double Nu { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TA @@ -67,7 +68,7 @@ public double TA { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TC @@ -77,7 +78,7 @@ public double TC { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TK @@ -87,7 +88,7 @@ public double TK { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Tref @@ -97,5 +98,5 @@ public double Tref { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.MaterialMR.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.MaterialMR.md index c1d4d6817d..c305169810 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.MaterialMR.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.MaterialMR.md @@ -1,4 +1,5 @@ -# Struct MaterialMR +# Struct MaterialMR + Namespace: [VM.Models.FE.Utilities](VM.Models.FE.Utilities.md) Assembly: VM.Models.FE.Utilities.dll @@ -17,7 +18,7 @@ public double C01 { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### C10 @@ -27,7 +28,7 @@ public double C10 { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### D @@ -37,7 +38,7 @@ public double D { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Density @@ -47,7 +48,7 @@ public double Density { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ID @@ -57,5 +58,5 @@ public uint ID { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.MaterialNH.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.MaterialNH.md index 6a5e7857ba..1991cd2cb6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.MaterialNH.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.MaterialNH.md @@ -1,4 +1,5 @@ -# Struct MaterialNH +# Struct MaterialNH + Namespace: [VM.Models.FE.Utilities](VM.Models.FE.Utilities.md) Assembly: VM.Models.FE.Utilities.dll @@ -17,7 +18,7 @@ public double C10 { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### D @@ -27,7 +28,7 @@ public double D { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Density @@ -37,7 +38,7 @@ public double Density { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ID @@ -47,5 +48,5 @@ public uint ID { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.MaterialOG.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.MaterialOG.md index 5eeb375c3f..2a54b93704 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.MaterialOG.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.MaterialOG.md @@ -1,4 +1,5 @@ -# Struct MaterialOG +# Struct MaterialOG + Namespace: [VM.Models.FE.Utilities](VM.Models.FE.Utilities.md) Assembly: VM.Models.FE.Utilities.dll @@ -17,7 +18,7 @@ public double[] Alpha { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### D @@ -27,7 +28,7 @@ public double[] D { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### Density @@ -37,7 +38,7 @@ public double Density { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ID @@ -47,7 +48,7 @@ public uint ID { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### Mu @@ -57,5 +58,5 @@ public double[] Mu { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.MaterialORTHO.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.MaterialORTHO.md index 22c60b387b..ad1c9b1a82 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.MaterialORTHO.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.MaterialORTHO.md @@ -1,4 +1,5 @@ -# Struct MaterialORTHO +# Struct MaterialORTHO + Namespace: [VM.Models.FE.Utilities](VM.Models.FE.Utilities.md) Assembly: VM.Models.FE.Utilities.dll @@ -17,7 +18,7 @@ public double Density { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### E1 @@ -27,7 +28,7 @@ public double E1 { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### E2 @@ -37,7 +38,7 @@ public double E2 { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### E3 @@ -47,7 +48,7 @@ public double E3 { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### G12 @@ -57,7 +58,7 @@ public double G12 { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### G23 @@ -67,7 +68,7 @@ public double G23 { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### G31 @@ -77,7 +78,7 @@ public double G31 { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ID @@ -87,7 +88,7 @@ public uint ID { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### Nu12 @@ -97,7 +98,7 @@ public double Nu12 { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Nu23 @@ -107,7 +108,7 @@ public double Nu23 { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Nu31 @@ -117,5 +118,5 @@ public double Nu31 { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.Mode.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.Mode.md index 1c60b0881b..dd40b19227 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.Mode.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.Mode.md @@ -1,4 +1,5 @@ -# Struct Mode +# Struct Mode + Namespace: [VM.Models.FE.Utilities](VM.Models.FE.Utilities.md) Assembly: VM.Models.FE.Utilities.dll @@ -17,7 +18,7 @@ public Mode(double eigenvalue) #### Parameters -`eigenvalue` [double](https://learn.microsoft.com/dotnet/api/system.double) +`eigenvalue` double ### Mode\(double, double, double, bool\) @@ -27,13 +28,13 @@ public Mode(double eigenvalue, double frequency, double damping, bool enabled) #### Parameters -`eigenvalue` [double](https://learn.microsoft.com/dotnet/api/system.double) +`eigenvalue` double -`frequency` [double](https://learn.microsoft.com/dotnet/api/system.double) +`frequency` double -`damping` [double](https://learn.microsoft.com/dotnet/api/system.double) +`damping` double -`enabled` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`enabled` bool ## Properties @@ -45,7 +46,7 @@ public double Damping { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Eigenvalue @@ -55,7 +56,7 @@ public double Eigenvalue { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Enabled @@ -65,7 +66,7 @@ public bool Enabled { readonly get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Frequency @@ -75,7 +76,7 @@ public double Frequency { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -87,11 +88,11 @@ public override readonly bool Equals(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetHashCode\(\) @@ -101,7 +102,7 @@ public override readonly int GetHashCode() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Operators @@ -119,7 +120,7 @@ public static bool operator ==(Mode left, Mode right) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### operator \!=\(Mode, Mode\) @@ -135,5 +136,5 @@ public static bool operator !=(Mode left, Mode right) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.NBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.NBody.md index 92544ed9e4..9e7b7ceb29 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.NBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.NBody.md @@ -1,4 +1,5 @@ -# Struct NBody +# Struct NBody + Namespace: [VM.Models.FE.Utilities](VM.Models.FE.Utilities.md) Assembly: VM.Models.FE.Utilities.dll @@ -17,7 +18,7 @@ public uint ID { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### Position diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.NamedSelection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.NamedSelection.md index 6e95d8bc13..cac3533d4e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.NamedSelection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.NamedSelection.md @@ -1,4 +1,5 @@ -# Struct NamedSelection +# Struct NamedSelection + Namespace: [VM.Models.FE.Utilities](VM.Models.FE.Utilities.md) Assembly: VM.Models.FE.Utilities.dll @@ -17,7 +18,7 @@ public uint ID { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### NumberOfPatch @@ -27,7 +28,7 @@ public uint NumberOfPatch { readonly get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### Patch diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.RBEType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.RBEType.md index b1e8023807..78ac6eca83 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.RBEType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.RBEType.md @@ -1,4 +1,5 @@ -# Enum RBEType +# Enum RBEType + Namespace: [VM.Models.FE.Utilities](VM.Models.FE.Utilities.md) Assembly: VM.Models.FE.Utilities.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.md index 57c81a0cb9..a3b560f2de 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.FE.Utilities.md @@ -1,4 +1,5 @@ -# Namespace VM.Models.FE.Utilities +# Namespace VM.Models.FE.Utilities + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.IProjectDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.IProjectDocument.md index ea13c4fc09..dcf55be799 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.IProjectDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.IProjectDocument.md @@ -1,4 +1,5 @@ -# Interface IProjectDocument +# Interface IProjectDocument + Namespace: [VM.Models](VM.Models.md) Assembly: VM.Models.Project.dll @@ -30,7 +31,7 @@ IEnumerable Items { get; } #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IScenario](VM.Models.IScenario.md)\> + IEnumerable<[IScenario](VM.Models.IScenario.md)\> ### RootPath @@ -40,7 +41,7 @@ string RootPath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ScenarioCount @@ -50,7 +51,7 @@ int ScenarioCount { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### this\[Identifier\] @@ -96,7 +97,7 @@ bool CanRegisterID(Identifier identifier) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CanRegisterName\(string\) @@ -106,11 +107,11 @@ bool CanRegisterName(string name) #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Contains\(IScenario\) @@ -124,7 +125,7 @@ bool Contains(IScenario item) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ContainsID\(Identifier\) @@ -138,7 +139,7 @@ bool ContainsID(Identifier identifier) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ContainsName\(IProjectObject\) @@ -152,7 +153,7 @@ bool ContainsName(IProjectObject item) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RegisterID\(IProjectObject\) @@ -204,7 +205,7 @@ bool TryGetValue(Identifier identifier, out IScenario scenario) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TryGetValue\(string, out IScenario\) @@ -214,13 +215,13 @@ bool TryGetValue(string name, out IScenario scenario) #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string `scenario` [IScenario](VM.Models.IScenario.md) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UnregisterID\(IProjectObject\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.IProjectObject.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.IProjectObject.md index b62086018c..1f13ab95ed 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.IProjectObject.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.IProjectObject.md @@ -1,4 +1,5 @@ -# Interface IProjectObject +# Interface IProjectObject + Namespace: [VM.Models](VM.Models.md) Assembly: VM.Models.Project.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.IScenario.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.IScenario.md index 639545dd9d..6d20cf983b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.IScenario.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.IScenario.md @@ -1,4 +1,5 @@ -# Interface IScenario +# Interface IScenario + Namespace: [VM.Models](VM.Models.md) Assembly: VM.Models.Project.dll @@ -32,7 +33,7 @@ string CategoryName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Items @@ -42,7 +43,7 @@ IEnumerable Items { get; } #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IStep](VM.Models.IStep.md)\> + IEnumerable<[IStep](VM.Models.IStep.md)\> ### Left @@ -52,7 +53,7 @@ double Left { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Top @@ -62,7 +63,7 @@ double Top { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### this\[Identifier\] @@ -126,5 +127,5 @@ bool TryGetItem(Identifier identifier, out IStep item) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.IStep.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.IStep.md index 1c113c0544..d8c0ba3803 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.IStep.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.IStep.md @@ -1,4 +1,5 @@ -# Interface IStep +# Interface IStep + Namespace: [VM.Models](VM.Models.md) Assembly: VM.Models.Project.dll @@ -32,7 +33,7 @@ ICommand DefaultCommand { get; } #### Property Value - [ICommand](https://learn.microsoft.com/dotnet/api/system.windows.input.icommand) + ICommand ### FilePath @@ -42,7 +43,7 @@ string FilePath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Items @@ -52,7 +53,7 @@ IEnumerable Items { get; } #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IStepItem](VM.Models.IStepItem.md)\> + IEnumerable<[IStepItem](VM.Models.IStepItem.md)\> ### ParentDocument @@ -102,7 +103,7 @@ IEnumerable Targets { get; } #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IStep](VM.Models.IStep.md)\> + IEnumerable<[IStep](VM.Models.IStep.md)\> ### Type @@ -158,7 +159,7 @@ bool CanRelation(IStep source) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ContainsTarget\(IStep\) @@ -172,7 +173,7 @@ bool ContainsTarget(IStep item) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RemoveTarget\(IStep\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.IStepItem.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.IStepItem.md index 288d395217..94ffea0b75 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.IStepItem.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.IStepItem.md @@ -1,4 +1,5 @@ -# Interface IStepItem +# Interface IStepItem + Namespace: [VM.Models](VM.Models.md) Assembly: VM.Models.Project.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.IStepItemMetadata.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.IStepItemMetadata.md index f29863096e..721b7e0411 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.IStepItemMetadata.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.IStepItemMetadata.md @@ -1,4 +1,5 @@ -# Interface IStepItemMetadata +# Interface IStepItemMetadata + Namespace: [VM.Models](VM.Models.md) Assembly: VM.Models.Project.dll @@ -23,5 +24,5 @@ Type StepType { get; } #### Property Value - [Type](https://learn.microsoft.com/dotnet/api/system.type) + Type diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.IStepItemService.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.IStepItemService.md index 77d431d402..8ae13a7e7f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.IStepItemService.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.IStepItemService.md @@ -1,4 +1,5 @@ -# Interface IStepItemService +# Interface IStepItemService + Namespace: [VM.Models](VM.Models.md) Assembly: VM.Models.Project.dll @@ -25,9 +26,9 @@ void Add(IStepItemSet stepItemSet, Type stepType, Func> f `stepItemSet` [IStepItemSet](VM.Models.IStepItemSet.md) -`stepType` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`stepType` Type -`factory` [Func](https://learn.microsoft.com/dotnet/api/system.func\-1)<[IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IStepItem](VM.Models.IStepItem.md)\>\> +`factory` Func\> ### Clear\(\) @@ -43,7 +44,7 @@ void Compose(IEnumerable assemblies) #### Parameters -`assemblies` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Assembly](https://learn.microsoft.com/dotnet/api/system.reflection.assembly)\> +`assemblies` IEnumerable ### GetItems\(Type, IStep\) @@ -53,11 +54,11 @@ IEnumerable GetItems(Type scenarioType, IStep parent) #### Parameters -`scenarioType` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`scenarioType` Type `parent` [IStep](VM.Models.IStep.md) #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IStepItem](VM.Models.IStepItem.md)\> + IEnumerable<[IStepItem](VM.Models.IStepItem.md)\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.IStepItemSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.IStepItemSet.md index ea74a109ff..17f828f435 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.IStepItemSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.IStepItemSet.md @@ -1,4 +1,5 @@ -# Interface IStepItemSet +# Interface IStepItemSet + Namespace: [VM.Models](VM.Models.md) Assembly: VM.Models.Project.dll @@ -23,7 +24,7 @@ Type ScenarioType { get; } #### Property Value - [Type](https://learn.microsoft.com/dotnet/api/system.type) + Type ### Target diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.OutputReader.IOutputReader.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.OutputReader.IOutputReader.md index 22c0b33af4..47560e6405 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.OutputReader.IOutputReader.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.OutputReader.IOutputReader.md @@ -1,4 +1,5 @@ -# Interface IOutputReader +# Interface IOutputReader + Namespace: [VM.Models.OutputReader](VM.Models.OutputReader.md) Assembly: VM.Models.OutputReader.dll @@ -29,17 +30,17 @@ void ExportContourResultToFile(string resultpath, FileMode mode, IList stat #### Parameters -`resultpath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`resultpath` string -`mode` [FileMode](https://learn.microsoft.com/dotnet/api/system.io.filemode) +`mode` FileMode -`stateids` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`stateids` IList -`target` [string](https://learn.microsoft.com/dotnet/api/system.string) +`target` string `type` ContourMappingType -`path` [string](https://learn.microsoft.com/dotnet/api/system.string) +`path` string `analysisType` AnalysisResultType @@ -53,17 +54,17 @@ void ExportContourResultToFile(string resultpath, FileMode mode, IList stat #### Parameters -`resultpath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`resultpath` string -`mode` [FileMode](https://learn.microsoft.com/dotnet/api/system.io.filemode) +`mode` FileMode -`stateids` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> +`stateids` IList -`targets` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`targets` IList `type` ContourMappingType -`path` [string](https://learn.microsoft.com/dotnet/api/system.string) +`path` string `analysisType` AnalysisResultType @@ -81,7 +82,7 @@ IDictionary GetCurves(PlotParameters parameters) #### Returns - [IDictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), Point2D\[\]\> + IDictionary ### GetFlexibleBodyReferenceFrame\(string, bool\) @@ -91,13 +92,13 @@ IList GetFlexibleBodyReferenceFrame(string target, bool reCalculateOri #### Parameters -`target` [string](https://learn.microsoft.com/dotnet/api/system.string) +`target` string -`reCalculateOrientation` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`reCalculateOrientation` bool #### Returns - [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\[\]\> + IList ### GetGeometryNodes\(string\) @@ -107,11 +108,11 @@ double[] GetGeometryNodes(string path) #### Parameters -`path` [string](https://learn.microsoft.com/dotnet/api/system.string) +`path` string #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GetReferenceTimeArray\(\) @@ -121,7 +122,7 @@ IList GetReferenceTimeArray() #### Returns - [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> + IList ### GetStateIDArray\(\) @@ -131,7 +132,7 @@ IList GetStateIDArray() #### Returns - [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[int](https://learn.microsoft.com/dotnet/api/system.int32)\> + IList ### GetVector\(string, string, AnalysisResultType\) @@ -141,13 +142,13 @@ IDictionary GetVector(string target, string #### Parameters -`target` [string](https://learn.microsoft.com/dotnet/api/system.string) +`target` string -`path` [string](https://learn.microsoft.com/dotnet/api/system.string) +`path` string `analysisModelType` AnalysisResultType #### Returns - [IDictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [IVectorDisplayAnimationData](VM.Models.OutputReader.IVectorDisplayAnimationData.md)\> + IDictionary diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.OutputReader.IVectorDisplayAnimationData.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.OutputReader.IVectorDisplayAnimationData.md index 4c83b7e843..69c9fcbf1d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.OutputReader.IVectorDisplayAnimationData.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.OutputReader.IVectorDisplayAnimationData.md @@ -1,4 +1,5 @@ -# Interface IVectorDisplayAnimationData +# Interface IVectorDisplayAnimationData + Namespace: [VM.Models.OutputReader](VM.Models.OutputReader.md) Assembly: VM.Models.OutputReader.dll @@ -23,7 +24,7 @@ List> LabelNames { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\>\> + List\> ### Positions @@ -33,7 +34,7 @@ List> Positions { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\[\]\>\> + List\> ### Vectors @@ -43,5 +44,5 @@ List> Vectors { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\[\]\>\> + List\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.OutputReader.PlotParameters.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.OutputReader.PlotParameters.md index f59e9e3723..65c63c5585 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.OutputReader.PlotParameters.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.OutputReader.PlotParameters.md @@ -1,4 +1,5 @@ -# Class PlotParameters +# Class PlotParameters + Namespace: [VM.Models.OutputReader](VM.Models.OutputReader.md) Assembly: VM.Models.OutputReader.dll @@ -9,7 +10,7 @@ public class PlotParameters #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PlotParameters](VM.Models.OutputReader.PlotParameters.md) #### Derived @@ -40,7 +41,7 @@ public object CSYS { get; set; } #### Property Value - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### Paths @@ -50,7 +51,7 @@ public IEnumerable Paths { get; set; } #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + IEnumerable ### PlotDataType @@ -70,5 +71,5 @@ public string Target { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.OutputReader.PlotParametersEx.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.OutputReader.PlotParametersEx.md index bdc58ef979..803ca4ff91 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.OutputReader.PlotParametersEx.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.OutputReader.PlotParametersEx.md @@ -1,4 +1,5 @@ -# Class PlotParametersEx +# Class PlotParametersEx + Namespace: [VM.Models.OutputReader](VM.Models.OutputReader.md) Assembly: VM.Models.OutputReader.dll @@ -9,7 +10,7 @@ public class PlotParametersEx : PlotParameters #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PlotParameters](VM.Models.OutputReader.PlotParameters.md) ← [PlotParametersEx](VM.Models.OutputReader.PlotParametersEx.md) @@ -44,7 +45,7 @@ public bool Sum { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Targets @@ -54,5 +55,5 @@ public IEnumerable Targets { get; set; } #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + IEnumerable diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.OutputReader.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.OutputReader.md index 89ca15af07..923b7cfa76 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.OutputReader.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.OutputReader.md @@ -1,4 +1,5 @@ -# Namespace VM.Models.OutputReader +# Namespace VM.Models.OutputReader + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Post.RPC_Reader.BYPASS_FILTER.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Post.RPC_Reader.BYPASS_FILTER.md new file mode 100644 index 0000000000..d25f82c687 --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Post.RPC_Reader.BYPASS_FILTER.md @@ -0,0 +1,16 @@ +# Enum BYPASS\_FILTER + + +Namespace: [VM.Models.Post.RPC\_Reader](VM.Models.Post.RPC\_Reader.md) +Assembly: VM.Models.Post.RPC\_Reader.dll + +```csharp +public enum BYPASS_FILTER +``` + +## Fields + +`Off = 0` + +`On = 1` + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Post.RPC_Reader.DATA_TYPE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Post.RPC_Reader.DATA_TYPE.md new file mode 100644 index 0000000000..8d619866b7 --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Post.RPC_Reader.DATA_TYPE.md @@ -0,0 +1,16 @@ +# Enum DATA\_TYPE + + +Namespace: [VM.Models.Post.RPC\_Reader](VM.Models.Post.RPC\_Reader.md) +Assembly: VM.Models.Post.RPC\_Reader.dll + +```csharp +public enum DATA_TYPE +``` + +## Fields + +`FLOATING_POINT = 1` + +`SHORT_INTEGER = 0` + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Post.RPC_Reader.RPCData.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Post.RPC_Reader.RPCData.md new file mode 100644 index 0000000000..74a4e308f0 --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Post.RPC_Reader.RPCData.md @@ -0,0 +1,91 @@ +# Class RPCData + + +Namespace: [VM.Models.Post.RPC\_Reader](VM.Models.Post.RPC\_Reader.md) +Assembly: VM.Models.Post.RPC\_Reader.dll + +```csharp +public class RPCData +``` + +#### Inheritance + +object ← +[RPCData](VM.Models.Post.RPC\_Reader.RPCData.md) + +#### Extension Methods + +[LinkPropertyItemCache.GetLinkProperties\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkProperties\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkPropertiesAndValues\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkPropertiesAndValues\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkedObjects\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkedObjects\_\_1\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_) + +## Constructors + +### RPCData\(\) + +```csharp +public RPCData() +``` + +## Properties + +### DESC\_CHAN + +```csharp +public string DESC_CHAN { get; set; } +``` + +#### Property Value + + string + +### LOWER\_LIMIT + +```csharp +public double LOWER_LIMIT { get; set; } +``` + +#### Property Value + + double + +### MAP\_CHAN + +```csharp +public int MAP_CHAN { get; set; } +``` + +#### Property Value + + int + +### SCALE\_CHAN + +```csharp +public double SCALE_CHAN { get; set; } +``` + +#### Property Value + + double + +### UNITS + +```csharp +public string UNITS { get; set; } +``` + +#### Property Value + + string + +### UPPER\_LIMIT + +```csharp +public double UPPER_LIMIT { get; set; } +``` + +#### Property Value + + double + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Post.RPC_Reader.RPCReader.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Post.RPC_Reader.RPCReader.md new file mode 100644 index 0000000000..5e587517ae --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Post.RPC_Reader.RPCReader.md @@ -0,0 +1,301 @@ +# Class RPCReader + + +Namespace: [VM.Models.Post.RPC\_Reader](VM.Models.Post.RPC\_Reader.md) +Assembly: VM.Models.Post.RPC\_Reader.dll + +```csharp +public class RPCReader +``` + +#### Inheritance + +object ← +[RPCReader](VM.Models.Post.RPC\_Reader.RPCReader.md) + +#### Extension Methods + +[LinkPropertyItemCache.GetLinkProperties\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkProperties\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkPropertiesAndValues\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkPropertiesAndValues\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_), +[LinkPropertyItemCache.GetLinkedObjects\(object, LinkPropertyType\)](VM.Models.Pre.Cache.LinkPropertyItemCache.md\#VM\_Models\_Pre\_Cache\_LinkPropertyItemCache\_GetLinkedObjects\_\_1\_System\_Object\_VM\_Models\_Pre\_LinkPropertyType\_) + +## Constructors + +### RPCReader\(\) + +```csharp +public RPCReader() +``` + +## Properties + +### BR + +```csharp +public BinaryReader BR { get; } +``` + +#### Property Value + + BinaryReader + +### Bypass\_Filter + +```csharp +public BYPASS_FILTER Bypass_Filter { get; set; } +``` + +#### Property Value + + [BYPASS\_FILTER](VM.Models.Post.RPC\_Reader.BYPASS\_FILTER.md) + +### Channels + +```csharp +public int Channels { get; set; } +``` + +#### Property Value + + int + +### DATAPOSITION + +```csharp +public long DATAPOSITION { get; set; } +``` + +#### Property Value + + long + +### Data\_Type + +```csharp +public DATA_TYPE Data_Type { get; set; } +``` + +#### Property Value + + [DATA\_TYPE](VM.Models.Post.RPC\_Reader.DATA\_TYPE.md) + +### Datas + +```csharp +public List Datas { get; set; } +``` + +#### Property Value + + List<[RPCData](VM.Models.Post.RPC\_Reader.RPCData.md)\> + +### Delta\_T + +```csharp +public double Delta_T { get; set; } +``` + +#### Property Value + + double + +### FilePath + +```csharp +public string FilePath { get; set; } +``` + +#### Property Value + + string + +### File\_Type + +```csharp +public RPC_FILE_TYPE File_Type { get; set; } +``` + +#### Property Value + + [RPC\_FILE\_TYPE](VM.Models.Post.RPC\_Reader.RPC\_FILE\_TYPE.md) + +### Format + +```csharp +public RPC_FORMAT Format { get; set; } +``` + +#### Property Value + + [RPC\_FORMAT](VM.Models.Post.RPC\_Reader.RPC\_FORMAT.md) + +### Frames + +```csharp +public int Frames { get; set; } +``` + +#### Property Value + + int + +### Half\_Frames + +```csharp +public int Half_Frames { get; set; } +``` + +#### Property Value + + int + +### INT\_FULL\_SCALE + +```csharp +public short INT_FULL_SCALE { get; } +``` + +#### Property Value + + short + +### Num\_Header\_Blocks + +```csharp +public int Num_Header_Blocks { get; set; } +``` + +#### Property Value + + int + +### Num\_Params + +```csharp +public int Num_Params { get; set; } +``` + +#### Property Value + + int + +### OPERATION + +```csharp +public string OPERATION { get; set; } +``` + +#### Property Value + + string + +### Pts\_Per\_Frame + +```csharp +public int Pts_Per_Frame { get; set; } +``` + +#### Property Value + + int + +### Pts\_Per\_Group + +```csharp +public int Pts_Per_Group { get; set; } +``` + +#### Property Value + + int + +### Repeats + +```csharp +public int Repeats { get; set; } +``` + +#### Property Value + + int + +### Time\_Type + +```csharp +public TIME_TYPE Time_Type { get; set; } +``` + +#### Property Value + + [TIME\_TYPE](VM.Models.Post.RPC\_Reader.TIME\_TYPE.md) + +### VALIDATED + +```csharp +public bool VALIDATED { get; set; } +``` + +#### Property Value + + bool + +## Methods + +### Close\(\) + +```csharp +public void Close() +``` + +### GetChannels\(\) + +```csharp +public string[] GetChannels() +``` + +#### Returns + + string\[\] + +### GetValues\(string\[\]\) + +```csharp +public IEnumerable> GetValues(string[] Seletedchannels) +``` + +#### Parameters + +`Seletedchannels` string\[\] + +#### Returns + + IEnumerable\> + +### OpenFile\(string\) + +```csharp +public void OpenFile(string _str_input_path) +``` + +#### Parameters + +`_str_input_path` string + +### Read\_RPC\_Data\(string\[\], ref List\>\) + +```csharp +public void Read_RPC_Data(string[] SelectedChanel_Names, ref List> selectedDatas) +``` + +#### Parameters + +`SelectedChanel_Names` string\[\] + +`selectedDatas` List\> + +### initialize\(\) + +```csharp +public void initialize() +``` + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Post.RPC_Reader.RPC_FILE_TYPE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Post.RPC_Reader.RPC_FILE_TYPE.md new file mode 100644 index 0000000000..ffb876270f --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Post.RPC_Reader.RPC_FILE_TYPE.md @@ -0,0 +1,26 @@ +# Enum RPC\_FILE\_TYPE + + +Namespace: [VM.Models.Post.RPC\_Reader](VM.Models.Post.RPC\_Reader.md) +Assembly: VM.Models.Post.RPC\_Reader.dll + +```csharp +public enum RPC_FILE_TYPE +``` + +## Fields + +`CONFIGURATION = 1` + +`FATIGUE = 3` + +`MATRIX = 2` + +`ROAD_SURFACE = 4` + +`SPECTRAL = 5` + +`START = 6` + +`TIME_HISTRY = 0` + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Post.RPC_Reader.RPC_FORMAT.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Post.RPC_Reader.RPC_FORMAT.md new file mode 100644 index 0000000000..0731ed5788 --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Post.RPC_Reader.RPC_FORMAT.md @@ -0,0 +1,20 @@ +# Enum RPC\_FORMAT + + +Namespace: [VM.Models.Post.RPC\_Reader](VM.Models.Post.RPC\_Reader.md) +Assembly: VM.Models.Post.RPC\_Reader.dll + +```csharp +public enum RPC_FORMAT +``` + +## Fields + +`ASCII = 3` + +`BINARY = 2` + +`BINARY_IEEE_BIG_END = 1` + +`BINARY_IEEE_LITTLE_END = 0` + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Post.RPC_Reader.TIME_TYPE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Post.RPC_Reader.TIME_TYPE.md new file mode 100644 index 0000000000..236fa1dd0d --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Post.RPC_Reader.TIME_TYPE.md @@ -0,0 +1,26 @@ +# Enum TIME\_TYPE + + +Namespace: [VM.Models.Post.RPC\_Reader](VM.Models.Post.RPC\_Reader.md) +Assembly: VM.Models.Post.RPC\_Reader.dll + +```csharp +public enum TIME_TYPE +``` + +## Fields + +`CONFIG_DRIVE = 4` + +`CONFIG_RESP = 5` + +`DRIVE = 0` + +`MULT_DRIVE = 2` + +`MULT_RESP = 3` + +`PEAK_PICK = 6` + +`RESPONSE = 1` + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Post.RPC_Reader.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Post.RPC_Reader.md new file mode 100644 index 0000000000..02229872a4 --- /dev/null +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Post.RPC_Reader.md @@ -0,0 +1,21 @@ +# Namespace VM.Models.Post.RPC\_Reader + + +### Classes + + [RPCData](VM.Models.Post.RPC\_Reader.RPCData.md) + + [RPCReader](VM.Models.Post.RPC\_Reader.RPCReader.md) + +### Enums + + [BYPASS\_FILTER](VM.Models.Post.RPC\_Reader.BYPASS\_FILTER.md) + + [DATA\_TYPE](VM.Models.Post.RPC\_Reader.DATA\_TYPE.md) + + [RPC\_FILE\_TYPE](VM.Models.Post.RPC\_Reader.RPC\_FILE\_TYPE.md) + + [RPC\_FORMAT](VM.Models.Post.RPC\_Reader.RPC\_FORMAT.md) + + [TIME\_TYPE](VM.Models.Post.RPC\_Reader.TIME\_TYPE.md) + diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ArrayExtensions.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ArrayExtensions.md index d9e9b72617..5542d4c543 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ArrayExtensions.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ArrayExtensions.md @@ -1,4 +1,5 @@ -# Class ArrayExtensions +# Class ArrayExtensions + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -9,7 +10,7 @@ public static class ArrayExtensions #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ArrayExtensions](VM.Models.Pre.ArrayExtensions.md) #### Extension Methods @@ -34,7 +35,7 @@ public static bool ContentEquals(this T[,] array, T[,] other) where T : IComp #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Type Parameters diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.AstNodeExtensions.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.AstNodeExtensions.md index 7725e654e3..6088b6e30c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.AstNodeExtensions.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.AstNodeExtensions.md @@ -1,4 +1,5 @@ -# Class AstNodeExtensions +# Class AstNodeExtensions + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -9,7 +10,7 @@ public static class AstNodeExtensions #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AstNodeExtensions](VM.Models.Pre.AstNodeExtensions.md) #### Extension Methods @@ -28,7 +29,7 @@ public static readonly string[] FunctionKeyWords #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ## Methods @@ -42,9 +43,9 @@ public static bool FindIdentifier(this AstNode astNode, string[] names) `astNode` AstNode -`names` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`names` string\[\] #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Cache.LinkPropertyItemCache.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Cache.LinkPropertyItemCache.md index 58957151a4..14d8d175cd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Cache.LinkPropertyItemCache.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Cache.LinkPropertyItemCache.md @@ -1,4 +1,5 @@ -# Class LinkPropertyItemCache +# Class LinkPropertyItemCache + Namespace: [VM.Models.Pre.Cache](VM.Models.Pre.Cache.md) Assembly: VM.Models.Pre.dll @@ -11,7 +12,7 @@ public static class LinkPropertyItemCache #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [LinkPropertyItemCache](VM.Models.Pre.Cache.LinkPropertyItemCache.md) #### Extension Methods @@ -32,7 +33,7 @@ public static IEnumerable GetLinkProperties(this Type type, LinkPr #### Parameters -`type` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`type` Type The whiche want to find properties. @@ -42,7 +43,7 @@ The of . @@ -56,7 +57,7 @@ public static IEnumerable GetLinkProperties(this object obj, LinkP #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The object whiche want to find properties. @@ -66,7 +67,7 @@ The of . @@ -80,7 +81,7 @@ public static IEnumerable<(PropertyInfo property, object value)> GetLinkProperti #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The object whiche want to find properties. @@ -90,7 +91,7 @@ The of and its value. @@ -104,7 +105,7 @@ public static IEnumerable GetLinkedObjects(this object obj, LinkPropertyTy #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The object whiche want to find properties. @@ -114,7 +115,7 @@ The of property values. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Cache.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Cache.md index 6700585a9f..91bc5ca931 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Cache.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Cache.md @@ -1,4 +1,5 @@ -# Namespace VM.Models.Pre.Cache +# Namespace VM.Models.Pre.Cache + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.CircularReferenceException.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.CircularReferenceException.md index 54a239b768..9122730873 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.CircularReferenceException.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.CircularReferenceException.md @@ -1,4 +1,5 @@ -# Class CircularReferenceException +# Class CircularReferenceException + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -9,10 +10,10 @@ public class CircularReferenceException : InvalidOperationException #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Exception](https://learn.microsoft.com/dotnet/api/system.exception) ← -[SystemException](https://learn.microsoft.com/dotnet/api/system.systemexception) ← -[InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) ← +object ← +Exception ← +SystemException ← +InvalidOperationException ← [CircularReferenceException](VM.Models.Pre.CircularReferenceException.md) #### Extension Methods @@ -31,7 +32,7 @@ public CircularReferenceException(object problem) #### Parameters -`problem` [object](https://learn.microsoft.com/dotnet/api/system.object) +`problem` object ### CircularReferenceException\(object, IEnumerable\) @@ -41,9 +42,9 @@ public CircularReferenceException(object problem, IEnumerable objectChain) #### Parameters -`problem` [object](https://learn.microsoft.com/dotnet/api/system.object) +`problem` object -`objectChain` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.ienumerable) +`objectChain` IEnumerable ## Properties @@ -55,7 +56,7 @@ public IEnumerable ObjectsChain { get; } #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.ienumerable) + IEnumerable ### Problem @@ -65,5 +66,5 @@ public object Problem { get; } #### Property Value - [object](https://learn.microsoft.com/dotnet/api/system.object) + object diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.CodeTypes.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.CodeTypes.md index b9c84740bc..b3dd0a0f82 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.CodeTypes.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.CodeTypes.md @@ -1,4 +1,5 @@ -# Enum CodeTypes +# Enum CodeTypes + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.BaseActionPair.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.BaseActionPair.md index 8fd90fc277..96d8866a00 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.BaseActionPair.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.BaseActionPair.md @@ -1,4 +1,5 @@ -# Class BaseActionPair +# Class BaseActionPair + Namespace: [VM.Models.Pre.Connections](VM.Models.Pre.Connections.md) Assembly: VM.Models.Pre.Connections.dll @@ -11,9 +12,9 @@ public class BaseActionPair : LinkContainer, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [BaseActionPair](VM.Models.Pre.Connections.BaseActionPair.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.General.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.General.md index 47694912f6..8c288c1d53 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.General.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.General.md @@ -1,4 +1,5 @@ -# Class General +# Class General + Namespace: [VM.Models.Pre.Connections](VM.Models.Pre.Connections.md) Assembly: VM.Models.Pre.Connections.dll @@ -11,15 +12,15 @@ public class General : Connector, IObservableObject, IDisposabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← -Connector ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs) ← [General](VM.Models.Pre.Connections.General.md) #### Implements @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -76,65 +77,65 @@ ITorqueReferenceForBearing #### Inherited Members -Connector.Initialize\(Unit.ConvertFactor\), -Connector.GetTargetListForUpdate\(\), -Connector.PostAddToDocument\(\), -Connector.ResetInvalidEntity\(\), -Connector.Verify\(VerifiedResult\), -Connector.LinkRequestUpdate\(object, LinkEventArgs\), -Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -Connector.Draw\(Canvas\), -Connector.ReDraw\(\), -Connector.FindLocal\(string\), -Connector.Instantiate\(Reference, Canvas\), -Connector.MakeReference\(LinkedList\), -Connector.MakeReferenceImpl\(LinkedList\), -Connector.GetLayerImpl\(\), -Connector.SetLayerImpl\(Layer\), -Connector.SwitchImpl\(\), -Connector.BaseMarker, -Connector.ActionMarker, -Connector.ConnectorReferenceMarker, -Connector.PreventDuplicatedRBE, -Connector.Generable, -Connector.HasLayerExplicitly, -Connector.Hide, -Connector.Referencable, -Connector.Visible, -Connector.Layer, -Connector.ReferenceType, -Connector.ArgumentType, -Connector.CanWriteToOutFileImpl, -Connector.ReportTypeImpl, -Connector.CanSwitchImpl, -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Connector.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetTargetListForUpdate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PostAddToDocument\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ResetInvalidEntity\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Verify\(VerifiedResult\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.LinkRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Draw\(Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReDraw\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Instantiate\(Reference, Canvas\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReference\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.MakeReferenceImpl\(LinkedList\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.GetLayerImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SetLayerImpl\(Layer\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.SwitchImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.BaseMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ActionMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ConnectorReferenceMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.PreventDuplicatedRBE](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Generable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Hide](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Referencable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Visible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanWriteToOutFileImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.ReportTypeImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Connector.CanSwitchImpl](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Connector.cs), +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -233,7 +234,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -272,7 +273,7 @@ public General(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string

    Name of the general constraint.

    @@ -286,7 +287,7 @@ public General(string strName, PropertyGeneral.ConnectorType type) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string

    Name of the general constraint.

    @@ -304,11 +305,11 @@ public General(string strName, Property property) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string

    Name of the general constraint

    -`property` Property +`property` [Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs)

    Property of the general constraint

    @@ -324,7 +325,7 @@ public override bool PreventDuplicatedRBE { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ReportTypeImpl @@ -342,17 +343,17 @@ protected override IReportable.ReportEntityType ReportTypeImpl { get; }

    Get the object type name

    - Type : System::String - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : false - 변경 시 DFS 재생성 여부 : No - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : System::String +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : false +변경 시 DFS 재생성 여부 : No +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public override string TopologyEntityTypeName { get; } @@ -360,7 +361,7 @@ public override string TopologyEntityTypeName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -374,7 +375,7 @@ public override void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs)

    The canvas has icon information.

    @@ -400,7 +401,7 @@ protected override void MakeReferenceImpl(LinkedList lstRef) #### Parameters -`lstRef` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1) +`lstRef` LinkedList

    The container.

    @@ -414,7 +415,7 @@ protected override void ReadTemplateImpl(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The reader. @@ -428,7 +429,7 @@ protected override void WriteTemplateImpl(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.GeneralJointSetting.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.GeneralJointSetting.md index cf43d93dfe..fa91a3360b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.GeneralJointSetting.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.GeneralJointSetting.md @@ -1,4 +1,5 @@ -# Class GeneralJointSetting +# Class GeneralJointSetting + Namespace: [VM.Models.Pre.Connections](VM.Models.Pre.Connections.md) Assembly: VM.Models.Pre.Connections.dll @@ -11,12 +12,12 @@ public class GeneralJointSetting : ToolkitMultiSelectionSettingBase ← +[ToolKitSettingBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ToolKitSettingBase.cs) ← +[ToolkitMultiSelectionSettingBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ToolkitMultiSelectionSettingBase.cs) ← [GeneralJointSetting](VM.Models.Pre.Connections.GeneralJointSetting.md) #### Implements @@ -34,19 +35,19 @@ IVerifiable #### Inherited Members -ToolkitMultiSelectionSettingBase.Add\(ObjectBase\), -ToolkitMultiSelectionSettingBase.Remove\(ObjectBase\), -ToolkitMultiSelectionSettingBase.Contains\(ObjectBase\), -ToolkitMultiSelectionSettingBase.Replace\(ObjectBase, ObjectBase\), -ToolkitMultiSelectionSettingBase.Add\(ObjectBase, PropertyGeneral.ConnectorType\), -ToolkitMultiSelectionSettingBase.SetSelection\(ObjectBase, PropertyGeneral.ConnectorType\), -ToolkitMultiSelectionSettingBase.GetSelection\(ObjectBase\), -ToolKitSettingBase.Add\(ObjectBase\), -ToolKitSettingBase.Remove\(ObjectBase\), -ToolKitSettingBase.Contains\(ObjectBase\), -ToolKitSettingBase.Replace\(ObjectBase, ObjectBase\), -ToolKitSettingBase.PostDeserialize\(Configuration\), -ToolKitSettingBase.Clear\(\), +[ToolkitMultiSelectionSettingBase.Add\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ToolkitMultiSelectionSettingBase.cs), +[ToolkitMultiSelectionSettingBase.Remove\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ToolkitMultiSelectionSettingBase.cs), +[ToolkitMultiSelectionSettingBase.Contains\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ToolkitMultiSelectionSettingBase.cs), +[ToolkitMultiSelectionSettingBase.Replace\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ToolkitMultiSelectionSettingBase.cs), +[ToolkitMultiSelectionSettingBase.Add\(ObjectBase, PropertyGeneral.ConnectorType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ToolkitMultiSelectionSettingBase.cs), +[ToolkitMultiSelectionSettingBase.SetSelection\(ObjectBase, PropertyGeneral.ConnectorType\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ToolkitMultiSelectionSettingBase.cs), +[ToolkitMultiSelectionSettingBase.GetSelection\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ToolkitMultiSelectionSettingBase.cs), +[ToolKitSettingBase.Add\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ToolKitSettingBase.cs), +[ToolKitSettingBase.Remove\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ToolKitSettingBase.cs), +[ToolKitSettingBase.Contains\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ToolKitSettingBase.cs), +[ToolKitSettingBase.Replace\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ToolKitSettingBase.cs), +[ToolKitSettingBase.PostDeserialize\(Configuration\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ToolKitSettingBase.cs), +[ToolKitSettingBase.Clear\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/ToolKitSettingBase.cs), LinkContainer.SetModified\(\), LinkContainer.raise\_OnUpdating\(object, LinkEventArgs\), LinkContainer.raise\_OnUpdate\(object, LinkEventArgs\), @@ -90,7 +91,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -149,7 +150,7 @@ public bool CheckData() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Clear\(\) @@ -175,7 +176,7 @@ The connector object to find. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool Whether it contains the connector object. @@ -187,11 +188,11 @@ public bool ContainsKey(UIntPtr keyObject) #### Parameters -`keyObject` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`keyObject` UIntPtr #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetSelection\(ObjectBase\) @@ -229,7 +230,7 @@ The connector object to remove. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool Whether it is success to remove the connector object. @@ -253,7 +254,7 @@ The ConnectorType of the connector object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool Whether it is success to set the ConnectorType. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.MbyNConnector.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.MbyNConnector.md index c7dd778671..928e306cd6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.MbyNConnector.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.MbyNConnector.md @@ -1,4 +1,5 @@ -# Class MbyNConnector +# Class MbyNConnector + Namespace: [VM.Models.Pre.Connections](VM.Models.Pre.Connections.md) Assembly: VM.Models.Pre.Connections.dll @@ -11,14 +12,14 @@ public class MbyNConnector : MultipleConnectorBase, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [MultipleConnectorBase](VM.Models.Pre.Connections.MultipleConnectorBase.md) ← [MbyNConnector](VM.Models.Pre.Connections.MbyNConnector.md) @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -58,34 +59,34 @@ IReferencable [MultipleConnectorBase.TypeOfMultiConnector](VM.Models.Pre.Connections.MultipleConnectorBase.md\#VM\_Models\_Pre\_Connections\_MultipleConnectorBase\_TypeOfMultiConnector), [MultipleConnectorBase.TypeOfMultiGeneralConnector](VM.Models.Pre.Connections.MultipleConnectorBase.md\#VM\_Models\_Pre\_Connections\_MultipleConnectorBase\_TypeOfMultiGeneralConnector), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -184,7 +185,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -223,7 +224,7 @@ public MbyNConnector(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the contact. @@ -263,7 +264,7 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -277,7 +278,7 @@ protected override void OnLinkReserved(ILink link, object objNotifier, EventArgs `link` ILink -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object -`args` [EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) +`args` EventArgs diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.MultiConnectorType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.MultiConnectorType.md index 80a24e557d..bd6db1394e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.MultiConnectorType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.MultiConnectorType.md @@ -1,4 +1,5 @@ -# Enum MultiConnectorType +# Enum MultiConnectorType + Namespace: [VM.Models.Pre.Connections](VM.Models.Pre.Connections.md) Assembly: VM.Models.Pre.Connections.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.MultipleConnectorBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.MultipleConnectorBase.md index edb7588d29..cc9b74bca4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.MultipleConnectorBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.MultipleConnectorBase.md @@ -1,4 +1,5 @@ -# Class MultipleConnectorBase +# Class MultipleConnectorBase + Namespace: [VM.Models.Pre.Connections](VM.Models.Pre.Connections.md) Assembly: VM.Models.Pre.Connections.dll @@ -12,14 +13,14 @@ public abstract class MultipleConnectorBase : Entity, IO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [MultipleConnectorBase](VM.Models.Pre.Connections.MultipleConnectorBase.md) #### Derived @@ -35,7 +36,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -62,34 +63,34 @@ IReferencable #### Inherited Members -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -188,7 +189,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -227,7 +228,7 @@ public MultipleConnectorBase(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the contact. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.MultipleConnectorInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.MultipleConnectorInfo.md index 38bcb31f8e..7d56f81690 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.MultipleConnectorInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.MultipleConnectorInfo.md @@ -1,4 +1,5 @@ -# Class MultipleConnectorInfo +# Class MultipleConnectorInfo + Namespace: [VM.Models.Pre.Connections](VM.Models.Pre.Connections.md) Assembly: VM.Models.Pre.Connections.dll @@ -11,9 +12,9 @@ public class MultipleConnectorInfo : LinkContainer, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [MultipleConnectorInfo](VM.Models.Pre.Connections.MultipleConnectorInfo.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.NCombinationConnector.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.NCombinationConnector.md index ed959aa720..179887b1a6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.NCombinationConnector.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.NCombinationConnector.md @@ -1,4 +1,5 @@ -# Class NCombinationConnector +# Class NCombinationConnector + Namespace: [VM.Models.Pre.Connections](VM.Models.Pre.Connections.md) Assembly: VM.Models.Pre.Connections.dll @@ -11,14 +12,14 @@ public class NCombinationConnector : MultipleConnectorBase, IObservableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [MultipleConnectorBase](VM.Models.Pre.Connections.MultipleConnectorBase.md) ← [NCombinationConnector](VM.Models.Pre.Connections.NCombinationConnector.md) @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -58,34 +59,34 @@ IReferencable [MultipleConnectorBase.TypeOfMultiConnector](VM.Models.Pre.Connections.MultipleConnectorBase.md\#VM\_Models\_Pre\_Connections\_MultipleConnectorBase\_TypeOfMultiConnector), [MultipleConnectorBase.TypeOfMultiGeneralConnector](VM.Models.Pre.Connections.MultipleConnectorBase.md\#VM\_Models\_Pre\_Connections\_MultipleConnectorBase\_TypeOfMultiGeneralConnector), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -184,7 +185,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -223,7 +224,7 @@ public NCombinationConnector(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the contact. @@ -239,7 +240,7 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MultipleConnectorInformation @@ -265,7 +266,7 @@ protected override void OnLinkReserved(ILink link, object objNotifier, EventArgs `link` ILink -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object -`args` [EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) +`args` EventArgs diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.PairConnector.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.PairConnector.md index 283242a32f..27ceac8878 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.PairConnector.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.PairConnector.md @@ -1,4 +1,5 @@ -# Class PairConnector +# Class PairConnector + Namespace: [VM.Models.Pre.Connections](VM.Models.Pre.Connections.md) Assembly: VM.Models.Pre.Connections.dll @@ -11,14 +12,14 @@ public class PairConnector : MultipleConnectorBase, IObservableObject, IDisposab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [MultipleConnectorBase](VM.Models.Pre.Connections.MultipleConnectorBase.md) ← [PairConnector](VM.Models.Pre.Connections.PairConnector.md) @@ -29,7 +30,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -58,34 +59,34 @@ IReferencable [MultipleConnectorBase.TypeOfMultiConnector](VM.Models.Pre.Connections.MultipleConnectorBase.md\#VM\_Models\_Pre\_Connections\_MultipleConnectorBase\_TypeOfMultiConnector), [MultipleConnectorBase.TypeOfMultiGeneralConnector](VM.Models.Pre.Connections.MultipleConnectorBase.md\#VM\_Models\_Pre\_Connections\_MultipleConnectorBase\_TypeOfMultiGeneralConnector), -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -184,7 +185,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -223,7 +224,7 @@ public PairConnector(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the contact. @@ -239,7 +240,7 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Pair @@ -265,7 +266,7 @@ protected override void OnLinkReserved(ILink link, object objNotifier, EventArgs `link` ILink -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object -`args` [EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) +`args` EventArgs diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.PropertyGeneral.ConnectorType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.PropertyGeneral.ConnectorType.md index 22e115377c..829066e340 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.PropertyGeneral.ConnectorType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.PropertyGeneral.ConnectorType.md @@ -1,4 +1,5 @@ -# Enum PropertyGeneral.ConnectorType +# Enum PropertyGeneral.ConnectorType + Namespace: [VM.Models.Pre.Connections](VM.Models.Pre.Connections.md) Assembly: VM.Models.Pre.Connections.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.PropertyGeneral.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.PropertyGeneral.md index 48e230ca9a..53ea846cd4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.PropertyGeneral.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.PropertyGeneral.md @@ -1,16 +1,17 @@ -# Class PropertyGeneral +# Class PropertyGeneral + Namespace: [VM.Models.Pre.Connections](VM.Models.Pre.Connections.md) Assembly: VM.Models.Pre.Connections.dll

    This class is to represent the general connections properties.

    - Symmetric Modeling : Yes - Reference : No - Reference Type : N/A - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : Yes +Reference : No +Reference Type : N/A +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    ```csharp public class PropertyGeneral : PropertyConstraint, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, ILinkContainer, IOwned, IHasID, IArgument, IHasProperty @@ -18,14 +19,14 @@ public class PropertyGeneral : PropertyConstraint, IObservableObject, IDisposabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyConstraint ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyConstraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs) ← [PropertyGeneral](VM.Models.Pre.Connections.PropertyGeneral.md) #### Implements @@ -39,7 +40,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -50,14 +51,14 @@ IHasProperty #### Inherited Members -PropertyConstraint.ReferenceType, -PropertyConstraint.ArgumentType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyConstraint.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[PropertyConstraint.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -156,7 +157,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -209,7 +210,7 @@ public PropertyBall BallProperty { get; set; } #### Property Value - PropertyBall + [PropertyBall](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Ball.cs) ### BushProperty @@ -221,7 +222,7 @@ public PropertyBush BushProperty { get; set; } #### Property Value - PropertyBush + [PropertyBush](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Bush.cs) ### ConnectorFullType @@ -233,30 +234,30 @@ public string ConnectorFullType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ConnectorProperty

    Gets the property of connector

    - Type : VM.Managed.Property - LinkRequestUpdate 시 처리 : N/A - LinkRequestDestroy 시 처리 : - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Damping Ratio - Control Type : N/A - ToolTip : N/A - Error Message : N/A - Category : N/A - Category Index : N/A - 변경 시 DFS 재생성 여부 : No - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : VM.Managed.Property +LinkRequestUpdate 시 처리 : N/A +LinkRequestDestroy 시 처리 : +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Damping Ratio +Control Type : N/A +ToolTip : N/A +Error Message : N/A +Category : N/A +Category Index : N/A +변경 시 DFS 재생성 여부 : No +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public Property ConnectorProperty { get; set; } @@ -264,7 +265,7 @@ public Property ConnectorProperty { get; set; } #### Property Value - Property + [Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ### ConvelProperty @@ -276,7 +277,7 @@ public PropertyConvel ConvelProperty { get; set; } #### Property Value - PropertyConvel + [PropertyConvel](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCP/Convel.cs) ### CylindricalProperty @@ -288,7 +289,7 @@ public PropertyCylindrical CylindricalProperty { get; set; } #### Property Value - PropertyCylindrical + [PropertyCylindrical](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Cylindrical.cs) ### DistanceProperty @@ -300,7 +301,7 @@ public PropertyDistance DistanceProperty { get; set; } #### Property Value - PropertyDistance + [PropertyDistance](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCP/Distance.cs) ### FixedProperty @@ -312,7 +313,7 @@ public PropertyFixed FixedProperty { get; set; } #### Property Value - PropertyFixed + [PropertyFixed](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Fixed.cs) ### InlineProperty @@ -324,7 +325,7 @@ public PropertyInline InlineProperty { get; set; } #### Property Value - PropertyInline + [PropertyInline](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCP/Inline.cs) ### InplaneProperty @@ -336,7 +337,7 @@ public PropertyInplane InplaneProperty { get; set; } #### Property Value - PropertyInplane + [PropertyInplane](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCP/Inplane.cs) ### MatrixProperty @@ -348,7 +349,7 @@ public PropertyMatrix MatrixProperty { get; set; } #### Property Value - PropertyMatrix + [PropertyMatrix](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFP/Matrix.cs) ### OrientationProperty @@ -360,7 +361,7 @@ public PropertyOrientation OrientationProperty { get; set; } #### Property Value - PropertyOrientation + [PropertyOrientation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCP/Orientation.cs) ### ParallelProperty @@ -372,7 +373,7 @@ public PropertyParallel ParallelProperty { get; set; } #### Property Value - PropertyParallel + [PropertyParallel](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCP/Parallel.cs) ### PerpendicularProperty @@ -384,7 +385,7 @@ public PropertyPerpendicular PerpendicularProperty { get; set; } #### Property Value - PropertyPerpendicular + [PropertyPerpendicular](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCP/Perpendicular.cs) ### PlanarProperty @@ -396,7 +397,7 @@ public PropertyPlanar PlanarProperty { get; set; } #### Property Value - PropertyPlanar + [PropertyPlanar](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Planar.cs) ### ReferenceType @@ -408,7 +409,7 @@ public override string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RevoluteProperty @@ -420,7 +421,7 @@ public PropertyRevolute RevoluteProperty { get; set; } #### Property Value - PropertyRevolute + [PropertyRevolute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Revolute.cs) ### ScrewProperty @@ -432,7 +433,7 @@ public PropertyScrew ScrewProperty { get; set; } #### Property Value - PropertyScrew + [PropertyScrew](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCP/Screw.cs) ### SixMotionProperty @@ -456,30 +457,30 @@ public PropertyTranslational TranslationalProperty { get; set; } #### Property Value - PropertyTranslational + [PropertyTranslational](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Translational.cs) ### TypeOfConnector

    Gets the type of connector.

    - Type : VM.Models.Pre.Connections.PropertyGeneral.ConnectorType - LinkRequestUpdate 시 처리 : N/A - LinkRequestDestroy 시 처리 : - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Damping Ratio - Control Type : ComboBox - ToolTip : N/A - Error Message : N/A - Category : N/A - Category Index : 1 - 변경 시 DFS 재생성 여부 : No - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : VM.Models.Pre.Connections.PropertyGeneral.ConnectorType +LinkRequestUpdate 시 처리 : N/A +LinkRequestDestroy 시 처리 : +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Damping Ratio +Control Type : ComboBox +ToolTip : N/A +Error Message : N/A +Category : N/A +Category Index : 1 +변경 시 DFS 재생성 여부 : No +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public PropertyGeneral.ConnectorType TypeOfConnector { get; set; } @@ -499,7 +500,7 @@ public PropertyUniversal UniversalProperty { get; set; } #### Property Value - PropertyUniversal + [PropertyUniversal](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCP/Universal.cs) ## Methods @@ -513,7 +514,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -533,13 +534,13 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The unnamed object. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The unnamed object name. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.PropertyMultiConnector.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.PropertyMultiConnector.md index 04ed0d02e5..7a3f6d213d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.PropertyMultiConnector.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.PropertyMultiConnector.md @@ -1,4 +1,5 @@ -# Class PropertyMultiConnector +# Class PropertyMultiConnector + Namespace: [VM.Models.Pre.Connections](VM.Models.Pre.Connections.md) Assembly: VM.Models.Pre.Connections.dll @@ -11,13 +12,13 @@ public class PropertyMultiConnector : Property, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyMultiConnector](VM.Models.Pre.Connections.PropertyMultiConnector.md) #### Implements @@ -31,7 +32,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -40,12 +41,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -144,7 +145,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -185,7 +186,7 @@ public Property Characteristic { get; set; } #### Property Value - Property + [Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ## Methods @@ -199,7 +200,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -219,11 +220,11 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The ob unnamed. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.PropertySixMotion.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.PropertySixMotion.md index 12c08b63a4..ba75f39ac7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.PropertySixMotion.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.PropertySixMotion.md @@ -1,16 +1,17 @@ -# Class PropertySixMotion +# Class PropertySixMotion + Namespace: [VM.Models.Pre.Connections](VM.Models.Pre.Connections.md) Assembly: VM.Models.Pre.Connections.dll

    This class is to represent the six-motion constraint properties.

    - Symmetric Modeling : No - Reference : No - Reference Type : N/A - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : No +Reference : No +Reference Type : N/A +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    ```csharp public class PropertySixMotion : PropertyConstraint, IObservableObject, IDisposableObject, ILinkable, IObjectBase, IObject, IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, ILinkContainer, IOwned, IHasID, IArgument @@ -18,14 +19,14 @@ public class PropertySixMotion : PropertyConstraint, IObservableObject, IDisposa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← -PropertyConstraint ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← +[PropertyConstraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs) ← [PropertySixMotion](VM.Models.Pre.Connections.PropertySixMotion.md) #### Implements @@ -39,7 +40,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -49,14 +50,14 @@ IArgument #### Inherited Members -PropertyConstraint.ReferenceType, -PropertyConstraint.ArgumentType, -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[PropertyConstraint.ReferenceType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[PropertyConstraint.ArgumentType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Constraint.cs), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -155,7 +156,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -198,27 +199,39 @@ public override ArgumentTypes ArgumentType { get; } ArgumentTypes +### ReferenceType + +Gets the type of the array for argument. + +```csharp +public override string ReferenceType { get; } +``` + +#### Property Value + + string + ### RotationalXProperty

    Gets or sets the rotational x property.

    - Type : PropertyRevolute - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Rotational X - Control Type : N/A - ToolTip : N/A - Error Message : N/A - Category : Property - Category Index : N/A - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : PropertyRevolute +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Rotational X +Control Type : N/A +ToolTip : N/A +Error Message : N/A +Category : Property +Category Index : N/A +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public PropertyRevolute RotationalXProperty { get; set; } @@ -226,29 +239,29 @@ public PropertyRevolute RotationalXProperty { get; set; } #### Property Value - PropertyRevolute + [PropertyRevolute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Revolute.cs) ### RotationalYProperty

    Gets or sets the rotational y property.

    - Type : PropertyRevolute - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Rotational Y - Control Type : N/A - ToolTip : N/A - Error Message : N/A - Category : Property - Category Index : N/A - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : PropertyRevolute +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Rotational Y +Control Type : N/A +ToolTip : N/A +Error Message : N/A +Category : Property +Category Index : N/A +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public PropertyRevolute RotationalYProperty { get; set; } @@ -256,29 +269,29 @@ public PropertyRevolute RotationalYProperty { get; set; } #### Property Value - PropertyRevolute + [PropertyRevolute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Revolute.cs) ### RotationalZProperty

    Gets or sets the rotational z property.

    - Type : PropertyRevolute - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Rotational Z - Control Type : N/A - ToolTip : N/A - Error Message : N/A - Category : Property - Category Index : N/A - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : PropertyRevolute +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Rotational Z +Control Type : N/A +ToolTip : N/A +Error Message : N/A +Category : Property +Category Index : N/A +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public PropertyRevolute RotationalZProperty { get; set; } @@ -286,29 +299,29 @@ public PropertyRevolute RotationalZProperty { get; set; } #### Property Value - PropertyRevolute + [PropertyRevolute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Revolute.cs) ### TranslationalXProperty

    Gets or sets the translational x property.

    - Type : PropertyTranslational - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Translational X - Control Type : N/A - ToolTip : N/A - Error Message : N/A - Category : Property - Category Index : N/A - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : PropertyTranslational +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Translational X +Control Type : N/A +ToolTip : N/A +Error Message : N/A +Category : Property +Category Index : N/A +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public PropertyTranslational TranslationalXProperty { get; set; } @@ -316,29 +329,29 @@ public PropertyTranslational TranslationalXProperty { get; set; } #### Property Value - PropertyTranslational + [PropertyTranslational](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Translational.cs) ### TranslationalYProperty

    Gets or sets the translational y property.

    - Type : PropertyTranslational - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Translational Y - Control Type : N/A - ToolTip : N/A - Error Message : N/A - Category : Property - Category Index : N/A - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : PropertyTranslational +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Translational Y +Control Type : N/A +ToolTip : N/A +Error Message : N/A +Category : Property +Category Index : N/A +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public PropertyTranslational TranslationalYProperty { get; set; } @@ -346,29 +359,29 @@ public PropertyTranslational TranslationalYProperty { get; set; } #### Property Value - PropertyTranslational + [PropertyTranslational](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Translational.cs) ### TranslationalZProperty

    Gets or sets the translational z property.

    - Type : PropertyTranslational - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Translational Z - Control Type : N/A - ToolTip : N/A - Error Message : N/A - Category : Property - Category Index : N/A - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : PropertyTranslational +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Translational Z +Control Type : N/A +ToolTip : N/A +Error Message : N/A +Category : Property +Category Index : N/A +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public PropertyTranslational TranslationalZProperty { get; set; } @@ -376,29 +389,29 @@ public PropertyTranslational TranslationalZProperty { get; set; } #### Property Value - PropertyTranslational + [PropertyTranslational](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDCB/Translational.cs) ### UseRotationalXProperty

    Gets or sets the rotational x property use flag.

    - Type : bool - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Use Rotational X - Control Type : Check box - ToolTip : N/A - Error Message : N/A - Category : Property - Category Index : N/A - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : bool +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Use Rotational X +Control Type : Check box +ToolTip : N/A +Error Message : N/A +Category : Property +Category Index : N/A +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public bool UseRotationalXProperty { get; set; } @@ -406,29 +419,29 @@ public bool UseRotationalXProperty { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseRotationalYProperty

    Gets or sets the rotational y property use flag.

    - Type : bool - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Use Rotational Y - Control Type : Check box - ToolTip : N/A - Error Message : N/A - Category : Property - Category Index : N/A - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : bool +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Use Rotational Y +Control Type : Check box +ToolTip : N/A +Error Message : N/A +Category : Property +Category Index : N/A +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public bool UseRotationalYProperty { get; set; } @@ -436,29 +449,29 @@ public bool UseRotationalYProperty { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseRotationalZProperty

    Gets or sets the rotational z property use flag.

    - Type : bool - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Use Rotational Z - Control Type : Check box - ToolTip : N/A - Error Message : N/A - Category : Property - Category Index : N/A - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : bool +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Use Rotational Z +Control Type : Check box +ToolTip : N/A +Error Message : N/A +Category : Property +Category Index : N/A +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public bool UseRotationalZProperty { get; set; } @@ -466,29 +479,29 @@ public bool UseRotationalZProperty { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseTranslationalXProperty

    Gets or sets the translational x property use flag.

    - Type : bool - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Use Translational X - Control Type : Check box - ToolTip : N/A - Error Message : N/A - Category : Property - Category Index : N/A - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : bool +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Use Translational X +Control Type : Check box +ToolTip : N/A +Error Message : N/A +Category : Property +Category Index : N/A +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public bool UseTranslationalXProperty { get; set; } @@ -496,29 +509,29 @@ public bool UseTranslationalXProperty { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseTranslationalYProperty

    Gets or sets the translational y property use flag.

    - Type : bool - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Use Translational Y - Control Type : Check box - ToolTip : N/A - Error Message : N/A - Category : Property - Category Index : N/A - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : bool +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Use Translational Y +Control Type : Check box +ToolTip : N/A +Error Message : N/A +Category : Property +Category Index : N/A +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public bool UseTranslationalYProperty { get; set; } @@ -526,29 +539,29 @@ public bool UseTranslationalYProperty { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseTranslationalZProperty

    Gets or sets the translational z property use flag.

    - Type : bool - LinkRequestUpdate 시 처리 : N/A - Read/Write : Read/Write - Read/Write Condition : N/A - 연관 프로퍼티 : N/A - Validation 조건 : N/A - UI Visibility : true - Label : Use Translational Z - Control Type : Check box - ToolTip : N/A - Error Message : N/A - Category : Property - Category Index : N/A - 변경 시 DFS 재생성 여부 : Yes - 변경 시 DFG 재생성 여부 : No - 변경 시 GINF 재생성 여부 : No -

    +Type : bool +LinkRequestUpdate 시 처리 : N/A +Read/Write : Read/Write +Read/Write Condition : N/A +연관 프로퍼티 : N/A +Validation 조건 : N/A +UI Visibility : true +Label : Use Translational Z +Control Type : Check box +ToolTip : N/A +Error Message : N/A +Category : Property +Category Index : N/A +변경 시 DFS 재생성 여부 : Yes +변경 시 DFG 재생성 여부 : No +변경 시 GINF 재생성 여부 : No +

    ```csharp public bool UseTranslationalZProperty { get; set; } @@ -556,7 +569,7 @@ public bool UseTranslationalZProperty { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -570,7 +583,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name to search for. @@ -590,13 +603,13 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The unnamed object. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The unnamed object name. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.ReferenceGeneral.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.ReferenceGeneral.md index 0e33da6d3f..5e26a2b076 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.ReferenceGeneral.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.ReferenceGeneral.md @@ -1,4 +1,5 @@ -# Class ReferenceGeneral +# Class ReferenceGeneral + Namespace: [VM.Models.Pre.Connections](VM.Models.Pre.Connections.md) Assembly: VM.Models.Pre.Connections.dll @@ -11,9 +12,9 @@ public class ReferenceGeneral : Reference, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← Reference ← @@ -33,7 +34,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IReferencable, INamed, @@ -167,7 +168,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -198,11 +199,11 @@ protected ReferenceGeneral(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo

    The info.

    -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext

    The context.

    @@ -232,21 +233,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.md index 709564d35e..f66a51066e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Connections.md @@ -1,4 +1,5 @@ -# Namespace VM.Models.Pre.Connections +# Namespace VM.Models.Pre.Connections + ### Classes @@ -38,12 +39,12 @@ This class is to represent the pair connector.

    This class is to represent the general connections properties.

    - Symmetric Modeling : Yes - Reference : No - Reference Type : N/A - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : Yes +Reference : No +Reference Type : N/A +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    [PropertyMultiConnector](VM.Models.Pre.Connections.PropertyMultiConnector.md) @@ -53,12 +54,12 @@ This class is to represent the property of multiple connector.

    This class is to represent the six-motion constraint properties.

    - Symmetric Modeling : No - Reference : No - Reference Type : N/A - 삭제시 Reservable한 Link 변수 : N/A - Generic Collection에 담겨있는 Link 변수 : N/A -

    +Symmetric Modeling : No +Reference : No +Reference Type : N/A +삭제시 Reservable한 Link 변수 : N/A +Generic Collection에 담겨있는 Link 변수 : N/A +

    [ReferenceGeneral](VM.Models.Pre.Connections.ReferenceGeneral.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.DictionaryExtensions.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.DictionaryExtensions.md index 5ff9439afa..a0d0a1a45d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.DictionaryExtensions.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.DictionaryExtensions.md @@ -1,4 +1,5 @@ -# Class DictionaryExtensions +# Class DictionaryExtensions + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -9,7 +10,7 @@ public static class DictionaryExtensions #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DictionaryExtensions](VM.Models.Pre.DictionaryExtensions.md) #### Extension Methods @@ -28,7 +29,7 @@ public static bool TryChangeKey(this IDictionary dic #### Parameters -`dictionary` [IDictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary\-2) +`dictionary` IDictionary `fromKey` TKey @@ -36,7 +37,7 @@ public static bool TryChangeKey(this IDictionary dic #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Type Parameters diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.DocumentType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.DocumentType.md index f75c3e0ca8..dbf1eea33b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.DocumentType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.DocumentType.md @@ -1,4 +1,5 @@ -# Enum DocumentType +# Enum DocumentType + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.Brake.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.Brake.md index 5af7c75c82..70d03c4520 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.Brake.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.Brake.md @@ -1,4 +1,5 @@ -# Class Brake +# Class Brake + Namespace: [VM.Models.Pre.Drivetrain.VehicleSimulator](VM.Models.Pre.Drivetrain.VehicleSimulator.md) Assembly: VM.Models.Pre.Drivetrain.VehicleSimulator.dll @@ -9,9 +10,9 @@ public class Brake : ValidatableBase, IObservableObject, IDisposableObject, IVal #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -ValidatableBase ← +[ValidatableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs) ← [Brake](VM.Models.Pre.Drivetrain.VehicleSimulator.Brake.md) #### Implements @@ -22,18 +23,18 @@ IValidatable #### Inherited Members -ValidatableBase.RaisePropertyChanged\(string\), -ValidatableBase.SuspendValidate\(\), -ValidatableBase.Validate\(\), -ValidatableBase.Validate\(ValidationContext\), -ValidatableBase.DisposeManagedResources\(\), -ValidatableBase.CanValidate, -ValidatableBase.Errors, -ValidatableBase.HasValidationAttribute, -ValidatableBase.HasValidator, -ValidatableBase.IsValid, -ValidatableBase.ValidateTrigger, -ValidatableBase.ErrorsChanged, +[ValidatableBase.RaisePropertyChanged\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.SuspendValidate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Validate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Validate\(ValidationContext\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.CanValidate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Errors](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.HasValidationAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.HasValidator](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.ValidateTrigger](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.ErrorsChanged](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -70,5 +71,5 @@ public double MaxBrakingTorque { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.BrakeValidator.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.BrakeValidator.md index 2b0f4f1368..d1af13e7e8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.BrakeValidator.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.BrakeValidator.md @@ -1,4 +1,5 @@ -# Class BrakeValidator +# Class BrakeValidator + Namespace: [VM.Models.Pre.Drivetrain.VehicleSimulator](VM.Models.Pre.Drivetrain.VehicleSimulator.md) Assembly: VM.Models.Pre.Drivetrain.VehicleSimulator.dll @@ -9,7 +10,7 @@ public class BrakeValidator : AbstractValidator, IValidator, IVali #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← AbstractValidator ← [BrakeValidator](VM.Models.Pre.Drivetrain.VehicleSimulator.BrakeValidator.md) @@ -46,6 +47,7 @@ AbstractValidator.GetEnumerator\(\), AbstractValidator.EnsureInstanceNotNull\(object\), AbstractValidator.PreValidate\(ValidationContext, ValidationResult\), AbstractValidator.RaiseValidationException\(ValidationContext, ValidationResult\), +AbstractValidator.OnRuleAdded\(IValidationRule\), AbstractValidator.CascadeMode, AbstractValidator.ClassLevelCascadeMode, AbstractValidator.RuleLevelCascadeMode diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.CustomContractResolver.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.CustomContractResolver.md index a43a3f075a..7beb0c212f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.CustomContractResolver.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.CustomContractResolver.md @@ -1,4 +1,5 @@ -# Class CustomContractResolver +# Class CustomContractResolver + Namespace: [VM.Models.Pre.Drivetrain.VehicleSimulator](VM.Models.Pre.Drivetrain.VehicleSimulator.md) Assembly: VM.Models.Pre.Drivetrain.VehicleSimulator.dll @@ -9,7 +10,7 @@ public class CustomContractResolver : DefaultContractResolver, IContractResolver #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← DefaultContractResolver ← [CustomContractResolver](VM.Models.Pre.Drivetrain.VehicleSimulator.CustomContractResolver.md) @@ -79,21 +80,15 @@ public static readonly CustomContractResolver Instance ### GetSerializableMembers\(Type\) -Gets the serializable members for the type. - ```csharp protected override List GetSerializableMembers(Type objectType) ``` #### Parameters -`objectType` [Type](https://learn.microsoft.com/dotnet/api/system.type) - -The type to get serializable members for. +`objectType` Type #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[MemberInfo](https://learn.microsoft.com/dotnet/api/system.reflection.memberinfo)\> - -The serializable members for the type. + List diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.CustomDataTableConverter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.CustomDataTableConverter.md index 7853069b7d..5db165b53f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.CustomDataTableConverter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.CustomDataTableConverter.md @@ -1,4 +1,5 @@ -# Class CustomDataTableConverter +# Class CustomDataTableConverter + Namespace: [VM.Models.Pre.Drivetrain.VehicleSimulator](VM.Models.Pre.Drivetrain.VehicleSimulator.md) Assembly: VM.Models.Pre.Drivetrain.VehicleSimulator.dll @@ -9,7 +10,7 @@ public class CustomDataTableConverter : JsonConverter #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← JsonConverter ← [CustomDataTableConverter](VM.Models.Pre.Drivetrain.VehicleSimulator.CustomDataTableConverter.md) @@ -39,28 +40,20 @@ public CustomDataTableConverter() ### CanConvert\(Type\) -Determines whether this instance can convert the specified object type. - ```csharp public override bool CanConvert(Type objectType) ``` #### Parameters -`objectType` [Type](https://learn.microsoft.com/dotnet/api/system.type) - -Type of the object. +`objectType` Type #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) - -true if this instance can convert the specified object type; otherwise, false. + bool ### ReadJson\(JsonReader, Type, object, JsonSerializer\) -Reads the JSON representation of the object. - ```csharp public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer) ``` @@ -69,30 +62,18 @@ public override object ReadJson(JsonReader reader, Type objectType, object exist `reader` JsonReader -The to read from. - -`objectType` [Type](https://learn.microsoft.com/dotnet/api/system.type) - -Type of the object. - -`existingValue` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objectType` Type -The existing value of object being read. +`existingValue` object `serializer` JsonSerializer -The calling serializer. - #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) - -The object value. + object ### WriteJson\(JsonWriter, object, JsonSerializer\) -Writes the JSON representation of the object. - ```csharp public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer) ``` @@ -101,13 +82,7 @@ public override void WriteJson(JsonWriter writer, object value, JsonSerializer s `writer` JsonWriter -The to write to. - -`value` [object](https://learn.microsoft.com/dotnet/api/system.object) - -The value. +`value` object `serializer` JsonSerializer -The calling serializer. - diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.DrivingScenario.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.DrivingScenario.md index a5529bd841..e8b3b49acb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.DrivingScenario.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.DrivingScenario.md @@ -1,4 +1,5 @@ -# Class DrivingScenario +# Class DrivingScenario + Namespace: [VM.Models.Pre.Drivetrain.VehicleSimulator](VM.Models.Pre.Drivetrain.VehicleSimulator.md) Assembly: VM.Models.Pre.Drivetrain.VehicleSimulator.dll @@ -9,9 +10,9 @@ public class DrivingScenario : ValidatableBase, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -ValidatableBase ← +[ValidatableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs) ← [DrivingScenario](VM.Models.Pre.Drivetrain.VehicleSimulator.DrivingScenario.md) #### Implements @@ -22,18 +23,18 @@ IValidatable #### Inherited Members -ValidatableBase.RaisePropertyChanged\(string\), -ValidatableBase.SuspendValidate\(\), -ValidatableBase.Validate\(\), -ValidatableBase.Validate\(ValidationContext\), -ValidatableBase.DisposeManagedResources\(\), -ValidatableBase.CanValidate, -ValidatableBase.Errors, -ValidatableBase.HasValidationAttribute, -ValidatableBase.HasValidator, -ValidatableBase.IsValid, -ValidatableBase.ValidateTrigger, -ValidatableBase.ErrorsChanged, +[ValidatableBase.RaisePropertyChanged\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.SuspendValidate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Validate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Validate\(ValidationContext\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.CanValidate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Errors](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.HasValidationAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.HasValidator](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.ValidateTrigger](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.ErrorsChanged](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -81,7 +82,7 @@ public ObservableCollection AccelerationPedalScenarioSignal { get; } #### Property Value - [ObservableCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.observablecollection\-1) + ObservableCollection ### BrakePedalScenario @@ -102,7 +103,7 @@ public ObservableCollection BrakePedalScenarioSignal { get; } #### Property Value - [ObservableCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.observablecollection\-1) + ObservableCollection ### EndTime @@ -112,7 +113,7 @@ public double? EndTime { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### IsValid @@ -122,5 +123,5 @@ public override bool IsValid { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.DrivingScenarioValidator.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.DrivingScenarioValidator.md index 256d298636..b7b9af7349 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.DrivingScenarioValidator.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.DrivingScenarioValidator.md @@ -1,4 +1,5 @@ -# Class DrivingScenarioValidator +# Class DrivingScenarioValidator + Namespace: [VM.Models.Pre.Drivetrain.VehicleSimulator](VM.Models.Pre.Drivetrain.VehicleSimulator.md) Assembly: VM.Models.Pre.Drivetrain.VehicleSimulator.dll @@ -9,7 +10,7 @@ public class DrivingScenarioValidator : AbstractValidator, IVal #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← AbstractValidator ← [DrivingScenarioValidator](VM.Models.Pre.Drivetrain.VehicleSimulator.DrivingScenarioValidator.md) @@ -46,6 +47,7 @@ AbstractValidator.GetEnumerator\(\), AbstractValidator.EnsureInstanceNotNull\(object\), AbstractValidator.PreValidate\(ValidationContext, ValidationResult\), AbstractValidator.RaiseValidationException\(ValidationContext, ValidationResult\), +AbstractValidator.OnRuleAdded\(IValidationRule\), AbstractValidator.CascadeMode, AbstractValidator.ClassLevelCascadeMode, AbstractValidator.RuleLevelCascadeMode diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.Flow.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.Flow.md index 7c8434abc4..e1c52fb95a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.Flow.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.Flow.md @@ -1,4 +1,5 @@ -# Class Flow +# Class Flow + Namespace: [VM.Models.Pre.Drivetrain.VehicleSimulator](VM.Models.Pre.Drivetrain.VehicleSimulator.md) Assembly: VM.Models.Pre.Drivetrain.VehicleSimulator.dll @@ -9,9 +10,9 @@ public sealed class Flow : ItemsContainerModelBase, IObservableObject, ID #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -ValidatableBase ← +[ValidatableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs) ← [ItemsContainerModelBase](VM.Models.Pre.Drivetrain.VehicleSimulator.ItemsContainerModelBase\-1.md) ← [Flow](VM.Models.Pre.Drivetrain.VehicleSimulator.Flow.md) @@ -34,17 +35,17 @@ IHasGuid [ItemsContainerModelBase.ItemsCount](VM.Models.Pre.Drivetrain.VehicleSimulator.ItemsContainerModelBase\-1.md\#VM\_Models\_Pre\_Drivetrain\_VehicleSimulator\_ItemsContainerModelBase\_1\_ItemsCount), [ItemsContainerModelBase.ObservableItems](VM.Models.Pre.Drivetrain.VehicleSimulator.ItemsContainerModelBase\-1.md\#VM\_Models\_Pre\_Drivetrain\_VehicleSimulator\_ItemsContainerModelBase\_1\_ObservableItems), [ItemsContainerModelBase.this\[int\]](VM.Models.Pre.Drivetrain.VehicleSimulator.ItemsContainerModelBase\-1.md\#VM\_Models\_Pre\_Drivetrain\_VehicleSimulator\_ItemsContainerModelBase\_1\_Item\_System\_Int32\_), -ValidatableBase.RaisePropertyChanged\(string\), -ValidatableBase.SuspendValidate\(\), -ValidatableBase.Validate\(\), -ValidatableBase.Validate\(ValidationContext\), -ValidatableBase.CanValidate, -ValidatableBase.Errors, -ValidatableBase.HasValidationAttribute, -ValidatableBase.HasValidator, -ValidatableBase.IsValid, -ValidatableBase.ValidateTrigger, -ValidatableBase.ErrorsChanged, +[ValidatableBase.RaisePropertyChanged\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.SuspendValidate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Validate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Validate\(ValidationContext\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.CanValidate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Errors](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.HasValidationAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.HasValidator](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.ValidateTrigger](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.ErrorsChanged](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -70,9 +71,9 @@ public Flow(Guid guid, string name) #### Parameters -`guid` [Guid](https://learn.microsoft.com/dotnet/api/system.guid) +`guid` Guid -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string ## Properties @@ -95,7 +96,7 @@ public Guid Guid { get; } #### Property Value - [Guid](https://learn.microsoft.com/dotnet/api/system.guid) + Guid ### IsValid @@ -105,7 +106,7 @@ public override bool IsValid { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MotorMaxRPM @@ -115,7 +116,7 @@ public int MotorMaxRPM { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Name @@ -125,7 +126,7 @@ public string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Pinion1ToothCount @@ -135,7 +136,7 @@ public int Pinion1ToothCount { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Pinion2ToothCount @@ -145,7 +146,7 @@ public int Pinion2ToothCount { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### PlanetaryType @@ -196,7 +197,7 @@ public int RingToothCount { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### SunGearRole @@ -216,7 +217,7 @@ public int SunToothCount { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### UsePowerSplitModule @@ -226,7 +227,7 @@ public bool UsePowerSplitModule { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -238,7 +239,7 @@ public Power GetPower(int index) #### Parameters -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int #### Returns @@ -252,7 +253,7 @@ public int GetPowerCount() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetPowers\(\) @@ -262,5 +263,5 @@ public IEnumerable GetPowers() #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Power](VM.Models.Pre.Drivetrain.VehicleSimulator.Power.md)\> + IEnumerable<[Power](VM.Models.Pre.Drivetrain.VehicleSimulator.Power.md)\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.FlowDataColumn.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.FlowDataColumn.md index a226cd1ee5..501f82601a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.FlowDataColumn.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.FlowDataColumn.md @@ -1,4 +1,5 @@ -# Class FlowDataColumn +# Class FlowDataColumn + Namespace: [VM.Models.Pre.Drivetrain.VehicleSimulator](VM.Models.Pre.Drivetrain.VehicleSimulator.md) Assembly: VM.Models.Pre.Drivetrain.VehicleSimulator.dll @@ -9,9 +10,9 @@ public class FlowDataColumn : DataColumn #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[MarshalByValueComponent](https://learn.microsoft.com/dotnet/api/system.componentmodel.marshalbyvaluecomponent) ← -[DataColumn](https://learn.microsoft.com/dotnet/api/system.data.datacolumn) ← +object ← +MarshalByValueComponent ← +DataColumn ← [FlowDataColumn](VM.Models.Pre.Drivetrain.VehicleSimulator.FlowDataColumn.md) #### Extension Methods @@ -36,9 +37,9 @@ public FlowDataColumn(string columnName, Type dataType) #### Parameters -`columnName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`columnName` string -`dataType` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`dataType` Type ## Properties @@ -50,5 +51,5 @@ public Guid Guid { get; set; } #### Property Value - [Guid](https://learn.microsoft.com/dotnet/api/system.guid) + Guid diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.FlowValidator.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.FlowValidator.md index d660d507d4..3c405a9b15 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.FlowValidator.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.FlowValidator.md @@ -1,4 +1,5 @@ -# Class FlowValidator +# Class FlowValidator + Namespace: [VM.Models.Pre.Drivetrain.VehicleSimulator](VM.Models.Pre.Drivetrain.VehicleSimulator.md) Assembly: VM.Models.Pre.Drivetrain.VehicleSimulator.dll @@ -9,7 +10,7 @@ public class FlowValidator : AbstractValidator, IValidator, IValidat #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← AbstractValidator ← [FlowValidator](VM.Models.Pre.Drivetrain.VehicleSimulator.FlowValidator.md) @@ -46,6 +47,7 @@ AbstractValidator.GetEnumerator\(\), AbstractValidator.EnsureInstanceNotNull\(object\), AbstractValidator.PreValidate\(ValidationContext, ValidationResult\), AbstractValidator.RaiseValidationException\(ValidationContext, ValidationResult\), +AbstractValidator.OnRuleAdded\(IValidationRule\), AbstractValidator.CascadeMode, AbstractValidator.ClassLevelCascadeMode, AbstractValidator.RuleLevelCascadeMode diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.GearRoles.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.GearRoles.md index 6233eeeccf..1c1161e044 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.GearRoles.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.GearRoles.md @@ -1,4 +1,5 @@ -# Enum GearRoles +# Enum GearRoles + Namespace: [VM.Models.Pre.Drivetrain.VehicleSimulator](VM.Models.Pre.Drivetrain.VehicleSimulator.md) Assembly: VM.Models.Pre.Drivetrain.VehicleSimulator.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.ItemsContainerModelBase-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.ItemsContainerModelBase-1.md index 1b335db19c..f5d838e6fa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.ItemsContainerModelBase-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.ItemsContainerModelBase-1.md @@ -1,4 +1,5 @@ -# Class ItemsContainerModelBase +# Class ItemsContainerModelBase + Namespace: [VM.Models.Pre.Drivetrain.VehicleSimulator](VM.Models.Pre.Drivetrain.VehicleSimulator.md) Assembly: VM.Models.Pre.Drivetrain.VehicleSimulator.dll @@ -13,9 +14,9 @@ public abstract class ItemsContainerModelBase : ValidatableBase, IObser #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -ValidatableBase ← +[ValidatableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs) ← [ItemsContainerModelBase](VM.Models.Pre.Drivetrain.VehicleSimulator.ItemsContainerModelBase\-1.md) #### Implements @@ -26,18 +27,18 @@ IValidatable #### Inherited Members -ValidatableBase.RaisePropertyChanged\(string\), -ValidatableBase.SuspendValidate\(\), -ValidatableBase.Validate\(\), -ValidatableBase.Validate\(ValidationContext\), -ValidatableBase.DisposeManagedResources\(\), -ValidatableBase.CanValidate, -ValidatableBase.Errors, -ValidatableBase.HasValidationAttribute, -ValidatableBase.HasValidator, -ValidatableBase.IsValid, -ValidatableBase.ValidateTrigger, -ValidatableBase.ErrorsChanged, +[ValidatableBase.RaisePropertyChanged\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.SuspendValidate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Validate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Validate\(ValidationContext\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.CanValidate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Errors](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.HasValidationAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.HasValidator](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.ValidateTrigger](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.ErrorsChanged](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -88,7 +89,7 @@ public IConnectableObservable> All { get; } #### Property Value - IConnectableObservable\> + IConnectableObservable\> ### Items @@ -110,7 +111,7 @@ public int ItemsCount { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### ObservableItems @@ -121,7 +122,7 @@ public IObservable> ObservableItems { get; } #### Property Value - [IObservable](https://learn.microsoft.com/dotnet/api/system.iobservable\-1)\> + IObservable\> ### this\[int\] @@ -153,11 +154,11 @@ public bool Contains(Guid key) #### Parameters -`key` [Guid](https://learn.microsoft.com/dotnet/api/system.guid) +`key` Guid #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Contains\(TObject\) @@ -171,7 +172,7 @@ public bool Contains(TObject item) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DisposeManagedResources\(\) @@ -187,7 +188,7 @@ public void RemoveItem(Guid key) #### Parameters -`key` [Guid](https://learn.microsoft.com/dotnet/api/system.guid) +`key` Guid ### TryGetItem\(Guid, out TObject\) @@ -197,11 +198,11 @@ public bool TryGetItem(Guid key, out TObject item) #### Parameters -`key` [Guid](https://learn.microsoft.com/dotnet/api/system.guid) +`key` Guid `item` TObject #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.ItemsSourceConverter-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.ItemsSourceConverter-1.md index 5e3d865a6a..abfbb850f5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.ItemsSourceConverter-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.ItemsSourceConverter-1.md @@ -1,4 +1,5 @@ -# Class ItemsSourceConverter +# Class ItemsSourceConverter + Namespace: [VM.Models.Pre.Drivetrain.VehicleSimulator](VM.Models.Pre.Drivetrain.VehicleSimulator.md) Assembly: VM.Models.Pre.Drivetrain.VehicleSimulator.dll @@ -13,7 +14,7 @@ public class ItemsSourceConverter : JsonConverter where TObject : class #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← JsonConverter ← [ItemsSourceConverter](VM.Models.Pre.Drivetrain.VehicleSimulator.ItemsSourceConverter\-1.md) @@ -43,28 +44,20 @@ public ItemsSourceConverter() ### CanConvert\(Type\) -Determines whether this instance can convert the specified object type. - ```csharp public override bool CanConvert(Type objectType) ``` #### Parameters -`objectType` [Type](https://learn.microsoft.com/dotnet/api/system.type) - -Type of the object. +`objectType` Type #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) - -true if this instance can convert the specified object type; otherwise, false. + bool ### ReadJson\(JsonReader, Type, object, JsonSerializer\) -Reads the JSON representation of the object. - ```csharp public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer) ``` @@ -73,30 +66,18 @@ public override object ReadJson(JsonReader reader, Type objectType, object exist `reader` JsonReader -The to read from. - -`objectType` [Type](https://learn.microsoft.com/dotnet/api/system.type) - -Type of the object. - -`existingValue` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objectType` Type -The existing value of object being read. +`existingValue` object `serializer` JsonSerializer -The calling serializer. - #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) - -The object value. + object ### WriteJson\(JsonWriter, object, JsonSerializer\) -Writes the JSON representation of the object. - ```csharp public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer) ``` @@ -105,13 +86,7 @@ public override void WriteJson(JsonWriter writer, object value, JsonSerializer s `writer` JsonWriter -The to write to. - -`value` [object](https://learn.microsoft.com/dotnet/api/system.object) - -The value. +`value` object `serializer` JsonSerializer -The calling serializer. - diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.PlanetaryTypes.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.PlanetaryTypes.md index 425237e821..354707e4dd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.PlanetaryTypes.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.PlanetaryTypes.md @@ -1,4 +1,5 @@ -# Enum PlanetaryTypes +# Enum PlanetaryTypes + Namespace: [VM.Models.Pre.Drivetrain.VehicleSimulator](VM.Models.Pre.Drivetrain.VehicleSimulator.md) Assembly: VM.Models.Pre.Drivetrain.VehicleSimulator.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.Power.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.Power.md index 78008ddb2a..a6e4e87d25 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.Power.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.Power.md @@ -1,4 +1,5 @@ -# Class Power +# Class Power + Namespace: [VM.Models.Pre.Drivetrain.VehicleSimulator](VM.Models.Pre.Drivetrain.VehicleSimulator.md) Assembly: VM.Models.Pre.Drivetrain.VehicleSimulator.dll @@ -9,9 +10,9 @@ public sealed class Power : ValidatableBase, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -ValidatableBase ← +[ValidatableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs) ← [Power](VM.Models.Pre.Drivetrain.VehicleSimulator.Power.md) #### Implements @@ -24,17 +25,17 @@ IHasGuid #### Inherited Members -ValidatableBase.RaisePropertyChanged\(string\), -ValidatableBase.SuspendValidate\(\), -ValidatableBase.Validate\(\), -ValidatableBase.Validate\(ValidationContext\), -ValidatableBase.CanValidate, -ValidatableBase.Errors, -ValidatableBase.HasValidationAttribute, -ValidatableBase.HasValidator, -ValidatableBase.IsValid, -ValidatableBase.ValidateTrigger, -ValidatableBase.ErrorsChanged, +[ValidatableBase.RaisePropertyChanged\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.SuspendValidate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Validate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Validate\(ValidationContext\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.CanValidate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Errors](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.HasValidationAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.HasValidator](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.ValidateTrigger](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.ErrorsChanged](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -61,9 +62,9 @@ public Power(Guid guid, string name) #### Parameters -`guid` [Guid](https://learn.microsoft.com/dotnet/api/system.guid) +`guid` Guid -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string ## Properties @@ -75,7 +76,7 @@ public double ClutchStiffness { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DampingRatio @@ -85,7 +86,7 @@ public double DampingRatio { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DisengageDuration @@ -95,7 +96,7 @@ public double DisengageDuration { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DisengageShiftPattern @@ -105,7 +106,7 @@ public ObservableCollection DisengageShiftPattern { get; } #### Property Value - [ObservableCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.observablecollection\-1) + ObservableCollection ### DisengageShiftPatternCount @@ -116,7 +117,7 @@ public int? DisengageShiftPatternCount { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32)? + int? ### DisplayName @@ -126,7 +127,7 @@ public string DisplayName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### DistributionRatios @@ -138,7 +139,7 @@ public ObservableCollection DistributionRatios { get; } #### Property Value - [ObservableCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.observablecollection\-1) + ObservableCollection ### EnableClutch @@ -148,7 +149,7 @@ public bool EnableClutch { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### EngageDuration @@ -158,7 +159,7 @@ public double EngageDuration { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### EngageShiftPattern @@ -168,7 +169,7 @@ public ObservableCollection EngageShiftPattern { get; } #### Property Value - [ObservableCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.observablecollection\-1) + ObservableCollection ### EngageShiftPatternCount @@ -179,7 +180,7 @@ public int? EngageShiftPatternCount { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32)? + int? ### FullName @@ -189,7 +190,7 @@ public string FullName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GearRatio @@ -199,7 +200,7 @@ public ObservableCollection GearRatio { get; } #### Property Value - [ObservableCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.observablecollection\-1)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> + ObservableCollection ### Guid @@ -209,7 +210,7 @@ public Guid Guid { get; } #### Property Value - [Guid](https://learn.microsoft.com/dotnet/api/system.guid) + Guid ### IsRegenerativeBrakeRole @@ -220,7 +221,7 @@ public bool IsRegenerativeBrakeRole { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsValid @@ -230,7 +231,7 @@ public override bool IsValid { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MomentOfInertia @@ -240,7 +241,7 @@ public double MomentOfInertia { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Name @@ -250,7 +251,7 @@ public string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RegenerativeBrakeRatio @@ -260,7 +261,7 @@ public ObservableCollection RegenerativeBrakeRatio { get; } #### Property Value - [ObservableCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.observablecollection\-1) + ObservableCollection ### Role @@ -280,7 +281,7 @@ public double ShiftDuration { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TorqueMap diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.PowerRoles.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.PowerRoles.md index aa00efff8b..60f3004d0a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.PowerRoles.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.PowerRoles.md @@ -1,4 +1,5 @@ -# Enum PowerRoles +# Enum PowerRoles + Namespace: [VM.Models.Pre.Drivetrain.VehicleSimulator](VM.Models.Pre.Drivetrain.VehicleSimulator.md) Assembly: VM.Models.Pre.Drivetrain.VehicleSimulator.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.PowerValidator.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.PowerValidator.md index 30448e2804..e810e01b7b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.PowerValidator.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.PowerValidator.md @@ -1,4 +1,5 @@ -# Class PowerValidator +# Class PowerValidator + Namespace: [VM.Models.Pre.Drivetrain.VehicleSimulator](VM.Models.Pre.Drivetrain.VehicleSimulator.md) Assembly: VM.Models.Pre.Drivetrain.VehicleSimulator.dll @@ -9,7 +10,7 @@ public class PowerValidator : AbstractValidator, IValidator, IVali #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← AbstractValidator ← [PowerValidator](VM.Models.Pre.Drivetrain.VehicleSimulator.PowerValidator.md) @@ -46,6 +47,7 @@ AbstractValidator.GetEnumerator\(\), AbstractValidator.EnsureInstanceNotNull\(object\), AbstractValidator.PreValidate\(ValidationContext, ValidationResult\), AbstractValidator.RaiseValidationException\(ValidationContext, ValidationResult\), +AbstractValidator.OnRuleAdded\(IValidationRule\), AbstractValidator.CascadeMode, AbstractValidator.ClassLevelCascadeMode, AbstractValidator.RuleLevelCascadeMode diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.ShiftMap.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.ShiftMap.md index 485a663dd0..9d272d07c3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.ShiftMap.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.ShiftMap.md @@ -1,4 +1,5 @@ -# Class ShiftMap +# Class ShiftMap + Namespace: [VM.Models.Pre.Drivetrain.VehicleSimulator](VM.Models.Pre.Drivetrain.VehicleSimulator.md) Assembly: VM.Models.Pre.Drivetrain.VehicleSimulator.dll @@ -9,9 +10,9 @@ public sealed class ShiftMap : ValidatableBase, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -ValidatableBase ← +[ValidatableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs) ← [ShiftMap](VM.Models.Pre.Drivetrain.VehicleSimulator.ShiftMap.md) #### Implements @@ -22,17 +23,17 @@ IValidatable #### Inherited Members -ValidatableBase.RaisePropertyChanged\(string\), -ValidatableBase.SuspendValidate\(\), -ValidatableBase.Validate\(\), -ValidatableBase.Validate\(ValidationContext\), -ValidatableBase.CanValidate, -ValidatableBase.Errors, -ValidatableBase.HasValidationAttribute, -ValidatableBase.HasValidator, -ValidatableBase.IsValid, -ValidatableBase.ValidateTrigger, -ValidatableBase.ErrorsChanged, +[ValidatableBase.RaisePropertyChanged\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.SuspendValidate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Validate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Validate\(ValidationContext\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.CanValidate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Errors](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.HasValidationAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.HasValidator](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.ValidateTrigger](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.ErrorsChanged](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -66,7 +67,7 @@ public double[] GetAPSValues() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GetShiftProfileCount\(\) @@ -76,7 +77,7 @@ public int GetShiftProfileCount() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetShiftValues\(int\) @@ -86,11 +87,11 @@ public IEnumerable GetShiftValues(int shiftProfileIndex) #### Parameters -`shiftProfileIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`shiftProfileIndex` int #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) + IEnumerable ### IsValidate\(int\) @@ -100,9 +101,9 @@ public bool IsValidate(int shiftProfileCount) #### Parameters -`shiftProfileCount` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`shiftProfileCount` int #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.ShiftMapReader.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.ShiftMapReader.md index 25b0af2a5a..9a47d71af2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.ShiftMapReader.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.ShiftMapReader.md @@ -1,4 +1,5 @@ -# Class ShiftMapReader +# Class ShiftMapReader + Namespace: [VM.Models.Pre.Drivetrain.VehicleSimulator](VM.Models.Pre.Drivetrain.VehicleSimulator.md) Assembly: VM.Models.Pre.Drivetrain.VehicleSimulator.dll @@ -9,7 +10,7 @@ public static class ShiftMapReader #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ShiftMapReader](VM.Models.Pre.Drivetrain.VehicleSimulator.ShiftMapReader.md) #### Extension Methods @@ -28,7 +29,7 @@ public const string ShiftPatternExtension = ".shift" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -40,7 +41,7 @@ public static ShiftMap Read(string path) #### Parameters -`path` [string](https://learn.microsoft.com/dotnet/api/system.string) +`path` string #### Returns diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.ShiftMapValidator.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.ShiftMapValidator.md index cd79a5a37a..3de5dccaa0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.ShiftMapValidator.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.ShiftMapValidator.md @@ -1,4 +1,5 @@ -# Class ShiftMapValidator +# Class ShiftMapValidator + Namespace: [VM.Models.Pre.Drivetrain.VehicleSimulator](VM.Models.Pre.Drivetrain.VehicleSimulator.md) Assembly: VM.Models.Pre.Drivetrain.VehicleSimulator.dll @@ -9,7 +10,7 @@ public class ShiftMapValidator : AbstractValidator, IValidator ← [ShiftMapValidator](VM.Models.Pre.Drivetrain.VehicleSimulator.ShiftMapValidator.md) @@ -46,6 +47,7 @@ AbstractValidator.GetEnumerator\(\), AbstractValidator.EnsureInstanceNotNull\(object\), AbstractValidator.PreValidate\(ValidationContext, ValidationResult\), AbstractValidator.RaiseValidationException\(ValidationContext, ValidationResult\), +AbstractValidator.OnRuleAdded\(IValidationRule\), AbstractValidator.CascadeMode, AbstractValidator.ClassLevelCascadeMode, AbstractValidator.RuleLevelCascadeMode diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.Signal.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.Signal.md index 559e29501f..0664e16b73 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.Signal.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.Signal.md @@ -1,4 +1,5 @@ -# Class Signal +# Class Signal + Namespace: [VM.Models.Pre.Drivetrain.VehicleSimulator](VM.Models.Pre.Drivetrain.VehicleSimulator.md) Assembly: VM.Models.Pre.Drivetrain.VehicleSimulator.dll @@ -9,9 +10,9 @@ public class Signal : ValidatableBase, IObservableObject, IDisposableObject, IVa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -ValidatableBase ← +[ValidatableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs) ← [Signal](VM.Models.Pre.Drivetrain.VehicleSimulator.Signal.md) #### Implements @@ -22,18 +23,18 @@ IValidatable #### Inherited Members -ValidatableBase.RaisePropertyChanged\(string\), -ValidatableBase.SuspendValidate\(\), -ValidatableBase.Validate\(\), -ValidatableBase.Validate\(ValidationContext\), -ValidatableBase.DisposeManagedResources\(\), -ValidatableBase.CanValidate, -ValidatableBase.Errors, -ValidatableBase.HasValidationAttribute, -ValidatableBase.HasValidator, -ValidatableBase.IsValid, -ValidatableBase.ValidateTrigger, -ValidatableBase.ErrorsChanged, +[ValidatableBase.RaisePropertyChanged\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.SuspendValidate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Validate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Validate\(ValidationContext\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.CanValidate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Errors](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.HasValidationAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.HasValidator](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.ValidateTrigger](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.ErrorsChanged](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -70,5 +71,5 @@ public ObservableCollection Signals { get; } #### Property Value - [ObservableCollection](https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.observablecollection\-1) + ObservableCollection diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.SignalValidator.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.SignalValidator.md index fdfdeea2c6..724b05697c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.SignalValidator.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.SignalValidator.md @@ -1,4 +1,5 @@ -# Class SignalValidator +# Class SignalValidator + Namespace: [VM.Models.Pre.Drivetrain.VehicleSimulator](VM.Models.Pre.Drivetrain.VehicleSimulator.md) Assembly: VM.Models.Pre.Drivetrain.VehicleSimulator.dll @@ -9,7 +10,7 @@ public class SignalValidator : AbstractValidator, IValidator, IV #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← AbstractValidator ← [SignalValidator](VM.Models.Pre.Drivetrain.VehicleSimulator.SignalValidator.md) @@ -46,6 +47,7 @@ AbstractValidator.GetEnumerator\(\), AbstractValidator.EnsureInstanceNotNull\(object\), AbstractValidator.PreValidate\(ValidationContext, ValidationResult\), AbstractValidator.RaiseValidationException\(ValidationContext, ValidationResult\), +AbstractValidator.OnRuleAdded\(IValidationRule\), AbstractValidator.CascadeMode, AbstractValidator.ClassLevelCascadeMode, AbstractValidator.RuleLevelCascadeMode diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.SimulationDataSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.SimulationDataSet.md index ed33e323cb..e8e52a4e19 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.SimulationDataSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.SimulationDataSet.md @@ -1,4 +1,5 @@ -# Class SimulationDataSet +# Class SimulationDataSet + Namespace: [VM.Models.Pre.Drivetrain.VehicleSimulator](VM.Models.Pre.Drivetrain.VehicleSimulator.md) Assembly: VM.Models.Pre.Drivetrain.VehicleSimulator.dll @@ -9,9 +10,9 @@ public sealed class SimulationDataSet : ItemsContainerModelBase, IObservab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -ValidatableBase ← +[ValidatableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs) ← [ItemsContainerModelBase](VM.Models.Pre.Drivetrain.VehicleSimulator.ItemsContainerModelBase\-1.md) ← [SimulationDataSet](VM.Models.Pre.Drivetrain.VehicleSimulator.SimulationDataSet.md) @@ -32,17 +33,17 @@ IValidatable [ItemsContainerModelBase.ItemsCount](VM.Models.Pre.Drivetrain.VehicleSimulator.ItemsContainerModelBase\-1.md\#VM\_Models\_Pre\_Drivetrain\_VehicleSimulator\_ItemsContainerModelBase\_1\_ItemsCount), [ItemsContainerModelBase.ObservableItems](VM.Models.Pre.Drivetrain.VehicleSimulator.ItemsContainerModelBase\-1.md\#VM\_Models\_Pre\_Drivetrain\_VehicleSimulator\_ItemsContainerModelBase\_1\_ObservableItems), [ItemsContainerModelBase.this\[int\]](VM.Models.Pre.Drivetrain.VehicleSimulator.ItemsContainerModelBase\-1.md\#VM\_Models\_Pre\_Drivetrain\_VehicleSimulator\_ItemsContainerModelBase\_1\_Item\_System\_Int32\_), -ValidatableBase.RaisePropertyChanged\(string\), -ValidatableBase.SuspendValidate\(\), -ValidatableBase.Validate\(\), -ValidatableBase.Validate\(ValidationContext\), -ValidatableBase.CanValidate, -ValidatableBase.Errors, -ValidatableBase.HasValidationAttribute, -ValidatableBase.HasValidator, -ValidatableBase.IsValid, -ValidatableBase.ValidateTrigger, -ValidatableBase.ErrorsChanged, +[ValidatableBase.RaisePropertyChanged\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.SuspendValidate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Validate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Validate\(ValidationContext\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.CanValidate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Errors](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.HasValidationAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.HasValidator](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.ValidateTrigger](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.ErrorsChanged](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -89,7 +90,7 @@ public string DocumentPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### DrivingScenario @@ -120,7 +121,7 @@ public bool IsAllValid { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsValid @@ -130,7 +131,7 @@ public override bool IsValid { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ResultPath @@ -140,7 +141,7 @@ public string ResultPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Transmission @@ -172,7 +173,7 @@ public int GetFlowCount() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetFlows\(\) @@ -182,7 +183,7 @@ public IEnumerable GetFlows() #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Flow](VM.Models.Pre.Drivetrain.VehicleSimulator.Flow.md)\> + IEnumerable<[Flow](VM.Models.Pre.Drivetrain.VehicleSimulator.Flow.md)\> ### LoadFromFile\(string\) @@ -192,7 +193,7 @@ public static SimulationDataSet LoadFromFile(string path) #### Parameters -`path` [string](https://learn.microsoft.com/dotnet/api/system.string) +`path` string #### Returns @@ -206,7 +207,7 @@ public static SimulationDataSet LoadFromJSON(string json) #### Parameters -`json` [string](https://learn.microsoft.com/dotnet/api/system.string) +`json` string #### Returns diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.SimulationDataSetExtensions.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.SimulationDataSetExtensions.md index 233c5cee89..5cc0abbeb6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.SimulationDataSetExtensions.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.SimulationDataSetExtensions.md @@ -1,4 +1,5 @@ -# Class SimulationDataSetExtensions +# Class SimulationDataSetExtensions + Namespace: [VM.Models.Pre.Drivetrain.VehicleSimulator](VM.Models.Pre.Drivetrain.VehicleSimulator.md) Assembly: VM.Models.Pre.Drivetrain.VehicleSimulator.dll @@ -9,7 +10,7 @@ public static class SimulationDataSetExtensions #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SimulationDataSetExtensions](VM.Models.Pre.Drivetrain.VehicleSimulator.SimulationDataSetExtensions.md) #### Extension Methods @@ -52,5 +53,5 @@ public static void Save(this SimulationDataSet simulationDataSet, string path) `simulationDataSet` [SimulationDataSet](VM.Models.Pre.Drivetrain.VehicleSimulator.SimulationDataSet.md) -`path` [string](https://learn.microsoft.com/dotnet/api/system.string) +`path` string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.SimulationDataSetValidator.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.SimulationDataSetValidator.md index 6335558122..e2be870634 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.SimulationDataSetValidator.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.SimulationDataSetValidator.md @@ -1,4 +1,5 @@ -# Class SimulationDataSetValidator +# Class SimulationDataSetValidator + Namespace: [VM.Models.Pre.Drivetrain.VehicleSimulator](VM.Models.Pre.Drivetrain.VehicleSimulator.md) Assembly: VM.Models.Pre.Drivetrain.VehicleSimulator.dll @@ -9,7 +10,7 @@ public class SimulationDataSetValidator : AbstractValidator, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← AbstractValidator ← [SimulationDataSetValidator](VM.Models.Pre.Drivetrain.VehicleSimulator.SimulationDataSetValidator.md) @@ -46,6 +47,7 @@ AbstractValidator.GetEnumerator\(\), AbstractValidator.EnsureInstanceNotNull\(object\), AbstractValidator.PreValidate\(ValidationContext, ValidationResult\), AbstractValidator.RaiseValidationException\(ValidationContext, ValidationResult\), +AbstractValidator.OnRuleAdded\(IValidationRule\), AbstractValidator.CascadeMode, AbstractValidator.ClassLevelCascadeMode, AbstractValidator.RuleLevelCascadeMode diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.TorqueMap.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.TorqueMap.md index 77c2721430..24ca817cbf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.TorqueMap.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.TorqueMap.md @@ -1,4 +1,5 @@ -# Class TorqueMap +# Class TorqueMap + Namespace: [VM.Models.Pre.Drivetrain.VehicleSimulator](VM.Models.Pre.Drivetrain.VehicleSimulator.md) Assembly: VM.Models.Pre.Drivetrain.VehicleSimulator.dll @@ -9,9 +10,9 @@ public sealed class TorqueMap : ValidatableBase, IObservableObject, IDisposableO #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -ValidatableBase ← +[ValidatableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs) ← [TorqueMap](VM.Models.Pre.Drivetrain.VehicleSimulator.TorqueMap.md) #### Implements @@ -22,17 +23,17 @@ IValidatable #### Inherited Members -ValidatableBase.RaisePropertyChanged\(string\), -ValidatableBase.SuspendValidate\(\), -ValidatableBase.Validate\(\), -ValidatableBase.Validate\(ValidationContext\), -ValidatableBase.CanValidate, -ValidatableBase.Errors, -ValidatableBase.HasValidationAttribute, -ValidatableBase.HasValidator, -ValidatableBase.IsValid, -ValidatableBase.ValidateTrigger, -ValidatableBase.ErrorsChanged, +[ValidatableBase.RaisePropertyChanged\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.SuspendValidate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Validate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Validate\(ValidationContext\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.CanValidate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Errors](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.HasValidationAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.HasValidator](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.ValidateTrigger](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.ErrorsChanged](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -58,7 +59,7 @@ public TorqueMap(bool isPowerSplitMap) #### Parameters -`isPowerSplitMap` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isPowerSplitMap` bool ## Properties @@ -70,7 +71,7 @@ public bool IsPowerSplitMap { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -82,7 +83,7 @@ public double[] GetDistinctXValues() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GetMaximumY\(\) @@ -92,7 +93,7 @@ public double GetMaximumY() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetMinimumY\(\) @@ -102,7 +103,7 @@ public double GetMinimumY() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetXValues\(double\) @@ -112,11 +113,11 @@ public double[] GetXValues(double z) #### Parameters -`z` [double](https://learn.microsoft.com/dotnet/api/system.double) +`z` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GetXYPairs\(double\) @@ -126,11 +127,11 @@ public IEnumerable> GetXYPairs(double rpm) #### Parameters -`rpm` [double](https://learn.microsoft.com/dotnet/api/system.double) +`rpm` double #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[KeyValuePair](https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair\-2)<[double](https://learn.microsoft.com/dotnet/api/system.double), [double](https://learn.microsoft.com/dotnet/api/system.double)\>\> + IEnumerable\> ### GetYValue\(double, double\) @@ -140,13 +141,13 @@ public double GetYValue(double z, double x) #### Parameters -`z` [double](https://learn.microsoft.com/dotnet/api/system.double) +`z` double -`x` [double](https://learn.microsoft.com/dotnet/api/system.double) +`x` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetZAndLastYValues\(\) @@ -156,7 +157,7 @@ public IEnumerable GetZAndLastYValues() #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) + IEnumerable ### GetZValues\(\) @@ -166,5 +167,5 @@ public double[] GetZValues() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.TorqueMapReader.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.TorqueMapReader.md index c302d79359..9f7a378cc8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.TorqueMapReader.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.TorqueMapReader.md @@ -1,4 +1,5 @@ -# Class TorqueMapReader +# Class TorqueMapReader + Namespace: [VM.Models.Pre.Drivetrain.VehicleSimulator](VM.Models.Pre.Drivetrain.VehicleSimulator.md) Assembly: VM.Models.Pre.Drivetrain.VehicleSimulator.dll @@ -9,7 +10,7 @@ public static class TorqueMapReader #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [TorqueMapReader](VM.Models.Pre.Drivetrain.VehicleSimulator.TorqueMapReader.md) #### Extension Methods @@ -28,7 +29,7 @@ public const string ConfigExtension = ".config" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### MCMExtension @@ -38,7 +39,7 @@ public const string MCMExtension = ".mcm" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### PWRExtension @@ -48,7 +49,7 @@ public const string PWRExtension = ".pwr" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -60,9 +61,9 @@ public static TorqueMap Read(string path, bool isPowerSplitMap = false) #### Parameters -`path` [string](https://learn.microsoft.com/dotnet/api/system.string) +`path` string -`isPowerSplitMap` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isPowerSplitMap` bool #### Returns diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.TorqueMapValidator.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.TorqueMapValidator.md index 40e41ebda4..26ffd6b8d6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.TorqueMapValidator.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.TorqueMapValidator.md @@ -1,4 +1,5 @@ -# Class TorqueMapValidator +# Class TorqueMapValidator + Namespace: [VM.Models.Pre.Drivetrain.VehicleSimulator](VM.Models.Pre.Drivetrain.VehicleSimulator.md) Assembly: VM.Models.Pre.Drivetrain.VehicleSimulator.dll @@ -9,7 +10,7 @@ public class TorqueMapValidator : AbstractValidator, IValidator ← [TorqueMapValidator](VM.Models.Pre.Drivetrain.VehicleSimulator.TorqueMapValidator.md) @@ -46,6 +47,7 @@ AbstractValidator.GetEnumerator\(\), AbstractValidator.EnsureInstanceNotNull\(object\), AbstractValidator.PreValidate\(ValidationContext, ValidationResult\), AbstractValidator.RaiseValidationException\(ValidationContext, ValidationResult\), +AbstractValidator.OnRuleAdded\(IValidationRule\), AbstractValidator.CascadeMode, AbstractValidator.ClassLevelCascadeMode, AbstractValidator.RuleLevelCascadeMode diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.Transmission.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.Transmission.md index e4537caca7..3f1e18092a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.Transmission.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.Transmission.md @@ -1,4 +1,5 @@ -# Class Transmission +# Class Transmission + Namespace: [VM.Models.Pre.Drivetrain.VehicleSimulator](VM.Models.Pre.Drivetrain.VehicleSimulator.md) Assembly: VM.Models.Pre.Drivetrain.VehicleSimulator.dll @@ -9,9 +10,9 @@ public class Transmission : ValidatableBase, IObservableObject, IDisposableObjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -ValidatableBase ← +[ValidatableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs) ← [Transmission](VM.Models.Pre.Drivetrain.VehicleSimulator.Transmission.md) #### Implements @@ -22,18 +23,18 @@ IValidatable #### Inherited Members -ValidatableBase.RaisePropertyChanged\(string\), -ValidatableBase.SuspendValidate\(\), -ValidatableBase.Validate\(\), -ValidatableBase.Validate\(ValidationContext\), -ValidatableBase.DisposeManagedResources\(\), -ValidatableBase.CanValidate, -ValidatableBase.Errors, -ValidatableBase.HasValidationAttribute, -ValidatableBase.HasValidator, -ValidatableBase.IsValid, -ValidatableBase.ValidateTrigger, -ValidatableBase.ErrorsChanged, +[ValidatableBase.RaisePropertyChanged\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.SuspendValidate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Validate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Validate\(ValidationContext\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.CanValidate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Errors](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.HasValidationAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.HasValidator](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.ValidateTrigger](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.ErrorsChanged](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -70,7 +71,7 @@ public double FinalGearRatio { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GearRatioTable @@ -80,7 +81,7 @@ public DataTable GearRatioTable { get; set; } #### Property Value - [DataTable](https://learn.microsoft.com/dotnet/api/system.data.datatable) + DataTable ### IsValid @@ -90,7 +91,7 @@ public override bool IsValid { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ShiftMap @@ -112,5 +113,5 @@ public int GetStepCount() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.TransmissionValidator.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.TransmissionValidator.md index e13af466af..769a3d838b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.TransmissionValidator.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.TransmissionValidator.md @@ -1,4 +1,5 @@ -# Class TransmissionValidator +# Class TransmissionValidator + Namespace: [VM.Models.Pre.Drivetrain.VehicleSimulator](VM.Models.Pre.Drivetrain.VehicleSimulator.md) Assembly: VM.Models.Pre.Drivetrain.VehicleSimulator.dll @@ -9,7 +10,7 @@ public class TransmissionValidator : AbstractValidator, IValidator #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← AbstractValidator ← [TransmissionValidator](VM.Models.Pre.Drivetrain.VehicleSimulator.TransmissionValidator.md) @@ -46,6 +47,7 @@ AbstractValidator.GetEnumerator\(\), AbstractValidator.EnsureInstanceNotNull\(object\), AbstractValidator.PreValidate\(ValidationContext, ValidationResult\), AbstractValidator.RaiseValidationException\(ValidationContext, ValidationResult\), +AbstractValidator.OnRuleAdded\(IValidationRule\), AbstractValidator.CascadeMode, AbstractValidator.ClassLevelCascadeMode, AbstractValidator.RuleLevelCascadeMode diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.Vehicle.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.Vehicle.md index 50b840433f..9ed3b90e1f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.Vehicle.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.Vehicle.md @@ -1,4 +1,5 @@ -# Class Vehicle +# Class Vehicle + Namespace: [VM.Models.Pre.Drivetrain.VehicleSimulator](VM.Models.Pre.Drivetrain.VehicleSimulator.md) Assembly: VM.Models.Pre.Drivetrain.VehicleSimulator.dll @@ -9,9 +10,9 @@ public class Vehicle : ValidatableBase, IObservableObject, IDisposableObject, IV #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -ValidatableBase ← +[ValidatableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs) ← [Vehicle](VM.Models.Pre.Drivetrain.VehicleSimulator.Vehicle.md) #### Implements @@ -22,18 +23,18 @@ IValidatable #### Inherited Members -ValidatableBase.RaisePropertyChanged\(string\), -ValidatableBase.SuspendValidate\(\), -ValidatableBase.Validate\(\), -ValidatableBase.Validate\(ValidationContext\), -ValidatableBase.DisposeManagedResources\(\), -ValidatableBase.CanValidate, -ValidatableBase.Errors, -ValidatableBase.HasValidationAttribute, -ValidatableBase.HasValidator, -ValidatableBase.IsValid, -ValidatableBase.ValidateTrigger, -ValidatableBase.ErrorsChanged, +[ValidatableBase.RaisePropertyChanged\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.SuspendValidate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Validate\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Validate\(ValidationContext\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.CanValidate](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.Errors](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.HasValidationAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.HasValidator](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.IsValid](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.ValidateTrigger](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), +[ValidatableBase.ErrorsChanged](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Extensions/Models/ValidatableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -70,7 +71,7 @@ public double BodyMass { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### EndSpeed @@ -80,7 +81,7 @@ public double EndSpeed { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### FittingCoefficientA @@ -90,7 +91,7 @@ public double FittingCoefficientA { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### FittingCoefficientB @@ -100,7 +101,7 @@ public double FittingCoefficientB { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### FittingCoefficientC @@ -110,7 +111,7 @@ public double FittingCoefficientC { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### StartSpeed @@ -120,7 +121,7 @@ public double StartSpeed { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### WheelRadius @@ -130,5 +131,5 @@ public double WheelRadius { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.VehicleValidator.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.VehicleValidator.md index 694ec9af46..15eb46b43f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.VehicleValidator.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.VehicleValidator.md @@ -1,4 +1,5 @@ -# Class VehicleValidator +# Class VehicleValidator + Namespace: [VM.Models.Pre.Drivetrain.VehicleSimulator](VM.Models.Pre.Drivetrain.VehicleSimulator.md) Assembly: VM.Models.Pre.Drivetrain.VehicleSimulator.dll @@ -9,7 +10,7 @@ public class VehicleValidator : AbstractValidator, IValidator, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← AbstractValidator ← [VehicleValidator](VM.Models.Pre.Drivetrain.VehicleSimulator.VehicleValidator.md) @@ -46,6 +47,7 @@ AbstractValidator.GetEnumerator\(\), AbstractValidator.EnsureInstanceNotNull\(object\), AbstractValidator.PreValidate\(ValidationContext, ValidationResult\), AbstractValidator.RaiseValidationException\(ValidationContext, ValidationResult\), +AbstractValidator.OnRuleAdded\(IValidationRule\), AbstractValidator.CascadeMode, AbstractValidator.ClassLevelCascadeMode, AbstractValidator.RuleLevelCascadeMode diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.md index 8adc2741de..af29717b30 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Drivetrain.VehicleSimulator.md @@ -1,4 +1,5 @@ -# Namespace VM.Models.Pre.Drivetrain.VehicleSimulator +# Namespace VM.Models.Pre.Drivetrain.VehicleSimulator + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.AttributeBodyDurability.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.AttributeBodyDurability.md index 5625cfa068..8d43ca2753 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.AttributeBodyDurability.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.AttributeBodyDurability.md @@ -1,4 +1,5 @@ -# Class AttributeBodyDurability +# Class AttributeBodyDurability + Namespace: [VM.Models.Pre.Durability](VM.Models.Pre.Durability.md) Assembly: VM.Models.Pre.Durability.dll @@ -11,9 +12,9 @@ public class AttributeBodyDurability : AttributeBase, IObservableObject, IDispos #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeBodyDurability](VM.Models.Pre.Durability.AttributeBodyDurability.md) @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -119,7 +120,7 @@ public uint EasyFlexLevel { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### TypeOfFatigueStress @@ -143,7 +144,7 @@ public bool Use { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseFatigue @@ -155,5 +156,5 @@ public bool UseFatigue { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.AttributeDocumentDurability.DynamicResult.DamageTable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.AttributeDocumentDurability.DynamicResult.DamageTable.md index 5891920d53..e68b50151a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.AttributeDocumentDurability.DynamicResult.DamageTable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.AttributeDocumentDurability.DynamicResult.DamageTable.md @@ -1,4 +1,5 @@ -# Class AttributeDocumentDurability.DynamicResult.DamageTable +# Class AttributeDocumentDurability.DynamicResult.DamageTable + Namespace: [VM.Models.Pre.Durability](VM.Models.Pre.Durability.md) Assembly: VM.Models.Pre.Durability.dll @@ -11,9 +12,9 @@ public class AttributeDocumentDurability.DynamicResult.DamageTable : LinkContain #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [AttributeDocumentDurability.DynamicResult.DamageTable](VM.Models.Pre.Durability.AttributeDocumentDurability.DynamicResult.DamageTable.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -114,15 +115,15 @@ public DamageTable(string strResultRelativeFilePath, double dTimeScale, int nNum #### Parameters -`strResultRelativeFilePath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strResultRelativeFilePath` string The result relative file path. -`dTimeScale` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTimeScale` double The time scale. -`nNumberOfPattern` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nNumberOfPattern` int The number of pattern. @@ -138,7 +139,7 @@ public ExpressionValueVariable NumberOfPattern { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ResultRelativeFilePath @@ -150,7 +151,7 @@ public string ResultRelativeFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TimeScale @@ -162,5 +163,5 @@ public ExpressionValueVariable TimeScale { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.AttributeDocumentDurability.DynamicResult.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.AttributeDocumentDurability.DynamicResult.md index e1f2ebe39e..fb2486f0f3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.AttributeDocumentDurability.DynamicResult.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.AttributeDocumentDurability.DynamicResult.md @@ -1,4 +1,5 @@ -# Class AttributeDocumentDurability.DynamicResult +# Class AttributeDocumentDurability.DynamicResult + Namespace: [VM.Models.Pre.Durability](VM.Models.Pre.Durability.md) Assembly: VM.Models.Pre.Durability.dll @@ -11,9 +12,9 @@ public class AttributeDocumentDurability.DynamicResult : LinkContainer, IObserva #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [AttributeDocumentDurability.DynamicResult](VM.Models.Pre.Durability.AttributeDocumentDurability.DynamicResult.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -128,7 +129,7 @@ public ExpressionValueVariable NumberOfCycle { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ReferenceTorque @@ -140,7 +141,7 @@ public ExpressionValueVariable ReferenceTorque { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ScaleFactorForDamage @@ -152,7 +153,7 @@ public ExpressionValueVariable ScaleFactorForDamage { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.AttributeDocumentDurability.GearPowerFlow.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.AttributeDocumentDurability.GearPowerFlow.md index c19d9061ac..bb6b7edba7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.AttributeDocumentDurability.GearPowerFlow.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.AttributeDocumentDurability.GearPowerFlow.md @@ -1,4 +1,5 @@ -# Class AttributeDocumentDurability.GearPowerFlow +# Class AttributeDocumentDurability.GearPowerFlow + Namespace: [VM.Models.Pre.Durability](VM.Models.Pre.Durability.md) Assembly: VM.Models.Pre.Durability.dll @@ -11,7 +12,7 @@ public class AttributeDocumentDurability.GearPowerFlow #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AttributeDocumentDurability.GearPowerFlow](VM.Models.Pre.Durability.AttributeDocumentDurability.GearPowerFlow.md) #### Extension Methods @@ -42,5 +43,5 @@ public string InputRelativeFile { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.AttributeDocumentDurability.GearSummary.GearResult.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.AttributeDocumentDurability.GearSummary.GearResult.md index 29bc349bbb..4e90a16e81 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.AttributeDocumentDurability.GearSummary.GearResult.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.AttributeDocumentDurability.GearSummary.GearResult.md @@ -1,4 +1,5 @@ -# Struct AttributeDocumentDurability.GearSummary.GearResult +# Struct AttributeDocumentDurability.GearSummary.GearResult + Namespace: [VM.Models.Pre.Durability](VM.Models.Pre.Durability.md) Assembly: VM.Models.Pre.Durability.dll @@ -17,7 +18,7 @@ public Tuple Acceleration #### Field Value - [Tuple](https://learn.microsoft.com/dotnet/api/system.tuple\-3)<[double](https://learn.microsoft.com/dotnet/api/system.double), [double](https://learn.microsoft.com/dotnet/api/system.double), [double](https://learn.microsoft.com/dotnet/api/system.double)\> + Tuple ### Deceleration @@ -27,7 +28,7 @@ public Tuple Deceleration #### Field Value - [Tuple](https://learn.microsoft.com/dotnet/api/system.tuple\-3)<[double](https://learn.microsoft.com/dotnet/api/system.double), [double](https://learn.microsoft.com/dotnet/api/system.double), [double](https://learn.microsoft.com/dotnet/api/system.double)\> + Tuple ### GearName @@ -37,5 +38,5 @@ public string GearName #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.AttributeDocumentDurability.GearSummary.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.AttributeDocumentDurability.GearSummary.md index 9d94c32b34..88d66241e4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.AttributeDocumentDurability.GearSummary.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.AttributeDocumentDurability.GearSummary.md @@ -1,4 +1,5 @@ -# Class AttributeDocumentDurability.GearSummary +# Class AttributeDocumentDurability.GearSummary + Namespace: [VM.Models.Pre.Durability](VM.Models.Pre.Durability.md) Assembly: VM.Models.Pre.Durability.dll @@ -11,7 +12,7 @@ public class AttributeDocumentDurability.GearSummary #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [AttributeDocumentDurability.GearSummary](VM.Models.Pre.Durability.AttributeDocumentDurability.GearSummary.md) #### Extension Methods @@ -42,5 +43,5 @@ public IEnumerable GearResul #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[AttributeDocumentDurability](VM.Models.Pre.Durability.AttributeDocumentDurability.md).[GearSummary](VM.Models.Pre.Durability.AttributeDocumentDurability.GearSummary.md).[GearResult](VM.Models.Pre.Durability.AttributeDocumentDurability.GearSummary.GearResult.md)\> + IEnumerable<[AttributeDocumentDurability](VM.Models.Pre.Durability.AttributeDocumentDurability.md).[GearSummary](VM.Models.Pre.Durability.AttributeDocumentDurability.GearSummary.md).[GearResult](VM.Models.Pre.Durability.AttributeDocumentDurability.GearSummary.GearResult.md)\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.AttributeDocumentDurability.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.AttributeDocumentDurability.md index 9201603c14..732b4bc169 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.AttributeDocumentDurability.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.AttributeDocumentDurability.md @@ -1,4 +1,5 @@ -# Class AttributeDocumentDurability +# Class AttributeDocumentDurability + Namespace: [VM.Models.Pre.Durability](VM.Models.Pre.Durability.md) Assembly: VM.Models.Pre.Durability.dll @@ -11,9 +12,9 @@ public class AttributeDocumentDurability : AttributeBase, IObservableObject, IDi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeDocumentDurability](VM.Models.Pre.Durability.AttributeDocumentDurability.md) @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.AttributeGearDurability.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.AttributeGearDurability.md index 8c2f713c8d..e1a6bf7389 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.AttributeGearDurability.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.AttributeGearDurability.md @@ -1,4 +1,5 @@ -# Class AttributeGearDurability +# Class AttributeGearDurability + Namespace: [VM.Models.Pre.Durability](VM.Models.Pre.Durability.md) Assembly: VM.Models.Pre.Durability.dll @@ -11,9 +12,9 @@ public class AttributeGearDurability : AttributeBase, IObservableObject, IDispos #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeGearDurability](VM.Models.Pre.Durability.AttributeGearDurability.md) @@ -78,7 +79,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -119,7 +120,7 @@ public ExpressionValueVariable FlankStress { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RootStress @@ -131,7 +132,7 @@ public ExpressionValueVariable RootStress { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TypeOfContourStress @@ -155,7 +156,7 @@ public bool UseFlankStress { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseRootStress @@ -167,5 +168,5 @@ public bool UseRootStress { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityAnalysis.ActionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityAnalysis.ActionType.md index a1b08b9f78..0d15118723 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityAnalysis.ActionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityAnalysis.ActionType.md @@ -1,4 +1,5 @@ -# Enum DurabilityAnalysis.ActionType +# Enum DurabilityAnalysis.ActionType + Namespace: [VM.Models.Pre.Durability](VM.Models.Pre.Durability.md) Assembly: VM.Models.Pre.Durability.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityAnalysis.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityAnalysis.md index 68aca089fa..4f7c7285ce 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityAnalysis.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityAnalysis.md @@ -1,4 +1,5 @@ -# Class DurabilityAnalysis +# Class DurabilityAnalysis + Namespace: [VM.Models.Pre.Durability](VM.Models.Pre.Durability.md) Assembly: VM.Models.Pre.Durability.dll @@ -9,7 +10,7 @@ public class DurabilityAnalysis #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DurabilityAnalysis](VM.Models.Pre.Durability.DurabilityAnalysis.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.BodyType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.BodyType.md index 3fb7933b5f..8ceec08a3d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.BodyType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.BodyType.md @@ -1,4 +1,5 @@ -# Enum DurabilityData.BodyType +# Enum DurabilityData.BodyType + Namespace: [VM.Models.Pre.Durability](VM.Models.Pre.Durability.md) Assembly: VM.Models.Pre.Durability.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.ConnectorInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.ConnectorInfo.md index 1df69aae93..73114e68f6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.ConnectorInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.ConnectorInfo.md @@ -1,4 +1,5 @@ -# Class DurabilityData.ConnectorInfo +# Class DurabilityData.ConnectorInfo + Namespace: [VM.Models.Pre.Durability](VM.Models.Pre.Durability.md) Assembly: VM.Models.Pre.Durability.dll @@ -9,7 +10,7 @@ public class DurabilityData.ConnectorInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DurabilityData.ConnectorInfo](VM.Models.Pre.Durability.DurabilityData.ConnectorInfo.md) #### Extension Methods @@ -36,7 +37,7 @@ public string ConnectorName #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ForceX @@ -46,7 +47,7 @@ public SplineValue.TwoPoint[] ForceX #### Field Value - SplineValue.TwoPoint\[\] + [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs).[TwoPoint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs)\[\] ### ForceY @@ -56,7 +57,7 @@ public SplineValue.TwoPoint[] ForceY #### Field Value - SplineValue.TwoPoint\[\] + [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs).[TwoPoint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs)\[\] ### ForceZ @@ -66,7 +67,7 @@ public SplineValue.TwoPoint[] ForceZ #### Field Value - SplineValue.TwoPoint\[\] + [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs).[TwoPoint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs)\[\] ### IndexOfCADBody @@ -76,7 +77,7 @@ public int IndexOfCADBody #### Field Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### PIDs @@ -86,7 +87,7 @@ public int[] PIDs #### Field Value - [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] + int\[\] ### Position @@ -106,7 +107,7 @@ public string RBEName #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RBEPosition @@ -126,7 +127,7 @@ public SplineValue.TwoPoint[] TorqueX #### Field Value - SplineValue.TwoPoint\[\] + [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs).[TwoPoint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs)\[\] ### TorqueY @@ -136,7 +137,7 @@ public SplineValue.TwoPoint[] TorqueY #### Field Value - SplineValue.TwoPoint\[\] + [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs).[TwoPoint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs)\[\] ### TorqueZ @@ -146,7 +147,7 @@ public SplineValue.TwoPoint[] TorqueZ #### Field Value - SplineValue.TwoPoint\[\] + [SplineValue](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs).[TwoPoint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/Spline.cs)\[\] ### UsePID @@ -156,5 +157,5 @@ public bool UsePID #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.ContactInfo.FrameInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.ContactInfo.FrameInfo.md index d465b6f020..54aaeae35e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.ContactInfo.FrameInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.ContactInfo.FrameInfo.md @@ -1,4 +1,5 @@ -# Class DurabilityData.ContactInfo.FrameInfo +# Class DurabilityData.ContactInfo.FrameInfo + Namespace: [VM.Models.Pre.Durability](VM.Models.Pre.Durability.md) Assembly: VM.Models.Pre.Durability.dll @@ -9,7 +10,7 @@ public class DurabilityData.ContactInfo.FrameInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DurabilityData.ContactInfo.FrameInfo](VM.Models.Pre.Durability.DurabilityData.ContactInfo.FrameInfo.md) #### Extension Methods @@ -36,7 +37,7 @@ public int Frame #### Field Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### LoadInformation diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.ContactInfo.LoadInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.ContactInfo.LoadInfo.md index b175dee96d..f1b3c1baaf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.ContactInfo.LoadInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.ContactInfo.LoadInfo.md @@ -1,4 +1,5 @@ -# Class DurabilityData.ContactInfo.LoadInfo +# Class DurabilityData.ContactInfo.LoadInfo + Namespace: [VM.Models.Pre.Durability](VM.Models.Pre.Durability.md) Assembly: VM.Models.Pre.Durability.dll @@ -9,7 +10,7 @@ public class DurabilityData.ContactInfo.LoadInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DurabilityData.ContactInfo.LoadInfo](VM.Models.Pre.Durability.DurabilityData.ContactInfo.LoadInfo.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.ContactInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.ContactInfo.md index 99fe8b2c44..8c9bacbb3a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.ContactInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.ContactInfo.md @@ -1,4 +1,5 @@ -# Class DurabilityData.ContactInfo +# Class DurabilityData.ContactInfo + Namespace: [VM.Models.Pre.Durability](VM.Models.Pre.Durability.md) Assembly: VM.Models.Pre.Durability.dll @@ -9,7 +10,7 @@ public class DurabilityData.ContactInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DurabilityData.ContactInfo](VM.Models.Pre.Durability.DurabilityData.ContactInfo.md) #### Extension Methods @@ -36,7 +37,7 @@ public string ContactName #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### FrameInformation diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.ContourStressType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.ContourStressType.md index 0710bb3905..5479fb294d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.ContourStressType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.ContourStressType.md @@ -1,4 +1,5 @@ -# Enum DurabilityData.ContourStressType +# Enum DurabilityData.ContourStressType + Namespace: [VM.Models.Pre.Durability](VM.Models.Pre.Durability.md) Assembly: VM.Models.Pre.Durability.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.DurabilityType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.DurabilityType.md index 6b750cef97..d77d40aaf0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.DurabilityType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.DurabilityType.md @@ -1,4 +1,5 @@ -# Enum DurabilityData.DurabilityType +# Enum DurabilityData.DurabilityType + Namespace: [VM.Models.Pre.Durability](VM.Models.Pre.Durability.md) Assembly: VM.Models.Pre.Durability.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.FatigueStressType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.FatigueStressType.md index 3a11dde5fb..53134c67e5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.FatigueStressType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.FatigueStressType.md @@ -1,4 +1,5 @@ -# Enum DurabilityData.FatigueStressType +# Enum DurabilityData.FatigueStressType + Namespace: [VM.Models.Pre.Durability](VM.Models.Pre.Durability.md) Assembly: VM.Models.Pre.Durability.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.md index 949f176a79..b96cc3030b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityData.md @@ -1,4 +1,5 @@ -# Class DurabilityData +# Class DurabilityData + Namespace: [VM.Models.Pre.Durability](VM.Models.Pre.Durability.md) Assembly: VM.Models.Pre.Durability.dll @@ -9,7 +10,7 @@ public class DurabilityData #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DurabilityData](VM.Models.Pre.Durability.DurabilityData.md) #### Extension Methods @@ -28,29 +29,29 @@ public DurabilityData(string strBodyName, DurabilityData.BodyType typeOfBody, TM #### Parameters -`strBodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBodyName` string `typeOfBody` [DurabilityData](VM.Models.Pre.Durability.DurabilityData.md).[BodyType](VM.Models.Pre.Durability.DurabilityData.BodyType.md) `matCenter` TMatrix -`nEFLevel` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nEFLevel` uint -`strFatigueMaterialName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFatigueMaterialName` string -`strDTEntityName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDTEntityName` string -`strPostReaderName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPostReaderName` string `connectorInfos` [DurabilityData](VM.Models.Pre.Durability.DurabilityData.md).[ConnectorInfo](VM.Models.Pre.Durability.DurabilityData.ConnectorInfo.md)\[\] `contactInfos` [DurabilityData](VM.Models.Pre.Durability.DurabilityData.md).[ContactInfo](VM.Models.Pre.Durability.DurabilityData.ContactInfo.md)\[\] -`bUseFatigue` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUseFatigue` bool `typeOfFatigueStress` [DurabilityData](VM.Models.Pre.Durability.DurabilityData.md).[FatigueStressType](VM.Models.Pre.Durability.DurabilityData.FatigueStressType.md) -`nDynamicSimulationStep` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nDynamicSimulationStep` uint ### DurabilityData\(string, TMatrix, uint, string, string, string, ConnectorInfo\[\], ContactInfo\[\], ContourStressType, uint\) @@ -60,17 +61,17 @@ public DurabilityData(string strBodyName, TMatrix matCenter, uint nEFLevel, stri #### Parameters -`strBodyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBodyName` string `matCenter` TMatrix -`nEFLevel` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nEFLevel` uint -`strFatigueMaterialName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFatigueMaterialName` string -`strDTEntityName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDTEntityName` string -`strPostReaderName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPostReaderName` string `connectorInfos` [DurabilityData](VM.Models.Pre.Durability.DurabilityData.md).[ConnectorInfo](VM.Models.Pre.Durability.DurabilityData.ConnectorInfo.md)\[\] @@ -78,7 +79,7 @@ public DurabilityData(string strBodyName, TMatrix matCenter, uint nEFLevel, stri `typeOfStress` [DurabilityData](VM.Models.Pre.Durability.DurabilityData.md).[ContourStressType](VM.Models.Pre.Durability.DurabilityData.ContourStressType.md) -`nDynamicSimulationStep` [uint](https://learn.microsoft.com/dotnet/api/system.uint32) +`nDynamicSimulationStep` uint ## Properties @@ -90,7 +91,7 @@ public string BodyName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Center @@ -130,7 +131,7 @@ public string DTEntityName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### DynamicSimulationStep @@ -140,7 +141,7 @@ public uint DynamicSimulationStep { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### EFLevel @@ -150,7 +151,7 @@ public uint EFLevel { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### FatigueMaterialName @@ -160,7 +161,7 @@ public string FatigueMaterialName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### FlankStress @@ -170,7 +171,7 @@ public double FlankStress { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### PostReaderName @@ -180,7 +181,7 @@ public string PostReaderName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RootStress @@ -190,7 +191,7 @@ public double RootStress { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TypeOfBody @@ -240,7 +241,7 @@ public bool UseFatigue { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseFlankStress @@ -250,7 +251,7 @@ public bool UseFlankStress { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseRootStress @@ -260,5 +261,5 @@ public bool UseRootStress { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityDataUtil.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityDataUtil.md index 9677397652..790bc8ed94 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityDataUtil.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.DurabilityDataUtil.md @@ -1,4 +1,5 @@ -# Class DurabilityDataUtil +# Class DurabilityDataUtil + Namespace: [VM.Models.Pre.Durability](VM.Models.Pre.Durability.md) Assembly: VM.Models.Pre.Durability.dll @@ -9,7 +10,7 @@ public class DurabilityDataUtil #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DurabilityDataUtil](VM.Models.Pre.Durability.DurabilityDataUtil.md) #### Extension Methods @@ -36,11 +37,11 @@ public static string GetChangeName(string strBodyFullName) #### Parameters -`strBodyFullName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBodyFullName` string #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetChildName\(string\) @@ -50,9 +51,9 @@ public static string GetChildName(string strBodyFullName) #### Parameters -`strBodyFullName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strBodyFullName` string #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.md index 22b1d1a7c5..ec822fa90f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Durability.md @@ -1,4 +1,5 @@ -# Namespace VM.Models.Pre.Durability +# Namespace VM.Models.Pre.Durability + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.EntityType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.EntityType.md index 95043be1b7..b84c55c879 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.EntityType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.EntityType.md @@ -1,4 +1,5 @@ -# Class EntityType +# Class EntityType + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -9,7 +10,7 @@ public class EntityType #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [EntityType](VM.Models.Pre.EntityType.md) #### Extension Methods @@ -29,17 +30,17 @@ public EntityType(string typeName, string displayName, MainTypes mainType, SubTy #### Parameters -`typeName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`typeName` string -`displayName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`displayName` string `mainType` [MainTypes](VM.Models.Pre.MainTypes.md) `subType` [SubTypes](VM.Models.Pre.SubTypes.md) -`mainTypeAbbreviation` [string](https://learn.microsoft.com/dotnet/api/system.string) +`mainTypeAbbreviation` string -`subTypeAbbreviation` [string](https://learn.microsoft.com/dotnet/api/system.string) +`subTypeAbbreviation` string ## Properties @@ -51,7 +52,7 @@ public string DisplayName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### MainType @@ -72,7 +73,7 @@ public string MainTypeAbbreviation { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SubType @@ -93,7 +94,7 @@ public string SubTypeAbbreviation { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeName @@ -103,7 +104,7 @@ public string TypeName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -115,11 +116,11 @@ public static bool TryGetEntityType(string typeName, out EntityType entityType) #### Parameters -`typeName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`typeName` string `entityType` [EntityType](VM.Models.Pre.EntityType.md) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ExpressionValue-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ExpressionValue-1.md index 65aecb47c0..3bc12e5541 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ExpressionValue-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ExpressionValue-1.md @@ -1,4 +1,5 @@ -# Struct ExpressionValue +# Struct ExpressionValue + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -35,7 +36,7 @@ public ExpressionValue(T value, string expression) `value` T -`expression` [string](https://learn.microsoft.com/dotnet/api/system.string) +`expression` string ## Properties @@ -47,7 +48,7 @@ public string Expression { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IsSimpleValue @@ -57,7 +58,7 @@ public bool IsSimpleValue { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Parser @@ -93,7 +94,7 @@ public bool Equals(ExpressionValue other) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Equals\(object\) @@ -103,11 +104,11 @@ public override bool Equals(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetSchema\(\) @@ -117,7 +118,7 @@ public XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema ### GetValue\(string\) @@ -127,11 +128,11 @@ public static object GetValue(string expression) #### Parameters -`expression` [string](https://learn.microsoft.com/dotnet/api/system.string) +`expression` string #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### ReadXml\(XmlReader\) @@ -141,7 +142,7 @@ public void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader ### SetParser\(IExpressionParser\) @@ -161,7 +162,7 @@ public void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter ## Operators @@ -179,7 +180,7 @@ public static bool operator ==(ExpressionValue expressionValue1, ExpressionVa #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### implicit operator ExpressionValue\(T\) @@ -217,7 +218,7 @@ public static implicit operator ExpressionValue(string expression) #### Parameters -`expression` [string](https://learn.microsoft.com/dotnet/api/system.string) +`expression` string #### Returns @@ -235,7 +236,7 @@ public static implicit operator string(ExpressionValue expressionValue) #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### operator \!=\(ExpressionValue, ExpressionValue\) @@ -251,5 +252,5 @@ public static bool operator !=(ExpressionValue expressionValue1, ExpressionVa #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ExpressionValueVariable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ExpressionValueVariable.md index fdf2013a16..3f27fd8d21 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ExpressionValueVariable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ExpressionValueVariable.md @@ -1,4 +1,5 @@ -# Struct ExpressionValueVariable +# Struct ExpressionValueVariable + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -29,7 +30,7 @@ public ExpressionValueVariable(double value) #### Parameters -`value` [double](https://learn.microsoft.com/dotnet/api/system.double) +`value` double ### ExpressionValueVariable\(double, string\) @@ -39,9 +40,9 @@ public ExpressionValueVariable(double value, string expression) #### Parameters -`value` [double](https://learn.microsoft.com/dotnet/api/system.double) +`value` double -`expression` [string](https://learn.microsoft.com/dotnet/api/system.string) +`expression` string ## Properties @@ -53,7 +54,7 @@ public string Expression { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IsSimpleValue @@ -63,7 +64,7 @@ public bool IsSimpleValue { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Parser @@ -73,7 +74,7 @@ public static IExpressionParser Parser { get; } #### Property Value - [IExpressionParser](VM.Models.Pre.IExpressionParser\-1.md)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> + [IExpressionParser](VM.Models.Pre.IExpressionParser\-1.md) ### Value @@ -83,7 +84,7 @@ public double Value { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -99,7 +100,7 @@ public bool Equals(ExpressionValueVariable other) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Equals\(object\) @@ -109,11 +110,11 @@ public override bool Equals(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetSchema\(\) @@ -123,7 +124,7 @@ public XmlSchema GetSchema() #### Returns - [XmlSchema](https://learn.microsoft.com/dotnet/api/system.xml.schema.xmlschema) + XmlSchema ### GetValue\(string\) @@ -133,11 +134,11 @@ public static object GetValue(string expression) #### Parameters -`expression` [string](https://learn.microsoft.com/dotnet/api/system.string) +`expression` string #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### ReadXml\(XmlReader\) @@ -147,7 +148,7 @@ public void ReadXml(XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader ### SetParser\(IExpressionParser\) @@ -157,7 +158,7 @@ public static void SetParser(IExpressionParser parser) #### Parameters -`parser` [IExpressionParser](VM.Models.Pre.IExpressionParser\-1.md)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> +`parser` [IExpressionParser](VM.Models.Pre.IExpressionParser\-1.md) ### WriteXml\(XmlWriter\) @@ -167,7 +168,7 @@ public void WriteXml(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter ## Operators @@ -185,7 +186,7 @@ public static bool operator ==(ExpressionValueVariable expressionValue1, Express #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### implicit operator ExpressionValueVariable\(double\) @@ -195,7 +196,7 @@ public static implicit operator ExpressionValueVariable(double value) #### Parameters -`value` [double](https://learn.microsoft.com/dotnet/api/system.double) +`value` double #### Returns @@ -213,7 +214,7 @@ public static implicit operator double(ExpressionValueVariable expressionValue) #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### implicit operator ExpressionValueVariable\(string\) @@ -223,7 +224,7 @@ public static implicit operator ExpressionValueVariable(string expression) #### Parameters -`expression` [string](https://learn.microsoft.com/dotnet/api/system.string) +`expression` string #### Returns @@ -241,7 +242,7 @@ public static implicit operator string(ExpressionValueVariable expressionValue) #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### operator \!=\(ExpressionValueVariable, ExpressionValueVariable\) @@ -257,5 +258,5 @@ public static bool operator !=(ExpressionValueVariable expressionValue1, Express #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FE.AttributeImplicitNtoNConstraint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FE.AttributeImplicitNtoNConstraint.md index f570c57ceb..3c98f3229e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FE.AttributeImplicitNtoNConstraint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FE.AttributeImplicitNtoNConstraint.md @@ -1,4 +1,5 @@ -# Class AttributeImplicitNtoNConstraint +# Class AttributeImplicitNtoNConstraint + Namespace: [VM.Models.Pre.FE](VM.Models.Pre.FE.md) Assembly: VM.Models.Pre.FE.dll @@ -9,9 +10,9 @@ public class AttributeImplicitNtoNConstraint : AttributeBase, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeImplicitNtoNConstraint](VM.Models.Pre.FE.AttributeImplicitNtoNConstraint.md) @@ -76,7 +77,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -111,7 +112,7 @@ public AttributeImplicitNtoNConstraint(RBE2[] rbes) #### Parameters -`rbes` RBE2\[\] +`rbes` [RBE2](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.Models.FE.Mesh/Models/Elements/RBE2.cs)\[\] ## Properties @@ -123,5 +124,5 @@ public RBE2[] RBEs { get; set; } #### Property Value - RBE2\[\] + [RBE2](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.Models.FE.Mesh/Models/Elements/RBE2.cs)\[\] diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FE.AttributeMbyNContact.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FE.AttributeMbyNContact.md index fd6afc2b1d..d1cbf5486d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FE.AttributeMbyNContact.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FE.AttributeMbyNContact.md @@ -1,4 +1,5 @@ -# Class AttributeMbyNContact +# Class AttributeMbyNContact + Namespace: [VM.Models.Pre.FE](VM.Models.Pre.FE.md) Assembly: VM.Models.Pre.FE.dll @@ -9,9 +10,9 @@ public class AttributeMbyNContact : AttributeBase, IObservableObject, IDisposabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← AttributeBase ← [AttributeMbyNContact](VM.Models.Pre.FE.AttributeMbyNContact.md) @@ -76,7 +77,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -113,5 +114,5 @@ public IList AttributeMbyNContactData { get; } #### Property Value - [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[AttributeMbyNContactData](VM.Models.Pre.FE.AttributeMbyNContactData.md)\> + IList<[AttributeMbyNContactData](VM.Models.Pre.FE.AttributeMbyNContactData.md)\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FE.AttributeMbyNContactData.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FE.AttributeMbyNContactData.md index 173ab8da42..d402076cf0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FE.AttributeMbyNContactData.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FE.AttributeMbyNContactData.md @@ -1,4 +1,5 @@ -# Struct AttributeMbyNContactData +# Struct AttributeMbyNContactData + Namespace: [VM.Models.Pre.FE](VM.Models.Pre.FE.md) Assembly: VM.Models.Pre.FE.dll @@ -19,7 +20,7 @@ public AttributeMbyNContactData(VectorBase centerPosition, bool isUP) `centerPosition` VectorBase -`isUP` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isUP` bool ## Properties @@ -41,5 +42,5 @@ public bool IsUP { readonly get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FE.CreateSetData.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FE.CreateSetData.md index 4846c436aa..b48095a666 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FE.CreateSetData.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FE.CreateSetData.md @@ -1,4 +1,5 @@ -# Enum CreateSetData +# Enum CreateSetData + Namespace: [VM.Models.Pre.FE](VM.Models.Pre.FE.md) Assembly: VM.Models.Pre.FE.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FE.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FE.md index b39d1ae858..fcbdbafbe2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FE.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FE.md @@ -1,4 +1,5 @@ -# Namespace VM.Models.Pre.FE +# Namespace VM.Models.Pre.FE + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FEPropertyCreationType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FEPropertyCreationType.md index 20c65f5459..f567d04dc8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FEPropertyCreationType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FEPropertyCreationType.md @@ -1,4 +1,5 @@ -# Enum FEPropertyCreationType +# Enum FEPropertyCreationType + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FacetOption.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FacetOption.md index ec86682349..14158892c6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FacetOption.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FacetOption.md @@ -1,4 +1,5 @@ -# Class FacetOption +# Class FacetOption + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -11,7 +12,7 @@ public class FacetOption #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [FacetOption](VM.Models.Pre.FacetOption.md) #### Extension Methods @@ -40,15 +41,15 @@ public FacetOption(double maxEdgeLength, double surfaceTolerance, double normalT #### Parameters -`maxEdgeLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`maxEdgeLength` double The maximum edge length. -`surfaceTolerance` [double](https://learn.microsoft.com/dotnet/api/system.double) +`surfaceTolerance` double The surface tolerance. -`normalTolerance` [double](https://learn.microsoft.com/dotnet/api/system.double) +`normalTolerance` double The normal tolerance. @@ -64,7 +65,7 @@ public double MaxEdgeLength { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NormalTolerance @@ -76,7 +77,7 @@ public double NormalTolerance { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SurfaceTolerance @@ -88,5 +89,5 @@ public double SurfaceTolerance { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FileVersionNotSupportedException.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FileVersionNotSupportedException.md index be51c6dcd7..d68946a998 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FileVersionNotSupportedException.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FileVersionNotSupportedException.md @@ -1,4 +1,5 @@ -# Class FileVersionNotSupportedException +# Class FileVersionNotSupportedException + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -11,8 +12,8 @@ public class FileVersionNotSupportedException : Exception #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Exception](https://learn.microsoft.com/dotnet/api/system.exception) ← +object ← +Exception ← [FileVersionNotSupportedException](VM.Models.Pre.FileVersionNotSupportedException.md) #### Extension Methods @@ -41,7 +42,7 @@ public FileVersionNotSupportedException(string version) #### Parameters -`version` [string](https://learn.microsoft.com/dotnet/api/system.string) +`version` string The version of the save file. @@ -56,11 +57,11 @@ public FileVersionNotSupportedException(string version, Exception innerException #### Parameters -`version` [string](https://learn.microsoft.com/dotnet/api/system.string) +`version` string The version of the save file. -`innerException` [Exception](https://learn.microsoft.com/dotnet/api/system.exception) +`innerException` Exception The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. @@ -77,7 +78,7 @@ public bool IsV242Sp3 { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Version @@ -89,5 +90,5 @@ public string Version { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FilmThcknessType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FilmThcknessType.md index 394667a965..f4a8aeb0c7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FilmThcknessType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.FilmThcknessType.md @@ -1,4 +1,5 @@ -# Enum FilmThcknessType +# Enum FilmThcknessType + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Assembly.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Assembly.md index 0ee900ad61..c5cde26a49 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Assembly.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Assembly.md @@ -1,4 +1,5 @@ -# Class Assembly +# Class Assembly + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.dll @@ -11,9 +12,9 @@ public class Assembly : LinkContainer, IObservableObject, IDisposableObject, ILi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Assembly](VM.Models.Pre.Force.Assembly.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,7 +117,7 @@ public double DesignHeight { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DesignLoad @@ -128,7 +129,7 @@ public ExpressionValueVariable DesignLoad { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ForceTest diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Axle.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Axle.md index d6694b4a51..1a0133b5d2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Axle.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Axle.md @@ -1,4 +1,5 @@ -# Class Axle +# Class Axle + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.dll @@ -11,9 +12,9 @@ public class Axle : LinkContainer, IObservableObject, IDisposableObject, ILinkab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Axle](VM.Models.Pre.Force.Axle.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -128,7 +129,7 @@ public PropertyBush ConnectorProperty { get; set; } #### Property Value - PropertyBush + [PropertyBush](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Bush.cs) ### FrontInactiveLength @@ -140,7 +141,7 @@ public ExpressionValueVariable FrontInactiveLength { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### MountType @@ -164,7 +165,7 @@ public ExpressionValueVariable OffsetZ { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### RearInactiveLength @@ -176,7 +177,7 @@ public ExpressionValueVariable RearInactiveLength { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### UBoltMass @@ -188,7 +189,7 @@ public ExpressionValueVariable UBoltMass { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.BoltingType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.BoltingType.md index b44707105b..bc1525a390 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.BoltingType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.BoltingType.md @@ -1,4 +1,5 @@ -# Enum BoltingType +# Enum BoltingType + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Clip.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Clip.md index e40b44d358..fa5dca7edc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Clip.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Clip.md @@ -1,4 +1,5 @@ -# Class Clip +# Class Clip + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.dll @@ -11,9 +12,9 @@ public class Clip : LinkContainer, IObservableObject, IDisposableObject, ILinkab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Clip](VM.Models.Pre.Force.Clip.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,7 +117,7 @@ public int BottomLeafNumber { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### DampingCoefficient @@ -128,7 +129,7 @@ public ExpressionValueVariable DampingCoefficient { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DistanceToCenterBolt @@ -140,7 +141,7 @@ public ExpressionValueVariable DistanceToCenterBolt { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Height @@ -152,7 +153,7 @@ public ExpressionValueVariable Height { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### HorizontalCoverStiffness @@ -164,7 +165,7 @@ public ExpressionValueVariable HorizontalCoverStiffness { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TopLeafNumber @@ -176,7 +177,7 @@ public int TopLeafNumber { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### VerticalCoverStiffness @@ -188,7 +189,7 @@ public ExpressionValueVariable VerticalCoverStiffness { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Width @@ -200,7 +201,7 @@ public ExpressionValueVariable Width { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -246,7 +247,7 @@ The Axle. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double The initial distance to center bolt value. @@ -264,13 +265,13 @@ public static double GetInitialHeight(LeafInfo[] leafInfos, double distanceToCen The LeafInfo array. -`distanceToCenterBolt` [double](https://learn.microsoft.com/dotnet/api/system.double) +`distanceToCenterBolt` double The distance to center bolt. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double The initial height value. @@ -290,7 +291,7 @@ The LeafInfo array. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double The initial width value. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ClipExtensions.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ClipExtensions.md index 8887a7bf35..b4101e10ce 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ClipExtensions.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ClipExtensions.md @@ -1,4 +1,5 @@ -# Class ClipExtensions +# Class ClipExtensions + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.LeafSpring.dll @@ -9,7 +10,7 @@ public class ClipExtensions #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ClipExtensions](VM.Models.Pre.Force.ClipExtensions.md) #### Extension Methods @@ -38,19 +39,19 @@ public static double GetDistanceToCenterBoltbymodifiedLeafnumberatbottom(LeafInf `leaves` [LeafInfo](VM.Models.Pre.Force.LeafInfo.md)\[\] -`numberofleaf` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`numberofleaf` int -`iLeafnumberatbottom` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`iLeafnumberatbottom` int `clips` [ClipInfo](VM.Models.Pre.Force.ClipInfo.md)\[\] -`frontInactiveLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`frontInactiveLength` double -`rearInactiveLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`rearInactiveLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetHeightbymodifiedLeafnumberatbottom\(LeafInfo\[\], double, int, int\) @@ -62,15 +63,15 @@ public static double GetHeightbymodifiedLeafnumberatbottom(LeafInfo[] leaves, do `leaves` [LeafInfo](VM.Models.Pre.Force.LeafInfo.md)\[\] -`distanceToCenterBolt` [double](https://learn.microsoft.com/dotnet/api/system.double) +`distanceToCenterBolt` double -`iLeafnumberattop` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`iLeafnumberattop` int -`iLeafnumberatbottom` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`iLeafnumberatbottom` int #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetInitialDistanceToCenterBolt\(double, double, int, ClipInfo\[\], double, double\) @@ -80,21 +81,21 @@ public static double GetInitialDistanceToCenterBolt(double lastLeafFirstProfileX #### Parameters -`lastLeafFirstProfileX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`lastLeafFirstProfileX` double -`lastLeafLastProfileX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`lastLeafLastProfileX` double -`numberofleafs` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`numberofleafs` int `clips` [ClipInfo](VM.Models.Pre.Force.ClipInfo.md)\[\] -`frontInactiveLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`frontInactiveLength` double -`rearInactiveLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`rearInactiveLength` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetInitialHeight\(LeafInfo\[\], double\) @@ -106,11 +107,11 @@ public static double GetInitialHeight(LeafInfo[] leaves, double distanceToCenter `leaves` [LeafInfo](VM.Models.Pre.Force.LeafInfo.md)\[\] -`distanceToCenterBolt` [double](https://learn.microsoft.com/dotnet/api/system.double) +`distanceToCenterBolt` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetWidth\(LeafInfo\[\]\) @@ -124,7 +125,7 @@ public static double GetWidth(LeafInfo[] leaves) #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ValidationDistanceToCenterBoltOfCurrentClip\(LeafInfo\[\], ClipInfo, out double, out double\) @@ -138,13 +139,13 @@ public static bool ValidationDistanceToCenterBoltOfCurrentClip(LeafInfo[] leaves `curuentclip` [ClipInfo](VM.Models.Pre.Force.ClipInfo.md) -`from` [double](https://learn.microsoft.com/dotnet/api/system.double) +`from` double -`to` [double](https://learn.microsoft.com/dotnet/api/system.double) +`to` double #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ValidationHeightOfCurrentClip\(LeafInfo\[\], ClipInfo, out double\) @@ -158,9 +159,9 @@ public static bool ValidationHeightOfCurrentClip(LeafInfo[] leaves, ClipInfo cur `curentclip` [ClipInfo](VM.Models.Pre.Force.ClipInfo.md) -`minimumheight` [double](https://learn.microsoft.com/dotnet/api/system.double) +`minimumheight` double #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ClipInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ClipInfo.md index f995b4719a..d6b80915bf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ClipInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ClipInfo.md @@ -1,4 +1,5 @@ -# Class ClipInfo +# Class ClipInfo + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.LeafSpring.dll @@ -9,7 +10,7 @@ public class ClipInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ClipInfo](VM.Models.Pre.Force.ClipInfo.md) #### Extension Methods @@ -28,13 +29,13 @@ public ClipInfo(int LeafNumberOfTop, int LeafNumberofBottom, double DistanceFrom #### Parameters -`LeafNumberOfTop` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`LeafNumberOfTop` int -`LeafNumberofBottom` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`LeafNumberofBottom` int -`DistanceFromCenter` [double](https://learn.microsoft.com/dotnet/api/system.double) +`DistanceFromCenter` double -`VerticalHeight` [double](https://learn.microsoft.com/dotnet/api/system.double) +`VerticalHeight` double ## Properties @@ -46,7 +47,7 @@ public int FixedBodySeq { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### ListContactSeq @@ -56,7 +57,7 @@ public List<(int body, int leaf)> ListContactSeq { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<\([int](https://learn.microsoft.com/dotnet/api/system.int32) [body](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.int32,system.int32\-.body), [int](https://learn.microsoft.com/dotnet/api/system.int32) [leaf](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.int32,system.int32\-.leaf)\)\> + List<\(int body, int leaf\)\> ### Position diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ConnectionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ConnectionType.md index 30ebfb7f0d..43cb3c720c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ConnectionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ConnectionType.md @@ -1,4 +1,5 @@ -# Enum ConnectionType +# Enum ConnectionType + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ContactLeafToLeaf.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ContactLeafToLeaf.md index e9abaddde5..4dadb519e8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ContactLeafToLeaf.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ContactLeafToLeaf.md @@ -1,4 +1,5 @@ -# Class ContactLeafToLeaf +# Class ContactLeafToLeaf + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.LeafSpring.dll @@ -9,7 +10,7 @@ public class ContactLeafToLeaf #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ContactLeafToLeaf](VM.Models.Pre.Force.ContactLeafToLeaf.md) #### Extension Methods @@ -28,7 +29,7 @@ public int seqCotactBodyAction { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### seqCotactBodyBase @@ -38,7 +39,7 @@ public int seqCotactBodyBase { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### seqLeafPointAtAction @@ -48,7 +49,7 @@ public int seqLeafPointAtAction { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### seqLeafPointAtBase @@ -58,5 +59,5 @@ public int seqLeafPointAtBase { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ExternalLoad.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ExternalLoad.md index b3c8eac741..556e2c7fe1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ExternalLoad.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ExternalLoad.md @@ -1,4 +1,5 @@ -# Class ExternalLoad +# Class ExternalLoad + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.dll @@ -11,12 +12,12 @@ public class ExternalLoad : SubEntity, IObservableObject, IDisposableObject, ILi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [ExternalLoad](VM.Models.Pre.Force.ExternalLoad.md) #### Implements @@ -26,7 +27,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -47,17 +48,17 @@ IMultiChangable #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -150,7 +151,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -189,7 +190,7 @@ public ExternalLoad(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -229,7 +230,7 @@ public bool UseReferenceMarker { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UserSubroutine @@ -241,7 +242,7 @@ public UserSubroutine UserSubroutine { get; set; } #### Property Value - UserSubroutine + [UserSubroutine](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSP/UserSubroutine.cs) ### \_ReferenceMarker @@ -273,7 +274,7 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -287,21 +288,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Eye.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Eye.md index 2db4b5d2a5..455e740246 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Eye.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Eye.md @@ -1,4 +1,5 @@ -# Class Eye +# Class Eye + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.dll @@ -11,9 +12,9 @@ public class Eye : LinkContainer, IObservableObject, IDisposableObject, ILinkabl #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Eye](VM.Models.Pre.Force.Eye.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -142,7 +143,7 @@ public PropertyBush ConnectorProperty { get; set; } #### Property Value - PropertyBush + [PropertyBush](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Bush.cs) ### InnerDiameter @@ -154,7 +155,7 @@ public ExpressionValueVariable InnerDiameter { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Location @@ -166,7 +167,7 @@ public (double X, double Z) Location { get; set; } #### Property Value - \([double](https://learn.microsoft.com/dotnet/api/system.double) [X](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.x), [double](https://learn.microsoft.com/dotnet/api/system.double) [Z](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.z)\) + \(double X, double Z\) ### PositionType @@ -208,7 +209,7 @@ public static (Vector Top, Vector Bottom) GetEyeBodyPosition(Vector centerPositi The center position -`mainLeafWidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`mainLeafWidth` double The main leaf width. @@ -218,7 +219,7 @@ the reposition matrix. #### Returns - \(Vector [Top](https://learn.microsoft.com/dotnet/api/system.valuetuple\-vm.vector,vm.vector\-.top), Vector [Bottom](https://learn.microsoft.com/dotnet/api/system.valuetuple\-vm.vector,vm.vector\-.bottom)\) + \(Vector Top, Vector Bottom\) The top, bottom position. @@ -232,7 +233,7 @@ public (Vector Top, Vector Bottom) GetEyeBodyPosition(double mainLeafWidth, TMat #### Parameters -`mainLeafWidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`mainLeafWidth` double The main leaf width. @@ -242,7 +243,7 @@ The reposition matrix. #### Returns - \(Vector [Top](https://learn.microsoft.com/dotnet/api/system.valuetuple\-vm.vector,vm.vector\-.top), Vector [Bottom](https://learn.microsoft.com/dotnet/api/system.valuetuple\-vm.vector,vm.vector\-.bottom)\) + \(Vector Top, Vector Bottom\) The top, bottom position @@ -262,7 +263,7 @@ The main leaf. #### Returns - \([double](https://learn.microsoft.com/dotnet/api/system.double) [OuterRadius](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.outerradius), [double](https://learn.microsoft.com/dotnet/api/system.double) [InnerRadius](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.innerradius)\) + \(double OuterRadius, double InnerRadius\) The outer, inner radius @@ -288,5 +289,5 @@ public override void RaisePropertyChanged(string propertyName) #### Parameters -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.EyePositionType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.EyePositionType.md index eb9ba09611..bab8d0436c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.EyePositionType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.EyePositionType.md @@ -1,4 +1,5 @@ -# Enum EyePositionType +# Enum EyePositionType + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.LeafSpring.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.EyeShapeType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.EyeShapeType.md index 021b4de4aa..07c61dceba 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.EyeShapeType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.EyeShapeType.md @@ -1,4 +1,5 @@ -# Enum EyeShapeType +# Enum EyeShapeType + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.LeafSpring.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.EyehookExtensions.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.EyehookExtensions.md index 880ea122a6..121bcb772a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.EyehookExtensions.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.EyehookExtensions.md @@ -1,4 +1,5 @@ -# Class EyehookExtensions +# Class EyehookExtensions + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.LeafSpring.dll @@ -9,7 +10,7 @@ public class EyehookExtensions #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [EyehookExtensions](VM.Models.Pre.Force.EyehookExtensions.md) #### Extension Methods @@ -40,15 +41,15 @@ public static (double X, double Z) GetLocation(EyePositionType where, EyeShapeTy `shape` [EyeShapeType](VM.Models.Pre.Force.EyeShapeType.md) -`endPosition` \([double](https://learn.microsoft.com/dotnet/api/system.double) [X](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.x), [double](https://learn.microsoft.com/dotnet/api/system.double) [Z](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.z)\) +`endPosition` \(double X, double Z\) -`nextPosition` \([double](https://learn.microsoft.com/dotnet/api/system.double) [X](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.x), [double](https://learn.microsoft.com/dotnet/api/system.double) [Z](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.z)\) +`nextPosition` \(double X, double Z\) -`mainLeafThickness` [double](https://learn.microsoft.com/dotnet/api/system.double) +`mainLeafThickness` double -`radius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`radius` double #### Returns - \([double](https://learn.microsoft.com/dotnet/api/system.double) [X](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.x), [double](https://learn.microsoft.com/dotnet/api/system.double) [Z](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.z)\) + \(double X, double Z\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ForceTest.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ForceTest.md index 5b0bcb584c..bb0b0285ac 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ForceTest.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ForceTest.md @@ -1,4 +1,5 @@ -# Class ForceTest +# Class ForceTest + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.dll @@ -11,9 +12,9 @@ public class ForceTest : TestBase, IObservableObject, IDisposableObject, ILinkab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [TestBase](VM.Models.Pre.Force.TestBase.md) ← [ForceTest](VM.Models.Pre.Force.ForceTest.md) @@ -81,7 +82,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -122,7 +123,7 @@ public ExpressionValueVariable Jounce { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Rebound @@ -134,5 +135,5 @@ public ExpressionValueVariable Rebound { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Leaf.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Leaf.md index e6b22bb85d..a93a470c06 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Leaf.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Leaf.md @@ -1,4 +1,5 @@ -# Class Leaf +# Class Leaf + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.dll @@ -11,9 +12,9 @@ public class Leaf : LinkContainer, IObservableObject, IDisposableObject, ILinkab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Leaf](VM.Models.Pre.Force.Leaf.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,7 +117,7 @@ public ExpressionValueVariable ContactStiffness { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### ContactStiffnessScale @@ -128,7 +129,7 @@ public ExpressionValueVariable ContactStiffnessScale { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DampingCoefficient @@ -140,7 +141,7 @@ public ExpressionValueVariable DampingCoefficient { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### FrontContactPointCount @@ -152,7 +153,7 @@ public int FrontContactPointCount { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### FrontElementCount @@ -164,7 +165,7 @@ public int FrontElementCount { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### FrontLength @@ -176,7 +177,7 @@ public double FrontLength { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### LinkMaterial @@ -212,7 +213,7 @@ public string MaterialName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### OffsetZ @@ -224,7 +225,7 @@ public ExpressionValueVariable OffsetZ { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Profiles @@ -248,7 +249,7 @@ public int RearContactPointCount { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### RearElementCount @@ -260,7 +261,7 @@ public int RearElementCount { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### RearLength @@ -272,7 +273,7 @@ public double RearLength { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Width @@ -284,7 +285,7 @@ public ExpressionValueVariable Width { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ## Methods @@ -312,7 +313,7 @@ protected override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. @@ -324,5 +325,5 @@ public override void RaisePropertyChanged(string propertyName) #### Parameters -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Leaf3D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Leaf3D.md index 6aa22c4ed6..49b902edee 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Leaf3D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Leaf3D.md @@ -1,4 +1,5 @@ -# Class Leaf3D +# Class Leaf3D + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.LeafSpring.dll @@ -9,7 +10,7 @@ public class Leaf3D #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Leaf3D](VM.Models.Pre.Force.Leaf3D.md) #### Extension Methods @@ -28,11 +29,11 @@ public Leaf3D(double dx, double dz, double thickness) #### Parameters -`dx` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dx` double -`dz` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dz` double -`thickness` [double](https://learn.microsoft.com/dotnet/api/system.double) +`thickness` double ## Properties @@ -44,7 +45,7 @@ public double Thickness { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### X @@ -54,7 +55,7 @@ public double X { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Z @@ -64,5 +65,5 @@ public double Z { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Leaf4D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Leaf4D.md index 255115543c..851303dda0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Leaf4D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Leaf4D.md @@ -1,4 +1,5 @@ -# Class Leaf4D +# Class Leaf4D + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.LeafSpring.dll @@ -9,7 +10,7 @@ public class Leaf4D #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Leaf4D](VM.Models.Pre.Force.Leaf4D.md) #### Extension Methods @@ -28,13 +29,13 @@ public Leaf4D(double dx, double dy, double dz, double thickness) #### Parameters -`dx` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dx` double -`dy` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dy` double -`dz` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dz` double -`thickness` [double](https://learn.microsoft.com/dotnet/api/system.double) +`thickness` double ## Properties @@ -46,7 +47,7 @@ public double Thickness { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### X @@ -56,7 +57,7 @@ public double X { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y @@ -66,7 +67,7 @@ public double Y { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Z @@ -76,5 +77,5 @@ public double Z { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.LeafExtensions.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.LeafExtensions.md index 31f65e0e3f..949080567c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.LeafExtensions.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.LeafExtensions.md @@ -1,4 +1,5 @@ -# Class LeafExtensions +# Class LeafExtensions + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.LeafSpring.dll @@ -9,7 +10,7 @@ public class LeafExtensions #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [LeafExtensions](VM.Models.Pre.Force.LeafExtensions.md) #### Extension Methods @@ -36,13 +37,13 @@ public static void leafpointsgeneration(List lstleafdata, List +`lstleafdata` List<[LeafInfo](VM.Models.Pre.Force.LeafInfo.md)\> -`clips` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ClipInfo](VM.Models.Pre.Force.ClipInfo.md)\> +`clips` List<[ClipInfo](VM.Models.Pre.Force.ClipInfo.md)\> -`axleLengthFront` [double](https://learn.microsoft.com/dotnet/api/system.double) +`axleLengthFront` double -`axleLengthRear` [double](https://learn.microsoft.com/dotnet/api/system.double) +`axleLengthRear` double -`listcontactinfo` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ContactLeafToLeaf](VM.Models.Pre.Force.ContactLeafToLeaf.md)\> +`listcontactinfo` List<[ContactLeafToLeaf](VM.Models.Pre.Force.ContactLeafToLeaf.md)\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.LeafInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.LeafInfo.md index c631f063b9..b33b88cefa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.LeafInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.LeafInfo.md @@ -1,4 +1,5 @@ -# Class LeafInfo +# Class LeafInfo + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.LeafSpring.dll @@ -9,7 +10,7 @@ public class LeafInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [LeafInfo](VM.Models.Pre.Force.LeafInfo.md) #### Extension Methods @@ -28,15 +29,15 @@ public LeafInfo(double LeafWidth, int NofContactFront, int NofContactRear, int N #### Parameters -`LeafWidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`LeafWidth` double -`NofContactFront` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`NofContactFront` int -`NofContactRear` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`NofContactRear` int -`NofEelementFront` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`NofEelementFront` int -`NofEelementRear` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`NofEelementRear` int `LeafProfiles` [Leaf3D](VM.Models.Pre.Force.Leaf3D.md)\[\] @@ -50,7 +51,7 @@ public List BeamProfiles { get; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[Leaf4D](VM.Models.Pre.Force.Leaf4D.md)\> + List<[Leaf4D](VM.Models.Pre.Force.Leaf4D.md)\> ### Profiles diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.LeafSpring.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.LeafSpring.md index 0b269d3ec5..3c61bda601 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.LeafSpring.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.LeafSpring.md @@ -1,4 +1,5 @@ -# Class LeafSpring +# Class LeafSpring + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.dll @@ -6,19 +7,19 @@ Assembly: VM.Models.Pre.Force.dll This class is to represent the Leaf Spring. ```csharp -public class LeafSpring : Entity, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IDraw, IDrawIcon +public class LeafSpring : Entity, IObservableObject, IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, IHistoryObjectSerializable, IAttributeContainer, IContainer, IEntity, IEntityBase, IObjectBase, IObject, ILinkContainer, IOwned, IHasID, IEventProvider, IHasKeyObject, IHasName, IEnabled, IHasComment, IVisible, IDocumentOwner, INamed, INavigatorItem, IVisible, IMultiChangable, IHasProperty, IGroup, IDraw, IDrawIcon, IReferencable, IMassProp ``` #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -EntityBase ← -Entity ← +[EntityBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← +[Entity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs) ← [LeafSpring](VM.Models.Pre.Force.LeafSpring.md) #### Implements @@ -28,7 +29,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, IEntity, @@ -52,38 +53,40 @@ IMultiChangable, IHasProperty, IGroup, IDraw, -IDrawIcon +IDrawIcon, +IReferencable, +IMassProp #### Inherited Members -Entity.Initialize\(Unit.ConvertFactor\), -Entity.GetUnnamedObjectName\(object\), -Entity.FindLocal\(string\), -Entity.Property, -EntityBase.Initialize\(Unit.ConvertFactor\), -EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\), -EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\), -EntityBase.OnDeserializationForAttribute\(\), -EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -EntityBase.LinkRequestDestroying\(object, LinkEventArgs\), -EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -EntityBase.FixUp\(ObjectBase\), -EntityBase.FindLocal\(string\), -EntityBase.WriteTemplateImpl\(XmlWriter\), -EntityBase.ReadTemplateImpl\(XmlReader\), -EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\), -EntityBase.OnDeserialization\(object\), -EntityBase.Name, -EntityBase.FullName, -EntityBase.NonSymmetricName, -EntityBase.DisplayName, -EntityBase.IsEnabled, -EntityBase.Comment, -EntityBase.HasLayerExplicitly, -EntityBase.UntypedProperty, -EntityBase.IsFileProperty, -EntityBase.Layer, -EntityBase.IsVisible, +[Entity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[Entity.Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.SetOldNameWithNewEntity\(ObjectBase, ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserializationForAttribute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkRequestDestroying\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.LinkAddedToDocument\(object, AddToDocEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.HasLayerExplicitly](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.UntypedProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsFileProperty](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.Layer](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), +[EntityBase.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Entity.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -182,7 +185,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -221,7 +224,7 @@ public LeafSpring(string name) #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string Name of the . @@ -237,7 +240,7 @@ public const string ActionMarkerName = "ActionMarker" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### AxleToCenterBoltName @@ -249,7 +252,7 @@ public const string AxleToCenterBoltName = "AxleToCenterBolt" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### BaseMarkerName @@ -261,7 +264,7 @@ public const string BaseMarkerName = "BaseMarker" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### CenterBoltName @@ -273,7 +276,7 @@ public const string CenterBoltName = "CenterBolt" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ClipNamePrefix @@ -285,7 +288,7 @@ public const string ClipNamePrefix = "Clip" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### FrontEyeName @@ -297,7 +300,7 @@ public const string FrontEyeName = "FrontEye" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### FrontEyeToBeamFixedName @@ -309,7 +312,7 @@ public const string FrontEyeToBeamFixedName = "FrontEyeToBeamFixed" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GroundToEyeName @@ -321,7 +324,7 @@ public const string GroundToEyeName = "GroundToEye" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GroundToShackleName @@ -333,7 +336,7 @@ public const string GroundToShackleName = "GroundToShackle" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### LeafNamePrefix @@ -345,7 +348,7 @@ public const string LeafNamePrefix = "Leaf" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### LeafToClipFunctionName @@ -357,7 +360,7 @@ public const string LeafToClipFunctionName = "LeafToClip" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### LeafToLeafFunctionName @@ -369,7 +372,7 @@ public const string LeafToLeafFunctionName = "LeafToLeaf" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RearEyeName @@ -381,7 +384,7 @@ public const string RearEyeName = "RearEye" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### RearEyeToBeamFixedName @@ -393,7 +396,7 @@ public const string RearEyeToBeamFixedName = "RearEyeToBeamFixed" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ShackleName @@ -405,7 +408,7 @@ public const string ShackleName = "Shackle" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ShackleToEyeName @@ -417,7 +420,7 @@ public const string ShackleToEyeName = "ShackleToEye" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Properties @@ -479,7 +482,7 @@ protected override bool HasLayerExplicitly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Hide @@ -491,7 +494,7 @@ public bool Hide { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LinkAxle @@ -541,6 +544,18 @@ public IConnectable RearFrame { get; set; } IConnectable +### Referencable + +Gets a value indicating whether this is referencable. + +```csharp +public bool Referencable { get; } +``` + +#### Property Value + + bool + ### ReferenceFrame Gets or sets the reference frame. @@ -565,6 +580,18 @@ public PointBase ShacklePosition { get; set; } PointBase +### Visible + +Gets a value indicating whether this is visible. + +```csharp +public bool Visible { get; } +``` + +#### Property Value + + bool + ## Methods ### Draw\(Canvas\) @@ -577,7 +604,7 @@ public void Draw(Canvas canvas) #### Parameters -`canvas` Canvas +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) The canvas. @@ -597,7 +624,7 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -611,17 +638,17 @@ public static string GetCenterBoltToLeafName(int leafIndex, int index) #### Parameters -`leafIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`leafIndex` int The leaf index. -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int The constraint index. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The center bolt to leaf constraint name. @@ -635,13 +662,13 @@ public static string GetClipName(int index) #### Parameters -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int The clip index. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The clip name. @@ -655,17 +682,17 @@ public static string GetClipToLeafBushName(int clipIndex, int leafIndex) #### Parameters -`clipIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`clipIndex` int The clip index. -`leafIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`leafIndex` int The leaf index. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The clip to leaf bush name. @@ -679,13 +706,13 @@ public static string GetClipToLeafFixedName(int index) #### Parameters -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int The clip index. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The clip to leaf fixed name. @@ -699,17 +726,17 @@ public static string GetClipToLeafVectorForceName(int clipIndex, int leafIndex) #### Parameters -`clipIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`clipIndex` int The clip index. -`leafIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`leafIndex` int The leaf index. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The clip to leaf vector force name. @@ -723,13 +750,13 @@ public static string GetClipUpperMarkerName(int index) #### Parameters -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int The clip index. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The clip upper marker name. @@ -743,13 +770,13 @@ public static string GetLeafName(int index) #### Parameters -`index` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`index` int The leaf index. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The leaf name. @@ -763,25 +790,25 @@ public static string GetLeafToLeafBushName(int baseLeafIndex, int baseBodyIndex, #### Parameters -`baseLeafIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`baseLeafIndex` int The base leaf index. -`baseBodyIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`baseBodyIndex` int The base body index. -`actionLeafIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`actionLeafIndex` int The action leaf index. -`actionBodyIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`actionBodyIndex` int The action body index. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The leaf to leaf bush name. @@ -795,25 +822,25 @@ public static string GetLeafToLeafVectorForceName(int baseLeafIndex, int baseBod #### Parameters -`baseLeafIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`baseLeafIndex` int The base leaf index. -`baseBodyIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`baseBodyIndex` int The base body index. -`actionLeafIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`actionLeafIndex` int The action leaf index. -`actionBodyIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`actionBodyIndex` int The action body index. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The leaf to leaf vector force name. @@ -831,6 +858,38 @@ public TMatrix? GetRepositionMatrix() The reposition matrix. +### Instantiate\(Reference, Canvas\) + +Instantiates the specified reference. + +```csharp +public void Instantiate(Reference reference, Canvas canvas) +``` + +#### Parameters + +`reference` Reference + +The reference. + +`canvas` [Canvas](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VM.CAD.Kernel/Render/Canvas.cs) + +The canvas. + +### MakeReference\(LinkedList\) + +Makes the reference. + +```csharp +public void MakeReference(LinkedList lstRef) +``` + +#### Parameters + +`lstRef` LinkedList + +The referece container. + ### PostAddToDocument\(\) ```csharp @@ -845,7 +904,7 @@ public override void RaisePropertyChanged(string propertyName) #### Parameters -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string ### ReDraw\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.LeafSpringExtensions.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.LeafSpringExtensions.md index 53bd4ffd08..4666c58b8d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.LeafSpringExtensions.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.LeafSpringExtensions.md @@ -1,4 +1,5 @@ -# Class LeafSpringExtensions +# Class LeafSpringExtensions + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.dll @@ -9,7 +10,7 @@ public static class LeafSpringExtensions #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [LeafSpringExtensions](VM.Models.Pre.Force.LeafSpringExtensions.md) #### Extension Methods @@ -28,15 +29,15 @@ public static Vector[] GetLeafBeamElementPositions(IOutputReader outputReader, i #### Parameters -`outputReader` IOutputReader +`outputReader` [IOutputReader](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.OutputReader/Interfaces/IOutputReader.cs) -`beamProfilesCount` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`beamProfilesCount` int -`leafIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`leafIndex` int -`loadIndex` \([int](https://learn.microsoft.com/dotnet/api/system.int32) [A](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.int32,system.int32\-.a), [int](https://learn.microsoft.com/dotnet/api/system.int32) [B](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.int32,system.int32\-.b)\) +`loadIndex` \(int A, int B\) -`variation` [double](https://learn.microsoft.com/dotnet/api/system.double) +`variation` double #### Returns @@ -50,13 +51,13 @@ public static (int A, int B) GetLoadIndex((double Time, double Force)[] loadResu #### Parameters -`loadResult` \([double](https://learn.microsoft.com/dotnet/api/system.double) [Time](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.time), [double](https://learn.microsoft.com/dotnet/api/system.double) [Force](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.force)\)\[\] +`loadResult` \(double Time, double Force\)\[\] -`designLoad` [double](https://learn.microsoft.com/dotnet/api/system.double) +`designLoad` double #### Returns - \([int](https://learn.microsoft.com/dotnet/api/system.int32) [A](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.int32,system.int32\-.a), [int](https://learn.microsoft.com/dotnet/api/system.int32) [B](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.int32,system.int32\-.b)\) + \(int A, int B\) ### GetLoadResult\(IOutputReader\) @@ -66,11 +67,11 @@ public static (double Time, double Force)[] GetLoadResult(IOutputReader outputRe #### Parameters -`outputReader` IOutputReader +`outputReader` [IOutputReader](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.OutputReader/Interfaces/IOutputReader.cs) #### Returns - \([double](https://learn.microsoft.com/dotnet/api/system.double) [Time](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.time), [double](https://learn.microsoft.com/dotnet/api/system.double) [Force](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.force)\)\[\] + \(double Time, double Force\)\[\] ### GetLoadVariation\(IOutputReader, double, \(int A, int B\)\) @@ -80,15 +81,15 @@ public static double GetLoadVariation(IOutputReader outputReader, double designL #### Parameters -`outputReader` IOutputReader +`outputReader` [IOutputReader](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.OutputReader/Interfaces/IOutputReader.cs) -`designLoad` [double](https://learn.microsoft.com/dotnet/api/system.double) +`designLoad` double -`loadIndex` \([int](https://learn.microsoft.com/dotnet/api/system.int32) [A](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.int32,system.int32\-.a), [int](https://learn.microsoft.com/dotnet/api/system.int32) [B](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.int32,system.int32\-.b)\) +`loadIndex` \(int A, int B\) #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetOutputReader\(string\) @@ -98,11 +99,11 @@ public static IOutputReader GetOutputReader(string resultPath) #### Parameters -`resultPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`resultPath` string #### Returns - IOutputReader + [IOutputReader](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.OutputReader/Interfaces/IOutputReader.cs) ### GetResult\(IOutputReader, string, params string\[\]\) @@ -112,15 +113,15 @@ public static (double Time, double Value)[] GetResult(IOutputReader outputReader #### Parameters -`outputReader` IOutputReader +`outputReader` [IOutputReader](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.OutputReader/Interfaces/IOutputReader.cs) -`target` [string](https://learn.microsoft.com/dotnet/api/system.string) +`target` string -`paths` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`paths` string\[\] #### Returns - \([double](https://learn.microsoft.com/dotnet/api/system.double) [Time](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.time), [double](https://learn.microsoft.com/dotnet/api/system.double) [Value](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.value)\)\[\] + \(double Time, double Value\)\[\] ### GetTransformMatrix\(IOutputReader, string, \(int A, int B\), double, TMatrix?\) @@ -130,13 +131,13 @@ public static TMatrix GetTransformMatrix(IOutputReader outputReader, string targ #### Parameters -`outputReader` IOutputReader +`outputReader` [IOutputReader](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.OutputReader/Interfaces/IOutputReader.cs) -`targetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`targetName` string -`loadIndex` \([int](https://learn.microsoft.com/dotnet/api/system.int32) [A](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.int32,system.int32\-.a), [int](https://learn.microsoft.com/dotnet/api/system.int32) [B](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.int32,system.int32\-.b)\) +`loadIndex` \(int A, int B\) -`variation` [double](https://learn.microsoft.com/dotnet/api/system.double) +`variation` double `repositionMatrix` TMatrix? @@ -152,11 +153,11 @@ public static bool IsTestSimulationCompleted(IOutputReader outputReader, double #### Parameters -`outputReader` IOutputReader +`outputReader` [IOutputReader](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.OutputReader/Interfaces/IOutputReader.cs) -`endTime` [double](https://learn.microsoft.com/dotnet/api/system.double) +`endTime` double #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.LeafSpringProfile.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.LeafSpringProfile.md index fccc4c149d..17a8ae33a6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.LeafSpringProfile.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.LeafSpringProfile.md @@ -1,4 +1,5 @@ -# Struct LeafSpringProfile +# Struct LeafSpringProfile + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.dll @@ -21,7 +22,7 @@ public double? Thickness { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)? + double? ### X @@ -33,7 +34,7 @@ public double X { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Z @@ -45,7 +46,7 @@ public double Z { readonly get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -57,11 +58,11 @@ public override bool Equals(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Equals\(LeafSpringProfile\) @@ -75,7 +76,7 @@ public bool Equals(LeafSpringProfile other) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetHashCode\(\) @@ -85,7 +86,7 @@ public override int GetHashCode() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ## Operators @@ -103,7 +104,7 @@ public static bool operator ==(LeafSpringProfile left, LeafSpringProfile right) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### implicit operator Leaf3D\(LeafSpringProfile\) @@ -147,5 +148,5 @@ public static bool operator !=(LeafSpringProfile left, LeafSpringProfile right) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.LoadType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.LoadType.md index 2b1b924d20..5f23e600fe 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.LoadType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.LoadType.md @@ -1,4 +1,5 @@ -# Enum LoadType +# Enum LoadType + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Magnetic.GroupInformation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Magnetic.GroupInformation.md index 1b607042b0..c1c1e04035 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Magnetic.GroupInformation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Magnetic.GroupInformation.md @@ -1,4 +1,5 @@ -# Class Magnetic.GroupInformation +# Class Magnetic.GroupInformation + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.dll @@ -11,9 +12,9 @@ public class Magnetic.GroupInformation : LinkContainer, IObservableObject, IDisp #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Magnetic.GroupInformation](VM.Models.Pre.Force.Magnetic.GroupInformation.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -114,7 +115,7 @@ public GroupInformation(Group group) #### Parameters -`group` Group +`group` [Group](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Group.cs) The group. @@ -128,7 +129,7 @@ public GroupInformation(Group group, IMarker coordinateSystem) #### Parameters -`group` Group +`group` [Group](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Group.cs) The group. @@ -160,7 +161,7 @@ public Group Group { get; set; } #### Property Value - Group + [Group](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Group.cs) ### \_CoordinateSystem @@ -186,7 +187,7 @@ public bool CheckCoordinateWithGroup() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool The success flag diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Magnetic.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Magnetic.md index c74c6ef477..639407f1bc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Magnetic.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Magnetic.md @@ -1,4 +1,5 @@ -# Class Magnetic +# Class Magnetic + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.dll @@ -11,12 +12,12 @@ public class Magnetic : SubEntity, IObservableObject, IDisposableObject, ILinkab #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← -SubEntity ← +[SubEntity](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs) ← [Magnetic](VM.Models.Pre.Force.Magnetic.md) #### Implements @@ -26,7 +27,7 @@ IDisposableObject, ILinkable, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, ISubEntity, IEntityBase, @@ -49,17 +50,17 @@ ILinkUpdateOwner #### Inherited Members -SubEntity.Initialize\(Unit.ConvertFactor\), -SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\), -SubEntity.FixUp\(ObjectBase\), -SubEntity.WriteTemplateImpl\(XmlWriter\), -SubEntity.ReadTemplateImpl\(XmlReader\), -SubEntity.Name, -SubEntity.FullName, -SubEntity.NonSymmetricName, -SubEntity.DisplayName, -SubEntity.IsEnabled, -SubEntity.Comment, +[SubEntity.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.GetModelNavigatorInformationImpl\(XmlDocument, XmlElement, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FixUp\(ObjectBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.WriteTemplateImpl\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.ReadTemplateImpl\(XmlReader\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.FullName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.NonSymmetricName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), +[SubEntity.Comment](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/SubEntity.cs), Object.GetKey\(\), Object.Initialize\(Unit.ConvertFactor\), Object.SetIconColor\(Canvas\), @@ -152,7 +153,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -191,7 +192,7 @@ public Magnetic(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -205,7 +206,7 @@ protected LinkAttribute __a$_a_VM.Models.Pre.LinkAttribute #### Field Value - LinkAttribute + [LinkAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre.Aspects/Attributes/LinkAttribute.cs) ### \_\_a$\_a\_VM.Models.Pre.LinkUpdateAttribute @@ -215,7 +216,7 @@ protected LinkUpdateAttribute __a$_a_VM.Models.Pre.LinkUpdateAttribute #### Field Value - LinkUpdateAttribute + [LinkUpdateAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre.Aspects/Attributes/LinkUpdateAttribute.cs) ## Properties @@ -229,7 +230,7 @@ public ExpressionValueVariable Criterion { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### DesignName @@ -241,7 +242,7 @@ public string DesignName { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GroupInformations @@ -265,7 +266,7 @@ public CompositeFieldUsable InterfaceStepFactor { get; set; } #### Property Value - CompositeFieldUsable + [CompositeFieldUsable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/CompositeField.cs) ### MeasurementType @@ -289,7 +290,7 @@ public string ProjectRelativeFilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### StopAutomatically @@ -301,7 +302,7 @@ public bool StopAutomatically { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -315,7 +316,7 @@ public void AddGroupInformation(Group group) #### Parameters -`group` Group +`group` [Group](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Group.cs) The group @@ -329,7 +330,7 @@ public void AddGroupInformation(Group group, IMarker marker) #### Parameters -`group` Group +`group` [Group](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Group.cs) The group @@ -353,7 +354,7 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -367,7 +368,7 @@ public static IMarker GetDefaultMarkerInGroup(Group group) #### Parameters -`group` Group +`group` [Group](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Group.cs) The group @@ -387,21 +388,21 @@ protected override bool GetModelNavigatorInformationImpl(XmlDocument xmlDom, Xml #### Parameters -`xmlDom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`xmlDom` XmlDocument The XmlDocument for object. -`xmlEle` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`xmlEle` XmlElement The XmlElement for object. -`bHasChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHasChild` bool if set to true [has child]. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -419,7 +420,7 @@ public static TMatrix GetTransformInGroup(IMarker marker, Group group) The marker -`group` Group +`group` [Group](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Group.cs) The group @@ -453,7 +454,7 @@ protected override void OnLinkReserved(ILink reserved, object objNotifier, Event `reserved` ILink -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object -`args` [EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) +`args` EventArgs diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.MeasurementType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.MeasurementType.md index e93c9ae459..6ffd01ba06 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.MeasurementType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.MeasurementType.md @@ -1,4 +1,5 @@ -# Enum MeasurementType +# Enum MeasurementType + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.MountType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.MountType.md index 4f10f805bf..44389570e4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.MountType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.MountType.md @@ -1,4 +1,5 @@ -# Enum MountType +# Enum MountType + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Point2D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Point2D.md index 02be6268c0..ed94270a6c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Point2D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Point2D.md @@ -1,4 +1,5 @@ -# Class Point2D +# Class Point2D + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.LeafSpring.dll @@ -9,7 +10,7 @@ public class Point2D #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Point2D](VM.Models.Pre.Force.Point2D.md) #### Extension Methods @@ -28,9 +29,9 @@ public Point2D(double dx, double dz) #### Parameters -`dx` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dx` double -`dz` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dz` double ## Properties @@ -42,7 +43,7 @@ public double X { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Z @@ -52,5 +53,5 @@ public double Z { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Point3D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Point3D.md index bc77916731..de7583a576 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Point3D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Point3D.md @@ -1,4 +1,5 @@ -# Class Point3D +# Class Point3D + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.LeafSpring.dll @@ -9,7 +10,7 @@ public class Point3D #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Point3D](VM.Models.Pre.Force.Point3D.md) #### Extension Methods @@ -28,11 +29,11 @@ public Point3D(double dx, double dy, double dz) #### Parameters -`dx` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dx` double -`dy` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dy` double -`dz` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dz` double ## Properties @@ -44,7 +45,7 @@ public double X { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y @@ -54,7 +55,7 @@ public double Y { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Z @@ -64,5 +65,5 @@ public double Z { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.PropertyLeafSpring.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.PropertyLeafSpring.md index dd7e3b7357..9de81f4577 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.PropertyLeafSpring.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.PropertyLeafSpring.md @@ -1,4 +1,5 @@ -# Class PropertyLeafSpring +# Class PropertyLeafSpring + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.dll @@ -11,13 +12,13 @@ public class PropertyLeafSpring : Property, IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← ObjectBase ← Object ← ContainerObject ← -Property ← +[Property](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs) ← [PropertyLeafSpring](VM.Models.Pre.Force.PropertyLeafSpring.md) #### Implements @@ -31,7 +32,7 @@ IEventProvider, IHasKeyObject, ILinkContainerEvent, IVerifiable, -IHistoryObjectSerializable, +[IHistoryObjectSerializable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMHist/Interfaces.cs), IAttributeContainer, IContainer, ILinkContainer, @@ -40,12 +41,12 @@ IHasID #### Inherited Members -Property.Initialize\(Unit.ConvertFactor\), -Property.PropertyRequestUpdate\(object, LinkEventArgs\), -Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\), -Property.GetUnnamedObjectName\(object\), -Property.FindLocal\(string\), -Property.Draw\(Canvas, TMatrix, TMatrix, bool\), +[Property.Initialize\(Unit.ConvertFactor\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.PropertyRequestUpdate\(object, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.OnUpdatePropertyImpl\(Property, LinkEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.GetUnnamedObjectName\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.FindLocal\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), +[Property.Draw\(Canvas, TMatrix, TMatrix, bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMObjBase/Property.cs), ContainerObject.Find\(string\), ContainerObject.FindLocal\(string\), ContainerObject.GetUnnamedObjectName\(object\), @@ -144,7 +145,7 @@ ObjectBase.OnDestroy, ObjectBase.OnDestroying, ObjectBase.OnUpdate, ObjectBase.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -183,11 +184,11 @@ protected PropertyLeafSpring(string proxyName, string buildInfo) #### Parameters -`proxyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`proxyName` string Name of the proxy. -`buildInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`buildInfo` string The build info. @@ -263,7 +264,7 @@ public uint MainLeafIndex { get; set; } #### Property Value - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint ### RearEye @@ -301,7 +302,7 @@ public override IObjectBase FindLocal(string strName) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string Name of the string. @@ -327,7 +328,7 @@ The old object. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. @@ -341,7 +342,7 @@ public List GetClipInfos() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List The leaf clip list. @@ -355,7 +356,7 @@ public List GetLeafInfos() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1) + List The leaf info list. @@ -369,13 +370,13 @@ public override string GetUnnamedObjectName(object obUnnamed) #### Parameters -`obUnnamed` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obUnnamed` object The ob unnamed. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The unnamed object name. @@ -401,7 +402,7 @@ public override void RaisePropertyChanged(string propertyName) #### Parameters -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string ### SetContainer\(IOwned, bool\) @@ -413,7 +414,7 @@ public override void SetContainer(IOwned owner, bool bBackup) `owner` IOwned -`bBackup` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bBackup` bool ### UpdateComponent\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Shackle.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Shackle.md index 0d024656f2..b6af1f47b4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Shackle.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.Shackle.md @@ -1,4 +1,5 @@ -# Class Shackle +# Class Shackle + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.dll @@ -11,9 +12,9 @@ public class Shackle : LinkContainer, IObservableObject, IDisposableObject, ILin #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [Shackle](VM.Models.Pre.Force.Shackle.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -128,7 +129,7 @@ public PropertyBush ConnectorProperty { get; set; } #### Property Value - PropertyBush + [PropertyBush](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Bush.cs) ### Length @@ -140,7 +141,7 @@ public double Length { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Location @@ -176,7 +177,7 @@ public double OffsetX { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### OuterRadius @@ -188,7 +189,7 @@ public ExpressionValueVariable OuterRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PinRadius @@ -200,7 +201,7 @@ public ExpressionValueVariable PinRadius { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PositioningType @@ -224,7 +225,7 @@ public (double X, double Z) ShackleToFramePosition { get; set; } #### Property Value - \([double](https://learn.microsoft.com/dotnet/api/system.double) [X](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.x), [double](https://learn.microsoft.com/dotnet/api/system.double) [Z](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.z)\) + \(double X, double Z\) ## Methods @@ -242,7 +243,7 @@ public static (Vector Top, Vector Bottom) GetEyeHolePosition(Eye eye, double mai The eye. -`mainLeafWidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`mainLeafWidth` double The main leaf width. @@ -252,7 +253,7 @@ The reposition matrix. #### Returns - \(Vector [Top](https://learn.microsoft.com/dotnet/api/system.valuetuple\-vm.vector,vm.vector\-.top), Vector [Bottom](https://learn.microsoft.com/dotnet/api/system.valuetuple\-vm.vector,vm.vector\-.bottom)\) + \(Vector Top, Vector Bottom\) The top, bottom position @@ -270,7 +271,7 @@ public static (Vector Top, Vector Bottom) GetShackleHolePosition(Vector centerPo The center position -`mainLeafWidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`mainLeafWidth` double The main leaf width. @@ -280,7 +281,7 @@ The reposition matrix. #### Returns - \(Vector [Top](https://learn.microsoft.com/dotnet/api/system.valuetuple\-vm.vector,vm.vector\-.top), Vector [Bottom](https://learn.microsoft.com/dotnet/api/system.valuetuple\-vm.vector,vm.vector\-.bottom)\) + \(Vector Top, Vector Bottom\) The top, bottom position @@ -294,7 +295,7 @@ public (Vector Top, Vector Bottom) GetShackleHolePosition(double mainLeafWidth, #### Parameters -`mainLeafWidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`mainLeafWidth` double The main leaf width. @@ -304,7 +305,7 @@ The reposition matrix. #### Returns - \(Vector [Top](https://learn.microsoft.com/dotnet/api/system.valuetuple\-vm.vector,vm.vector\-.top), Vector [Bottom](https://learn.microsoft.com/dotnet/api/system.valuetuple\-vm.vector,vm.vector\-.bottom)\) + \(Vector Top, Vector Bottom\) The top, bottom position diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ShackleExtensions.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ShackleExtensions.md index 07ecd6ba08..3dd44727aa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ShackleExtensions.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ShackleExtensions.md @@ -1,4 +1,5 @@ -# Class ShackleExtensions +# Class ShackleExtensions + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.LeafSpring.dll @@ -9,7 +10,7 @@ public class ShackleExtensions #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ShackleExtensions](VM.Models.Pre.Force.ShackleExtensions.md) #### Extension Methods @@ -36,7 +37,7 @@ public static double GetOffsetXAtShackeToFramePosition((double X, double Z) shac #### Parameters -`shacketoframepos` \([double](https://learn.microsoft.com/dotnet/api/system.double) [X](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.x), [double](https://learn.microsoft.com/dotnet/api/system.double) [Z](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.z)\) +`shacketoframepos` \(double X, double Z\) `ShackleLocation` [ShackleLocationType](VM.Models.Pre.Force.ShackleLocationType.md) @@ -46,7 +47,7 @@ public static double GetOffsetXAtShackeToFramePosition((double X, double Z) shac #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetPositontypAtShackeToFramePosition\(\(double X, double Z\), ShackleLocationType, Point2D, Point2D\) @@ -56,7 +57,7 @@ public static ShacklePositonType GetPositontypAtShackeToFramePosition((double X, #### Parameters -`shacketoframepos` \([double](https://learn.microsoft.com/dotnet/api/system.double) [X](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.x), [double](https://learn.microsoft.com/dotnet/api/system.double) [Z](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.z)\) +`shacketoframepos` \(double X, double Z\) `ShackleLocation` [ShackleLocationType](VM.Models.Pre.Force.ShackleLocationType.md) @@ -78,11 +79,11 @@ public static (double X, double Z) GetSelectedPosBasedOnLocalRF(Point3D selected `selectedpos` [Point3D](VM.Models.Pre.Force.Point3D.md) -`ATranspos_ref_frame` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`ATranspos_ref_frame` double\[\] #### Returns - \([double](https://learn.microsoft.com/dotnet/api/system.double) [X](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.x), [double](https://learn.microsoft.com/dotnet/api/system.double) [Z](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.z)\) + \(double X, double Z\) ### GetShackeLength\(\(double X, double Z\), ShackleLocationType, Point2D, Point2D\) @@ -92,7 +93,7 @@ public static double GetShackeLength((double X, double Z) shacketoframepos, Shac #### Parameters -`shacketoframepos` \([double](https://learn.microsoft.com/dotnet/api/system.double) [X](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.x), [double](https://learn.microsoft.com/dotnet/api/system.double) [Z](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.z)\) +`shacketoframepos` \(double X, double Z\) `ShackleLocation` [ShackleLocationType](VM.Models.Pre.Force.ShackleLocationType.md) @@ -102,7 +103,7 @@ public static double GetShackeLength((double X, double Z) shacketoframepos, Shac #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### GetShackeToFramePosition\(\(double X, double Z\), \(double X, double Z\), Point2D, Point2D\) @@ -112,9 +113,9 @@ public static (double X, double Z) GetShackeToFramePosition((double X, double Z) #### Parameters -`localrfselectedeyepos` \([double](https://learn.microsoft.com/dotnet/api/system.double) [X](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.x), [double](https://learn.microsoft.com/dotnet/api/system.double) [Z](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.z)\) +`localrfselectedeyepos` \(double X, double Z\) -`localrfselectedshackletoframepos` \([double](https://learn.microsoft.com/dotnet/api/system.double) [X](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.x), [double](https://learn.microsoft.com/dotnet/api/system.double) [Z](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.z)\) +`localrfselectedshackletoframepos` \(double X, double Z\) `calculatedfronteyepos` [Point2D](VM.Models.Pre.Force.Point2D.md) @@ -122,7 +123,7 @@ public static (double X, double Z) GetShackeToFramePosition((double X, double Z) #### Returns - \([double](https://learn.microsoft.com/dotnet/api/system.double) [X](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.x), [double](https://learn.microsoft.com/dotnet/api/system.double) [Z](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.z)\) + \(double X, double Z\) ### GetWhereOfShackeToFramePosition\(double, double\) @@ -132,9 +133,9 @@ public static ShackleLocationType GetWhereOfShackeToFramePosition(double localrf #### Parameters -`localrfselectedeyeposX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`localrfselectedeyeposX` double -`localrfselectedshackletoframeposX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`localrfselectedshackletoframeposX` double #### Returns @@ -148,17 +149,17 @@ public static double[] GetshackleInertia(double mainleafwidth, double outerradiu #### Parameters -`mainleafwidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`mainleafwidth` double -`outerradius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`outerradius` double -`length` [double](https://learn.microsoft.com/dotnet/api/system.double) +`length` double -`mass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`mass` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### GetshackleMass\(double, double, double, double\) @@ -168,15 +169,15 @@ public static double GetshackleMass(double density, double mainleafwidth, double #### Parameters -`density` [double](https://learn.microsoft.com/dotnet/api/system.double) +`density` double -`mainleafwidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`mainleafwidth` double -`outerradius` [double](https://learn.microsoft.com/dotnet/api/system.double) +`outerradius` double -`length` [double](https://learn.microsoft.com/dotnet/api/system.double) +`length` double #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ShackleLocationType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ShackleLocationType.md index 9bee2be9c3..f8ef803a37 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ShackleLocationType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ShackleLocationType.md @@ -1,4 +1,5 @@ -# Enum ShackleLocationType +# Enum ShackleLocationType + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.LeafSpring.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ShackleMass.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ShackleMass.md index 11d3f6e1b0..a510f0f1d5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ShackleMass.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ShackleMass.md @@ -1,4 +1,5 @@ -# Class ShackleMass +# Class ShackleMass + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.dll @@ -11,9 +12,9 @@ public class ShackleMass : LinkContainer, IObservableObject, IDisposableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [ShackleMass](VM.Models.Pre.Force.ShackleMass.md) @@ -75,7 +76,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -116,7 +117,7 @@ public ExpressionValueVariable InertiaXX { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### InertiaYY @@ -128,7 +129,7 @@ public ExpressionValueVariable InertiaYY { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### InertiaZZ @@ -140,7 +141,7 @@ public ExpressionValueVariable InertiaZZ { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### Mass @@ -152,5 +153,5 @@ public ExpressionValueVariable Mass { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ShacklePositonType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ShacklePositonType.md index 2cf01c3a55..0269f598a3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ShacklePositonType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.ShacklePositonType.md @@ -1,4 +1,5 @@ -# Enum ShacklePositonType +# Enum ShacklePositonType + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.LeafSpring.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.TestBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.TestBase.md index 534e2ab928..76ac1eafeb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.TestBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.TestBase.md @@ -1,4 +1,5 @@ -# Class TestBase +# Class TestBase + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.dll @@ -11,9 +12,9 @@ public abstract class TestBase : LinkContainer, IObservableObject, IDisposableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [TestBase](VM.Models.Pre.Force.TestBase.md) @@ -80,7 +81,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -133,7 +134,7 @@ public ExpressionValueVariable NegativeDirectionValue { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PositiveDirectionValue @@ -145,7 +146,7 @@ public ExpressionValueVariable PositiveDirectionValue { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### SimulationTime @@ -157,7 +158,7 @@ public ExpressionValueVariable SimulationTime { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### TestResultDirectory @@ -169,5 +170,5 @@ public string TestResultDirectory { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.TorqueTest.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.TorqueTest.md index 58e46ce8f8..e8f1db2f83 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.TorqueTest.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.TorqueTest.md @@ -1,4 +1,5 @@ -# Class TorqueTest +# Class TorqueTest + Namespace: [VM.Models.Pre.Force](VM.Models.Pre.Force.md) Assembly: VM.Models.Pre.Force.dll @@ -11,9 +12,9 @@ public class TorqueTest : TestBase, IObservableObject, IDisposableObject, ILinka #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -LinkableBase ← +[LinkableBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs) ← LinkContainer ← [TestBase](VM.Models.Pre.Force.TestBase.md) ← [TorqueTest](VM.Models.Pre.Force.TorqueTest.md) @@ -81,7 +82,7 @@ LinkContainer.OnDestroy, LinkContainer.OnDestroying, LinkContainer.OnUpdate, LinkContainer.OnUpdating, -LinkableBase.OnDeserialization\(object\), +[LinkableBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/LinkableBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -122,7 +123,7 @@ public ExpressionValueVariable NegativeWindUp { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) ### PositiveWindUp @@ -134,5 +135,5 @@ public ExpressionValueVariable PositiveWindUp { get; set; } #### Property Value - ExpressionValueVariable + [ExpressionValueVariable](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre/Models/ExpressionValueVariable.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.md index 67334bbcb4..4d31982993 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Force.md @@ -1,4 +1,5 @@ -# Namespace VM.Models.Pre.Force +# Namespace VM.Models.Pre.Force + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.GreaterThanOrEqualToSomeValueAttribute.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.GreaterThanOrEqualToSomeValueAttribute.md index 29c6810108..2590f0d7b3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.GreaterThanOrEqualToSomeValueAttribute.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.GreaterThanOrEqualToSomeValueAttribute.md @@ -1,4 +1,5 @@ -# Class GreaterThanOrEqualToSomeValueAttribute +# Class GreaterThanOrEqualToSomeValueAttribute + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -14,17 +15,17 @@ public class GreaterThanOrEqualToSomeValueAttribute : ValidationAttribute #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Attribute](https://learn.microsoft.com/dotnet/api/system.attribute) ← -ValidationAttribute ← +object ← +Attribute ← +[ValidationAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs) ← [GreaterThanOrEqualToSomeValueAttribute](VM.Models.Pre.GreaterThanOrEqualToSomeValueAttribute.md) #### Inherited Members -ValidationAttribute.CheckValidationCore\(Attribute\[\], MethodBase, object\[\]\), -ValidationAttribute.ValidationCondition\(ValidationAttribute, string, object\), -ValidationAttribute.ExecuteException\(string\), -ValidationAttribute.Names +[ValidationAttribute.CheckValidationCore\(Attribute\[\], MethodBase, object\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs), +[ValidationAttribute.ValidationCondition\(ValidationAttribute, string, object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs), +[ValidationAttribute.ExecuteException\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs), +[ValidationAttribute.Names](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs) #### Extension Methods @@ -52,11 +53,11 @@ public GreaterThanOrEqualToSomeValueAttribute(string name, int someValue) #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The target name -`someValue` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`someValue` int The some value to based on. @@ -85,15 +86,15 @@ public void CheckValidation(MethodBase method, object[] argument, Attribute[] tr #### Parameters -`method` [MethodBase](https://learn.microsoft.com/dotnet/api/system.reflection.methodbase) +`method` MethodBase The method. -`argument` [object](https://learn.microsoft.com/dotnet/api/system.object)\[\] +`argument` object\[\] The argument. -`triggers` [Attribute](https://learn.microsoft.com/dotnet/api/system.attribute)\[\] +`triggers` Attribute\[\] The triggers @@ -107,7 +108,7 @@ protected override void ExecuteException(string name) #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The argument name. @@ -121,21 +122,21 @@ protected override bool ValidationCondition(ValidationAttribute attribute, strin #### Parameters -`attribute` ValidationAttribute +`attribute` [ValidationAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs) The attribute. -`paramName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`paramName` string The parameter name. -`argument` [object](https://learn.microsoft.com/dotnet/api/system.object) +`argument` object The argument. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool The flag for success. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.GreaterThanOrEqualToZeroAttribute.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.GreaterThanOrEqualToZeroAttribute.md index 963be8ed12..aaf3b58042 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.GreaterThanOrEqualToZeroAttribute.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.GreaterThanOrEqualToZeroAttribute.md @@ -1,4 +1,5 @@ -# Class GreaterThanOrEqualToZeroAttribute +# Class GreaterThanOrEqualToZeroAttribute + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -14,17 +15,17 @@ public class GreaterThanOrEqualToZeroAttribute : ValidationAttribute #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Attribute](https://learn.microsoft.com/dotnet/api/system.attribute) ← -ValidationAttribute ← +object ← +Attribute ← +[ValidationAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs) ← [GreaterThanOrEqualToZeroAttribute](VM.Models.Pre.GreaterThanOrEqualToZeroAttribute.md) #### Inherited Members -ValidationAttribute.CheckValidationCore\(Attribute\[\], MethodBase, object\[\]\), -ValidationAttribute.ValidationCondition\(ValidationAttribute, string, object\), -ValidationAttribute.ExecuteException\(string\), -ValidationAttribute.Names +[ValidationAttribute.CheckValidationCore\(Attribute\[\], MethodBase, object\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs), +[ValidationAttribute.ValidationCondition\(ValidationAttribute, string, object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs), +[ValidationAttribute.ExecuteException\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs), +[ValidationAttribute.Names](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs) #### Extension Methods @@ -52,7 +53,7 @@ public GreaterThanOrEqualToZeroAttribute(params string[] names) #### Parameters -`names` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`names` string\[\] The target names @@ -81,15 +82,15 @@ public void CheckValidation(MethodBase method, object[] argument, Attribute[] tr #### Parameters -`method` [MethodBase](https://learn.microsoft.com/dotnet/api/system.reflection.methodbase) +`method` MethodBase The method. -`argument` [object](https://learn.microsoft.com/dotnet/api/system.object)\[\] +`argument` object\[\] The argument. -`triggers` [Attribute](https://learn.microsoft.com/dotnet/api/system.attribute)\[\] +`triggers` Attribute\[\] The triggers @@ -103,7 +104,7 @@ protected override void ExecuteException(string name) #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The argument name. @@ -117,21 +118,21 @@ protected override bool ValidationCondition(ValidationAttribute attribute, strin #### Parameters -`attribute` ValidationAttribute +`attribute` [ValidationAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs) The attribute. -`paramName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`paramName` string The parameter name. -`argument` [object](https://learn.microsoft.com/dotnet/api/system.object) +`argument` object The argument. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool The flag for success. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.GreaterThanZeroAttribute.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.GreaterThanZeroAttribute.md index d97a39c30f..ee6f477ade 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.GreaterThanZeroAttribute.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.GreaterThanZeroAttribute.md @@ -1,4 +1,5 @@ -# Class GreaterThanZeroAttribute +# Class GreaterThanZeroAttribute + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -14,17 +15,17 @@ public class GreaterThanZeroAttribute : ValidationAttribute #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Attribute](https://learn.microsoft.com/dotnet/api/system.attribute) ← -ValidationAttribute ← +object ← +Attribute ← +[ValidationAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs) ← [GreaterThanZeroAttribute](VM.Models.Pre.GreaterThanZeroAttribute.md) #### Inherited Members -ValidationAttribute.CheckValidationCore\(Attribute\[\], MethodBase, object\[\]\), -ValidationAttribute.ValidationCondition\(ValidationAttribute, string, object\), -ValidationAttribute.ExecuteException\(string\), -ValidationAttribute.Names +[ValidationAttribute.CheckValidationCore\(Attribute\[\], MethodBase, object\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs), +[ValidationAttribute.ValidationCondition\(ValidationAttribute, string, object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs), +[ValidationAttribute.ExecuteException\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs), +[ValidationAttribute.Names](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs) #### Extension Methods @@ -52,7 +53,7 @@ public GreaterThanZeroAttribute(params string[] names) #### Parameters -`names` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`names` string\[\] The target names @@ -81,15 +82,15 @@ public void CheckValidation(MethodBase method, object[] argument, Attribute[] tr #### Parameters -`method` [MethodBase](https://learn.microsoft.com/dotnet/api/system.reflection.methodbase) +`method` MethodBase The method. -`argument` [object](https://learn.microsoft.com/dotnet/api/system.object)\[\] +`argument` object\[\] The argument. -`triggers` [Attribute](https://learn.microsoft.com/dotnet/api/system.attribute)\[\] +`triggers` Attribute\[\] The triggers @@ -103,7 +104,7 @@ protected override void ExecuteException(string name) #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The argument name. @@ -117,21 +118,21 @@ protected override bool ValidationCondition(ValidationAttribute attribute, strin #### Parameters -`attribute` ValidationAttribute +`attribute` [ValidationAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs) The attribute. -`paramName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`paramName` string The parameter name. -`argument` [object](https://learn.microsoft.com/dotnet/api/system.object) +`argument` object The argument. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool The flag for success. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.HardeningTypes.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.HardeningTypes.md index 27132aff8a..a7ca77fb0e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.HardeningTypes.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.HardeningTypes.md @@ -1,4 +1,5 @@ -# Enum HardeningTypes +# Enum HardeningTypes + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IAnalysisDrift.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IAnalysisDrift.md index 9ed6667601..c7699e91fe 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IAnalysisDrift.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IAnalysisDrift.md @@ -1,4 +1,5 @@ -# Interface IAnalysisDrift +# Interface IAnalysisDrift + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IArgument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IArgument.md index b4acca0f4f..f5e324bc73 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IArgument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IArgument.md @@ -1,4 +1,5 @@ -# Interface IArgument +# Interface IArgument + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -39,5 +40,5 @@ string ReferenceType { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ICanvas.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ICanvas.md index 5fe39ac887..1b670cf82c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ICanvas.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ICanvas.md @@ -1,4 +1,5 @@ -# Interface ICanvas +# Interface ICanvas + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -23,7 +24,7 @@ Color Color { set; } #### Property Value - [Color](https://learn.microsoft.com/dotnet/api/system.drawing.color) + Color ### LineWeight @@ -33,7 +34,7 @@ double LineWeight { set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### TextSize @@ -43,7 +44,7 @@ double TextSize { set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### WireframeMode @@ -53,7 +54,7 @@ bool WireframeMode { set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -77,7 +78,7 @@ void DisplayTheFront(double depthRange) #### Parameters -`depthRange` [double](https://learn.microsoft.com/dotnet/api/system.double) +`depthRange` double ### DrawLine\(Vector, Vector\) @@ -93,7 +94,7 @@ UIntPtr DrawLine(Vector start, Vector end) #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### DrawMarker\(Vector\) @@ -107,7 +108,7 @@ UIntPtr DrawMarker(Vector vector) #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### DrawText\(Vector, string\) @@ -119,11 +120,11 @@ UIntPtr DrawText(Vector vector, string text) `vector` Vector -`text` [string](https://learn.microsoft.com/dotnet/api/system.string) +`text` string #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### FastDrawLine\(UIntPtr, UIntPtr\) @@ -133,9 +134,9 @@ void FastDrawLine(UIntPtr start, UIntPtr end) #### Parameters -`start` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`start` UIntPtr -`end` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`end` UIntPtr ### FastDrawShell\(UIntPtr, ulong, UIntPtr, ulong, double\) @@ -145,15 +146,15 @@ void FastDrawShell(UIntPtr points, ulong nPoints, UIntPtr connectivities, ulong #### Parameters -`points` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`points` UIntPtr -`nPoints` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nPoints` ulong -`connectivities` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`connectivities` UIntPtr -`nConnectivities` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nConnectivities` ulong -`dScale` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dScale` double ### GetSubCanvas\(string\) @@ -163,7 +164,7 @@ ICanvas GetSubCanvas(string canvasName) #### Parameters -`canvasName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`canvasName` string #### Returns @@ -191,5 +192,5 @@ void SetMarkerSymbol(MarkerTypes markerType, double size) `markerType` MarkerTypes -`size` [double](https://learn.microsoft.com/dotnet/api/system.double) +`size` double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IContainer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IContainer.md index 247a74ed93..e79dbd7567 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IContainer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IContainer.md @@ -1,4 +1,5 @@ -# Interface IContainer +# Interface IContainer + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -33,7 +34,7 @@ IObjectBase Find(string name) #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The DAFUL object full name. @@ -53,7 +54,7 @@ IObjectBase FindLocal(string name) #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The DAFUL object name. @@ -73,13 +74,13 @@ string GetNewEntityName(string prefix) #### Parameters -`prefix` [string](https://learn.microsoft.com/dotnet/api/system.string) +`prefix` string The DAFUL object prefix name. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The DAFUL object name. @@ -93,21 +94,21 @@ string GetNewEntityName(string prefix, bool useUnderLine, int numFigure) #### Parameters -`prefix` [string](https://learn.microsoft.com/dotnet/api/system.string) +`prefix` string The DAFUL object prefix name. -`useUnderLine` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`useUnderLine` bool Whether use underline. -`numFigure` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`numFigure` int The Number of Figure. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The DAFUL object name. @@ -121,25 +122,25 @@ string GetNewEntityName(string prefix, bool useUnderLine, int numFigure, int sta #### Parameters -`prefix` [string](https://learn.microsoft.com/dotnet/api/system.string) +`prefix` string The DAFUL object prefix name. -`useUnderLine` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`useUnderLine` bool Whether use underline. -`numFigure` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`numFigure` int The Number of Figure. -`startIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`startIndex` int The start index. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The DAFUL object name. @@ -153,13 +154,13 @@ string GetUnnamedObjectName(object @object) #### Parameters -`object` [object](https://learn.microsoft.com/dotnet/api/system.object) +`object` object The unnamed object. #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The unnamed object name. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDesignFrame.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDesignFrame.md index cefddb6dcb..24ae1ae724 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDesignFrame.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDesignFrame.md @@ -1,4 +1,5 @@ -# Interface IDesignFrame +# Interface IDesignFrame + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDesignParameter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDesignParameter.md index 796ec7f021..293192560a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDesignParameter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDesignParameter.md @@ -1,4 +1,5 @@ -# Interface IDesignParameter +# Interface IDesignParameter + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -27,7 +28,7 @@ string GetFullName() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string

    Full Name

    diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDesignPoint.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDesignPoint.md index cf510fe6bf..d0954b58a5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDesignPoint.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDesignPoint.md @@ -1,4 +1,5 @@ -# Interface IDesignPoint +# Interface IDesignPoint + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -40,5 +41,5 @@ bool IsDesignParam { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDesignSubEntity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDesignSubEntity.md index ce35c40061..99cb29df65 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDesignSubEntity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDesignSubEntity.md @@ -1,4 +1,5 @@ -# Interface IDesignSubEntity +# Interface IDesignSubEntity + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDesignVariable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDesignVariable.md index 77bf012fa7..57fc6ba82f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDesignVariable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDesignVariable.md @@ -1,4 +1,5 @@ -# Interface IDesignVariable +# Interface IDesignVariable + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -40,7 +41,7 @@ bool IsDesignParam { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Variable diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDirectionThreePoints.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDirectionThreePoints.md index aa74b1bfbb..cc14e94af0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDirectionThreePoints.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDirectionThreePoints.md @@ -1,4 +1,5 @@ -# Interface IDirectionThreePoints +# Interface IDirectionThreePoints + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDirectionTwoPoints.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDirectionTwoPoints.md index f0836235bb..db8992d0d2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDirectionTwoPoints.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDirectionTwoPoints.md @@ -1,4 +1,5 @@ -# Interface IDirectionTwoPoints +# Interface IDirectionTwoPoints + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDocument.md index faed2b8f39..4ee7918191 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDocument.md @@ -1,4 +1,5 @@ -# Interface IDocument +# Interface IDocument + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -35,7 +36,7 @@ bool DoingClose { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DoingOpen @@ -45,7 +46,7 @@ bool DoingOpen { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### FilePath @@ -55,7 +56,7 @@ string FilePath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### InitialConvertFactor @@ -75,7 +76,7 @@ bool Modified { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -85,7 +86,7 @@ string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -97,9 +98,9 @@ void DisplayModeShape(int modeSequence, double scale) #### Parameters -`modeSequence` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`modeSequence` int -`scale` [double](https://learn.microsoft.com/dotnet/api/system.double) +`scale` double ### FastToConvertUnitLength\(bool\) @@ -109,11 +110,11 @@ double FastToConvertUnitLength(bool reverse) #### Parameters -`reverse` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`reverse` bool #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### FindObjectFromID\(Identifier\) @@ -139,7 +140,7 @@ IObject FindObjectFromKey(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr The key. @@ -157,7 +158,7 @@ IEnumerable GetChildren() #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IObject](VM.Models.Pre.IObject.md)\> + IEnumerable<[IObject](VM.Models.Pre.IObject.md)\> ### GetCopyOfKernelUnit\(\) @@ -197,7 +198,7 @@ void Save(string path) #### Parameters -`path` [string](https://learn.microsoft.com/dotnet/api/system.string) +`path` string ### ChildAdded @@ -209,7 +210,7 @@ event EventHandler ChildAdded #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1) + EventHandler ### ChildRemoved @@ -221,7 +222,7 @@ event EventHandler ChildRemoved #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1) + EventHandler ### ChildReplaced @@ -233,7 +234,7 @@ event EventHandler ChildReplaced #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1) + EventHandler ### ChildReplacing @@ -245,7 +246,7 @@ event EventHandler ChildReplacing #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1) + EventHandler ### Destroying @@ -257,7 +258,7 @@ event EventHandler Destroying #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler) + EventHandler ### SelectionChanged @@ -267,5 +268,5 @@ event EventHandler> SelectionChanged #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)\> + EventHandler\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDocument3D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDocument3D.md index bd1cde24ad..1327b7155a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDocument3D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDocument3D.md @@ -1,4 +1,5 @@ -# Interface IDocument3D +# Interface IDocument3D + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -36,7 +37,7 @@ IEnumerable Categories { get; } #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + IEnumerable ### Comment @@ -46,7 +47,7 @@ string Comment { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IconSize @@ -56,7 +57,7 @@ double IconSize { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -68,11 +69,11 @@ string FindCategory(string typeName) #### Parameters -`typeName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`typeName` string #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetCategoryChildren\(string\) @@ -82,9 +83,9 @@ IEnumerable GetCategoryChildren(string categoryName) #### Parameters -`categoryName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`categoryName` string #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IObjectBase](VM.Models.Pre.IObjectBase.md)\> + IEnumerable<[IObjectBase](VM.Models.Pre.IObjectBase.md)\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDocumentAnalysis.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDocumentAnalysis.md index ce701a7039..c11ea5bcd0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDocumentAnalysis.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDocumentAnalysis.md @@ -1,4 +1,5 @@ -# Interface IDocumentAnalysis +# Interface IDocumentAnalysis + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDocumentExtensions.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDocumentExtensions.md index 0c423db0a9..7c67942276 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDocumentExtensions.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDocumentExtensions.md @@ -1,4 +1,5 @@ -# Class IDocumentExtensions +# Class IDocumentExtensions + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -9,7 +10,7 @@ public static class IDocumentExtensions #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [IDocumentExtensions](VM.Models.Pre.IDocumentExtensions.md) #### Extension Methods @@ -30,9 +31,9 @@ public static bool IsExistNameInDocument(this IDocument document, string name) `document` [IDocument](VM.Models.Pre.IDocument.md) -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDocumentOwner.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDocumentOwner.md index c189d6e1b4..116fd16caf 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDocumentOwner.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDocumentOwner.md @@ -1,4 +1,5 @@ -# Interface IDocumentOwner +# Interface IDocumentOwner + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -27,7 +28,7 @@ void GetOwnedDocuments(LinkedList documents) #### Parameters -`documents` [LinkedList](https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlist\-1)<[IDocument](VM.Models.Pre.IDocument.md)\> +`documents` LinkedList<[IDocument](VM.Models.Pre.IDocument.md)\> The owned document container. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDriftConfiguration.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDriftConfiguration.md index 07ab9306a8..e4feaa3d58 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDriftConfiguration.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDriftConfiguration.md @@ -1,4 +1,5 @@ -# Interface IDriftConfiguration +# Interface IDriftConfiguration + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDuplicate.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDuplicate.md index 7599bd874f..8324350f99 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDuplicate.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IDuplicate.md @@ -1,4 +1,5 @@ -# Interface IDuplicate +# Interface IDuplicate + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IEntity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IEntity.md index 46477174ca..c3178ebaf7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IEntity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IEntity.md @@ -1,4 +1,5 @@ -# Interface IEntity +# Interface IEntity + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IEntityBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IEntityBase.md index 6291ed2ee1..5cd44eb752 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IEntityBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IEntityBase.md @@ -1,4 +1,5 @@ -# Interface IEntityBase +# Interface IEntityBase + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IEventProvider.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IEventProvider.md index 696ad36a58..ed2b2a8aa5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IEventProvider.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IEventProvider.md @@ -1,4 +1,5 @@ -# Interface IEventProvider +# Interface IEventProvider + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -27,7 +28,7 @@ bool IsChildExternable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsExternable @@ -39,7 +40,7 @@ bool IsExternable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -53,7 +54,7 @@ List GetTargetListForUpdate() #### Returns - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[IEventProvider](VM.Models.Pre.IEventProvider.md)\> + List<[IEventProvider](VM.Models.Pre.IEventProvider.md)\> ### IsSerializable\(Delegate\) @@ -65,13 +66,13 @@ bool IsSerializable(Delegate del) #### Parameters -`del` [Delegate](https://learn.microsoft.com/dotnet/api/system.delegate) +`del` Delegate The delegate. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SkipUpdateObject\(\) @@ -83,5 +84,5 @@ bool SkipUpdateObject() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IExpressionParser-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IExpressionParser-1.md index 67dea9daec..c95a1678f1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IExpressionParser-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IExpressionParser-1.md @@ -1,4 +1,5 @@ -# Interface IExpressionParser +# Interface IExpressionParser + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -27,7 +28,7 @@ T Parse(string expression) #### Parameters -`expression` [string](https://learn.microsoft.com/dotnet/api/system.string) +`expression` string #### Returns diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IExpressionValue-1.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IExpressionValue-1.md index 7000db5f99..959ff4f12e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IExpressionValue-1.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IExpressionValue-1.md @@ -1,4 +1,5 @@ -# Interface IExpressionValue +# Interface IExpressionValue + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -27,7 +28,7 @@ string Expression { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Value diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IExpressionValue.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IExpressionValue.md index a2b8711b30..796b65729e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IExpressionValue.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IExpressionValue.md @@ -1,4 +1,5 @@ -# Interface IExpressionValue +# Interface IExpressionValue + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -23,7 +24,7 @@ string Expression { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Value @@ -33,5 +34,5 @@ object Value { get; } #### Property Value - [object](https://learn.microsoft.com/dotnet/api/system.object) + object diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IFEFilm.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IFEFilm.md index 82f5a910f8..8df257f476 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IFEFilm.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IFEFilm.md @@ -1,4 +1,5 @@ -# Interface IFEFilm +# Interface IFEFilm + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -107,7 +108,7 @@ int NumberOfElement { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfElementsLateral @@ -117,7 +118,7 @@ int NumberOfElementsLateral { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfEndRevolution @@ -127,7 +128,7 @@ int NumberOfEndRevolution { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfNode @@ -137,7 +138,7 @@ int NumberOfNode { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NumberOfStartRevolution @@ -147,7 +148,7 @@ int NumberOfStartRevolution { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### RotationAxis @@ -157,7 +158,7 @@ string RotationAxis { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### StartAngle @@ -197,7 +198,7 @@ bool UseNumberOfEndRevolution { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseNumberOfStartRevolution @@ -207,7 +208,7 @@ bool UseNumberOfStartRevolution { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseTabShape @@ -217,7 +218,7 @@ bool UseTabShape { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Width diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IFEFilm_ElementProperty.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IFEFilm_ElementProperty.md index 7ea439cc02..03eeeafa88 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IFEFilm_ElementProperty.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IFEFilm_ElementProperty.md @@ -1,4 +1,5 @@ -# Interface IFEFilm\_ElementProperty +# Interface IFEFilm\_ElementProperty + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IFEFilm_Paths.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IFEFilm_Paths.md index b099cb8307..7493ddb89c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IFEFilm_Paths.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IFEFilm_Paths.md @@ -1,4 +1,5 @@ -# Interface IFEFilm\_Paths +# Interface IFEFilm\_Paths + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IFEFilm_TabshapeHexagon.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IFEFilm_TabshapeHexagon.md index b33b667b15..83fc402ea1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IFEFilm_TabshapeHexagon.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IFEFilm_TabshapeHexagon.md @@ -1,4 +1,5 @@ -# Interface IFEFilm\_TabshapeHexagon +# Interface IFEFilm\_TabshapeHexagon + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -103,7 +104,7 @@ int NoOfElements { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NoOfElementsPerPole @@ -113,7 +114,7 @@ int NoOfElementsPerPole { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NoOfElementsPerPole\_Bottom @@ -123,7 +124,7 @@ int NoOfElementsPerPole_Bottom { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NoOfNodes @@ -133,7 +134,7 @@ int NoOfNodes { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NoOfNodesPerPole @@ -143,7 +144,7 @@ int NoOfNodesPerPole { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### NoOfNodesPerPole\_Bottom @@ -153,7 +154,7 @@ int NoOfNodesPerPole_Bottom { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### StartOffset diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IFacetOptions.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IFacetOptions.md index ae9cf96141..3a363ecd16 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IFacetOptions.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IFacetOptions.md @@ -1,4 +1,5 @@ -# Interface IFacetOptions +# Interface IFacetOptions + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -23,7 +24,7 @@ bool ApproximatedEvaluation { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DrawGlobalBody @@ -33,7 +34,7 @@ bool DrawGlobalBody { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### FacetAspectRatio @@ -53,7 +54,7 @@ bool GridToEdge { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MaximumFacetSize @@ -103,7 +104,7 @@ bool RepairPatch { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SurfaceAngularTolerance @@ -133,7 +134,7 @@ bool UseDefaultValues { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseFacetAspectRatio @@ -143,7 +144,7 @@ bool UseFacetAspectRatio { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseLegacyFacetAlgorithm @@ -153,7 +154,7 @@ bool UseLegacyFacetAlgorithm { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseMaximumFacetSize @@ -163,7 +164,7 @@ bool UseMaximumFacetSize { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseMaximumGridLine @@ -173,7 +174,7 @@ bool UseMaximumGridLine { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseMinimumUGridLine @@ -183,7 +184,7 @@ bool UseMinimumUGridLine { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseMinimumVGridLine @@ -193,7 +194,7 @@ bool UseMinimumVGridLine { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseSurfaceAngularTolerance @@ -203,7 +204,7 @@ bool UseSurfaceAngularTolerance { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseSurfaceTolerance @@ -213,5 +214,5 @@ bool UseSurfaceTolerance { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IFlip.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IFlip.md index 1efdfd2f77..f8ce4717fa 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IFlip.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IFlip.md @@ -1,4 +1,5 @@ -# Interface IFlip +# Interface IFlip + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -27,7 +28,7 @@ bool CanSwitch { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IGearTrainDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IGearTrainDocument.md index 4a0c878ffe..c0f6ff019d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IGearTrainDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IGearTrainDocument.md @@ -1,4 +1,5 @@ -# Interface IGearTrainDocument +# Interface IGearTrainDocument + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -43,7 +44,7 @@ string VehicleSimulationDataSet { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### VehicleSimulatorProcessId @@ -55,5 +56,5 @@ int VehicleSimulatorProcessId { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IGeometry.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IGeometry.md index c13c93f942..daaf347d83 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IGeometry.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IGeometry.md @@ -1,4 +1,5 @@ -# Interface IGeometry +# Interface IGeometry + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -23,5 +24,5 @@ string NameAttribute { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IGeometryBuilder.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IGeometryBuilder.md index 549b281a99..d6eb2a5280 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IGeometryBuilder.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IGeometryBuilder.md @@ -1,4 +1,5 @@ -# Interface IGeometryBuilder +# Interface IGeometryBuilder + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IHandledDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IHandledDocument.md index 0561cb244c..7b6d72467c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IHandledDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IHandledDocument.md @@ -1,4 +1,5 @@ -# Interface IHandledDocument +# Interface IHandledDocument + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -34,5 +35,5 @@ UIntPtr Handle { get; } #### Property Value - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IHasGeometry.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IHasGeometry.md index 8876e5b1dc..38ba709611 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IHasGeometry.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IHasGeometry.md @@ -1,4 +1,5 @@ -# Interface IHasGeometry +# Interface IHasGeometry + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -23,5 +24,5 @@ ICollection Geometries { get; } #### Property Value - [ICollection](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection\-1)<[IGeometry](VM.Models.Pre.IGeometry.md)\> + ICollection<[IGeometry](VM.Models.Pre.IGeometry.md)\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IHasGuid.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IHasGuid.md index c30be113bd..3a5f82364c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IHasGuid.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IHasGuid.md @@ -1,4 +1,5 @@ -# Interface IHasGuid +# Interface IHasGuid + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -23,5 +24,5 @@ Guid Guid { get; } #### Property Value - [Guid](https://learn.microsoft.com/dotnet/api/system.guid) + Guid diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IHasInitialVel.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IHasInitialVel.md index 1da4da21da..b32190a9c6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IHasInitialVel.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IHasInitialVel.md @@ -1,4 +1,5 @@ -# Interface IHasInitialVel +# Interface IHasInitialVel + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -27,7 +28,7 @@ double InitialVelocity { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -41,7 +42,7 @@ double GetConvertedInitialVelocity() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double The initial velocity converted to unit. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IHasKeyObject.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IHasKeyObject.md index 0151bfddc8..ff6562b716 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IHasKeyObject.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IHasKeyObject.md @@ -1,4 +1,5 @@ -# Interface IHasKeyObject +# Interface IHasKeyObject + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -23,5 +24,5 @@ UIntPtr Key { get; } #### Property Value - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IHasLengthUnitType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IHasLengthUnitType.md index 7c6f1e01d6..e8e98086f9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IHasLengthUnitType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IHasLengthUnitType.md @@ -1,4 +1,5 @@ -# Interface IHasLengthUnitType +# Interface IHasLengthUnitType + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IHasReplaceableEntity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IHasReplaceableEntity.md index 6bc880fae7..66cbc6c31d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IHasReplaceableEntity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IHasReplaceableEntity.md @@ -1,4 +1,5 @@ -# Interface IHasReplaceableEntity +# Interface IHasReplaceableEntity + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -33,7 +34,7 @@ The old object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool if this instance has replacable entity, the result is true. @@ -57,7 +58,7 @@ The new object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool if success, the result is true. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IHasVerifyLevel.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IHasVerifyLevel.md index a3a71b3293..8cd8e7b350 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IHasVerifyLevel.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IHasVerifyLevel.md @@ -1,4 +1,5 @@ -# Interface IHasVerifyLevel +# Interface IHasVerifyLevel + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -23,5 +24,5 @@ int VerifyLevel { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IIdentifierManager.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IIdentifierManager.md index 029b50c6c5..b483a8ef52 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IIdentifierManager.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IIdentifierManager.md @@ -1,4 +1,5 @@ -# Interface IIdentifierManager +# Interface IIdentifierManager + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IInitialize.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IInitialize.md index 7597fc8c86..ad75ce716a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IInitialize.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IInitialize.md @@ -1,4 +1,5 @@ -# Interface IInitialize +# Interface IInitialize + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ILinkAttribute.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ILinkAttribute.md index 9662835f4e..3a5da6b1d3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ILinkAttribute.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ILinkAttribute.md @@ -1,4 +1,5 @@ -# Interface ILinkAttribute +# Interface ILinkAttribute + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -27,5 +28,5 @@ bool? IsChild { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean)? + bool? diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ILinkContainer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ILinkContainer.md index 4218bf8f71..9cb7387668 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ILinkContainer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ILinkContainer.md @@ -1,4 +1,5 @@ -# Interface ILinkContainer +# Interface ILinkContainer + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -32,7 +33,7 @@ bool ClearChildInfoBeforeDeserialize { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -62,7 +63,7 @@ void GetChilds(HashSet lstObjs) #### Parameters -`lstObjs` [HashSet](https://learn.microsoft.com/dotnet/api/system.collections.generic.hashset\-1)<[ILinkContainer](VM.Models.Pre.ILinkContainer.md)\> +`lstObjs` HashSet<[ILinkContainer](VM.Models.Pre.ILinkContainer.md)\> The object list. @@ -76,7 +77,7 @@ IEnumerable GetFirstDesignEntities() #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IObject](VM.Models.Pre.IObject.md)\> + IEnumerable<[IObject](VM.Models.Pre.IObject.md)\> The collection of IObject> @@ -90,15 +91,15 @@ void OnReserved(object reserved, object objNotifier, EventArgs args) #### Parameters -`reserved` [object](https://learn.microsoft.com/dotnet/api/system.object) +`reserved` object The reserved object. -`objNotifier` [object](https://learn.microsoft.com/dotnet/api/system.object) +`objNotifier` object The notifier object. -`args` [EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) +`args` EventArgs The event argument. @@ -136,7 +137,7 @@ bool SkipModifiedEvent() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool True if succeeded, otherwise false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ILinkDestroyOwner.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ILinkDestroyOwner.md index c744fb7eb3..51cdfd8515 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ILinkDestroyOwner.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ILinkDestroyOwner.md @@ -1,4 +1,5 @@ -# Interface ILinkDestroyOwner +# Interface ILinkDestroyOwner + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -23,7 +24,7 @@ bool IsCacheEmpty { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -35,5 +36,5 @@ void Initialize(object owner) #### Parameters -`owner` [object](https://learn.microsoft.com/dotnet/api/system.object) +`owner` object diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ILinkOwner.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ILinkOwner.md index b7d99830db..da07fb75af 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ILinkOwner.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ILinkOwner.md @@ -1,4 +1,5 @@ -# Interface ILinkOwner +# Interface ILinkOwner + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -23,7 +24,7 @@ bool IsCacheEmpty { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -35,5 +36,5 @@ void Initialize(object owner) #### Parameters -`owner` [object](https://learn.microsoft.com/dotnet/api/system.object) +`owner` object diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ILinkOwnerDestroyOwner.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ILinkOwnerDestroyOwner.md index 3c17553f09..181d1ef07e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ILinkOwnerDestroyOwner.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ILinkOwnerDestroyOwner.md @@ -1,4 +1,5 @@ -# Interface ILinkOwnerDestroyOwner +# Interface ILinkOwnerDestroyOwner + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -23,7 +24,7 @@ bool IsCacheEmpty { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -35,5 +36,5 @@ void Initialize(object owner) #### Parameters -`owner` [object](https://learn.microsoft.com/dotnet/api/system.object) +`owner` object diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ILinkUpdateOwner.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ILinkUpdateOwner.md index 7cbec6dcc8..2fbe9aab8a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ILinkUpdateOwner.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ILinkUpdateOwner.md @@ -1,4 +1,5 @@ -# Interface ILinkUpdateOwner +# Interface ILinkUpdateOwner + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -23,7 +24,7 @@ IEnumerable CacheItems { get; } #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.ienumerable) + IEnumerable ### IsCacheEmpty @@ -33,7 +34,7 @@ bool IsCacheEmpty { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -45,5 +46,5 @@ void Initialize(object owner) #### Parameters -`owner` [object](https://learn.microsoft.com/dotnet/api/system.object) +`owner` object diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ILinkable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ILinkable.md index 0b0197b20b..c12606f0eb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ILinkable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ILinkable.md @@ -1,4 +1,5 @@ -# Interface ILinkable +# Interface ILinkable + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -23,7 +24,7 @@ IObservable WhenNotifyDestroyed { get; } #### Property Value - [IObservable](https://learn.microsoft.com/dotnet/api/system.iobservable\-1)<[object](https://learn.microsoft.com/dotnet/api/system.object)\> + IObservable ### WhenRequestReplace @@ -33,7 +34,7 @@ IObservable WhenRequestReplace { get; } #### Property Value - [IObservable](https://learn.microsoft.com/dotnet/api/system.iobservable\-1)<[object](https://learn.microsoft.com/dotnet/api/system.object)\> + IObservable ## Methods @@ -45,7 +46,7 @@ void Destroyed(object caller) #### Parameters -`caller` [object](https://learn.microsoft.com/dotnet/api/system.object) +`caller` object ### Initialize\(\) @@ -61,5 +62,5 @@ void RequestReplace(object newValue) #### Parameters -`newValue` [object](https://learn.microsoft.com/dotnet/api/system.object) +`newValue` object diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IMassProperty.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IMassProperty.md index 8da5574162..98adae9281 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IMassProperty.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IMassProperty.md @@ -1,4 +1,5 @@ -# Interface IMassProperty +# Interface IMassProperty + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -25,7 +26,7 @@ void GetMassProperty(ref double mass, Vector centerPosition, OMatrix matrix, dou #### Parameters -`mass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`mass` double The mass. @@ -37,11 +38,11 @@ The center position. The orientation. -`tensor` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`tensor` double\[\] The tensor. -`global` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`global` bool Global. @@ -55,7 +56,7 @@ void SetMassProperty(double mass, Vector centerPosition, OMatrix matrix, double[ #### Parameters -`mass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`mass` double The mass. @@ -67,11 +68,11 @@ The center position. The orientation. -`tensor` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`tensor` double\[\] The tensor. -`global` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`global` bool Global. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IMesh.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IMesh.md index f83c7b9dc6..709ba54bc9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IMesh.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IMesh.md @@ -1,4 +1,5 @@ -# Interface IMesh +# Interface IMesh + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.INodalBody.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.INodalBody.md index ec726f864a..19401cf8a1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.INodalBody.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.INodalBody.md @@ -1,4 +1,5 @@ -# Interface INodalBody +# Interface INodalBody + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -51,7 +52,7 @@ The updated position. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool The success flag @@ -77,13 +78,13 @@ The reference The matrix -`scale` [double](https://learn.microsoft.com/dotnet/api/system.double) +`scale` double The scale #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool The success flag diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IObject.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IObject.md index 75dfba5555..2d9580a460 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IObject.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IObject.md @@ -1,4 +1,5 @@ -# Interface IObject +# Interface IObject + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IObjectBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IObjectBase.md index ad852af630..19d7fbee13 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IObjectBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IObjectBase.md @@ -1,4 +1,5 @@ -# Interface IObjectBase +# Interface IObjectBase + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -52,5 +53,5 @@ event EventHandler Destroying #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1) + EventHandler diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IOrientationBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IOrientationBase.md index c6b0b76681..01b688a869 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IOrientationBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IOrientationBase.md @@ -1,4 +1,5 @@ -# Interface IOrientationBase +# Interface IOrientationBase + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -41,7 +42,7 @@ double[] RotationAngles { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### RotationAxis diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IOrientationEulerAngle.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IOrientationEulerAngle.md index 1c5b328a7c..f0d820cd62 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IOrientationEulerAngle.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IOrientationEulerAngle.md @@ -1,4 +1,5 @@ -# Interface IOrientationEulerAngle +# Interface IOrientationEulerAngle + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IOrientationFixedAngle.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IOrientationFixedAngle.md index f555edd813..def8d6f04c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IOrientationFixedAngle.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IOrientationFixedAngle.md @@ -1,4 +1,5 @@ -# Interface IOrientationFixedAngle +# Interface IOrientationFixedAngle + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IOrientationMatrix.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IOrientationMatrix.md index f0f73ae9ce..3f0258a4b8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IOrientationMatrix.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IOrientationMatrix.md @@ -1,4 +1,5 @@ -# Interface IOrientationMatrix +# Interface IOrientationMatrix + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IOrientationOneDirection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IOrientationOneDirection.md index bb48112b4b..7f1e5efa81 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IOrientationOneDirection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IOrientationOneDirection.md @@ -1,4 +1,5 @@ -# Interface IOrientationOneDirection +# Interface IOrientationOneDirection + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IOrientationThreePoints.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IOrientationThreePoints.md index 7b6842e4da..f9b4ed27ec 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IOrientationThreePoints.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IOrientationThreePoints.md @@ -1,4 +1,5 @@ -# Interface IOrientationThreePoints +# Interface IOrientationThreePoints + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IOrientationTwoDirections.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IOrientationTwoDirections.md index 04ed4f08b5..b44e57fec7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IOrientationTwoDirections.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IOrientationTwoDirections.md @@ -1,4 +1,5 @@ -# Interface IOrientationTwoDirections +# Interface IOrientationTwoDirections + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IOwned.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IOwned.md index 0d0172ce60..16a0c62b31 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IOwned.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IOwned.md @@ -1,4 +1,5 @@ -# Interface IOwned +# Interface IOwned + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -67,7 +68,7 @@ void SetContainer(IOwned owner, bool backup, bool isFromLinkAttribute = false) `owner` [IOwned](VM.Models.Pre.IOwned.md) -`backup` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`backup` bool -`isFromLinkAttribute` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isFromLinkAttribute` bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IPointBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IPointBase.md index e0c104febe..9864b7118a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IPointBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IPointBase.md @@ -1,10 +1,11 @@ -# Interface IPointBase +# Interface IPointBase + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll

    This interface is to represent the get position information of Design Point and Design Frame. - Design point and Design frame are casting as IPoint.

    +Design point and Design frame are casting as IPoint.

    ```csharp public interface IPointBase : IObject, ILinkContainer, IOwned, IHasID, IEventProvider @@ -48,7 +49,7 @@ double X { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y @@ -60,7 +61,7 @@ double Y { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Z @@ -72,5 +73,5 @@ double Z { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IPointNPointsCenter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IPointNPointsCenter.md index cb6348faf0..0b5a222786 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IPointNPointsCenter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IPointNPointsCenter.md @@ -1,4 +1,5 @@ -# Interface IPointNPointsCenter +# Interface IPointNPointsCenter + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IPointRated.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IPointRated.md index 6f165fc60e..134ff07a68 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IPointRated.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IPointRated.md @@ -1,4 +1,5 @@ -# Interface IPointRated +# Interface IPointRated + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IPointThreePointsCircleCenter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IPointThreePointsCircleCenter.md index 5bb39d47fb..bd29ab3936 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IPointThreePointsCircleCenter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IPointThreePointsCircleCenter.md @@ -1,4 +1,5 @@ -# Interface IPointThreePointsCircleCenter +# Interface IPointThreePointsCircleCenter + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IPostUpdateContents.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IPostUpdateContents.md index 477749ee6c..311d97cc44 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IPostUpdateContents.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IPostUpdateContents.md @@ -1,4 +1,5 @@ -# Interface IPostUpdateContents +# Interface IPostUpdateContents + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IPythonCode.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IPythonCode.md index 6b35ee0e46..13b1382e5e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IPythonCode.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IPythonCode.md @@ -1,4 +1,5 @@ -# Interface IPythonCode +# Interface IPythonCode + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -42,7 +43,7 @@ string CodePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### CodeType @@ -66,7 +67,7 @@ string DeployLocation { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ImportCommand @@ -79,7 +80,7 @@ string ImportCommand { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ImportModuleName @@ -91,7 +92,7 @@ string ImportModuleName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UseDeployLocation @@ -103,7 +104,7 @@ bool UseDeployLocation { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UseImportCommand @@ -115,7 +116,7 @@ bool UseImportCommand { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -129,7 +130,7 @@ string GetImportCommand() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string The import command. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IPythonFunctionIntellisenseService.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IPythonFunctionIntellisenseService.md index 678d63bb1d..980ab1b356 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IPythonFunctionIntellisenseService.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IPythonFunctionIntellisenseService.md @@ -1,4 +1,5 @@ -# Interface IPythonFunctionIntellisenseService +# Interface IPythonFunctionIntellisenseService + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IReferedTopologyset.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IReferedTopologyset.md index 37ca716c18..08f406fbfd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IReferedTopologyset.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IReferedTopologyset.md @@ -1,4 +1,5 @@ -# Interface IReferedTopologyset +# Interface IReferedTopologyset + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IReferenceGeometry.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IReferenceGeometry.md index a7146701bf..6f0a1410f9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IReferenceGeometry.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IReferenceGeometry.md @@ -1,4 +1,5 @@ -# Interface IReferenceGeometry +# Interface IReferenceGeometry + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IReplaceObject.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IReplaceObject.md index 89dcb51715..f0868c1592 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IReplaceObject.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IReplaceObject.md @@ -1,4 +1,5 @@ -# Interface IReplaceObject +# Interface IReplaceObject + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -27,5 +28,5 @@ bool ReplaceObject(IDocument document) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IRequestEntity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IRequestEntity.md index 96e557895a..7fa4b17d20 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IRequestEntity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IRequestEntity.md @@ -1,4 +1,5 @@ -# Interface IRequestEntity +# Interface IRequestEntity + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -35,5 +36,5 @@ bool WriteToOutFile { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IReservable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IReservable.md index 568fdd1647..a3f28035f2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IReservable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IReservable.md @@ -1,4 +1,5 @@ -# Interface IReservable +# Interface IReservable + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -27,13 +28,13 @@ object CreateReservedObject(object extra) #### Parameters -`extra` [object](https://learn.microsoft.com/dotnet/api/system.object) +`extra` object The extra data to create reserved object. #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object The reserved object. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IReserved.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IReserved.md index 64dae2c169..9a2ab5dbe2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IReserved.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IReserved.md @@ -1,4 +1,5 @@ -# Interface IReserved +# Interface IReserved + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ISpline.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ISpline.md index 9e8c490872..0665c716b7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ISpline.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ISpline.md @@ -1,4 +1,5 @@ -# Interface ISpline +# Interface ISpline + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ISpline3D.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ISpline3D.md index 0d777492da..d876d8bd3e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ISpline3D.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ISpline3D.md @@ -1,4 +1,5 @@ -# Interface ISpline3D +# Interface ISpline3D + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -40,7 +41,7 @@ IList Points { get; } #### Property Value - [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + IList ### XScale @@ -50,7 +51,7 @@ IExpressionValue XScale { get; set; } #### Property Value - [IExpressionValue](VM.Models.Pre.IExpressionValue\-1.md)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> + [IExpressionValue](VM.Models.Pre.IExpressionValue\-1.md) ### YScale @@ -60,7 +61,7 @@ IExpressionValue YScale { get; set; } #### Property Value - [IExpressionValue](VM.Models.Pre.IExpressionValue\-1.md)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> + [IExpressionValue](VM.Models.Pre.IExpressionValue\-1.md) ### ZScale @@ -70,5 +71,5 @@ IExpressionValue ZScale { get; set; } #### Property Value - [IExpressionValue](VM.Models.Pre.IExpressionValue\-1.md)<[double](https://learn.microsoft.com/dotnet/api/system.double)\> + [IExpressionValue](VM.Models.Pre.IExpressionValue\-1.md) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ISubEntity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ISubEntity.md index d9b86847fd..aee61699fc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ISubEntity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ISubEntity.md @@ -1,4 +1,5 @@ -# Interface ISubEntity +# Interface ISubEntity + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ISubSystemDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ISubSystemDocument.md index ea9b34a909..a76e400e73 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ISubSystemDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ISubSystemDocument.md @@ -1,4 +1,5 @@ -# Interface ISubSystemDocument +# Interface ISubSystemDocument + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ITargetRefresh.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ITargetRefresh.md index 3398079c1b..738a3c2ece 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ITargetRefresh.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ITargetRefresh.md @@ -1,4 +1,5 @@ -# Interface ITargetRefresh +# Interface ITargetRefresh + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -21,5 +22,5 @@ event EventHandler OnRefresh #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs)\> + EventHandler diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ITransformBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ITransformBase.md index 9b54962ce4..3bb7f7dd6f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ITransformBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ITransformBase.md @@ -1,4 +1,5 @@ -# Interface ITransformBase +# Interface ITransformBase + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -61,7 +62,7 @@ double[] RotationAngles { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### RotationAxis diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ITransformMatrix.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ITransformMatrix.md index f9adbdd824..4551466594 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ITransformMatrix.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ITransformMatrix.md @@ -1,4 +1,5 @@ -# Interface ITransformMatrix +# Interface ITransformMatrix + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ITransformPointAndOrientation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ITransformPointAndOrientation.md index 67ddd3235a..9e33ef9492 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ITransformPointAndOrientation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ITransformPointAndOrientation.md @@ -1,4 +1,5 @@ -# Interface ITransformPointAndOrientation +# Interface ITransformPointAndOrientation + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ITransformThreePoints.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ITransformThreePoints.md index 16eaf07063..a184f8b7a7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ITransformThreePoints.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ITransformThreePoints.md @@ -1,4 +1,5 @@ -# Interface ITransformThreePoints +# Interface ITransformThreePoints + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ITransformable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ITransformable.md index 1a77866aec..eec54b3571 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ITransformable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ITransformable.md @@ -1,4 +1,5 @@ -# Interface ITransformable +# Interface ITransformable + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IUnitChangable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IUnitChangable.md index 202c151bf0..64f94b4be2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IUnitChangable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IUnitChangable.md @@ -1,4 +1,5 @@ -# Interface IUnitChangable +# Interface IUnitChangable + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IUpdateDocumentAddOn.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IUpdateDocumentAddOn.md index 7c7036a960..74410aff51 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IUpdateDocumentAddOn.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IUpdateDocumentAddOn.md @@ -1,4 +1,5 @@ -# Interface IUpdateDocumentAddOn +# Interface IUpdateDocumentAddOn + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IVariable.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IVariable.md index f38fc362a4..99abdc6e19 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IVariable.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IVariable.md @@ -1,10 +1,11 @@ -# Interface IVariable +# Interface IVariable + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll

    This interface is to represent the data of Design Variable. - Design Variable is casting as IVariable.

    +Design Variable is casting as IVariable.

    ```csharp public interface IVariable : IObject, ILinkContainer, IOwned, IHasID, IEventProvider @@ -36,7 +37,7 @@ bool IsSimpleValue { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Value @@ -48,5 +49,5 @@ double Value { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IdentifierManager.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IdentifierManager.md index b68f553cea..9031d7c586 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IdentifierManager.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.IdentifierManager.md @@ -1,4 +1,5 @@ -# Class IdentifierManager +# Class IdentifierManager + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -9,7 +10,7 @@ public class IdentifierManager : IIdentifierManager #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [IdentifierManager](VM.Models.Pre.IdentifierManager.md) #### Implements @@ -38,9 +39,9 @@ public IdentifierManager(SerializationInfo info, StreamingContext context) #### Parameters -`info` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`info` SerializationInfo -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext ## Properties diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LengthUnitType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LengthUnitType.md index 32740e4808..e6a5a8dcb8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LengthUnitType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LengthUnitType.md @@ -1,4 +1,5 @@ -# Enum LengthUnitType +# Enum LengthUnitType + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LessThanOrEqualToSomeValueAttribute.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LessThanOrEqualToSomeValueAttribute.md index f4d06403e0..137944849d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LessThanOrEqualToSomeValueAttribute.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LessThanOrEqualToSomeValueAttribute.md @@ -1,4 +1,5 @@ -# Class LessThanOrEqualToSomeValueAttribute +# Class LessThanOrEqualToSomeValueAttribute + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -12,17 +13,17 @@ public class LessThanOrEqualToSomeValueAttribute : ValidationAttribute #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Attribute](https://learn.microsoft.com/dotnet/api/system.attribute) ← -ValidationAttribute ← +object ← +Attribute ← +[ValidationAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs) ← [LessThanOrEqualToSomeValueAttribute](VM.Models.Pre.LessThanOrEqualToSomeValueAttribute.md) #### Inherited Members -ValidationAttribute.CheckValidationCore\(Attribute\[\], MethodBase, object\[\]\), -ValidationAttribute.ValidationCondition\(ValidationAttribute, string, object\), -ValidationAttribute.ExecuteException\(string\), -ValidationAttribute.Names +[ValidationAttribute.CheckValidationCore\(Attribute\[\], MethodBase, object\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs), +[ValidationAttribute.ValidationCondition\(ValidationAttribute, string, object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs), +[ValidationAttribute.ExecuteException\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs), +[ValidationAttribute.Names](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs) #### Extension Methods @@ -50,11 +51,11 @@ public LessThanOrEqualToSomeValueAttribute(string name, int someValue) #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The target name -`someValue` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`someValue` int The some value to based on. @@ -83,15 +84,15 @@ public void CheckValidation(MethodBase method, object[] argument, Attribute[] tr #### Parameters -`method` [MethodBase](https://learn.microsoft.com/dotnet/api/system.reflection.methodbase) +`method` MethodBase The method. -`argument` [object](https://learn.microsoft.com/dotnet/api/system.object)\[\] +`argument` object\[\] The argument. -`triggers` [Attribute](https://learn.microsoft.com/dotnet/api/system.attribute)\[\] +`triggers` Attribute\[\] The triggers @@ -105,7 +106,7 @@ protected override void ExecuteException(string name) #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The argument name. @@ -119,21 +120,21 @@ protected override bool ValidationCondition(ValidationAttribute attribute, strin #### Parameters -`attribute` ValidationAttribute +`attribute` [ValidationAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs) The attribute. -`paramName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`paramName` string The parameter name. -`argument` [object](https://learn.microsoft.com/dotnet/api/system.object) +`argument` object The argument. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool The flag for success. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LessThanSomeValueAttribute.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LessThanSomeValueAttribute.md index dfad479271..f780778fb1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LessThanSomeValueAttribute.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LessThanSomeValueAttribute.md @@ -1,4 +1,5 @@ -# Class LessThanSomeValueAttribute +# Class LessThanSomeValueAttribute + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -12,17 +13,17 @@ public class LessThanSomeValueAttribute : ValidationAttribute #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Attribute](https://learn.microsoft.com/dotnet/api/system.attribute) ← -ValidationAttribute ← +object ← +Attribute ← +[ValidationAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs) ← [LessThanSomeValueAttribute](VM.Models.Pre.LessThanSomeValueAttribute.md) #### Inherited Members -ValidationAttribute.CheckValidationCore\(Attribute\[\], MethodBase, object\[\]\), -ValidationAttribute.ValidationCondition\(ValidationAttribute, string, object\), -ValidationAttribute.ExecuteException\(string\), -ValidationAttribute.Names +[ValidationAttribute.CheckValidationCore\(Attribute\[\], MethodBase, object\[\]\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs), +[ValidationAttribute.ValidationCondition\(ValidationAttribute, string, object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs), +[ValidationAttribute.ExecuteException\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs), +[ValidationAttribute.Names](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs) #### Extension Methods @@ -50,11 +51,11 @@ public LessThanSomeValueAttribute(string name, int someValue) #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The target name -`someValue` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`someValue` int The some value to based on. @@ -83,15 +84,15 @@ public void CheckValidation(MethodBase method, object[] argument, Attribute[] tr #### Parameters -`method` [MethodBase](https://learn.microsoft.com/dotnet/api/system.reflection.methodbase) +`method` MethodBase The method. -`argument` [object](https://learn.microsoft.com/dotnet/api/system.object)\[\] +`argument` object\[\] The argument. -`triggers` [Attribute](https://learn.microsoft.com/dotnet/api/system.attribute)\[\] +`triggers` Attribute\[\] The triggers @@ -105,7 +106,7 @@ protected override void ExecuteException(string name) #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string The argument name. @@ -119,21 +120,21 @@ protected override bool ValidationCondition(ValidationAttribute attribute, strin #### Parameters -`attribute` ValidationAttribute +`attribute` [ValidationAttribute](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models/Models/Attributes/ValidationAttribute.cs) The attribute. -`paramName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`paramName` string The parameter name. -`argument` [object](https://learn.microsoft.com/dotnet/api/system.object) +`argument` object The argument. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool The flag for success. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkAttribute.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkAttribute.md index 53b49dc00b..bb6ad95a3e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkAttribute.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkAttribute.md @@ -1,4 +1,5 @@ -# Class LinkAttribute +# Class LinkAttribute + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.Aspects.dll @@ -13,8 +14,8 @@ public class LinkAttribute : LinkBaseAttribute, ILinkOwner, ILinkAttribute #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Attribute](https://learn.microsoft.com/dotnet/api/system.attribute) ← +object ← +Attribute ← [LinkBaseAttribute](VM.Models.Pre.LinkBaseAttribute.md) ← [LinkAttribute](VM.Models.Pre.LinkAttribute.md) @@ -56,7 +57,7 @@ public LinkAttribute(bool isChild = false) #### Parameters -`isChild` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isChild` bool ## Fields @@ -82,7 +83,7 @@ public bool? IsChild { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean)? + bool? ## Methods @@ -95,15 +96,15 @@ public virtual void AfterSetter(object owner, Type declaringType, string propert #### Parameters -`owner` [object](https://learn.microsoft.com/dotnet/api/system.object) +`owner` object -`declaringType` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`declaringType` Type -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string -`values` [object](https://learn.microsoft.com/dotnet/api/system.object)\[\] +`values` object\[\] -`triggers` [Attribute](https://learn.microsoft.com/dotnet/api/system.attribute)\[\] +`triggers` Attribute\[\] ### BeforeSetter\(object, Type, string, Attribute\[\]\) @@ -114,13 +115,13 @@ public virtual void BeforeSetter(object owner, Type declaringType, string proper #### Parameters -`owner` [object](https://learn.microsoft.com/dotnet/api/system.object) +`owner` object -`declaringType` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`declaringType` Type -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string -`triggers` [Attribute](https://learn.microsoft.com/dotnet/api/system.attribute)\[\] +`triggers` Attribute\[\] ### InitializeProperty\(object, IEnumerable\) @@ -130,7 +131,7 @@ protected override void InitializeProperty(object owner, IEnumerable +`propertyInfos` IEnumerable diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkBaseAttribute.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkBaseAttribute.md index 206a67aa24..bd9b593c64 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkBaseAttribute.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkBaseAttribute.md @@ -1,4 +1,5 @@ -# Class LinkBaseAttribute +# Class LinkBaseAttribute + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.Aspects.dll @@ -9,8 +10,8 @@ public abstract class LinkBaseAttribute : Attribute #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Attribute](https://learn.microsoft.com/dotnet/api/system.attribute) ← +object ← +Attribute ← [LinkBaseAttribute](VM.Models.Pre.LinkBaseAttribute.md) #### Derived @@ -42,7 +43,7 @@ public IEnumerable CacheItems { get; } #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.ienumerable) + IEnumerable ### IsCacheEmpty @@ -52,7 +53,7 @@ public bool IsCacheEmpty { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -64,9 +65,9 @@ protected void AddCache(string propertyName, IDisposable subscriber) #### Parameters -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string -`subscriber` [IDisposable](https://learn.microsoft.com/dotnet/api/system.idisposable) +`subscriber` IDisposable ### Dispose\(\) @@ -88,7 +89,7 @@ public void Initialize(object owner) #### Parameters -`owner` [object](https://learn.microsoft.com/dotnet/api/system.object) +`owner` object ### InitializeProperty\(object, IEnumerable\) @@ -98,9 +99,9 @@ protected abstract void InitializeProperty(object owner, IEnumerable +`propertyInfos` IEnumerable ### Unsubscribe\(string\) @@ -110,5 +111,5 @@ protected void Unsubscribe(string propertyName) #### Parameters -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkBehaviorArgument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkBehaviorArgument.md index 638bf56723..15d0995b76 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkBehaviorArgument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkBehaviorArgument.md @@ -1,4 +1,5 @@ -# Class LinkBehaviorArgument +# Class LinkBehaviorArgument + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -10,8 +11,8 @@ public class LinkBehaviorArgument : Attribute #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Attribute](https://learn.microsoft.com/dotnet/api/system.attribute) ← +object ← +Attribute ← [LinkBehaviorArgument](VM.Models.Pre.LinkBehaviorArgument.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkBehaviorSource.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkBehaviorSource.md index 0f3a5775c8..1ec3d82424 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkBehaviorSource.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkBehaviorSource.md @@ -1,4 +1,5 @@ -# Enum LinkBehaviorSource +# Enum LinkBehaviorSource + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkBehaviorType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkBehaviorType.md index 8c339fb1ec..f6721b3c17 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkBehaviorType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkBehaviorType.md @@ -1,4 +1,5 @@ -# Enum LinkBehaviorType +# Enum LinkBehaviorType + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkDestroyAttribute.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkDestroyAttribute.md index 80c5dd5efe..2713a7c1b6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkDestroyAttribute.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkDestroyAttribute.md @@ -1,4 +1,5 @@ -# Class LinkDestroyAttribute +# Class LinkDestroyAttribute + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.Aspects.dll @@ -13,8 +14,8 @@ public class LinkDestroyAttribute : LinkUpdateAttribute, ILinkUpdateOwner, ILink #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Attribute](https://learn.microsoft.com/dotnet/api/system.attribute) ← +object ← +Attribute ← [LinkBaseAttribute](VM.Models.Pre.LinkBaseAttribute.md) ← [LinkUpdateAttribute](VM.Models.Pre.LinkUpdateAttribute.md) ← [LinkDestroyAttribute](VM.Models.Pre.LinkDestroyAttribute.md) @@ -77,7 +78,7 @@ public LinkDestroyAttribute(Type behaviorType) #### Parameters -`behaviorType` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`behaviorType` Type ### LinkDestroyAttribute\(LinkBehaviorType, params string\[\]\) @@ -89,7 +90,7 @@ public LinkDestroyAttribute(LinkBehaviorType linkBehaviorType, params string[] b `linkBehaviorType` LinkBehaviorType -`behaviorNames` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`behaviorNames` string\[\] ## Fields @@ -113,7 +114,7 @@ protected override string AfterEventName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### BeforeEventName @@ -123,7 +124,7 @@ protected override string BeforeEventName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -136,13 +137,13 @@ public override void AfterSetter(object owner, string propertyName, object[] val #### Parameters -`owner` [object](https://learn.microsoft.com/dotnet/api/system.object) +`owner` object -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string -`values` [object](https://learn.microsoft.com/dotnet/api/system.object)\[\] +`values` object\[\] -`triggers` [Attribute](https://learn.microsoft.com/dotnet/api/system.attribute)\[\] +`triggers` Attribute\[\] ### BeforeSetter\(string\) @@ -153,7 +154,7 @@ public override void BeforeSetter(string propertyName) #### Parameters -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string ### GetDefaultAfterBehavior\(object, EventPattern\) @@ -163,13 +164,13 @@ protected override Action GetDefaultAfterBehavior(object source, EventPattern
  • #### Returns - [Action](https://learn.microsoft.com/dotnet/api/system.action) + Action ### GetDefaultBeforeBehavior\(object, EventPattern\) @@ -179,13 +180,13 @@ protected override Action GetDefaultBeforeBehavior(object source, EventPattern #### Returns - [Action](https://learn.microsoft.com/dotnet/api/system.action) + Action ### InitializeProperty\(object, IEnumerable\) @@ -195,7 +196,7 @@ protected override void InitializeProperty(object owner, IEnumerable +`propertyInfos` IEnumerable diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkOwnerDestroyAttribute.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkOwnerDestroyAttribute.md index f21b83a1bc..f690c41804 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkOwnerDestroyAttribute.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkOwnerDestroyAttribute.md @@ -1,4 +1,5 @@ -# Class LinkOwnerDestroyAttribute +# Class LinkOwnerDestroyAttribute + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.Aspects.dll @@ -13,8 +14,8 @@ public class LinkOwnerDestroyAttribute : LinkDestroyAttribute, ILinkUpdateOwner, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Attribute](https://learn.microsoft.com/dotnet/api/system.attribute) ← +object ← +Attribute ← [LinkBaseAttribute](VM.Models.Pre.LinkBaseAttribute.md) ← [LinkUpdateAttribute](VM.Models.Pre.LinkUpdateAttribute.md) ← [LinkDestroyAttribute](VM.Models.Pre.LinkDestroyAttribute.md) ← @@ -83,7 +84,7 @@ public LinkOwnerDestroyAttribute(Type behaviorType) #### Parameters -`behaviorType` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`behaviorType` Type ### LinkOwnerDestroyAttribute\(LinkBehaviorType, params string\[\]\) @@ -95,7 +96,7 @@ public LinkOwnerDestroyAttribute(LinkBehaviorType linkBehaviorType, params strin `linkBehaviorType` LinkBehaviorType -`behaviorNames` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`behaviorNames` string\[\] ## Fields @@ -120,13 +121,13 @@ public override void AfterSetter(object owner, string propertyName, object[] val #### Parameters -`owner` [object](https://learn.microsoft.com/dotnet/api/system.object) +`owner` object -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string -`values` [object](https://learn.microsoft.com/dotnet/api/system.object)\[\] +`values` object\[\] -`triggers` [Attribute](https://learn.microsoft.com/dotnet/api/system.attribute)\[\] +`triggers` Attribute\[\] ### BeforeSetter\(string\) @@ -137,7 +138,7 @@ public override void BeforeSetter(string propertyName) #### Parameters -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string ### InitializeProperty\(object, IEnumerable\) @@ -147,7 +148,7 @@ protected override void InitializeProperty(object owner, IEnumerable +`propertyInfos` IEnumerable diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkPropertyType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkPropertyType.md index f468c82030..0bf6225804 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkPropertyType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkPropertyType.md @@ -1,4 +1,5 @@ -# Enum LinkPropertyType +# Enum LinkPropertyType + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkUpdateAttribute.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkUpdateAttribute.md index 56f3acf64f..f7b7c72484 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkUpdateAttribute.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkUpdateAttribute.md @@ -1,4 +1,5 @@ -# Class LinkUpdateAttribute +# Class LinkUpdateAttribute + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.Aspects.dll @@ -13,8 +14,8 @@ public class LinkUpdateAttribute : LinkBaseAttribute, ILinkUpdateOwner #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Attribute](https://learn.microsoft.com/dotnet/api/system.attribute) ← +object ← +Attribute ← [LinkBaseAttribute](VM.Models.Pre.LinkBaseAttribute.md) ← [LinkUpdateAttribute](VM.Models.Pre.LinkUpdateAttribute.md) @@ -59,7 +60,7 @@ public LinkUpdateAttribute(Type behaviorType) #### Parameters -`behaviorType` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`behaviorType` Type ### LinkUpdateAttribute\(LinkBehaviorType, params string\[\]\) @@ -71,7 +72,7 @@ public LinkUpdateAttribute(LinkBehaviorType linkBehaviorType, params string[] be `linkBehaviorType` LinkBehaviorType -`behaviorNames` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`behaviorNames` string\[\] ## Fields @@ -95,7 +96,7 @@ protected virtual string AfterEventName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### BeforeEventName @@ -105,7 +106,7 @@ protected virtual string BeforeEventName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TypeId @@ -115,7 +116,7 @@ public override object TypeId { get; } #### Property Value - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ## Methods @@ -128,13 +129,13 @@ public virtual void AfterSetter(object owner, string propertyName, object[] valu #### Parameters -`owner` [object](https://learn.microsoft.com/dotnet/api/system.object) +`owner` object -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string -`values` [object](https://learn.microsoft.com/dotnet/api/system.object)\[\] +`values` object\[\] -`triggers` [Attribute](https://learn.microsoft.com/dotnet/api/system.attribute)\[\] +`triggers` Attribute\[\] ### BeforeSetter\(string\) @@ -145,7 +146,7 @@ public virtual void BeforeSetter(string propertyName) #### Parameters -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string ### GetAfterBehavior\(object, string, object, EventPattern, TAttribute, bool\) @@ -155,21 +156,21 @@ protected Action GetAfterBehavior(object owner, string propertyName, #### Parameters -`owner` [object](https://learn.microsoft.com/dotnet/api/system.object) +`owner` object -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string -`link` [object](https://learn.microsoft.com/dotnet/api/system.object) +`link` object `eventPattern` EventPattern `attribute` TAttribute -`isSwap` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isSwap` bool #### Returns - [Action](https://learn.microsoft.com/dotnet/api/system.action) + Action #### Type Parameters @@ -183,19 +184,19 @@ protected IDisposable GetAfterSubscriber(object owner, string proper #### Parameters -`owner` [object](https://learn.microsoft.com/dotnet/api/system.object) +`owner` object -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string -`link` [object](https://learn.microsoft.com/dotnet/api/system.object) +`link` object `linkAttribute` TAttribute -`isSwap` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isSwap` bool #### Returns - [IDisposable](https://learn.microsoft.com/dotnet/api/system.idisposable) + IDisposable #### Type Parameters @@ -209,21 +210,21 @@ protected Action GetBeforeBehavior(object owner, string propertyName #### Parameters -`owner` [object](https://learn.microsoft.com/dotnet/api/system.object) +`owner` object -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string -`link` [object](https://learn.microsoft.com/dotnet/api/system.object) +`link` object `eventPattern` EventPattern `attribute` TAttribute -`isSwap` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isSwap` bool #### Returns - [Action](https://learn.microsoft.com/dotnet/api/system.action) + Action #### Type Parameters @@ -237,19 +238,19 @@ protected IDisposable GetBeforeSubscriber(object owner, string prope #### Parameters -`owner` [object](https://learn.microsoft.com/dotnet/api/system.object) +`owner` object -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string -`link` [object](https://learn.microsoft.com/dotnet/api/system.object) +`link` object `linkAttribute` TAttribute -`isSwap` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isSwap` bool #### Returns - [IDisposable](https://learn.microsoft.com/dotnet/api/system.idisposable) + IDisposable #### Type Parameters @@ -263,21 +264,21 @@ protected static Action GetBehavior(object caller, object owner, str #### Parameters -`caller` [object](https://learn.microsoft.com/dotnet/api/system.object) +`caller` object -`owner` [object](https://learn.microsoft.com/dotnet/api/system.object) +`owner` object -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string -`link` [object](https://learn.microsoft.com/dotnet/api/system.object) +`link` object `attribute` TAttribute -`isSwap` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isSwap` bool #### Returns - [Action](https://learn.microsoft.com/dotnet/api/system.action) + Action #### Type Parameters @@ -291,13 +292,13 @@ protected virtual Action GetDefaultAfterBehavior(object source, EventPattern #### Returns - [Action](https://learn.microsoft.com/dotnet/api/system.action) + Action ### GetDefaultBeforeBehavior\(object, EventPattern\) @@ -307,13 +308,13 @@ protected virtual Action GetDefaultBeforeBehavior(object source, EventPattern
  • #### Returns - [Action](https://learn.microsoft.com/dotnet/api/system.action) + Action ### InitializeProperty\(object, IEnumerable\) @@ -323,9 +324,9 @@ protected override void InitializeProperty(object owner, IEnumerable +`propertyInfos` IEnumerable ### InitializeProperty\(object, IEnumerable, bool\) @@ -335,11 +336,11 @@ protected void InitializeProperty(object owner, IEnumerable +`propertyInfos` IEnumerable -`isSwap` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isSwap` bool #### Type Parameters @@ -353,15 +354,15 @@ protected void Subscribe(object owner, string propertyName, object l #### Parameters -`owner` [object](https://learn.microsoft.com/dotnet/api/system.object) +`owner` object -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string -`link` [object](https://learn.microsoft.com/dotnet/api/system.object) +`link` object -`attributes` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Attribute](https://learn.microsoft.com/dotnet/api/system.attribute)\> +`attributes` IEnumerable -`isSwap` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isSwap` bool #### Type Parameters diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkableBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkableBase.md index 09601aab0e..70f230c7ad 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkableBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.LinkableBase.md @@ -1,4 +1,5 @@ -# Class LinkableBase +# Class LinkableBase + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -9,7 +10,7 @@ public abstract class LinkableBase : ObservableObject, IObservableObject, IDispo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← [LinkableBase](VM.Models.Pre.LinkableBase.md) @@ -57,5 +58,5 @@ protected virtual void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.MainTypes.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.MainTypes.md index cd65b93130..1ed95ff0d9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.MainTypes.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.MainTypes.md @@ -1,4 +1,5 @@ -# Enum MainTypes +# Enum MainTypes + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ObjectCache.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ObjectCache.md index a85fdd635c..de46f9f6cb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ObjectCache.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ObjectCache.md @@ -1,4 +1,5 @@ -# Class ObjectCache +# Class ObjectCache + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -9,7 +10,7 @@ public static class ObjectCache #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ObjectCache](VM.Models.Pre.ObjectCache.md) #### Extension Methods @@ -28,9 +29,9 @@ public static void Add(UIntPtr key, object value) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr -`value` [object](https://learn.microsoft.com/dotnet/api/system.object) +`value` object ### Contains\(UIntPtr\) @@ -40,11 +41,11 @@ public static bool Contains(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetValue\(UIntPtr\) @@ -54,11 +55,11 @@ public static object GetValue(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### Remove\(UIntPtr\) @@ -68,7 +69,7 @@ public static void Remove(UIntPtr key) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr ### TryGetValue\(UIntPtr, out object\) @@ -78,13 +79,13 @@ public static bool TryGetValue(UIntPtr key, out object value) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr -`value` [object](https://learn.microsoft.com/dotnet/api/system.object) +`value` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TryGetValue\(UIntPtr, out T\) @@ -94,13 +95,13 @@ public static bool TryGetValue(UIntPtr key, out T value) #### Parameters -`key` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`key` UIntPtr `value` T #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool #### Type Parameters diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ObjectStatus.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ObjectStatus.md index 0550ddaaff..8f8f0d33ca 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ObjectStatus.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ObjectStatus.md @@ -1,4 +1,5 @@ -# Class ObjectStatus +# Class ObjectStatus + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -9,7 +10,7 @@ public static class ObjectStatus #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ObjectStatus](VM.Models.Pre.ObjectStatus.md) #### Extension Methods @@ -28,7 +29,7 @@ public static bool IsBuildingObject { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsBuildingObjectForCircularError @@ -38,5 +39,5 @@ public static bool IsBuildingObjectForCircularError { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.PythonFunctionIntellisenseService.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.PythonFunctionIntellisenseService.md index 4977e0c4c4..a81413e2d2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.PythonFunctionIntellisenseService.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.PythonFunctionIntellisenseService.md @@ -1,4 +1,5 @@ -# Class PythonFunctionIntellisenseService +# Class PythonFunctionIntellisenseService + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -11,7 +12,7 @@ public static class PythonFunctionIntellisenseService #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PythonFunctionIntellisenseService](VM.Models.Pre.PythonFunctionIntellisenseService.md) #### Extension Methods @@ -32,7 +33,7 @@ public static EventHandler OnUpdatePythonModule #### Field Value - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler) + EventHandler ## Methods @@ -50,13 +51,13 @@ public static IEnumerable GetImportStrings(IDocument document, bool incl The of user defined python modules. -`includeAddToPathCommand` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`includeAddToPathCommand` bool if true, include command to add path of module directory. #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> + IEnumerable The header strings. @@ -76,7 +77,7 @@ The Register\(IDocument\) @@ -110,7 +111,7 @@ the Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -9,7 +10,7 @@ public class QueryTransform #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [QueryTransform](VM.Models.Pre.QueryTransform.md) #### Extension Methods @@ -38,7 +39,7 @@ public int Count { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### SingleParams @@ -48,7 +49,7 @@ public List SingleParams { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ITransformable](VM.Models.Pre.ITransformable.md)\> + List<[ITransformable](VM.Models.Pre.ITransformable.md)\> ### Singles @@ -58,7 +59,7 @@ public List Singles { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ITransformable](VM.Models.Pre.ITransformable.md)\> + List<[ITransformable](VM.Models.Pre.ITransformable.md)\> ### SymmetricParams @@ -68,7 +69,7 @@ public List SymmetricParams { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ITransformable](VM.Models.Pre.ITransformable.md)\> + List<[ITransformable](VM.Models.Pre.ITransformable.md)\> ### Symmetrics @@ -78,7 +79,7 @@ public List Symmetrics { get; set; } #### Property Value - [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ITransformable](VM.Models.Pre.ITransformable.md)\> + List<[ITransformable](VM.Models.Pre.ITransformable.md)\> ## Methods @@ -92,7 +93,7 @@ public void AddData(List transformables, ITransformable transfor #### Parameters -`transformables` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ITransformable](VM.Models.Pre.ITransformable.md)\> +`transformables` List<[ITransformable](VM.Models.Pre.ITransformable.md)\> The transformable object container. @@ -110,7 +111,7 @@ public void GetDataNoParam(List transformables) #### Parameters -`transformables` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ITransformable](VM.Models.Pre.ITransformable.md)\> +`transformables` List<[ITransformable](VM.Models.Pre.ITransformable.md)\> The transformable object container. @@ -124,7 +125,7 @@ public void GetDataParamSingle(List transformables) #### Parameters -`transformables` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ITransformable](VM.Models.Pre.ITransformable.md)\> +`transformables` List<[ITransformable](VM.Models.Pre.ITransformable.md)\> The transformable object container. @@ -138,7 +139,7 @@ public void GetDataParamSym(List transformables) #### Parameters -`transformables` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[ITransformable](VM.Models.Pre.ITransformable.md)\> +`transformables` List<[ITransformable](VM.Models.Pre.ITransformable.md)\> The transformable object container. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ReserveAttribute.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ReserveAttribute.md index 2e42185da1..b6c6942b63 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ReserveAttribute.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.ReserveAttribute.md @@ -1,4 +1,5 @@ -# Class ReserveAttribute +# Class ReserveAttribute + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -10,8 +11,8 @@ public sealed class ReserveAttribute : Attribute #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Attribute](https://learn.microsoft.com/dotnet/api/system.attribute) ← +object ← +Attribute ← [ReserveAttribute](VM.Models.Pre.ReserveAttribute.md) #### Extension Methods @@ -38,9 +39,9 @@ public static IEnumerable FindReservableFieldInfos(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[FieldInfo](https://learn.microsoft.com/dotnet/api/system.reflection.fieldinfo)\> + IEnumerable diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.SInOutUnitNameConverter.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.SInOutUnitNameConverter.md index 8c4a9738c0..9155e87e3d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.SInOutUnitNameConverter.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.SInOutUnitNameConverter.md @@ -1,4 +1,5 @@ -# Class SInOutUnitNameConverter +# Class SInOutUnitNameConverter + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -9,7 +10,7 @@ public static class SInOutUnitNameConverter #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SInOutUnitNameConverter](VM.Models.Pre.SInOutUnitNameConverter.md) #### Extension Methods @@ -28,7 +29,7 @@ public static UnitName ControlToSInOutUnitName(string sInOutUnitName, IDocument #### Parameters -`sInOutUnitName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`sInOutUnitName` string `document` [IDocument](VM.Models.Pre.IDocument.md) @@ -46,11 +47,11 @@ public static string GetSInOutTypeName(UnitName sInOutUnitName, string strCausal `sInOutUnitName` [UnitName](VM.Models.Pre.UnitName.md) -`strCausality` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCausality` string #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetSInOutUnitName\(UnitName, IDocument\) @@ -66,7 +67,7 @@ public static string GetSInOutUnitName(UnitName sInOutUnitName, IDocument docume #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### GetSInOutUnitNames\(IDocument, string\) @@ -78,11 +79,11 @@ public static object GetSInOutUnitNames(IDocument document, string type) `document` [IDocument](VM.Models.Pre.IDocument.md) -`type` [string](https://learn.microsoft.com/dotnet/api/system.string) +`type` string #### Returns - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### GetUnitType\(UnitName\) @@ -100,13 +101,13 @@ unit type #### Returns - [uint](https://learn.microsoft.com/dotnet/api/system.uint32) + uint The number #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException ### SInOutUnitNameToControl\(string, IDocument\) @@ -116,11 +117,11 @@ public static string SInOutUnitNameToControl(string sInOutUnitName, IDocument do #### Parameters -`sInOutUnitName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`sInOutUnitName` string `document` [IDocument](VM.Models.Pre.IDocument.md) #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.SubEntityPrefix.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.SubEntityPrefix.md index b0b4d6bdff..a9f0c67835 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.SubEntityPrefix.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.SubEntityPrefix.md @@ -1,4 +1,5 @@ -# Class SubEntityPrefix +# Class SubEntityPrefix + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll @@ -9,7 +10,7 @@ public static class SubEntityPrefix #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SubEntityPrefix](VM.Models.Pre.SubEntityPrefix.md) #### Extension Methods @@ -28,7 +29,7 @@ public const string Array = "AR" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### DesignFrame @@ -38,7 +39,7 @@ public const string DesignFrame = "DF" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### DesignVariable @@ -48,7 +49,7 @@ public const string DesignVariable = "DV" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### DesingPoint @@ -58,7 +59,7 @@ public const string DesingPoint = "DP" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Differential1 @@ -68,7 +69,7 @@ public const string Differential1 = "FOD" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Differential2 @@ -78,7 +79,7 @@ public const string Differential2 = "SOD" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Function @@ -88,7 +89,7 @@ public const string Function = "FN" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Group @@ -98,7 +99,7 @@ public const string Group = "GROUP" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Material @@ -108,7 +109,7 @@ public const string Material = "MAT" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SInput @@ -118,7 +119,7 @@ public const string SInput = "SIn" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SOutput @@ -128,7 +129,7 @@ public const string SOutput = "SOut" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SimulationScenario @@ -138,7 +139,7 @@ public const string SimulationScenario = "SC" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Spline @@ -148,7 +149,7 @@ public const string Spline = "SPL" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### StringValue @@ -158,7 +159,7 @@ public const string StringValue = "STRING" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### UserSubroutine @@ -168,7 +169,7 @@ public const string UserSubroutine = "USUB" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### VariableEq @@ -178,5 +179,5 @@ public const string VariableEq = "VE" #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.SubTypes.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.SubTypes.md index b64fa802e1..9bc73b81b8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.SubTypes.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.SubTypes.md @@ -1,4 +1,5 @@ -# Enum SubTypes +# Enum SubTypes + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Symmetric.Connections.General.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Symmetric.Connections.General.md index c77d612c24..391ffa3be2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Symmetric.Connections.General.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Symmetric.Connections.General.md @@ -1,4 +1,5 @@ -# Class General +# Class General + Namespace: [VM.Models.Pre.Symmetric.Connections](VM.Models.Pre.Symmetric.Connections.md) Assembly: VM.Models.Pre.Symmetric.Connections.dll @@ -9,10 +10,10 @@ public class General : Constraint, ISymmetricUpdater #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -Named ← -Connector ← -Constraint ← +object ← +[Named](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) ← +[Connector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs) ← +[Constraint](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymCB/Constraint.cs) ← [General](VM.Models.Pre.Symmetric.Connections.General.md) #### Implements @@ -21,12 +22,12 @@ ISymmetricUpdater #### Inherited Members -Constraint.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\), -Named.Initialize\(ISymmetricManager\), -Named.FindObject\(string, SymmetricType, Plane, Document\), -Named.SymmetricManager +[Constraint.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymCB/Constraint.cs), +[Connector.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Connector.cs), +[Named.Update\(ObjectBase, ObjectBase, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.Initialize\(ISymmetricManager\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.FindObject\(string, SymmetricType, Plane, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs), +[Named.SymmetricManager](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Symmetric/VMSymBase/Named.cs) #### Extension Methods @@ -74,7 +75,7 @@ Plane of symmetric. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if success; otherwise, false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Symmetric.Connections.SixMotion.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Symmetric.Connections.SixMotion.md index 06f7de6f62..41f924f5a3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Symmetric.Connections.SixMotion.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Symmetric.Connections.SixMotion.md @@ -1,4 +1,5 @@ -# Class SixMotion +# Class SixMotion + Namespace: [VM.Models.Pre.Symmetric.Connections](VM.Models.Pre.Symmetric.Connections.md) Assembly: VM.Models.Pre.Symmetric.Connections.dll @@ -9,7 +10,7 @@ public class SixMotion #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [SixMotion](VM.Models.Pre.Symmetric.Connections.SixMotion.md) #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Symmetric.Connections.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Symmetric.Connections.md index bfe62e75f0..462977cbdb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Symmetric.Connections.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.Symmetric.Connections.md @@ -1,4 +1,5 @@ -# Namespace VM.Models.Pre.Symmetric.Connections +# Namespace VM.Models.Pre.Symmetric.Connections + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.TabLocationType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.TabLocationType.md index 3326bf23f6..cfcb876233 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.TabLocationType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.TabLocationType.md @@ -1,4 +1,5 @@ -# Enum TabLocationType +# Enum TabLocationType + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.UnitName.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.UnitName.md index eea0aec8a3..aadfe88db7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.UnitName.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.UnitName.md @@ -1,4 +1,5 @@ -# Enum UnitName +# Enum UnitName + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.WindingDirection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.WindingDirection.md index 12a6a90b0b..60cfcd75d4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.WindingDirection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.WindingDirection.md @@ -1,4 +1,5 @@ -# Enum WindingDirection +# Enum WindingDirection + Namespace: [VM.Models.Pre](VM.Models.Pre.md) Assembly: VM.Models.Pre.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.md index eb8e9d7c71..a8b76d40c7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Pre.md @@ -1,4 +1,5 @@ -# Namespace VM.Models.Pre +# Namespace VM.Models.Pre + ### Namespaces @@ -158,10 +159,10 @@ This interface is to represent the owner object in the object relationship. [IExpressionParser](VM.Models.Pre.IExpressionParser\-1.md) - [IExpressionValue](VM.Models.Pre.IExpressionValue\-1.md) - [IExpressionValue](VM.Models.Pre.IExpressionValue.md) + [IExpressionValue](VM.Models.Pre.IExpressionValue\-1.md) + [IFEFilm](VM.Models.Pre.IFEFilm.md) [IFEFilm\_ElementProperty](VM.Models.Pre.IFEFilm\_ElementProperty.md) @@ -263,7 +264,7 @@ This interface is to represent the owner object in the object relationship. [IPointBase](VM.Models.Pre.IPointBase.md)

    This interface is to represent the get position information of Design Point and Design Frame. - Design point and Design frame are casting as IPoint.

    +Design point and Design frame are casting as IPoint.

    [IPointNPointsCenter](VM.Models.Pre.IPointNPointsCenter.md) @@ -342,7 +343,7 @@ This interface is to represent the [unit change]. [IVariable](VM.Models.Pre.IVariable.md)

    This interface is to represent the data of Design Variable. - Design Variable is casting as IVariable.

    +Design Variable is casting as IVariable.

    ### Enums diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.IAnalysisScenario.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.IAnalysisScenario.md index 6b23d0e6ed..dc4ff2a56b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.IAnalysisScenario.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.IAnalysisScenario.md @@ -1,4 +1,5 @@ -# Interface IAnalysisScenario +# Interface IAnalysisScenario + Namespace: [VM.Models.Project](VM.Models.Project.md) Assembly: VM.Models.Project.Preset.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.IScenarioService.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.IScenarioService.md index 1e0b70128c..7e50b0d7a5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.IScenarioService.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.IScenarioService.md @@ -1,4 +1,5 @@ -# Interface IScenarioService +# Interface IScenarioService + Namespace: [VM.Models.Project](VM.Models.Project.md) Assembly: VM.Models.Project.dll @@ -29,7 +30,7 @@ void Compose(IEnumerable assemblies) #### Parameters -`assemblies` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Assembly](https://learn.microsoft.com/dotnet/api/system.reflection.assembly)\> +`assemblies` IEnumerable ### ContainsName\(string\) @@ -39,11 +40,11 @@ bool ContainsName(string typeName) #### Parameters -`typeName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`typeName` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TryGetInstance\(string, IProjectDocument, string, out IScenario\) @@ -53,17 +54,17 @@ bool TryGetInstance(string typeName, IProjectDocument parent, string scenarioNam #### Parameters -`typeName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`typeName` string `parent` [IProjectDocument](VM.Models.IProjectDocument.md) -`scenarioName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`scenarioName` string `scenario` [IScenario](VM.Models.IScenario.md) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TryGetType\(string, out Type\) @@ -73,11 +74,11 @@ bool TryGetType(string typeName, out Type scenarioType) #### Parameters -`typeName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`typeName` string -`scenarioType` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`scenarioType` Type #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.AnalysisConditionStep.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.AnalysisConditionStep.md index ba343e343d..d7ca0e7afe 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.AnalysisConditionStep.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.AnalysisConditionStep.md @@ -1,4 +1,5 @@ -# Class AnalysisConditionStep +# Class AnalysisConditionStep + Namespace: [VM.Models.Project.Preset](VM.Models.Project.Preset.md) Assembly: VM.Models.Project.Preset.dll @@ -9,10 +10,10 @@ public class AnalysisConditionStep : StepBase, IObservableObject, IStep, IProjec #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -ProjectObjectBase ← -StepBase ← +[ProjectObjectBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs) ← +[StepBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs) ← [AnalysisConditionStep](VM.Models.Project.Preset.AnalysisConditionStep.md) #### Implements @@ -28,32 +29,32 @@ IHasParent #### Inherited Members -StepBase.Add\(IStepItem\), -StepBase.AddTarget\(IStep\), -StepBase.CanRelation\(IStep\), -StepBase.ContainsTarget\(IStep\), -StepBase.OnDeserialization\(object\), -StepBase.RemoveTarget\(IStep\), -StepBase.ResetSource\(\), -StepBase.SetSource\(IStep\), -StepBase.DisposeManagedResources\(\), -StepBase.DefaultCommand, -StepBase.FilePath, -StepBase.IsSelected, -StepBase.Items, -StepBase.Parent, -StepBase.ParentDocument, -StepBase.Source, -StepBase.State, -StepBase.TargetApplicationType, -StepBase.Type, -StepBase.StepItemService, -StepBase.this\[int\], -ProjectObjectBase.OnDeserialization\(object\), -ProjectObjectBase.DisposeManagedResources\(\), -ProjectObjectBase.DisplayName, -ProjectObjectBase.ID, -ProjectObjectBase.Name, +[StepBase.Add\(IStepItem\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.AddTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.CanRelation\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ContainsTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.RemoveTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ResetSource\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.SetSource\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.DefaultCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.IsSelected](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Items](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ParentDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Source](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.State](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.TargetApplicationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Type](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.StepItemService](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.this\[int\]](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[ProjectObjectBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.ID](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -94,7 +95,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TargetApplicationType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.AnalysisScenarioBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.AnalysisScenarioBase.md index ab19f28f5a..f5099e95cb 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.AnalysisScenarioBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.AnalysisScenarioBase.md @@ -1,4 +1,5 @@ -# Class AnalysisScenarioBase +# Class AnalysisScenarioBase + Namespace: [VM.Models.Project.Preset](VM.Models.Project.Preset.md) Assembly: VM.Models.Project.Preset.dll @@ -9,10 +10,10 @@ public abstract class AnalysisScenarioBase : ScenarioBase, IObservableObject, IA #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -ProjectObjectBase ← -ScenarioBase ← +[ProjectObjectBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs) ← +[ScenarioBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs) ← [AnalysisScenarioBase](VM.Models.Project.Preset.AnalysisScenarioBase.md) #### Derived @@ -37,26 +38,26 @@ IHasParent #### Inherited Members -ScenarioBase.Add\(IStep\), -ScenarioBase.Clear\(\), -ScenarioBase.Remove\(IStep\), -ScenarioBase.TryGetItem\(Identifier, out IStep\), -ScenarioBase.DisposeManagedResources\(\), -ScenarioBase.CategoryName, -ScenarioBase.IsSelected, -ScenarioBase.Items, -ScenarioBase.Left, -ScenarioBase.Name, -ScenarioBase.Parent, -ScenarioBase.ParentDocument, -ScenarioBase.Top, -ScenarioBase.this\[Identifier\], -ScenarioBase.this\[int\], -ProjectObjectBase.OnDeserialization\(object\), -ProjectObjectBase.DisposeManagedResources\(\), -ProjectObjectBase.DisplayName, -ProjectObjectBase.ID, -ProjectObjectBase.Name, +[ScenarioBase.Add\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Clear\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Remove\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.TryGetItem\(Identifier, out IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.CategoryName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.IsSelected](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Items](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Left](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.ParentDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Top](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.this\[Identifier\]](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.this\[int\]](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ProjectObjectBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.ID](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -87,7 +88,7 @@ public AnalysisScenarioBase(IProjectDocument parent, string name) `parent` IProjectDocument -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string ## Properties @@ -99,7 +100,7 @@ public override string CategoryName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.AnalysisStep.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.AnalysisStep.md index 24e3de6981..229b0dd54c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.AnalysisStep.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.AnalysisStep.md @@ -1,4 +1,5 @@ -# Class AnalysisStep +# Class AnalysisStep + Namespace: [VM.Models.Project.Preset](VM.Models.Project.Preset.md) Assembly: VM.Models.Project.Preset.dll @@ -9,10 +10,10 @@ public class AnalysisStep : StepBase, IObservableObject, IStep, IProjectObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -ProjectObjectBase ← -StepBase ← +[ProjectObjectBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs) ← +[StepBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs) ← [AnalysisStep](VM.Models.Project.Preset.AnalysisStep.md) #### Implements @@ -28,32 +29,32 @@ IHasParent #### Inherited Members -StepBase.Add\(IStepItem\), -StepBase.AddTarget\(IStep\), -StepBase.CanRelation\(IStep\), -StepBase.ContainsTarget\(IStep\), -StepBase.OnDeserialization\(object\), -StepBase.RemoveTarget\(IStep\), -StepBase.ResetSource\(\), -StepBase.SetSource\(IStep\), -StepBase.DisposeManagedResources\(\), -StepBase.DefaultCommand, -StepBase.FilePath, -StepBase.IsSelected, -StepBase.Items, -StepBase.Parent, -StepBase.ParentDocument, -StepBase.Source, -StepBase.State, -StepBase.TargetApplicationType, -StepBase.Type, -StepBase.StepItemService, -StepBase.this\[int\], -ProjectObjectBase.OnDeserialization\(object\), -ProjectObjectBase.DisposeManagedResources\(\), -ProjectObjectBase.DisplayName, -ProjectObjectBase.ID, -ProjectObjectBase.Name, +[StepBase.Add\(IStepItem\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.AddTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.CanRelation\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ContainsTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.RemoveTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ResetSource\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.SetSource\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.DefaultCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.IsSelected](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Items](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ParentDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Source](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.State](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.TargetApplicationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Type](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.StepItemService](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.this\[int\]](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[ProjectObjectBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.ID](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -94,7 +95,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TargetApplicationType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.AnimationStep.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.AnimationStep.md index c499f9b3c2..4155197ff0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.AnimationStep.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.AnimationStep.md @@ -1,4 +1,5 @@ -# Class AnimationStep +# Class AnimationStep + Namespace: [VM.Models.Project.Preset](VM.Models.Project.Preset.md) Assembly: VM.Models.Project.Preset.dll @@ -9,10 +10,10 @@ public class AnimationStep : StepBase, IObservableObject, IStep, IProjectObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -ProjectObjectBase ← -StepBase ← +[ProjectObjectBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs) ← +[StepBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs) ← [AnimationStep](VM.Models.Project.Preset.AnimationStep.md) #### Implements @@ -28,32 +29,32 @@ IHasParent #### Inherited Members -StepBase.Add\(IStepItem\), -StepBase.AddTarget\(IStep\), -StepBase.CanRelation\(IStep\), -StepBase.ContainsTarget\(IStep\), -StepBase.OnDeserialization\(object\), -StepBase.RemoveTarget\(IStep\), -StepBase.ResetSource\(\), -StepBase.SetSource\(IStep\), -StepBase.DisposeManagedResources\(\), -StepBase.DefaultCommand, -StepBase.FilePath, -StepBase.IsSelected, -StepBase.Items, -StepBase.Parent, -StepBase.ParentDocument, -StepBase.Source, -StepBase.State, -StepBase.TargetApplicationType, -StepBase.Type, -StepBase.StepItemService, -StepBase.this\[int\], -ProjectObjectBase.OnDeserialization\(object\), -ProjectObjectBase.DisposeManagedResources\(\), -ProjectObjectBase.DisplayName, -ProjectObjectBase.ID, -ProjectObjectBase.Name, +[StepBase.Add\(IStepItem\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.AddTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.CanRelation\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ContainsTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.RemoveTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ResetSource\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.SetSource\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.DefaultCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.IsSelected](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Items](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ParentDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Source](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.State](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.TargetApplicationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Type](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.StepItemService](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.this\[int\]](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[ProjectObjectBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.ID](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -94,7 +95,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TargetApplicationType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.BodyStep.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.BodyStep.md index 7eb8a4cb50..2d29da4869 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.BodyStep.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.BodyStep.md @@ -1,4 +1,5 @@ -# Class BodyStep +# Class BodyStep + Namespace: [VM.Models.Project.Preset](VM.Models.Project.Preset.md) Assembly: VM.Models.Project.Preset.dll @@ -9,10 +10,10 @@ public class BodyStep : StepBase, IObservableObject, IStep, IProjectObject, IHas #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -ProjectObjectBase ← -StepBase ← +[ProjectObjectBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs) ← +[StepBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs) ← [BodyStep](VM.Models.Project.Preset.BodyStep.md) #### Implements @@ -28,32 +29,32 @@ IHasParent #### Inherited Members -StepBase.Add\(IStepItem\), -StepBase.AddTarget\(IStep\), -StepBase.CanRelation\(IStep\), -StepBase.ContainsTarget\(IStep\), -StepBase.OnDeserialization\(object\), -StepBase.RemoveTarget\(IStep\), -StepBase.ResetSource\(\), -StepBase.SetSource\(IStep\), -StepBase.DisposeManagedResources\(\), -StepBase.DefaultCommand, -StepBase.FilePath, -StepBase.IsSelected, -StepBase.Items, -StepBase.Parent, -StepBase.ParentDocument, -StepBase.Source, -StepBase.State, -StepBase.TargetApplicationType, -StepBase.Type, -StepBase.StepItemService, -StepBase.this\[int\], -ProjectObjectBase.OnDeserialization\(object\), -ProjectObjectBase.DisposeManagedResources\(\), -ProjectObjectBase.DisplayName, -ProjectObjectBase.ID, -ProjectObjectBase.Name, +[StepBase.Add\(IStepItem\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.AddTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.CanRelation\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ContainsTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.RemoveTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ResetSource\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.SetSource\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.DefaultCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.IsSelected](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Items](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ParentDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Source](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.State](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.TargetApplicationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Type](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.StepItemService](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.this\[int\]](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[ProjectObjectBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.ID](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -94,7 +95,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TargetApplicationType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.ChartStep.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.ChartStep.md index f70cb069bb..0c80110ff2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.ChartStep.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.ChartStep.md @@ -1,4 +1,5 @@ -# Class ChartStep +# Class ChartStep + Namespace: [VM.Models.Project.Preset](VM.Models.Project.Preset.md) Assembly: VM.Models.Project.Preset.dll @@ -9,10 +10,10 @@ public class ChartStep : StepBase, IObservableObject, IStep, IProjectObject, IHa #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -ProjectObjectBase ← -StepBase ← +[ProjectObjectBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs) ← +[StepBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs) ← [ChartStep](VM.Models.Project.Preset.ChartStep.md) #### Implements @@ -28,32 +29,32 @@ IHasParent #### Inherited Members -StepBase.Add\(IStepItem\), -StepBase.AddTarget\(IStep\), -StepBase.CanRelation\(IStep\), -StepBase.ContainsTarget\(IStep\), -StepBase.OnDeserialization\(object\), -StepBase.RemoveTarget\(IStep\), -StepBase.ResetSource\(\), -StepBase.SetSource\(IStep\), -StepBase.DisposeManagedResources\(\), -StepBase.DefaultCommand, -StepBase.FilePath, -StepBase.IsSelected, -StepBase.Items, -StepBase.Parent, -StepBase.ParentDocument, -StepBase.Source, -StepBase.State, -StepBase.TargetApplicationType, -StepBase.Type, -StepBase.StepItemService, -StepBase.this\[int\], -ProjectObjectBase.OnDeserialization\(object\), -ProjectObjectBase.DisposeManagedResources\(\), -ProjectObjectBase.DisplayName, -ProjectObjectBase.ID, -ProjectObjectBase.Name, +[StepBase.Add\(IStepItem\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.AddTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.CanRelation\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ContainsTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.RemoveTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ResetSource\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.SetSource\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.DefaultCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.IsSelected](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Items](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ParentDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Source](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.State](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.TargetApplicationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Type](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.StepItemService](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.this\[int\]](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[ProjectObjectBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.ID](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -94,7 +95,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TargetApplicationType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.ConnectorStep.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.ConnectorStep.md index 47c97d26a6..5e369d21de 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.ConnectorStep.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.ConnectorStep.md @@ -1,4 +1,5 @@ -# Class ConnectorStep +# Class ConnectorStep + Namespace: [VM.Models.Project.Preset](VM.Models.Project.Preset.md) Assembly: VM.Models.Project.Preset.dll @@ -9,10 +10,10 @@ public class ConnectorStep : StepBase, IObservableObject, IStep, IProjectObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -ProjectObjectBase ← -StepBase ← +[ProjectObjectBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs) ← +[StepBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs) ← [ConnectorStep](VM.Models.Project.Preset.ConnectorStep.md) #### Implements @@ -28,32 +29,32 @@ IHasParent #### Inherited Members -StepBase.Add\(IStepItem\), -StepBase.AddTarget\(IStep\), -StepBase.CanRelation\(IStep\), -StepBase.ContainsTarget\(IStep\), -StepBase.OnDeserialization\(object\), -StepBase.RemoveTarget\(IStep\), -StepBase.ResetSource\(\), -StepBase.SetSource\(IStep\), -StepBase.DisposeManagedResources\(\), -StepBase.DefaultCommand, -StepBase.FilePath, -StepBase.IsSelected, -StepBase.Items, -StepBase.Parent, -StepBase.ParentDocument, -StepBase.Source, -StepBase.State, -StepBase.TargetApplicationType, -StepBase.Type, -StepBase.StepItemService, -StepBase.this\[int\], -ProjectObjectBase.OnDeserialization\(object\), -ProjectObjectBase.DisposeManagedResources\(\), -ProjectObjectBase.DisplayName, -ProjectObjectBase.ID, -ProjectObjectBase.Name, +[StepBase.Add\(IStepItem\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.AddTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.CanRelation\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ContainsTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.RemoveTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ResetSource\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.SetSource\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.DefaultCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.IsSelected](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Items](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ParentDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Source](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.State](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.TargetApplicationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Type](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.StepItemService](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.this\[int\]](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[ProjectObjectBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.ID](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -94,7 +95,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TargetApplicationType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.DrivetrainStep.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.DrivetrainStep.md index 4659565f1f..691b573fc2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.DrivetrainStep.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.DrivetrainStep.md @@ -1,4 +1,5 @@ -# Class DrivetrainStep +# Class DrivetrainStep + Namespace: [VM.Models.Project.Preset](VM.Models.Project.Preset.md) Assembly: VM.Models.Project.Preset.dll @@ -9,10 +10,10 @@ public class DrivetrainStep : StepBase, IObservableObject, IStep, IProjectObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -ProjectObjectBase ← -StepBase ← +[ProjectObjectBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs) ← +[StepBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs) ← [DrivetrainStep](VM.Models.Project.Preset.DrivetrainStep.md) #### Implements @@ -28,32 +29,32 @@ IHasParent #### Inherited Members -StepBase.Add\(IStepItem\), -StepBase.AddTarget\(IStep\), -StepBase.CanRelation\(IStep\), -StepBase.ContainsTarget\(IStep\), -StepBase.OnDeserialization\(object\), -StepBase.RemoveTarget\(IStep\), -StepBase.ResetSource\(\), -StepBase.SetSource\(IStep\), -StepBase.DisposeManagedResources\(\), -StepBase.DefaultCommand, -StepBase.FilePath, -StepBase.IsSelected, -StepBase.Items, -StepBase.Parent, -StepBase.ParentDocument, -StepBase.Source, -StepBase.State, -StepBase.TargetApplicationType, -StepBase.Type, -StepBase.StepItemService, -StepBase.this\[int\], -ProjectObjectBase.OnDeserialization\(object\), -ProjectObjectBase.DisposeManagedResources\(\), -ProjectObjectBase.DisplayName, -ProjectObjectBase.ID, -ProjectObjectBase.Name, +[StepBase.Add\(IStepItem\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.AddTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.CanRelation\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ContainsTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.RemoveTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ResetSource\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.SetSource\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.DefaultCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.IsSelected](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Items](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ParentDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Source](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.State](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.TargetApplicationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Type](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.StepItemService](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.this\[int\]](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[ProjectObjectBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.ID](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -94,7 +95,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TargetApplicationType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.DynamicAnalysis.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.DynamicAnalysis.md index 70f3eede03..12896a0181 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.DynamicAnalysis.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.DynamicAnalysis.md @@ -1,4 +1,5 @@ -# Class DynamicAnalysis +# Class DynamicAnalysis + Namespace: [VM.Models.Project.Preset](VM.Models.Project.Preset.md) Assembly: VM.Models.Project.Preset.dll @@ -10,10 +11,10 @@ public class DynamicAnalysis : AnalysisScenarioBase, IObservableObject, IAnalysi #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -ProjectObjectBase ← -ScenarioBase ← +[ProjectObjectBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs) ← +[ScenarioBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs) ← [AnalysisScenarioBase](VM.Models.Project.Preset.AnalysisScenarioBase.md) ← [DynamicAnalysis](VM.Models.Project.Preset.DynamicAnalysis.md) @@ -33,26 +34,26 @@ IHasParent [AnalysisScenarioBase.SaveScenarioData\(IScenarioDocument\)](VM.Models.Project.Preset.AnalysisScenarioBase.md\#VM\_Models\_Project\_Preset\_AnalysisScenarioBase\_SaveScenarioData\_VM\_IScenarioDocument\_), [AnalysisScenarioBase.CategoryName](VM.Models.Project.Preset.AnalysisScenarioBase.md\#VM\_Models\_Project\_Preset\_AnalysisScenarioBase\_CategoryName), -ScenarioBase.Add\(IStep\), -ScenarioBase.Clear\(\), -ScenarioBase.Remove\(IStep\), -ScenarioBase.TryGetItem\(Identifier, out IStep\), -ScenarioBase.DisposeManagedResources\(\), -ScenarioBase.CategoryName, -ScenarioBase.IsSelected, -ScenarioBase.Items, -ScenarioBase.Left, -ScenarioBase.Name, -ScenarioBase.Parent, -ScenarioBase.ParentDocument, -ScenarioBase.Top, -ScenarioBase.this\[Identifier\], -ScenarioBase.this\[int\], -ProjectObjectBase.OnDeserialization\(object\), -ProjectObjectBase.DisposeManagedResources\(\), -ProjectObjectBase.DisplayName, -ProjectObjectBase.ID, -ProjectObjectBase.Name, +[ScenarioBase.Add\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Clear\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Remove\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.TryGetItem\(Identifier, out IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.CategoryName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.IsSelected](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Items](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Left](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.ParentDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Top](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.this\[Identifier\]](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.this\[int\]](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ProjectObjectBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.ID](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -83,7 +84,7 @@ public DynamicAnalysis(IProjectDocument parent, string name) `parent` IProjectDocument -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string ## Properties @@ -95,7 +96,7 @@ public override string DisplayName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.EigenvalueAnalysis.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.EigenvalueAnalysis.md index f7ed774572..444aa66187 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.EigenvalueAnalysis.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.EigenvalueAnalysis.md @@ -1,4 +1,5 @@ -# Class EigenvalueAnalysis +# Class EigenvalueAnalysis + Namespace: [VM.Models.Project.Preset](VM.Models.Project.Preset.md) Assembly: VM.Models.Project.Preset.dll @@ -10,10 +11,10 @@ public class EigenvalueAnalysis : AnalysisScenarioBase, IObservableObject, IAnal #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -ProjectObjectBase ← -ScenarioBase ← +[ProjectObjectBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs) ← +[ScenarioBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs) ← [AnalysisScenarioBase](VM.Models.Project.Preset.AnalysisScenarioBase.md) ← [EigenvalueAnalysis](VM.Models.Project.Preset.EigenvalueAnalysis.md) @@ -33,26 +34,26 @@ IHasParent [AnalysisScenarioBase.SaveScenarioData\(IScenarioDocument\)](VM.Models.Project.Preset.AnalysisScenarioBase.md\#VM\_Models\_Project\_Preset\_AnalysisScenarioBase\_SaveScenarioData\_VM\_IScenarioDocument\_), [AnalysisScenarioBase.CategoryName](VM.Models.Project.Preset.AnalysisScenarioBase.md\#VM\_Models\_Project\_Preset\_AnalysisScenarioBase\_CategoryName), -ScenarioBase.Add\(IStep\), -ScenarioBase.Clear\(\), -ScenarioBase.Remove\(IStep\), -ScenarioBase.TryGetItem\(Identifier, out IStep\), -ScenarioBase.DisposeManagedResources\(\), -ScenarioBase.CategoryName, -ScenarioBase.IsSelected, -ScenarioBase.Items, -ScenarioBase.Left, -ScenarioBase.Name, -ScenarioBase.Parent, -ScenarioBase.ParentDocument, -ScenarioBase.Top, -ScenarioBase.this\[Identifier\], -ScenarioBase.this\[int\], -ProjectObjectBase.OnDeserialization\(object\), -ProjectObjectBase.DisposeManagedResources\(\), -ProjectObjectBase.DisplayName, -ProjectObjectBase.ID, -ProjectObjectBase.Name, +[ScenarioBase.Add\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Clear\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Remove\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.TryGetItem\(Identifier, out IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.CategoryName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.IsSelected](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Items](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Left](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.ParentDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Top](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.this\[Identifier\]](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.this\[int\]](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ProjectObjectBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.ID](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -83,7 +84,7 @@ public EigenvalueAnalysis(IProjectDocument parent, string name) `parent` IProjectDocument -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string ## Properties @@ -95,7 +96,7 @@ public override string DisplayName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.ExecutePostprocessorStepItem.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.ExecutePostprocessorStepItem.md index fb61169169..917f9ba566 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.ExecutePostprocessorStepItem.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.ExecutePostprocessorStepItem.md @@ -1,4 +1,5 @@ -# Class ExecutePostprocessorStepItem +# Class ExecutePostprocessorStepItem + Namespace: [VM.Models.Project.Preset](VM.Models.Project.Preset.md) Assembly: VM.Models.Project.Preset.dll @@ -9,9 +10,9 @@ public class ExecutePostprocessorStepItem : CommandStepItem, IObservableObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -CommandStepItem ← +[CommandStepItem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/CommandStepItem.cs) ← [ExecutePostprocessorStepItem](VM.Models.Project.Preset.ExecutePostprocessorStepItem.md) #### Implements @@ -26,16 +27,16 @@ IEnabled #### Inherited Members -CommandStepItem.Initialize\(\), -CommandStepItem.DisposeManagedResources\(\), -CommandStepItem.Command, -CommandStepItem.DisplayName, -CommandStepItem.Icon, -CommandStepItem.Name, -CommandStepItem.Parent, -CommandStepItem.ToolTip, -CommandStepItem.IsVisible, -CommandStepItem.IsEnabled, +[CommandStepItem.Initialize\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/CommandStepItem.cs), +[CommandStepItem.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/CommandStepItem.cs), +[CommandStepItem.Command](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/CommandStepItem.cs), +[CommandStepItem.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/CommandStepItem.cs), +[CommandStepItem.Icon](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/CommandStepItem.cs), +[CommandStepItem.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/CommandStepItem.cs), +[CommandStepItem.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/CommandStepItem.cs), +[CommandStepItem.ToolTip](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/CommandStepItem.cs), +[CommandStepItem.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/CommandStepItem.cs), +[CommandStepItem.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/CommandStepItem.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -72,7 +73,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.ExecutePreprocessorStepItem.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.ExecutePreprocessorStepItem.md index 4c353faa1d..a0c802fc70 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.ExecutePreprocessorStepItem.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.ExecutePreprocessorStepItem.md @@ -1,4 +1,5 @@ -# Class ExecutePreprocessorStepItem +# Class ExecutePreprocessorStepItem + Namespace: [VM.Models.Project.Preset](VM.Models.Project.Preset.md) Assembly: VM.Models.Project.Preset.dll @@ -9,9 +10,9 @@ public sealed class ExecutePreprocessorStepItem : CommandStepItem, IObservableOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -CommandStepItem ← +[CommandStepItem](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/CommandStepItem.cs) ← [ExecutePreprocessorStepItem](VM.Models.Project.Preset.ExecutePreprocessorStepItem.md) #### Implements @@ -26,15 +27,15 @@ IEnabled #### Inherited Members -CommandStepItem.Initialize\(\), -CommandStepItem.Command, -CommandStepItem.DisplayName, -CommandStepItem.Icon, -CommandStepItem.Name, -CommandStepItem.Parent, -CommandStepItem.ToolTip, -CommandStepItem.IsVisible, -CommandStepItem.IsEnabled, +[CommandStepItem.Initialize\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/CommandStepItem.cs), +[CommandStepItem.Command](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/CommandStepItem.cs), +[CommandStepItem.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/CommandStepItem.cs), +[CommandStepItem.Icon](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/CommandStepItem.cs), +[CommandStepItem.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/CommandStepItem.cs), +[CommandStepItem.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/CommandStepItem.cs), +[CommandStepItem.ToolTip](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/CommandStepItem.cs), +[CommandStepItem.IsVisible](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/CommandStepItem.cs), +[CommandStepItem.IsEnabled](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/CommandStepItem.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -68,7 +69,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.GeometryStep.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.GeometryStep.md index 0278076dcc..af2c263e50 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.GeometryStep.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.GeometryStep.md @@ -1,4 +1,5 @@ -# Class GeometryStep +# Class GeometryStep + Namespace: [VM.Models.Project.Preset](VM.Models.Project.Preset.md) Assembly: VM.Models.Project.Preset.dll @@ -9,10 +10,10 @@ public class GeometryStep : StepBase, IObservableObject, IStep, IProjectObject, #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -ProjectObjectBase ← -StepBase ← +[ProjectObjectBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs) ← +[StepBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs) ← [GeometryStep](VM.Models.Project.Preset.GeometryStep.md) #### Implements @@ -28,32 +29,32 @@ IHasParent #### Inherited Members -StepBase.Add\(IStepItem\), -StepBase.AddTarget\(IStep\), -StepBase.CanRelation\(IStep\), -StepBase.ContainsTarget\(IStep\), -StepBase.OnDeserialization\(object\), -StepBase.RemoveTarget\(IStep\), -StepBase.ResetSource\(\), -StepBase.SetSource\(IStep\), -StepBase.DisposeManagedResources\(\), -StepBase.DefaultCommand, -StepBase.FilePath, -StepBase.IsSelected, -StepBase.Items, -StepBase.Parent, -StepBase.ParentDocument, -StepBase.Source, -StepBase.State, -StepBase.TargetApplicationType, -StepBase.Type, -StepBase.StepItemService, -StepBase.this\[int\], -ProjectObjectBase.OnDeserialization\(object\), -ProjectObjectBase.DisposeManagedResources\(\), -ProjectObjectBase.DisplayName, -ProjectObjectBase.ID, -ProjectObjectBase.Name, +[StepBase.Add\(IStepItem\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.AddTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.CanRelation\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ContainsTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.RemoveTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ResetSource\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.SetSource\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.DefaultCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.IsSelected](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Items](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ParentDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Source](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.State](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.TargetApplicationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Type](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.StepItemService](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.this\[int\]](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[ProjectObjectBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.ID](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -94,7 +95,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TargetApplicationType @@ -130,5 +131,5 @@ public override bool CanRelation(IStep source) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.HeatDeflectionAnalysis.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.HeatDeflectionAnalysis.md index 83670646f2..71e88e3c5d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.HeatDeflectionAnalysis.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.HeatDeflectionAnalysis.md @@ -1,4 +1,5 @@ -# Class HeatDeflectionAnalysis +# Class HeatDeflectionAnalysis + Namespace: [VM.Models.Project.Preset](VM.Models.Project.Preset.md) Assembly: VM.Models.Project.Preset.dll @@ -10,10 +11,10 @@ public class HeatDeflectionAnalysis : AnalysisScenarioBase, IObservableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -ProjectObjectBase ← -ScenarioBase ← +[ProjectObjectBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs) ← +[ScenarioBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs) ← [AnalysisScenarioBase](VM.Models.Project.Preset.AnalysisScenarioBase.md) ← [HeatDeflectionAnalysis](VM.Models.Project.Preset.HeatDeflectionAnalysis.md) @@ -33,26 +34,26 @@ IHasParent [AnalysisScenarioBase.SaveScenarioData\(IScenarioDocument\)](VM.Models.Project.Preset.AnalysisScenarioBase.md\#VM\_Models\_Project\_Preset\_AnalysisScenarioBase\_SaveScenarioData\_VM\_IScenarioDocument\_), [AnalysisScenarioBase.CategoryName](VM.Models.Project.Preset.AnalysisScenarioBase.md\#VM\_Models\_Project\_Preset\_AnalysisScenarioBase\_CategoryName), -ScenarioBase.Add\(IStep\), -ScenarioBase.Clear\(\), -ScenarioBase.Remove\(IStep\), -ScenarioBase.TryGetItem\(Identifier, out IStep\), -ScenarioBase.DisposeManagedResources\(\), -ScenarioBase.CategoryName, -ScenarioBase.IsSelected, -ScenarioBase.Items, -ScenarioBase.Left, -ScenarioBase.Name, -ScenarioBase.Parent, -ScenarioBase.ParentDocument, -ScenarioBase.Top, -ScenarioBase.this\[Identifier\], -ScenarioBase.this\[int\], -ProjectObjectBase.OnDeserialization\(object\), -ProjectObjectBase.DisposeManagedResources\(\), -ProjectObjectBase.DisplayName, -ProjectObjectBase.ID, -ProjectObjectBase.Name, +[ScenarioBase.Add\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Clear\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Remove\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.TryGetItem\(Identifier, out IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.CategoryName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.IsSelected](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Items](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Left](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.ParentDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Top](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.this\[Identifier\]](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.this\[int\]](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ProjectObjectBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.ID](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -83,7 +84,7 @@ public HeatDeflectionAnalysis(IProjectDocument parent, string name) `parent` IProjectDocument -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string ## Properties @@ -95,7 +96,7 @@ public override string DisplayName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.PostprocessorAnalysisStep.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.PostprocessorAnalysisStep.md index 8058ac01c5..a57d536fb4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.PostprocessorAnalysisStep.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.PostprocessorAnalysisStep.md @@ -1,4 +1,5 @@ -# Class PostprocessorAnalysisStep +# Class PostprocessorAnalysisStep + Namespace: [VM.Models.Project.Preset](VM.Models.Project.Preset.md) Assembly: VM.Models.Project.Preset.dll @@ -9,10 +10,10 @@ public class PostprocessorAnalysisStep : StepBase, IObservableObject, IStep, IPr #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -ProjectObjectBase ← -StepBase ← +[ProjectObjectBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs) ← +[StepBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs) ← [PostprocessorAnalysisStep](VM.Models.Project.Preset.PostprocessorAnalysisStep.md) #### Implements @@ -28,32 +29,32 @@ IHasParent #### Inherited Members -StepBase.Add\(IStepItem\), -StepBase.AddTarget\(IStep\), -StepBase.CanRelation\(IStep\), -StepBase.ContainsTarget\(IStep\), -StepBase.OnDeserialization\(object\), -StepBase.RemoveTarget\(IStep\), -StepBase.ResetSource\(\), -StepBase.SetSource\(IStep\), -StepBase.DisposeManagedResources\(\), -StepBase.DefaultCommand, -StepBase.FilePath, -StepBase.IsSelected, -StepBase.Items, -StepBase.Parent, -StepBase.ParentDocument, -StepBase.Source, -StepBase.State, -StepBase.TargetApplicationType, -StepBase.Type, -StepBase.StepItemService, -StepBase.this\[int\], -ProjectObjectBase.OnDeserialization\(object\), -ProjectObjectBase.DisposeManagedResources\(\), -ProjectObjectBase.DisplayName, -ProjectObjectBase.ID, -ProjectObjectBase.Name, +[StepBase.Add\(IStepItem\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.AddTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.CanRelation\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ContainsTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.RemoveTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ResetSource\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.SetSource\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.DefaultCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.IsSelected](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Items](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ParentDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Source](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.State](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.TargetApplicationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Type](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.StepItemService](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.this\[int\]](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[ProjectObjectBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.ID](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -94,7 +95,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TargetApplicationType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.PostprocessorFatigueAnalysisStep.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.PostprocessorFatigueAnalysisStep.md index 9a0a25b91e..a3ff30f5a4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.PostprocessorFatigueAnalysisStep.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.PostprocessorFatigueAnalysisStep.md @@ -1,4 +1,5 @@ -# Class PostprocessorFatigueAnalysisStep +# Class PostprocessorFatigueAnalysisStep + Namespace: [VM.Models.Project.Preset](VM.Models.Project.Preset.md) Assembly: VM.Models.Project.Preset.dll @@ -9,10 +10,10 @@ public class PostprocessorFatigueAnalysisStep : StepBase, IObservableObject, ISt #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -ProjectObjectBase ← -StepBase ← +[ProjectObjectBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs) ← +[StepBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs) ← [PostprocessorFatigueAnalysisStep](VM.Models.Project.Preset.PostprocessorFatigueAnalysisStep.md) #### Implements @@ -28,32 +29,32 @@ IHasParent #### Inherited Members -StepBase.Add\(IStepItem\), -StepBase.AddTarget\(IStep\), -StepBase.CanRelation\(IStep\), -StepBase.ContainsTarget\(IStep\), -StepBase.OnDeserialization\(object\), -StepBase.RemoveTarget\(IStep\), -StepBase.ResetSource\(\), -StepBase.SetSource\(IStep\), -StepBase.DisposeManagedResources\(\), -StepBase.DefaultCommand, -StepBase.FilePath, -StepBase.IsSelected, -StepBase.Items, -StepBase.Parent, -StepBase.ParentDocument, -StepBase.Source, -StepBase.State, -StepBase.TargetApplicationType, -StepBase.Type, -StepBase.StepItemService, -StepBase.this\[int\], -ProjectObjectBase.OnDeserialization\(object\), -ProjectObjectBase.DisposeManagedResources\(\), -ProjectObjectBase.DisplayName, -ProjectObjectBase.ID, -ProjectObjectBase.Name, +[StepBase.Add\(IStepItem\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.AddTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.CanRelation\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ContainsTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.RemoveTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ResetSource\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.SetSource\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.DefaultCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.IsSelected](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Items](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ParentDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Source](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.State](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.TargetApplicationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Type](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.StepItemService](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.this\[int\]](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[ProjectObjectBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.ID](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -94,7 +95,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TargetApplicationType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.PresetHelper.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.PresetHelper.md index 0867bb9309..ae1b4edbe0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.PresetHelper.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.PresetHelper.md @@ -1,4 +1,5 @@ -# Class PresetHelper +# Class PresetHelper + Namespace: [VM.Models.Project.Preset](VM.Models.Project.Preset.md) Assembly: VM.Models.Project.Preset.dll @@ -9,7 +10,7 @@ public static class PresetHelper #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [PresetHelper](VM.Models.Project.Preset.PresetHelper.md) #### Extension Methods @@ -28,5 +29,5 @@ public static IEnumerable GetScenarios() #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1) + IEnumerable diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.ResultStep.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.ResultStep.md index 11d18f11e6..bd41860a6e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.ResultStep.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.ResultStep.md @@ -1,4 +1,5 @@ -# Class ResultStep +# Class ResultStep + Namespace: [VM.Models.Project.Preset](VM.Models.Project.Preset.md) Assembly: VM.Models.Project.Preset.dll @@ -9,10 +10,10 @@ public class ResultStep : StepBase, IObservableObject, IStep, IProjectObject, IH #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -ProjectObjectBase ← -StepBase ← +[ProjectObjectBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs) ← +[StepBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs) ← [ResultStep](VM.Models.Project.Preset.ResultStep.md) #### Implements @@ -28,32 +29,32 @@ IHasParent #### Inherited Members -StepBase.Add\(IStepItem\), -StepBase.AddTarget\(IStep\), -StepBase.CanRelation\(IStep\), -StepBase.ContainsTarget\(IStep\), -StepBase.OnDeserialization\(object\), -StepBase.RemoveTarget\(IStep\), -StepBase.ResetSource\(\), -StepBase.SetSource\(IStep\), -StepBase.DisposeManagedResources\(\), -StepBase.DefaultCommand, -StepBase.FilePath, -StepBase.IsSelected, -StepBase.Items, -StepBase.Parent, -StepBase.ParentDocument, -StepBase.Source, -StepBase.State, -StepBase.TargetApplicationType, -StepBase.Type, -StepBase.StepItemService, -StepBase.this\[int\], -ProjectObjectBase.OnDeserialization\(object\), -ProjectObjectBase.DisposeManagedResources\(\), -ProjectObjectBase.DisplayName, -ProjectObjectBase.ID, -ProjectObjectBase.Name, +[StepBase.Add\(IStepItem\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.AddTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.CanRelation\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ContainsTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.RemoveTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ResetSource\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.SetSource\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.DefaultCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.IsSelected](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Items](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ParentDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Source](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.State](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.TargetApplicationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Type](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.StepItemService](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.this\[int\]](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[ProjectObjectBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.ID](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -94,7 +95,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TargetApplicationType @@ -130,7 +131,7 @@ public override bool CanRelation(IStep source) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### FileChanged\(string\) @@ -140,7 +141,7 @@ public void FileChanged(string fullPath) #### Parameters -`fullPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`fullPath` string ### FileCreated\(string\) @@ -150,7 +151,7 @@ public void FileCreated(string fullPath) #### Parameters -`fullPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`fullPath` string ### FileDeleted\(string\) @@ -160,7 +161,7 @@ public void FileDeleted(string fullPath) #### Parameters -`fullPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`fullPath` string ### FileRenamed\(string\) @@ -170,7 +171,7 @@ public void FileRenamed(string fullPath) #### Parameters -`fullPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`fullPath` string ### SetFilePath\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.SharedModelingDataStep.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.SharedModelingDataStep.md index 1a112c05de..5b10019add 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.SharedModelingDataStep.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.SharedModelingDataStep.md @@ -1,4 +1,5 @@ -# Class SharedModelingDataStep +# Class SharedModelingDataStep + Namespace: [VM.Models.Project.Preset](VM.Models.Project.Preset.md) Assembly: VM.Models.Project.Preset.dll @@ -9,10 +10,10 @@ public class SharedModelingDataStep : StepBase, IObservableObject, IStep, IProje #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -ProjectObjectBase ← -StepBase ← +[ProjectObjectBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs) ← +[StepBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs) ← [SharedModelingDataStep](VM.Models.Project.Preset.SharedModelingDataStep.md) #### Implements @@ -28,32 +29,32 @@ IHasParent #### Inherited Members -StepBase.Add\(IStepItem\), -StepBase.AddTarget\(IStep\), -StepBase.CanRelation\(IStep\), -StepBase.ContainsTarget\(IStep\), -StepBase.OnDeserialization\(object\), -StepBase.RemoveTarget\(IStep\), -StepBase.ResetSource\(\), -StepBase.SetSource\(IStep\), -StepBase.DisposeManagedResources\(\), -StepBase.DefaultCommand, -StepBase.FilePath, -StepBase.IsSelected, -StepBase.Items, -StepBase.Parent, -StepBase.ParentDocument, -StepBase.Source, -StepBase.State, -StepBase.TargetApplicationType, -StepBase.Type, -StepBase.StepItemService, -StepBase.this\[int\], -ProjectObjectBase.OnDeserialization\(object\), -ProjectObjectBase.DisposeManagedResources\(\), -ProjectObjectBase.DisplayName, -ProjectObjectBase.ID, -ProjectObjectBase.Name, +[StepBase.Add\(IStepItem\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.AddTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.CanRelation\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ContainsTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.RemoveTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ResetSource\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.SetSource\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.DefaultCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.IsSelected](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Items](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ParentDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Source](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.State](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.TargetApplicationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Type](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.StepItemService](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.this\[int\]](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[ProjectObjectBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.ID](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -94,7 +95,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TargetApplicationType @@ -130,5 +131,5 @@ public override bool CanRelation(IStep source) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.StiffnessAnalysis.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.StiffnessAnalysis.md index 8463e20d4a..d2f91e5280 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.StiffnessAnalysis.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.StiffnessAnalysis.md @@ -1,4 +1,5 @@ -# Class StiffnessAnalysis +# Class StiffnessAnalysis + Namespace: [VM.Models.Project.Preset](VM.Models.Project.Preset.md) Assembly: VM.Models.Project.Preset.dll @@ -10,10 +11,10 @@ public class StiffnessAnalysis : AnalysisScenarioBase, IObservableObject, IAnaly #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -ProjectObjectBase ← -ScenarioBase ← +[ProjectObjectBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs) ← +[ScenarioBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs) ← [AnalysisScenarioBase](VM.Models.Project.Preset.AnalysisScenarioBase.md) ← [StiffnessAnalysis](VM.Models.Project.Preset.StiffnessAnalysis.md) @@ -33,26 +34,26 @@ IHasParent [AnalysisScenarioBase.SaveScenarioData\(IScenarioDocument\)](VM.Models.Project.Preset.AnalysisScenarioBase.md\#VM\_Models\_Project\_Preset\_AnalysisScenarioBase\_SaveScenarioData\_VM\_IScenarioDocument\_), [AnalysisScenarioBase.CategoryName](VM.Models.Project.Preset.AnalysisScenarioBase.md\#VM\_Models\_Project\_Preset\_AnalysisScenarioBase\_CategoryName), -ScenarioBase.Add\(IStep\), -ScenarioBase.Clear\(\), -ScenarioBase.Remove\(IStep\), -ScenarioBase.TryGetItem\(Identifier, out IStep\), -ScenarioBase.DisposeManagedResources\(\), -ScenarioBase.CategoryName, -ScenarioBase.IsSelected, -ScenarioBase.Items, -ScenarioBase.Left, -ScenarioBase.Name, -ScenarioBase.Parent, -ScenarioBase.ParentDocument, -ScenarioBase.Top, -ScenarioBase.this\[Identifier\], -ScenarioBase.this\[int\], -ProjectObjectBase.OnDeserialization\(object\), -ProjectObjectBase.DisposeManagedResources\(\), -ProjectObjectBase.DisplayName, -ProjectObjectBase.ID, -ProjectObjectBase.Name, +[ScenarioBase.Add\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Clear\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Remove\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.TryGetItem\(Identifier, out IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.CategoryName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.IsSelected](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Items](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Left](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.ParentDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Top](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.this\[Identifier\]](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.this\[int\]](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ProjectObjectBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.ID](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -83,7 +84,7 @@ public StiffnessAnalysis(IProjectDocument parent, string name) `parent` IProjectDocument -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string ## Properties @@ -95,7 +96,7 @@ public override string CategoryName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### DisplayName @@ -105,7 +106,7 @@ public override string DisplayName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.StrengthAnalysis.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.StrengthAnalysis.md index 1c76e51cdf..5b8d4cffc5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.StrengthAnalysis.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.StrengthAnalysis.md @@ -1,4 +1,5 @@ -# Class StrengthAnalysis +# Class StrengthAnalysis + Namespace: [VM.Models.Project.Preset](VM.Models.Project.Preset.md) Assembly: VM.Models.Project.Preset.dll @@ -10,10 +11,10 @@ public class StrengthAnalysis : AnalysisScenarioBase, IObservableObject, IAnalys #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -ProjectObjectBase ← -ScenarioBase ← +[ProjectObjectBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs) ← +[ScenarioBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs) ← [AnalysisScenarioBase](VM.Models.Project.Preset.AnalysisScenarioBase.md) ← [StrengthAnalysis](VM.Models.Project.Preset.StrengthAnalysis.md) @@ -33,26 +34,26 @@ IHasParent [AnalysisScenarioBase.SaveScenarioData\(IScenarioDocument\)](VM.Models.Project.Preset.AnalysisScenarioBase.md\#VM\_Models\_Project\_Preset\_AnalysisScenarioBase\_SaveScenarioData\_VM\_IScenarioDocument\_), [AnalysisScenarioBase.CategoryName](VM.Models.Project.Preset.AnalysisScenarioBase.md\#VM\_Models\_Project\_Preset\_AnalysisScenarioBase\_CategoryName), -ScenarioBase.Add\(IStep\), -ScenarioBase.Clear\(\), -ScenarioBase.Remove\(IStep\), -ScenarioBase.TryGetItem\(Identifier, out IStep\), -ScenarioBase.DisposeManagedResources\(\), -ScenarioBase.CategoryName, -ScenarioBase.IsSelected, -ScenarioBase.Items, -ScenarioBase.Left, -ScenarioBase.Name, -ScenarioBase.Parent, -ScenarioBase.ParentDocument, -ScenarioBase.Top, -ScenarioBase.this\[Identifier\], -ScenarioBase.this\[int\], -ProjectObjectBase.OnDeserialization\(object\), -ProjectObjectBase.DisposeManagedResources\(\), -ProjectObjectBase.DisplayName, -ProjectObjectBase.ID, -ProjectObjectBase.Name, +[ScenarioBase.Add\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Clear\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Remove\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.TryGetItem\(Identifier, out IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.CategoryName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.IsSelected](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Items](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Left](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.ParentDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.Top](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.this\[Identifier\]](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ScenarioBase.this\[int\]](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ScenarioBase.cs), +[ProjectObjectBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.ID](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -83,7 +84,7 @@ public StrengthAnalysis(IProjectDocument parent, string name) `parent` IProjectDocument -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string ## Properties @@ -95,7 +96,7 @@ public override string DisplayName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.SystemModelingStep.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.SystemModelingStep.md index 7d623e8cc7..5885203c0a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.SystemModelingStep.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.SystemModelingStep.md @@ -1,4 +1,5 @@ -# Class SystemModelingStep +# Class SystemModelingStep + Namespace: [VM.Models.Project.Preset](VM.Models.Project.Preset.md) Assembly: VM.Models.Project.Preset.dll @@ -9,10 +10,10 @@ public class SystemModelingStep : StepBase, IObservableObject, IStep, IProjectOb #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -ProjectObjectBase ← -StepBase ← +[ProjectObjectBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs) ← +[StepBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs) ← [SystemModelingStep](VM.Models.Project.Preset.SystemModelingStep.md) #### Implements @@ -28,32 +29,32 @@ IHasParent #### Inherited Members -StepBase.Add\(IStepItem\), -StepBase.AddTarget\(IStep\), -StepBase.CanRelation\(IStep\), -StepBase.ContainsTarget\(IStep\), -StepBase.OnDeserialization\(object\), -StepBase.RemoveTarget\(IStep\), -StepBase.ResetSource\(\), -StepBase.SetSource\(IStep\), -StepBase.DisposeManagedResources\(\), -StepBase.DefaultCommand, -StepBase.FilePath, -StepBase.IsSelected, -StepBase.Items, -StepBase.Parent, -StepBase.ParentDocument, -StepBase.Source, -StepBase.State, -StepBase.TargetApplicationType, -StepBase.Type, -StepBase.StepItemService, -StepBase.this\[int\], -ProjectObjectBase.OnDeserialization\(object\), -ProjectObjectBase.DisposeManagedResources\(\), -ProjectObjectBase.DisplayName, -ProjectObjectBase.ID, -ProjectObjectBase.Name, +[StepBase.Add\(IStepItem\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.AddTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.CanRelation\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ContainsTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.RemoveTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ResetSource\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.SetSource\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.DefaultCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.IsSelected](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Items](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ParentDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Source](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.State](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.TargetApplicationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Type](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.StepItemService](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.this\[int\]](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[ProjectObjectBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.ID](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -94,7 +95,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TargetApplicationType @@ -130,7 +131,7 @@ public override bool CanRelation(IStep source) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### FileChanged\(string\) @@ -140,7 +141,7 @@ public void FileChanged(string fullPath) #### Parameters -`fullPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`fullPath` string ### FileCreated\(string\) @@ -150,7 +151,7 @@ public void FileCreated(string fullPath) #### Parameters -`fullPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`fullPath` string ### FileDeleted\(string\) @@ -160,7 +161,7 @@ public void FileDeleted(string fullPath) #### Parameters -`fullPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`fullPath` string ### FileRenamed\(string\) @@ -170,7 +171,7 @@ public void FileRenamed(string fullPath) #### Parameters -`fullPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`fullPath` string ### GetExtension\(\) @@ -180,7 +181,7 @@ public string GetExtension() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### SetFilePath\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.ThermalStep.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.ThermalStep.md index f25c95c5b3..b3debac885 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.ThermalStep.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.ThermalStep.md @@ -1,4 +1,5 @@ -# Class ThermalStep +# Class ThermalStep + Namespace: [VM.Models.Project.Preset](VM.Models.Project.Preset.md) Assembly: VM.Models.Project.Preset.dll @@ -9,10 +10,10 @@ public class ThermalStep : StepBase, IObservableObject, IStep, IProjectObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← -ProjectObjectBase ← -StepBase ← +[ProjectObjectBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs) ← +[StepBase](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs) ← [ThermalStep](VM.Models.Project.Preset.ThermalStep.md) #### Implements @@ -28,32 +29,32 @@ IHasParent #### Inherited Members -StepBase.Add\(IStepItem\), -StepBase.AddTarget\(IStep\), -StepBase.CanRelation\(IStep\), -StepBase.ContainsTarget\(IStep\), -StepBase.OnDeserialization\(object\), -StepBase.RemoveTarget\(IStep\), -StepBase.ResetSource\(\), -StepBase.SetSource\(IStep\), -StepBase.DisposeManagedResources\(\), -StepBase.DefaultCommand, -StepBase.FilePath, -StepBase.IsSelected, -StepBase.Items, -StepBase.Parent, -StepBase.ParentDocument, -StepBase.Source, -StepBase.State, -StepBase.TargetApplicationType, -StepBase.Type, -StepBase.StepItemService, -StepBase.this\[int\], -ProjectObjectBase.OnDeserialization\(object\), -ProjectObjectBase.DisposeManagedResources\(\), -ProjectObjectBase.DisplayName, -ProjectObjectBase.ID, -ProjectObjectBase.Name, +[StepBase.Add\(IStepItem\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.AddTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.CanRelation\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ContainsTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.RemoveTarget\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ResetSource\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.SetSource\(IStep\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.DefaultCommand](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.IsSelected](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Items](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Parent](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.ParentDocument](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Source](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.State](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.TargetApplicationType](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.Type](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.StepItemService](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[StepBase.this\[int\]](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/StepBase.cs), +[ProjectObjectBase.OnDeserialization\(object\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisposeManagedResources\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.DisplayName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.ID](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), +[ProjectObjectBase.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Common/VM.Models.Project/Models/ProjectObjectBase.cs), ObservableObject.Dispose\(\), ObservableObject.RaisePropertyChanged\(string\), ObservableObject.RaisePropertyChanged\(string, object, object\), @@ -94,7 +95,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TargetApplicationType diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.md index fb40e2ea5c..61180df552 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.Preset.md @@ -1,4 +1,5 @@ -# Namespace VM.Models.Project.Preset +# Namespace VM.Models.Project.Preset + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.ScenarioService.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.ScenarioService.md index 0a70dc8b91..cfe014dc30 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.ScenarioService.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.ScenarioService.md @@ -1,4 +1,5 @@ -# Class ScenarioService +# Class ScenarioService + Namespace: [VM.Models.Project](VM.Models.Project.md) Assembly: VM.Models.Project.dll @@ -9,7 +10,7 @@ public class ScenarioService : IScenarioService #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ScenarioService](VM.Models.Project.ScenarioService.md) #### Implements @@ -46,7 +47,7 @@ public void Compose(IEnumerable assemblies) #### Parameters -`assemblies` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Assembly](https://learn.microsoft.com/dotnet/api/system.reflection.assembly)\> +`assemblies` IEnumerable ### ContainsName\(string\) @@ -56,11 +57,11 @@ public bool ContainsName(string typeName) #### Parameters -`typeName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`typeName` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Dispose\(\) @@ -76,17 +77,17 @@ public bool TryGetInstance(string typeName, IProjectDocument parent, string scen #### Parameters -`typeName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`typeName` string `parent` [IProjectDocument](VM.Models.IProjectDocument.md) -`scenarioName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`scenarioName` string `scenario` [IScenario](VM.Models.IScenario.md) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TryGetType\(string, out Type\) @@ -96,11 +97,11 @@ public bool TryGetType(string typeName, out Type scenarioType) #### Parameters -`typeName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`typeName` string -`scenarioType` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`scenarioType` Type #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.md index 42a385f43b..0da21f29fd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Project.md @@ -1,4 +1,5 @@ -# Namespace VM.Models.Project +# Namespace VM.Models.Project + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.ProjectDocument.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.ProjectDocument.md index 5b4dd38057..5b26e21d3b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.ProjectDocument.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.ProjectDocument.md @@ -1,4 +1,5 @@ -# Class ProjectDocument +# Class ProjectDocument + Namespace: [VM.Models](VM.Models.md) Assembly: VM.Models.Project.dll @@ -9,7 +10,7 @@ public sealed class ProjectDocument : ProjectObjectBase, IObservableObject, IPro #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← [ProjectObjectBase](VM.Models.ProjectObjectBase.md) ← [ProjectDocument](VM.Models.ProjectDocument.md) @@ -54,7 +55,7 @@ public ProjectDocument(string name) #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string ## Properties @@ -76,7 +77,7 @@ public IEnumerable Items { get; } #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IScenario](VM.Models.IScenario.md)\> + IEnumerable<[IScenario](VM.Models.IScenario.md)\> ### RootPath @@ -87,7 +88,7 @@ public string RootPath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ScenarioCount @@ -98,7 +99,7 @@ public int ScenarioCount { get; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### this\[Identifier\] @@ -154,7 +155,7 @@ public bool CanRegisterID(Identifier identifier) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### CanRegisterName\(string\) @@ -164,11 +165,11 @@ public bool CanRegisterName(string name) #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Contains\(IScenario\) @@ -182,7 +183,7 @@ public bool Contains(IScenario item) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ContainsID\(Identifier\) @@ -196,7 +197,7 @@ public bool ContainsID(Identifier identifier) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ContainsName\(IProjectObject\) @@ -210,7 +211,7 @@ public bool ContainsName(IProjectObject item) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DisposeManagedResources\(\) @@ -226,7 +227,7 @@ public static ProjectDocument Open(string path) #### Parameters -`path` [string](https://learn.microsoft.com/dotnet/api/system.string) +`path` string #### Returns @@ -262,7 +263,7 @@ public bool TryGetValue(Identifier identifier, out IScenario scenario) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TryGetValue\(string, out IScenario\) @@ -272,13 +273,13 @@ public bool TryGetValue(string name, out IScenario scenario) #### Parameters -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string `scenario` [IScenario](VM.Models.IScenario.md) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UnregisterID\(IProjectObject\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.ProjectObjectBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.ProjectObjectBase.md index 90b1f6f161..d290b9b61c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.ProjectObjectBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.ProjectObjectBase.md @@ -1,4 +1,5 @@ -# Class ProjectObjectBase +# Class ProjectObjectBase + Namespace: [VM.Models](VM.Models.md) Assembly: VM.Models.Project.dll @@ -9,7 +10,7 @@ public abstract class ProjectObjectBase : ObservableObject, IObservableObject, I #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← [ProjectObjectBase](VM.Models.ProjectObjectBase.md) @@ -66,7 +67,7 @@ public virtual string DisplayName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ID @@ -87,7 +88,7 @@ public virtual string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -105,5 +106,5 @@ public virtual void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Road.ConnectivityGenerator.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Road.ConnectivityGenerator.md index e213aaabb9..da32e7d3b6 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Road.ConnectivityGenerator.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Road.ConnectivityGenerator.md @@ -1,4 +1,5 @@ -# Class ConnectivityGenerator +# Class ConnectivityGenerator + Namespace: [VM.Models.Road](VM.Models.Road.md) Assembly: VM.Models.Road.dll @@ -9,7 +10,7 @@ public static class ConnectivityGenerator #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ConnectivityGenerator](VM.Models.Road.ConnectivityGenerator.md) #### Extension Methods @@ -28,15 +29,15 @@ public static int[] GenerateQuadConnectivity(ulong nU, ulong nV, bool includeCon #### Parameters -`nU` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nU` ulong -`nV` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nV` ulong -`includeConnectivityCount` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`includeConnectivityCount` bool #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] + int\[\] ### GenerateTriangleConnectivity\(ulong, ulong, bool\) @@ -46,15 +47,15 @@ public static int[] GenerateTriangleConnectivity(ulong nU, ulong nV, bool includ #### Parameters -`nU` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nU` ulong -`nV` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nV` ulong -`includeConnectivityCount` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`includeConnectivityCount` bool #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] + int\[\] ### GetQuadConnectivityCountForGivenTargetRoadLength\(ulong, ulong, double, double, bool\) @@ -64,19 +65,19 @@ public static ulong GetQuadConnectivityCountForGivenTargetRoadLength(ulong nU, u #### Parameters -`nU` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nU` ulong -`nV` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nV` ulong -`dRoadLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRoadLength` double -`dTargetLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTargetLength` double -`bIncludeConnectivityCount` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bIncludeConnectivityCount` bool #### Returns - [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) + ulong ### GetTriangleConnectivityCountForGivenTargetRoadLength\(ulong, ulong, double, double, bool\) @@ -86,17 +87,17 @@ public static ulong GetTriangleConnectivityCountForGivenTargetRoadLength(ulong n #### Parameters -`nU` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nU` ulong -`nV` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nV` ulong -`dRoadLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dRoadLength` double -`dTargetLength` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTargetLength` double -`bIncludeConnectivityCount` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bIncludeConnectivityCount` bool #### Returns - [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) + ulong diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Road.MessageSeverity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Road.MessageSeverity.md index 86eae374aa..e39cd29a0a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Road.MessageSeverity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Road.MessageSeverity.md @@ -1,4 +1,5 @@ -# Enum MessageSeverity +# Enum MessageSeverity + Namespace: [VM.Models.Road](VM.Models.Road.md) Assembly: VM.Models.Road.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Road.RoadFile.RoadMessageCalllback.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Road.RoadFile.RoadMessageCalllback.md index f16c2d327d..9421652572 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Road.RoadFile.RoadMessageCalllback.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Road.RoadFile.RoadMessageCalllback.md @@ -1,4 +1,5 @@ -# Delegate RoadFile.RoadMessageCalllback +# Delegate RoadFile.RoadMessageCalllback + Namespace: [VM.Models.Road](VM.Models.Road.md) Assembly: VM.Models.Road.dll @@ -11,11 +12,11 @@ public delegate int RoadFile.RoadMessageCalllback(MessageSeverity level, string `level` [MessageSeverity](VM.Models.Road.MessageSeverity.md) -`message` [string](https://learn.microsoft.com/dotnet/api/system.string) +`message` string #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Road.RoadFile.RoadProgressCalllback.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Road.RoadFile.RoadProgressCalllback.md index b02527a3f0..0b89109b79 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Road.RoadFile.RoadProgressCalllback.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Road.RoadFile.RoadProgressCalllback.md @@ -1,4 +1,5 @@ -# Delegate RoadFile.RoadProgressCalllback +# Delegate RoadFile.RoadProgressCalllback + Namespace: [VM.Models.Road](VM.Models.Road.md) Assembly: VM.Models.Road.dll @@ -9,13 +10,13 @@ public delegate int RoadFile.RoadProgressCalllback(ulong current, ulong max) #### Parameters -`current` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`current` ulong -`max` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`max` ulong #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int #### Extension Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Road.RoadFile.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Road.RoadFile.md index f23899e1ce..19fb4c8516 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Road.RoadFile.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Road.RoadFile.md @@ -1,4 +1,5 @@ -# Class RoadFile +# Class RoadFile + Namespace: [VM.Models.Road](VM.Models.Road.md) Assembly: VM.Models.Road.dll @@ -9,7 +10,7 @@ public class RoadFile #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [RoadFile](VM.Models.Road.RoadFile.md) #### Extension Methods @@ -28,7 +29,7 @@ public double DefaultUIncrement { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### DefaultVIncrement @@ -38,7 +39,7 @@ public double DefaultVIncrement { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### NumUPoints @@ -48,7 +49,7 @@ public ulong NumUPoints { get; } #### Property Value - [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) + ulong ### NumVPoints @@ -58,7 +59,7 @@ public ulong NumVPoints { get; } #### Property Value - [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) + ulong ### NumberOfNodes @@ -68,7 +69,7 @@ public ulong NumberOfNodes { get; } #### Property Value - [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) + ulong ### NumberOfQuadElements @@ -78,7 +79,7 @@ public ulong NumberOfQuadElements { get; } #### Property Value - [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) + ulong ### NumberOfTriElements @@ -88,7 +89,7 @@ public ulong NumberOfTriElements { get; } #### Property Value - [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) + ulong ### RoadLength @@ -98,7 +99,7 @@ public double RoadLength { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Type @@ -118,7 +119,7 @@ public double UEnd { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### UStart @@ -128,7 +129,7 @@ public double UStart { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### VEnd @@ -138,7 +139,7 @@ public double VEnd { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### VStart @@ -148,7 +149,7 @@ public double VStart { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -166,7 +167,7 @@ protected virtual void Dispose(bool disposing) #### Parameters -`disposing` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`disposing` bool ### \~RoadFile\(\) @@ -182,7 +183,7 @@ public (ulong U, ulong V) GetDefaultUVPointsCount() #### Returns - \([ulong](https://learn.microsoft.com/dotnet/api/system.uint64) [U](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.uint64,system.uint64\-.u), [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) [V](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.uint64,system.uint64\-.v)\) + \(ulong U, ulong V\) ### GetNodeDistanceAndUVByTargetNodeCount\(ulong\) @@ -192,11 +193,11 @@ public (ulong U, ulong V, double Distance) GetNodeDistanceAndUVByTargetNodeCount #### Parameters -`dTargetNodeCount` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`dTargetNodeCount` ulong #### Returns - \([ulong](https://learn.microsoft.com/dotnet/api/system.uint64) [U](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.uint64,system.uint64,system.double\-.u), [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) [V](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.uint64,system.uint64,system.double\-.v), [double](https://learn.microsoft.com/dotnet/api/system.double) [Distance](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.uint64,system.uint64,system.double\-.distance)\) + \(ulong U, ulong V, double Distance\) ### GetRoadMesh\(double, bool, bool, RoadProgressCalllback\) @@ -206,17 +207,17 @@ public (Vector[] MeshPoints, int[] Connectivities) GetRoadMesh(double dTargetMes #### Parameters -`dTargetMeshSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTargetMeshSize` double -`bPreferQuadMesh` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bPreferQuadMesh` bool -`bIncludeElementSizeInConnectivity` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bIncludeElementSizeInConnectivity` bool `progressCalllback` [RoadFile](VM.Models.Road.RoadFile.md).[RoadProgressCalllback](VM.Models.Road.RoadFile.RoadProgressCalllback.md) #### Returns - \(Vector\[\] [MeshPoints](https://learn.microsoft.com/dotnet/api/system.valuetuple\-vm.vector\[\],system.int32\[\]\-.meshpoints), [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] [Connectivities](https://learn.microsoft.com/dotnet/api/system.valuetuple\-vm.vector\[\],system.int32\[\]\-.connectivities)\) + \(Vector\[\] MeshPoints, int\[\] Connectivities\) ### GetRoadMeshPointsAndDeltaZsByTargetElementSize\(out ulong, out ulong, double, RoadProgressCalllback\) @@ -226,17 +227,17 @@ public (Vector[] MeshPoints, double[] DeltaZs) GetRoadMeshPointsAndDeltaZsByTarg #### Parameters -`nU` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nU` ulong -`nV` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nV` ulong -`targetDelta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`targetDelta` double `progressCalllback` [RoadFile](VM.Models.Road.RoadFile.md).[RoadProgressCalllback](VM.Models.Road.RoadFile.RoadProgressCalllback.md) #### Returns - \(Vector\[\] [MeshPoints](https://learn.microsoft.com/dotnet/api/system.valuetuple\-vm.vector\[\],system.double\[\]\-.meshpoints), [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] [DeltaZs](https://learn.microsoft.com/dotnet/api/system.valuetuple\-vm.vector\[\],system.double\[\]\-.deltazs)\) + \(Vector\[\] MeshPoints, double\[\] DeltaZs\) ### GetRoadMeshPointsAndDeltaZsByUVCount\(ref ulong, ref ulong, RoadProgressCalllback\) @@ -246,15 +247,15 @@ public (Vector[] MeshPoints, double[] DeltaZs) GetRoadMeshPointsAndDeltaZsByUVCo #### Parameters -`nU` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nU` ulong -`nV` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nV` ulong `progressCalllback` [RoadFile](VM.Models.Road.RoadFile.md).[RoadProgressCalllback](VM.Models.Road.RoadFile.RoadProgressCalllback.md) #### Returns - \(Vector\[\] [MeshPoints](https://learn.microsoft.com/dotnet/api/system.valuetuple\-vm.vector\[\],system.double\[\]\-.meshpoints), [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] [DeltaZs](https://learn.microsoft.com/dotnet/api/system.valuetuple\-vm.vector\[\],system.double\[\]\-.deltazs)\) + \(Vector\[\] MeshPoints, double\[\] DeltaZs\) ### GetRoadMeshPointsAnsDeltsaZsByTargetNodeCount\(out ulong, out ulong, ulong, RoadProgressCalllback\) @@ -264,17 +265,17 @@ public (Vector[] MeshPoints, double[] DeltaZs) GetRoadMeshPointsAnsDeltsaZsByTar #### Parameters -`nU` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nU` ulong -`nV` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nV` ulong -`targetNodeCount` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`targetNodeCount` ulong `progressCalllback` [RoadFile](VM.Models.Road.RoadFile.md).[RoadProgressCalllback](VM.Models.Road.RoadFile.RoadProgressCalllback.md) #### Returns - \(Vector\[\] [MeshPoints](https://learn.microsoft.com/dotnet/api/system.valuetuple\-vm.vector\[\],system.double\[\]\-.meshpoints), [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] [DeltaZs](https://learn.microsoft.com/dotnet/api/system.valuetuple\-vm.vector\[\],system.double\[\]\-.deltazs)\) + \(Vector\[\] MeshPoints, double\[\] DeltaZs\) ### GetRoadMeshPointsByTargetElementSize\(out ulong, out ulong, double, RoadProgressCalllback\) @@ -284,11 +285,11 @@ public Vector[] GetRoadMeshPointsByTargetElementSize(out ulong nU, out ulong nV, #### Parameters -`nU` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nU` ulong -`nV` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nV` ulong -`targetDelta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`targetDelta` double `progressCalllback` [RoadFile](VM.Models.Road.RoadFile.md).[RoadProgressCalllback](VM.Models.Road.RoadFile.RoadProgressCalllback.md) @@ -304,11 +305,11 @@ public Vector[] GetRoadMeshPointsByTargetNodeCount(out ulong nU, out ulong nV, u #### Parameters -`nU` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nU` ulong -`nV` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nV` ulong -`targetNodeCount` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`targetNodeCount` ulong `progressCalllback` [RoadFile](VM.Models.Road.RoadFile.md).[RoadProgressCalllback](VM.Models.Road.RoadFile.RoadProgressCalllback.md) @@ -324,9 +325,9 @@ public Vector[] GetRoadMeshPointsByUVCount(ref ulong nU, ref ulong nV, RoadFile. #### Parameters -`nU` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nU` ulong -`nV` [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) +`nV` ulong `progressCalllback` [RoadFile](VM.Models.Road.RoadFile.md).[RoadProgressCalllback](VM.Models.Road.RoadFile.RoadProgressCalllback.md) @@ -342,17 +343,17 @@ public (Vector[] MeshPoints, int[] Connectivities, double[] DeltaZs) GetRoadMesh #### Parameters -`dTargetMeshSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dTargetMeshSize` double -`bPreferQuadMesh` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bPreferQuadMesh` bool -`bIncludeElementSizeInConnectivity` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bIncludeElementSizeInConnectivity` bool `progressCalllback` [RoadFile](VM.Models.Road.RoadFile.md).[RoadProgressCalllback](VM.Models.Road.RoadFile.RoadProgressCalllback.md) #### Returns - \(Vector\[\] [MeshPoints](https://learn.microsoft.com/dotnet/api/system.valuetuple\-vm.vector\[\],system.int32\[\],system.double\[\]\-.meshpoints), [int](https://learn.microsoft.com/dotnet/api/system.int32)\[\] [Connectivities](https://learn.microsoft.com/dotnet/api/system.valuetuple\-vm.vector\[\],system.int32\[\],system.double\[\]\-.connectivities), [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] [DeltaZs](https://learn.microsoft.com/dotnet/api/system.valuetuple\-vm.vector\[\],system.int32\[\],system.double\[\]\-.deltazs)\) + \(Vector\[\] MeshPoints, int\[\] Connectivities, double\[\] DeltaZs\) ### GetUVPointsCountByTargetPointDistance\(double\) @@ -362,11 +363,11 @@ public (ulong U, ulong V) GetUVPointsCountByTargetPointDistance(double targetDis #### Parameters -`targetDistanceBetweenPoints` [double](https://learn.microsoft.com/dotnet/api/system.double) +`targetDistanceBetweenPoints` double #### Returns - \([ulong](https://learn.microsoft.com/dotnet/api/system.uint64) [U](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.uint64,system.uint64\-.u), [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) [V](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.uint64,system.uint64\-.v)\) + \(ulong U, ulong V\) ### Initialize\(RoadMessageCalllback, MessageSeverity, bool\) @@ -380,7 +381,7 @@ public static void Initialize(RoadFile.RoadMessageCalllback callback, MessageSev `severity` [MessageSeverity](VM.Models.Road.MessageSeverity.md) -`bDoNotUseCosinLib` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bDoNotUseCosinLib` bool ### Open\(string, double\) @@ -390,9 +391,9 @@ public static RoadFile Open(string pathRoadFile, double dLengthFactor = 1) #### Parameters -`pathRoadFile` [string](https://learn.microsoft.com/dotnet/api/system.string) +`pathRoadFile` string -`dLengthFactor` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dLengthFactor` double #### Returns @@ -406,7 +407,7 @@ public static void SetCriLibPath(string pathLibCri) #### Parameters -`pathLibCri` [string](https://learn.microsoft.com/dotnet/api/system.string) +`pathLibCri` string ### Uninitialize\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Road.RoadType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Road.RoadType.md index 90a77a8ac7..10b2ff1ead 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Road.RoadType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Road.RoadType.md @@ -1,4 +1,5 @@ -# Enum RoadType +# Enum RoadType + Namespace: [VM.Models.Road](VM.Models.Road.md) Assembly: VM.Models.Road.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Road.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Road.md index a281e25361..b73242ba10 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Road.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.Road.md @@ -1,4 +1,5 @@ -# Namespace VM.Models.Road +# Namespace VM.Models.Road + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.ScenarioBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.ScenarioBase.md index c7cbb9eae1..e083fd8e3c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.ScenarioBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.ScenarioBase.md @@ -1,4 +1,5 @@ -# Class ScenarioBase +# Class ScenarioBase + Namespace: [VM.Models](VM.Models.md) Assembly: VM.Models.Project.dll @@ -9,7 +10,7 @@ public abstract class ScenarioBase : ProjectObjectBase, IObservableObject, IScen #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← [ProjectObjectBase](VM.Models.ProjectObjectBase.md) ← [ScenarioBase](VM.Models.ScenarioBase.md) @@ -62,7 +63,7 @@ public ScenarioBase(IProjectDocument parent, string name) `parent` [IProjectDocument](VM.Models.IProjectDocument.md) -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string ## Properties @@ -75,7 +76,7 @@ public abstract string CategoryName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IsSelected @@ -86,7 +87,7 @@ public bool IsSelected { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Items @@ -96,7 +97,7 @@ public IEnumerable Items { get; } #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IStep](VM.Models.IStep.md)\> + IEnumerable<[IStep](VM.Models.IStep.md)\> ### Left @@ -107,7 +108,7 @@ public double Left { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Name @@ -117,7 +118,7 @@ public override string Name { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Parent @@ -150,7 +151,7 @@ public double Top { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### this\[Identifier\] @@ -220,5 +221,5 @@ public bool TryGetItem(Identifier identifier, out IStep item) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.SeparatorStepItem.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.SeparatorStepItem.md index af8a1cfae4..b096555294 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.SeparatorStepItem.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.SeparatorStepItem.md @@ -1,4 +1,5 @@ -# Struct SeparatorStepItem +# Struct SeparatorStepItem + Namespace: [VM.Models](VM.Models.md) Assembly: VM.Models.Project.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.StepBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.StepBase.md index 4b03880ee8..0b2f76b412 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.StepBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.StepBase.md @@ -1,4 +1,5 @@ -# Class StepBase +# Class StepBase + Namespace: [VM.Models](VM.Models.md) Assembly: VM.Models.Project.dll @@ -9,7 +10,7 @@ public abstract class StepBase : ProjectObjectBase, IObservableObject, IStep, IP #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← ObservableObject ← [ProjectObjectBase](VM.Models.ProjectObjectBase.md) ← [StepBase](VM.Models.StepBase.md) @@ -73,7 +74,7 @@ public ICommand DefaultCommand { get; protected set; } #### Property Value - [ICommand](https://learn.microsoft.com/dotnet/api/system.windows.input.icommand) + ICommand ### FilePath @@ -83,7 +84,7 @@ public string FilePath { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IsSelected @@ -94,7 +95,7 @@ public bool IsSelected { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Items @@ -104,7 +105,7 @@ public IEnumerable Items { get; } #### Property Value - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IStepItem](VM.Models.IStepItem.md)\> + IEnumerable<[IStepItem](VM.Models.IStepItem.md)\> ### Parent @@ -224,7 +225,7 @@ public virtual bool CanRelation(IStep source) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ContainsTarget\(IStep\) @@ -238,7 +239,7 @@ public bool ContainsTarget(IStep item) #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DisposeManagedResources\(\) @@ -254,7 +255,7 @@ public override void OnDeserialization(object sender) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object ### RemoveTarget\(IStep\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.StepItemMetadata.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.StepItemMetadata.md index 0743190a15..b4b5abe4f1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.StepItemMetadata.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.StepItemMetadata.md @@ -1,4 +1,5 @@ -# Class StepItemMetadata +# Class StepItemMetadata + Namespace: [VM.Models](VM.Models.md) Assembly: VM.Models.Project.dll @@ -9,7 +10,7 @@ public class StepItemMetadata : IStepItemMetadata #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [StepItemMetadata](VM.Models.StepItemMetadata.md) #### Implements @@ -40,5 +41,5 @@ public Type StepType { get; set; } #### Property Value - [Type](https://learn.microsoft.com/dotnet/api/system.type) + Type diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.StepItemMetadataAttribute.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.StepItemMetadataAttribute.md index 53426dca6c..6d8045b1d2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.StepItemMetadataAttribute.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.StepItemMetadataAttribute.md @@ -1,4 +1,5 @@ -# Class StepItemMetadataAttribute +# Class StepItemMetadataAttribute + Namespace: [VM.Models](VM.Models.md) Assembly: VM.Models.Project.dll @@ -11,9 +12,9 @@ public class StepItemMetadataAttribute : ExportAttribute, IStepItemMetadata #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[Attribute](https://learn.microsoft.com/dotnet/api/system.attribute) ← -[ExportAttribute](https://learn.microsoft.com/dotnet/api/system.composition.exportattribute) ← +object ← +Attribute ← +ExportAttribute ← [StepItemMetadataAttribute](VM.Models.StepItemMetadataAttribute.md) #### Implements @@ -36,7 +37,7 @@ public StepItemMetadataAttribute(Type stepType) #### Parameters -`stepType` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`stepType` Type ## Properties @@ -48,5 +49,5 @@ public Type StepType { get; } #### Property Value - [Type](https://learn.microsoft.com/dotnet/api/system.type) + Type diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.StepItemService.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.StepItemService.md index 0d89fae96f..7ee446e129 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.StepItemService.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.StepItemService.md @@ -1,4 +1,5 @@ -# Class StepItemService +# Class StepItemService + Namespace: [VM.Models](VM.Models.md) Assembly: VM.Models.Project.dll @@ -10,7 +11,7 @@ public class StepItemService : IStepItemService #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [StepItemService](VM.Models.StepItemService.md) #### Implements @@ -59,9 +60,9 @@ public void Add(IStepItemSet stepItemSet, Type stepType, Func\> +`factory` Func\> ### Clear\(\) @@ -77,7 +78,7 @@ public void Compose(IEnumerable assemblies) #### Parameters -`assemblies` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[Assembly](https://learn.microsoft.com/dotnet/api/system.reflection.assembly)\> +`assemblies` IEnumerable ### GetItems\(Type, IStep\) @@ -87,11 +88,11 @@ public IEnumerable GetItems(Type scenarioType, IStep parent) #### Parameters -`scenarioType` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`scenarioType` Type `parent` [IStep](VM.Models.IStep.md) #### Returns - [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[IStepItem](VM.Models.IStepItem.md)\> + IEnumerable<[IStepItem](VM.Models.IStepItem.md)\> diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.StepState.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.StepState.md index 98b47d021a..bc8fb4653b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.StepState.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.StepState.md @@ -1,4 +1,5 @@ -# Enum StepState +# Enum StepState + Namespace: [VM.Models](VM.Models.md) Assembly: VM.Models.Project.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.StepType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.StepType.md index f63a3e4b69..5e2c126176 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.StepType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.StepType.md @@ -1,4 +1,5 @@ -# Enum StepType +# Enum StepType + Namespace: [VM.Models](VM.Models.md) Assembly: VM.Models.Project.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.md index dc72743678..6b279d8cec 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Models.md @@ -1,4 +1,5 @@ -# Namespace VM.Models +# Namespace VM.Models + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.App.Navigator.INavigator.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.App.Navigator.INavigator.md index 4a27706bac..453c3f70a3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.App.Navigator.INavigator.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.App.Navigator.INavigator.md @@ -1,4 +1,5 @@ -# Interface INavigator +# Interface INavigator + Namespace: [VM.NX.App.Navigator](VM.NX.App.Navigator.md) Assembly: VMDIDef.dll @@ -23,7 +24,7 @@ void Activate(string strPageName) #### Parameters -`strPageName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPageName` string ### GetPage\(string\) @@ -33,7 +34,7 @@ INavigatorPage GetPage(string strPageName) #### Parameters -`strPageName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPageName` string #### Returns diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.App.Navigator.INavigatorPage.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.App.Navigator.INavigatorPage.md index e45ce5fc48..cd21b7ebbc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.App.Navigator.INavigatorPage.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.App.Navigator.INavigatorPage.md @@ -1,4 +1,5 @@ -# Interface INavigatorPage +# Interface INavigatorPage + Namespace: [VM.NX.App.Navigator](VM.NX.App.Navigator.md) Assembly: VMDIDef.dll @@ -23,7 +24,7 @@ bool DoingImport { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SkipChildAdded @@ -33,7 +34,7 @@ bool SkipChildAdded { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -45,11 +46,11 @@ bool Add(string strAddInfo) #### Parameters -`strAddInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strAddInfo` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ClearSelectNavItem\(\) @@ -59,7 +60,7 @@ bool ClearSelectNavItem() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Initialize\(XmlDocument\) @@ -69,11 +70,11 @@ bool Initialize(XmlDocument dom) #### Parameters -`dom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`dom` XmlDocument #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MultipleAdd\(string\) @@ -83,11 +84,11 @@ bool MultipleAdd(string strAddInfo) #### Parameters -`strAddInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strAddInfo` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Remove\(string\) @@ -97,11 +98,11 @@ bool Remove(string strRemoveInfo) #### Parameters -`strRemoveInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRemoveInfo` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Rename\(string\) @@ -111,11 +112,11 @@ bool Rename(string strRenameInfo) #### Parameters -`strRenameInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strRenameInfo` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SelectRoot\(\) @@ -131,11 +132,11 @@ bool Update(string strUpdateInfo) #### Parameters -`strUpdateInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strUpdateInfo` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UpdateAllTree\(string\) @@ -145,11 +146,11 @@ bool UpdateAllTree(string strUpdateInfo) #### Parameters -`strUpdateInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strUpdateInfo` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UpdateEnable\(string\) @@ -159,11 +160,11 @@ bool UpdateEnable(string strUpdateInfo) #### Parameters -`strUpdateInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strUpdateInfo` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UpdateIconForNodalModal\(string\) @@ -173,11 +174,11 @@ bool UpdateIconForNodalModal(string strXml) #### Parameters -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UpdateRootName\(string\) @@ -187,5 +188,5 @@ void UpdateRootName(string strUpdateInfo) #### Parameters -`strUpdateInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strUpdateInfo` string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.App.Navigator.ITopologyNavigator.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.App.Navigator.ITopologyNavigator.md index c2f56c744b..ba406f2fe7 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.App.Navigator.ITopologyNavigator.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.App.Navigator.ITopologyNavigator.md @@ -1,4 +1,5 @@ -# Interface ITopologyNavigator +# Interface ITopologyNavigator + Namespace: [VM.NX.App.Navigator](VM.NX.App.Navigator.md) Assembly: VMDIDef.dll @@ -23,11 +24,11 @@ bool Add(string strAddInfo) #### Parameters -`strAddInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strAddInfo` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Clear\(\) @@ -43,9 +44,9 @@ bool Update(string strUpdateInfo) #### Parameters -`strUpdateInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strUpdateInfo` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.App.Navigator.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.App.Navigator.md index 8f060b24b0..ced5337fc3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.App.Navigator.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.App.Navigator.md @@ -1,4 +1,5 @@ -# Namespace VM.NX.App.Navigator +# Namespace VM.NX.App.Navigator + ### Interfaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.Factory.DlgFactoryBase.AssemblyInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.Factory.DlgFactoryBase.AssemblyInfo.md index 34065552f5..31a2de34ba 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.Factory.DlgFactoryBase.AssemblyInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.Factory.DlgFactoryBase.AssemblyInfo.md @@ -1,4 +1,5 @@ -# Class DlgFactoryBase.AssemblyInfo +# Class DlgFactoryBase.AssemblyInfo + Namespace: [VM.NX.Dialog.Factory](VM.NX.Dialog.Factory.md) Assembly: VMDM.dll @@ -9,7 +10,7 @@ protected class DlgFactoryBase.AssemblyInfo #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DlgFactoryBase.AssemblyInfo](VM.NX.Dialog.Factory.DlgFactoryBase.AssemblyInfo.md) #### Extension Methods @@ -36,7 +37,7 @@ public Assembly m_asm #### Field Value - [Assembly](https://learn.microsoft.com/dotnet/api/system.reflection.assembly) + Assembly ### m\_node @@ -46,5 +47,5 @@ public XmlNode m_node #### Field Value - [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) + XmlNode diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.Factory.DlgFactoryBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.Factory.DlgFactoryBase.md index c63095868d..20016aa534 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.Factory.DlgFactoryBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.Factory.DlgFactoryBase.md @@ -1,4 +1,5 @@ -# Class DlgFactoryBase +# Class DlgFactoryBase + Namespace: [VM.NX.Dialog.Factory](VM.NX.Dialog.Factory.md) Assembly: VMDM.dll @@ -9,7 +10,7 @@ public abstract class DlgFactoryBase #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DlgFactoryBase](VM.NX.Dialog.Factory.DlgFactoryBase.md) #### Derived @@ -32,9 +33,9 @@ protected DlgFactoryBase(string strDlgFileDirectory, string strDlgDirectory) #### Parameters -`strDlgFileDirectory` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDlgFileDirectory` string -`strDlgDirectory` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDlgDirectory` string ## Fields @@ -46,7 +47,7 @@ protected static Dictionary g_dicPropertyMap #### Field Value - [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [string](https://learn.microsoft.com/dotnet/api/system.string)\> + Dictionary ## Methods @@ -58,7 +59,7 @@ protected DlgFactoryBase.AssemblyInfo GetAssemblyNameFromCommand(string strComma #### Parameters -`strCommand` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCommand` string #### Returns @@ -72,13 +73,13 @@ protected Type GetTypeInfo(string strCommand, DlgFactoryBase.AssemblyInfo assem) #### Parameters -`strCommand` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCommand` string `assem` [DlgFactoryBase](VM.NX.Dialog.Factory.DlgFactoryBase.md).[AssemblyInfo](VM.NX.Dialog.Factory.DlgFactoryBase.AssemblyInfo.md) #### Returns - [Type](https://learn.microsoft.com/dotnet/api/system.type) + Type ### GetTypeInfo\(string\) @@ -88,11 +89,11 @@ protected Type GetTypeInfo(string strCommand) #### Parameters -`strCommand` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCommand` string #### Returns - [Type](https://learn.microsoft.com/dotnet/api/system.type) + Type ### IsUseDialog\(string\) @@ -102,9 +103,9 @@ public bool IsUseDialog(string strTypeName) #### Parameters -`strTypeName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strTypeName` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.Factory.IDlgFactory.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.Factory.IDlgFactory.md index a78b193911..872ca8b4b0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.Factory.IDlgFactory.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.Factory.IDlgFactory.md @@ -1,4 +1,5 @@ -# Interface IDlgFactory +# Interface IDlgFactory + Namespace: [VM.NX.Dialog.Factory](VM.NX.Dialog.Factory.md) Assembly: VMDIDef.dll @@ -23,13 +24,13 @@ Form GetObject(string strCommand, Form formOwner) #### Parameters -`strCommand` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strCommand` string -`formOwner` [Form](https://learn.microsoft.com/dotnet/api/system.windows.forms.form) +`formOwner` Form #### Returns - [Form](https://learn.microsoft.com/dotnet/api/system.windows.forms.form) + Form ### GetObjectWithMultiDialog\(MultiDialogInfo\[\], Form\) @@ -41,11 +42,11 @@ Form GetObjectWithMultiDialog(MultiDialogInfo[] arInfo, Form formOwner) `arInfo` [MultiDialogInfo](VM.NX.Dialog.Factory.MultiDialogInfo.md)\[\] -`formOwner` [Form](https://learn.microsoft.com/dotnet/api/system.windows.forms.form) +`formOwner` Form #### Returns - [Form](https://learn.microsoft.com/dotnet/api/system.windows.forms.form) + Form ### IsUseDialog\(string\) @@ -55,9 +56,9 @@ bool IsUseDialog(string strTypeName) #### Parameters -`strTypeName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strTypeName` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.Factory.MultiDialogInfo.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.Factory.MultiDialogInfo.md index 5d6e1961f2..1c600e73b8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.Factory.MultiDialogInfo.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.Factory.MultiDialogInfo.md @@ -1,4 +1,5 @@ -# Struct MultiDialogInfo +# Struct MultiDialogInfo + Namespace: [VM.NX.Dialog.Factory](VM.NX.Dialog.Factory.md) Assembly: VMDIDef.dll @@ -17,11 +18,11 @@ public MultiDialogInfo(bool bReadOnly, string strTypeFullName, string strPropert #### Parameters -`bReadOnly` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReadOnly` bool -`strTypeFullName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strTypeFullName` string -`strPropertyXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPropertyXml` string ## Fields @@ -33,7 +34,7 @@ public string PropertyXml #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ReadOnly @@ -43,7 +44,7 @@ public bool ReadOnly #### Field Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TypeFullName @@ -53,5 +54,5 @@ public string TypeFullName #### Field Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.Factory.PropertyDlgFactory.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.Factory.PropertyDlgFactory.md index c8fab5c934..3c9a3b0de1 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.Factory.PropertyDlgFactory.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.Factory.PropertyDlgFactory.md @@ -1,4 +1,5 @@ -# Class PropertyDlgFactory +# Class PropertyDlgFactory + Namespace: [VM.NX.Dialog.Factory](VM.NX.Dialog.Factory.md) Assembly: VMDM.dll @@ -9,7 +10,7 @@ public class PropertyDlgFactory : DlgFactoryBase, IDlgFactory #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [DlgFactoryBase](VM.NX.Dialog.Factory.DlgFactoryBase.md) ← [PropertyDlgFactory](VM.NX.Dialog.Factory.PropertyDlgFactory.md) @@ -41,9 +42,9 @@ public PropertyDlgFactory(string strDlgFileDirectory, string strDlgDirectory) #### Parameters -`strDlgFileDirectory` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDlgFileDirectory` string -`strDlgDirectory` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strDlgDirectory` string ## Methods @@ -55,13 +56,13 @@ public Form GetObject(string strType, Form formOwner) #### Parameters -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string -`formOwner` [Form](https://learn.microsoft.com/dotnet/api/system.windows.forms.form) +`formOwner` Form #### Returns - [Form](https://learn.microsoft.com/dotnet/api/system.windows.forms.form) + Form ### GetObjectWithMultiDialog\(MultiDialogInfo\[\], Form\) @@ -73,9 +74,9 @@ public Form GetObjectWithMultiDialog(MultiDialogInfo[] arInfo, Form formOwner) `arInfo` MultiDialogInfo\[\] -`formOwner` [Form](https://learn.microsoft.com/dotnet/api/system.windows.forms.form) +`formOwner` Form #### Returns - [Form](https://learn.microsoft.com/dotnet/api/system.windows.forms.form) + Form diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.Factory.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.Factory.md index e0b1bc48bf..7971e7e7e4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.Factory.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.Factory.md @@ -1,4 +1,5 @@ -# Namespace VM.NX.Dialog.Factory +# Namespace VM.NX.Dialog.Factory + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.IAppHandle.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.IAppHandle.md index 867e4fd072..3c570e59a0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.IAppHandle.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.IAppHandle.md @@ -1,4 +1,5 @@ -# Interface IAppHandle +# Interface IAppHandle + Namespace: [VM.NX.Dialog](VM.NX.Dialog.md) Assembly: VMDIDef.dll @@ -23,9 +24,9 @@ void Activate(UIntPtr obj, bool isActive) #### Parameters -`obj` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`obj` UIntPtr -`isActive` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isActive` bool ### Activate\(List, bool\) @@ -35,9 +36,9 @@ void Activate(List lstObj, bool isActive) #### Parameters -`lstObj` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\> +`lstObj` List -`isActive` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isActive` bool ### ActivateFromExtern\(UIntPtr, bool\) @@ -47,9 +48,9 @@ void ActivateFromExtern(UIntPtr obj, bool isActive) #### Parameters -`obj` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`obj` UIntPtr -`isActive` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isActive` bool ### ActivateFromExternWithoutReset\(UIntPtr, bool\) @@ -59,9 +60,9 @@ void ActivateFromExternWithoutReset(UIntPtr obj, bool isActive) #### Parameters -`obj` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`obj` UIntPtr -`isActive` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isActive` bool ### ActivateWithoutReset\(UIntPtr, bool\) @@ -71,9 +72,9 @@ void ActivateWithoutReset(UIntPtr obj, bool isActive) #### Parameters -`obj` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`obj` UIntPtr -`isActive` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isActive` bool ### ActivateWithoutReset\(List, bool\) @@ -83,9 +84,9 @@ void ActivateWithoutReset(List lstObj, bool isActive) #### Parameters -`lstObj` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\> +`lstObj` List -`isActive` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isActive` bool ### CalcCoordSys\(string, XmlNode, XmlNode\) @@ -95,15 +96,15 @@ bool CalcCoordSys(string strPickResult, XmlNode nodeBaseCoordSys, XmlNode nodeAc #### Parameters -`strPickResult` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPickResult` string -`nodeBaseCoordSys` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`nodeBaseCoordSys` XmlNode -`nodeActionCoordSys` [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode) +`nodeActionCoordSys` XmlNode #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DeleteObject\(UIntPtr, bool\) @@ -113,13 +114,13 @@ bool DeleteObject(UIntPtr obj, bool isFirst) #### Parameters -`obj` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`obj` UIntPtr -`isFirst` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isFirst` bool #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### DistanceBetween2Points\(UIntPtr, UIntPtr\) @@ -129,13 +130,13 @@ double DistanceBetween2Points(UIntPtr tagFrom, UIntPtr tagTo) #### Parameters -`tagFrom` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`tagFrom` UIntPtr -`tagTo` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`tagTo` UIntPtr #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### FindInActiveModel\(string\) @@ -145,11 +146,11 @@ UIntPtr FindInActiveModel(string strObjName) #### Parameters -`strObjName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strObjName` string #### Returns - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ### GetDefaultName\(string\) @@ -159,11 +160,11 @@ string GetDefaultName(string strHead) #### Parameters -`strHead` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strHead` string #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IsValidName\(string, UIntPtr, UIntPtr\) @@ -173,15 +174,15 @@ bool IsValidName(string strName, UIntPtr tagContainer, UIntPtr tagObject) #### Parameters -`strName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strName` string -`tagContainer` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`tagContainer` UIntPtr -`tagObject` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`tagObject` UIntPtr #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RegisterStrDialogResult\(int, XmlDocument\) @@ -191,9 +192,9 @@ void RegisterStrDialogResult(int nIDDialog, XmlDocument domResult) #### Parameters -`nIDDialog` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIDDialog` int -`domResult` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`domResult` XmlDocument ### SetMultiDeleteObject\(bool\) @@ -203,7 +204,7 @@ void SetMultiDeleteObject(bool bMulti) #### Parameters -`bMulti` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bMulti` bool ### StartOperation\(string\) @@ -213,7 +214,7 @@ void StartOperation(string strOpName) #### Parameters -`strOpName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOpName` string ### StartOperation\(string, string\) @@ -223,9 +224,9 @@ void StartOperation(string strOpName, string strOpInfo) #### Parameters -`strOpName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOpName` string -`strOpInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOpInfo` string ### StartOperation\(string, string, bool\) @@ -235,11 +236,11 @@ void StartOperation(string strOpName, string strOpInfo, bool bHistoryMerge) #### Parameters -`strOpName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOpName` string -`strOpInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOpInfo` string -`bHistoryMerge` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bHistoryMerge` bool ### StartOperation\(string, UIntPtr, string\) @@ -249,11 +250,11 @@ void StartOperation(string strOpName, UIntPtr ptrDoc, string strOpInfo) #### Parameters -`strOpName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOpName` string -`ptrDoc` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`ptrDoc` UIntPtr -`strOpInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strOpInfo` string ### UpdateDisplay\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.IDlgManager.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.IDlgManager.md index 8fde2bb275..4ed35181ae 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.IDlgManager.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.IDlgManager.md @@ -1,4 +1,5 @@ -# Interface IDlgManager +# Interface IDlgManager + Namespace: [VM.NX.Dialog](VM.NX.Dialog.md) Assembly: VMDIDef.dll @@ -23,7 +24,7 @@ void CloseAllDialog(object doc) #### Parameters -`doc` [object](https://learn.microsoft.com/dotnet/api/system.object) +`doc` object ### CloseDialog\(object, int\) @@ -33,9 +34,9 @@ void CloseDialog(object doc, int nIDDialog) #### Parameters -`doc` [object](https://learn.microsoft.com/dotnet/api/system.object) +`doc` object -`nIDDialog` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIDDialog` int ### CloseDocumentPropertyDialog\(object, int\) @@ -45,9 +46,9 @@ void CloseDocumentPropertyDialog(object doc, int nIDDialog) #### Parameters -`doc` [object](https://learn.microsoft.com/dotnet/api/system.object) +`doc` object -`nIDDialog` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIDDialog` int ### CloseMultiDialog\(object, int\) @@ -57,9 +58,9 @@ void CloseMultiDialog(object doc, int nIDDialog) #### Parameters -`doc` [object](https://learn.microsoft.com/dotnet/api/system.object) +`doc` object -`nIDDialog` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIDDialog` int ### GetCountOpendDialog\(object\) @@ -69,11 +70,11 @@ int GetCountOpendDialog(object doc) #### Parameters -`doc` [object](https://learn.microsoft.com/dotnet/api/system.object) +`doc` object #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### GetForm\(string\) @@ -83,11 +84,11 @@ Form GetForm(string strFullName) #### Parameters -`strFullName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strFullName` string #### Returns - [Form](https://learn.microsoft.com/dotnet/api/system.windows.forms.form) + Form ### GetXmlData\(object\) @@ -97,11 +98,11 @@ string GetXmlData(object doc) #### Parameters -`doc` [object](https://learn.microsoft.com/dotnet/api/system.object) +`doc` object #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IsOpenDocumentPropertyDialog\(object\) @@ -111,11 +112,11 @@ bool IsOpenDocumentPropertyDialog(object doc) #### Parameters -`doc` [object](https://learn.microsoft.com/dotnet/api/system.object) +`doc` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsOpenPropertyDialog\(object, UIntPtr\) @@ -125,13 +126,13 @@ bool IsOpenPropertyDialog(object doc, UIntPtr obj) #### Parameters -`doc` [object](https://learn.microsoft.com/dotnet/api/system.object) +`doc` object -`obj` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`obj` UIntPtr #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsUsePropertyDialog\(UIntPtr\) @@ -141,11 +142,11 @@ bool IsUsePropertyDialog(UIntPtr obj) #### Parameters -`obj` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`obj` UIntPtr #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OpenDocumentPropertyDialog\(object\) @@ -155,11 +156,11 @@ int OpenDocumentPropertyDialog(object doc) #### Parameters -`doc` [object](https://learn.microsoft.com/dotnet/api/system.object) +`doc` object #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### OpenMarkerInformation\(UIntPtr\) @@ -169,7 +170,7 @@ void OpenMarkerInformation(UIntPtr KeyObject) #### Parameters -`KeyObject` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`KeyObject` UIntPtr ### OpenModelessDialog\(object, string, string\) @@ -179,15 +180,15 @@ Form OpenModelessDialog(object doc, string strType, string strInitInfo) #### Parameters -`doc` [object](https://learn.microsoft.com/dotnet/api/system.object) +`doc` object -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string -`strInitInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInitInfo` string #### Returns - [Form](https://learn.microsoft.com/dotnet/api/system.windows.forms.form) + Form ### OpenModelessDialog\(object, Type, string\) @@ -197,15 +198,15 @@ Form OpenModelessDialog(object doc, Type type, string strInitInfo) #### Parameters -`doc` [object](https://learn.microsoft.com/dotnet/api/system.object) +`doc` object -`type` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`type` Type -`strInitInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInitInfo` string #### Returns - [Form](https://learn.microsoft.com/dotnet/api/system.windows.forms.form) + Form ### OpenModelessDialog\(object, string, object\[\], string\) @@ -215,17 +216,17 @@ Form OpenModelessDialog(object doc, string strType, object[] arParam, string str #### Parameters -`doc` [object](https://learn.microsoft.com/dotnet/api/system.object) +`doc` object -`strType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strType` string -`arParam` [object](https://learn.microsoft.com/dotnet/api/system.object)\[\] +`arParam` object\[\] -`strInitInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInitInfo` string #### Returns - [Form](https://learn.microsoft.com/dotnet/api/system.windows.forms.form) + Form ### OpenPropertyDialog\(object, UIntPtr\) @@ -235,13 +236,13 @@ int OpenPropertyDialog(object doc, UIntPtr obj) #### Parameters -`doc` [object](https://learn.microsoft.com/dotnet/api/system.object) +`doc` object -`obj` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`obj` UIntPtr #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### OpenPropertyDialog\(object, UIntPtr, bool\) @@ -251,15 +252,15 @@ int OpenPropertyDialog(object doc, UIntPtr obj, bool bCreate) #### Parameters -`doc` [object](https://learn.microsoft.com/dotnet/api/system.object) +`doc` object -`obj` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`obj` UIntPtr -`bCreate` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bCreate` bool #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### OpenPropertyDialog\(object, UIntPtr, Form\) @@ -269,15 +270,15 @@ int OpenPropertyDialog(object doc, UIntPtr obj, Form ownerForm) #### Parameters -`doc` [object](https://learn.microsoft.com/dotnet/api/system.object) +`doc` object -`obj` [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) +`obj` UIntPtr -`ownerForm` [Form](https://learn.microsoft.com/dotnet/api/system.windows.forms.form) +`ownerForm` Form #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### OpenPropertyMultiDialog\(object, List\) @@ -287,9 +288,9 @@ void OpenPropertyMultiDialog(object doc, List lstObj) #### Parameters -`doc` [object](https://learn.microsoft.com/dotnet/api/system.object) +`doc` object -`lstObj` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list\-1)<[UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr)\> +`lstObj` List ### Redraw\(object\) @@ -299,7 +300,7 @@ void Redraw(object doc) #### Parameters -`doc` [object](https://learn.microsoft.com/dotnet/api/system.object) +`doc` object ### SetXmlData\(object, string\) @@ -309,9 +310,9 @@ void SetXmlData(object doc, string strXml) #### Parameters -`doc` [object](https://learn.microsoft.com/dotnet/api/system.object) +`doc` object -`strXml` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strXml` string ### ShowModelessDialog\(Form\) @@ -321,7 +322,7 @@ void ShowModelessDialog(Form form) #### Parameters -`form` [Form](https://learn.microsoft.com/dotnet/api/system.windows.forms.form) +`form` Form ### VisibleDialog\(object, bool\) @@ -331,7 +332,7 @@ void VisibleDialog(object doc, bool bShow) #### Parameters -`doc` [object](https://learn.microsoft.com/dotnet/api/system.object) +`doc` object -`bShow` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bShow` bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.IDocumentDlg.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.IDocumentDlg.md index 77c368fabb..9fbd9d0ef8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.IDocumentDlg.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.IDocumentDlg.md @@ -1,4 +1,5 @@ -# Interface IDocumentDlg +# Interface IDocumentDlg + Namespace: [VM.NX.Dialog](VM.NX.Dialog.md) Assembly: VMDIDef.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.INXFormInit.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.INXFormInit.md index f5e19f9e64..1d3e84169c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.INXFormInit.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.INXFormInit.md @@ -1,4 +1,5 @@ -# Interface INXFormInit +# Interface INXFormInit + Namespace: [VM.NX.Dialog](VM.NX.Dialog.md) Assembly: VMDIDef.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.IPropDlg.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.IPropDlg.md index a23b69f44e..f50cd8cf0c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.IPropDlg.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.IPropDlg.md @@ -1,4 +1,5 @@ -# Interface IPropDlg +# Interface IPropDlg + Namespace: [VM.NX.Dialog](VM.NX.Dialog.md) Assembly: VMDIDef.dll @@ -28,7 +29,7 @@ bool AllowMulti { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsCreate @@ -38,7 +39,7 @@ bool IsCreate { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsMulti @@ -48,7 +49,7 @@ bool IsMulti { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsReadOnly @@ -58,7 +59,7 @@ bool IsReadOnly { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Tag @@ -68,7 +69,7 @@ UIntPtr Tag { get; set; } #### Property Value - [UIntPtr](https://learn.microsoft.com/dotnet/api/system.uintptr) + UIntPtr ## Methods @@ -80,7 +81,7 @@ IPropPage GetPage(string strPageName) #### Parameters -`strPageName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPageName` string #### Returns @@ -94,7 +95,7 @@ void Redraw(double dIconSize) #### Parameters -`dIconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dIconSize` double ### SetInputData\(string\) @@ -104,11 +105,11 @@ bool SetInputData(string strInput) #### Parameters -`strInput` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInput` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### UpdateAllPage\(Form\) @@ -118,5 +119,5 @@ void UpdateAllPage(Form formFrom) #### Parameters -`formFrom` [Form](https://learn.microsoft.com/dotnet/api/system.windows.forms.form) +`formFrom` Form diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.IPropPage.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.IPropPage.md index 40610c8df8..dda12a1102 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.IPropPage.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.IPropPage.md @@ -1,4 +1,5 @@ -# Interface IPropPage +# Interface IPropPage + Namespace: [VM.NX.Dialog](VM.NX.Dialog.md) Assembly: VMDIDef.dll @@ -23,7 +24,7 @@ bool CheckFileProperty() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetResult\(XmlDocument\) @@ -33,11 +34,11 @@ bool GetResult(XmlDocument dom) #### Parameters -`dom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`dom` XmlDocument #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetResultForMulti\(XmlDocument\) @@ -47,11 +48,11 @@ bool GetResultForMulti(XmlDocument dom) #### Parameters -`dom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`dom` XmlDocument #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Redraw\(double\) @@ -61,7 +62,7 @@ void Redraw(double dIconSize) #### Parameters -`dIconSize` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dIconSize` double ### SetInputData\(XmlDocument\) @@ -71,11 +72,11 @@ bool SetInputData(XmlDocument dom) #### Parameters -`dom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`dom` XmlDocument #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SetInputDataForMulti\(XmlDocument\) @@ -85,11 +86,11 @@ bool SetInputDataForMulti(XmlDocument dom) #### Parameters -`dom` [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) +`dom` XmlDocument #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SetPropertyXPath\(string\) @@ -99,7 +100,7 @@ void SetPropertyXPath(string strPath) #### Parameters -`strPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPath` string ### SetPropertyXPathPosition\(string\) @@ -109,7 +110,7 @@ void SetPropertyXPathPosition(string strPosition) #### Parameters -`strPosition` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strPosition` string ### UpdatePage\(\) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.IStdDialog.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.IStdDialog.md index 2739241b27..736b7b4223 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.IStdDialog.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.IStdDialog.md @@ -1,4 +1,5 @@ -# Interface IStdDialog +# Interface IStdDialog + Namespace: [VM.NX.Dialog](VM.NX.Dialog.md) Assembly: VMDIDef.dll @@ -23,7 +24,7 @@ object Document { get; set; } #### Property Value - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### Result @@ -33,7 +34,7 @@ XmlDocument Result { get; } #### Property Value - [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) + XmlDocument ## Methods @@ -45,9 +46,9 @@ bool Initialize(string strInitInfo) #### Parameters -`strInitInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInitInfo` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.IStdModelessDialog.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.IStdModelessDialog.md index 1e70ab984f..cbacbff6f5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.IStdModelessDialog.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.IStdModelessDialog.md @@ -1,4 +1,5 @@ -# Interface IStdModelessDialog +# Interface IStdModelessDialog + Namespace: [VM.NX.Dialog](VM.NX.Dialog.md) Assembly: VMDIDef.dll @@ -27,5 +28,5 @@ int ID { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.NXFormBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.NXFormBase.md index 01a6324cf0..8a760014f4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.NXFormBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.NXFormBase.md @@ -1,4 +1,5 @@ -# Class NXFormBase +# Class NXFormBase + Namespace: [VM.NX.Dialog](VM.NX.Dialog.md) Assembly: VMDM.dll @@ -9,13 +10,13 @@ public class NXFormBase : Form, IStdDialog #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[MarshalByRefObject](https://learn.microsoft.com/dotnet/api/system.marshalbyrefobject) ← -[Component](https://learn.microsoft.com/dotnet/api/system.componentmodel.component) ← -[Control](https://learn.microsoft.com/dotnet/api/system.windows.forms.control) ← -[ScrollableControl](https://learn.microsoft.com/dotnet/api/system.windows.forms.scrollablecontrol) ← -[ContainerControl](https://learn.microsoft.com/dotnet/api/system.windows.forms.containercontrol) ← -[Form](https://learn.microsoft.com/dotnet/api/system.windows.forms.form) ← +object ← +MarshalByRefObject ← +Component ← +Control ← +ScrollableControl ← +ContainerControl ← +Form ← [NXFormBase](VM.NX.Dialog.NXFormBase.md) #### Implements @@ -46,7 +47,7 @@ public Button btApply #### Field Value - [Button](https://learn.microsoft.com/dotnet/api/system.windows.forms.button) + Button ### btCancel @@ -56,7 +57,7 @@ public Button btCancel #### Field Value - [Button](https://learn.microsoft.com/dotnet/api/system.windows.forms.button) + Button ### btOK @@ -66,7 +67,7 @@ public Button btOK #### Field Value - [Button](https://learn.microsoft.com/dotnet/api/system.windows.forms.button) + Button ## Properties @@ -88,7 +89,7 @@ public static int ApplyState { get; set; } #### Property Value - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Document @@ -98,7 +99,7 @@ public object Document { get; set; } #### Property Value - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### GeometryParams @@ -108,7 +109,7 @@ public static Dictionary GeometryParams { get; set; } #### Property Value - [Dictionary](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary\-2)<[string](https://learn.microsoft.com/dotnet/api/system.string), [XmlNode](https://learn.microsoft.com/dotnet/api/system.xml.xmlnode)\> + Dictionary ### IsPicking @@ -118,7 +119,7 @@ public static bool IsPicking { get; set; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Result @@ -128,7 +129,7 @@ public XmlDocument Result { get; set; } #### Property Value - [XmlDocument](https://learn.microsoft.com/dotnet/api/system.xml.xmldocument) + XmlDocument ## Methods @@ -140,15 +141,15 @@ public void BaseButtonLocation(Form form, TabControl TC, Button btnOK, Button bt #### Parameters -`form` [Form](https://learn.microsoft.com/dotnet/api/system.windows.forms.form) +`form` Form -`TC` [TabControl](https://learn.microsoft.com/dotnet/api/system.windows.forms.tabcontrol) +`TC` TabControl -`btnOK` [Button](https://learn.microsoft.com/dotnet/api/system.windows.forms.button) +`btnOK` Button -`btnApp` [Button](https://learn.microsoft.com/dotnet/api/system.windows.forms.button) +`btnApp` Button -`btnCancel` [Button](https://learn.microsoft.com/dotnet/api/system.windows.forms.button) +`btnCancel` Button ### BaseButtonLocationNoTab\(Form, Button, Button, Button\) @@ -158,13 +159,13 @@ public void BaseButtonLocationNoTab(Form form, Button btnOK, Button btnApp, Butt #### Parameters -`form` [Form](https://learn.microsoft.com/dotnet/api/system.windows.forms.form) +`form` Form -`btnOK` [Button](https://learn.microsoft.com/dotnet/api/system.windows.forms.button) +`btnOK` Button -`btnApp` [Button](https://learn.microsoft.com/dotnet/api/system.windows.forms.button) +`btnApp` Button -`btnCancel` [Button](https://learn.microsoft.com/dotnet/api/system.windows.forms.button) +`btnCancel` Button ### CancelAll\(\) @@ -174,7 +175,7 @@ protected virtual bool CancelAll() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Dispose\(bool\) @@ -184,7 +185,7 @@ protected override void Dispose(bool disposing) #### Parameters -`disposing` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`disposing` bool ### EnableButton\(bool\) @@ -194,7 +195,7 @@ public virtual void EnableButton(bool bEnabled) #### Parameters -`bEnabled` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bEnabled` bool ### InitNXForm\(IAppHandle\) @@ -214,11 +215,11 @@ public virtual bool Initialize(string strInitInfo) #### Parameters -`strInitInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInitInfo` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### LockButtons\(bool\) @@ -228,7 +229,7 @@ public virtual void LockButtons(bool bLock) #### Parameters -`bLock` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bLock` bool ### OnApply\(\) @@ -238,7 +239,7 @@ protected virtual bool OnApply() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### OnPreApply\(\) @@ -248,7 +249,7 @@ protected virtual bool OnPreApply() #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### RasieApplyButtonClick\(\) @@ -264,11 +265,11 @@ public virtual bool SetReadOnly(bool bReadOnly) #### Parameters -`bReadOnly` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bReadOnly` bool #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### SetSkipPreApply\(bool\) @@ -278,7 +279,7 @@ public void SetSkipPreApply(bool bSkip) #### Parameters -`bSkip` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bSkip` bool ### SetUseApplyBtn\(bool\) @@ -288,5 +289,5 @@ public void SetUseApplyBtn(bool bUse) #### Parameters -`bUse` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bUse` bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.NXFormInitializer.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.NXFormInitializer.md index c030c872bd..0a68b5e20c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.NXFormInitializer.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.NXFormInitializer.md @@ -1,4 +1,5 @@ -# Class NXFormInitializer +# Class NXFormInitializer + Namespace: [VM.NX.Dialog](VM.NX.Dialog.md) Assembly: VMDM.dll @@ -9,7 +10,7 @@ public class NXFormInitializer : INXFormInit #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [NXFormInitializer](VM.NX.Dialog.NXFormInitializer.md) #### Implements diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.OperationDialogBase.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.OperationDialogBase.md index f811c0da61..da3349a057 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.OperationDialogBase.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.OperationDialogBase.md @@ -1,4 +1,5 @@ -# Class OperationDialogBase +# Class OperationDialogBase + Namespace: [VM.NX.Dialog](VM.NX.Dialog.md) Assembly: VMDM.dll @@ -9,13 +10,13 @@ public class OperationDialogBase : Form, IStdModelessDialog, IStdDialog #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[MarshalByRefObject](https://learn.microsoft.com/dotnet/api/system.marshalbyrefobject) ← -[Component](https://learn.microsoft.com/dotnet/api/system.componentmodel.component) ← -[Control](https://learn.microsoft.com/dotnet/api/system.windows.forms.control) ← -[ScrollableControl](https://learn.microsoft.com/dotnet/api/system.windows.forms.scrollablecontrol) ← -[ContainerControl](https://learn.microsoft.com/dotnet/api/system.windows.forms.containercontrol) ← -[Form](https://learn.microsoft.com/dotnet/api/system.windows.forms.form) ← +object ← +MarshalByRefObject ← +Component ← +Control ← +ScrollableControl ← +ContainerControl ← +Form ← [OperationDialogBase](VM.NX.Dialog.OperationDialogBase.md) #### Implements @@ -47,7 +48,7 @@ public EventHandler OnApply #### Field Value - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler\-1)<[CancelEventArgs](https://learn.microsoft.com/dotnet/api/system.componentmodel.canceleventargs)\> + EventHandler ## Methods @@ -59,7 +60,7 @@ protected override void Dispose(bool disposing) #### Parameters -`disposing` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`disposing` bool ### Initialize\(string\) @@ -69,9 +70,9 @@ protected virtual bool Initialize(string strInitInfo) #### Parameters -`strInitInfo` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strInitInfo` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.md index c4535abcd3..c7cea5ea6f 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NX.Dialog.md @@ -1,4 +1,5 @@ -# Namespace VM.NX.Dialog +# Namespace VM.NX.Dialog + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NameType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NameType.md index 3e068c013c..010f71282c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NameType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.NameType.md @@ -1,4 +1,5 @@ -# Enum NameType +# Enum NameType + Namespace: [VM](VM.md) Assembly: VM.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.OMatrix.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.OMatrix.md index 9cb105a664..317981132a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.OMatrix.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.OMatrix.md @@ -1,4 +1,5 @@ -# Struct OMatrix +# Struct OMatrix + Namespace: [VM](VM.md) Assembly: VM.dll @@ -59,7 +60,7 @@ public OMatrix(double[] arr) #### Parameters -`arr` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arr` double\[\] The array contains orientation matrix @@ -75,7 +76,7 @@ public double[] Array { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### Identity @@ -159,7 +160,7 @@ public double this[int nRow, int nCol] { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### this\[Coordinate, Coordinate\] @@ -171,7 +172,7 @@ public double this[Coordinate enRow, Coordinate enCol] { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -185,11 +186,11 @@ public void CopyTo(double[] arr, int nStartIndex) #### Parameters -`arr` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arr` double\[\] The array values copied to -`nStartIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nStartIndex` int The start index of array @@ -203,13 +204,13 @@ public override bool Equals(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The object to compare. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the objects are equal, otherwise false. @@ -243,7 +244,7 @@ public Vector GetDirectionVector(int axis) #### Parameters -`axis` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`axis` int The type of axis. @@ -263,7 +264,7 @@ public override int GetHashCode() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int A 32-bit signed integer hash code. @@ -285,7 +286,7 @@ public void Normalize() #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The normalize operation failed . @@ -303,13 +304,13 @@ public void RotateAxisDeg(Coordinate c, double dAngle) The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -323,11 +324,11 @@ public void RotateAxisDeg(int nCoord, double dAngle) #### Parameters -`nCoord` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nCoord` int The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -345,13 +346,13 @@ public void RotateAxisDeg(Vector axis, double dAngle) The rotation axis. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -369,13 +370,13 @@ public void RotateAxisRad(Coordinate c, double dAngle) The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -389,11 +390,11 @@ public void RotateAxisRad(int nCoord, double dAngle) #### Parameters -`nCoord` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nCoord` int The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -411,13 +412,13 @@ public void RotateAxisRad(Vector axis, double dAngle) The rotation axis. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -431,13 +432,13 @@ public void RotateXDeg(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -451,13 +452,13 @@ public void RotateXRad(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -471,13 +472,13 @@ public void RotateYDeg(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -491,13 +492,13 @@ public void RotateYRad(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -511,13 +512,13 @@ public void RotateZDeg(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -531,13 +532,13 @@ public void RotateZRad(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -565,7 +566,7 @@ The vector for slave. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The set data of orientation operation failed . @@ -593,7 +594,7 @@ public void SetOrientation(double[] arr) #### Parameters -`arr` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arr` double\[\] The data of orientation. @@ -611,21 +612,21 @@ public void SetOrientationEADeg(RotationAxes ea, double dAlpha, double dBeta, do The type of euler angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of euler angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of euler angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of euler angle. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The set data of orientation operation failed . @@ -643,21 +644,21 @@ public void SetOrientationEARad(RotationAxes ea, double dAlpha, double dBeta, do The type of euler angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of euler angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of euler angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of euler angle. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The set data of orientation operation failed . @@ -675,21 +676,21 @@ public void SetOrientationFixedAngleDeg(RotationAxes ea, double dAlpha, double d The type of fixed angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of fixed angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of fixed angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of fixed angle. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The set data of orientation operation failed . @@ -707,21 +708,21 @@ public void SetOrientationFixedAngleRad(RotationAxes ea, double dAlpha, double d The type of fixed angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of fixed angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of fixed angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of fixed angle. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The set data of orientation operation failed . @@ -733,7 +734,7 @@ public override string ToString() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TransposeOrientation\(\) @@ -745,7 +746,7 @@ public void TransposeOrientation() #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The transpose operation failed . @@ -771,13 +772,13 @@ The right matrix to compare #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if two matrices are same, otherwise false. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The equality operation failed . @@ -801,13 +802,13 @@ The right matrix to compare #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if two matrices are not same, otherwise false. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The inequality operation failed . @@ -837,7 +838,7 @@ The cross product matrix. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The multiply operation failed . @@ -867,7 +868,7 @@ The Multiplied vector. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The multiply operation failed . diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.ObservableObject.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.ObservableObject.md index e6e93f92ce..098040ac38 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.ObservableObject.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.ObservableObject.md @@ -1,4 +1,5 @@ -# Class ObservableObject +# Class ObservableObject + Namespace: [VM](VM.md) Assembly: VM.dll @@ -11,7 +12,7 @@ public abstract class ObservableObject : IObservableObject, IDisposableObject #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [ObservableObject](VM.ObservableObject.md) #### Derived @@ -50,7 +51,7 @@ public bool IsDisposed { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### TryDisposing @@ -61,7 +62,7 @@ public bool TryDisposing { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ## Methods @@ -79,7 +80,7 @@ protected virtual void Dispose(bool disposing) #### Parameters -`disposing` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`disposing` bool ### DisposeManagedResources\(\) @@ -101,7 +102,7 @@ public virtual void RaisePropertyChanged(string propertyName) #### Parameters -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string ### RaisePropertyChanged\(string, object, object\) @@ -111,11 +112,11 @@ public virtual void RaisePropertyChanged(string propertyName, object oldValue, o #### Parameters -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string -`oldValue` [object](https://learn.microsoft.com/dotnet/api/system.object) +`oldValue` object -`newValue` [object](https://learn.microsoft.com/dotnet/api/system.object) +`newValue` object ### Disposed @@ -125,7 +126,7 @@ public event EventHandler Disposed #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler) + EventHandler ### Disposing @@ -135,7 +136,7 @@ public event EventHandler Disposing #### Event Type - [EventHandler](https://learn.microsoft.com/dotnet/api/system.eventhandler) + EventHandler ### PropertyChanged @@ -145,5 +146,5 @@ public event PropertyChangedEventHandler PropertyChanged #### Event Type - [PropertyChangedEventHandler](https://learn.microsoft.com/dotnet/api/system.componentmodel.propertychangedeventhandler) + PropertyChangedEventHandler diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Drivetrain.PassSimulationDataSet.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Drivetrain.PassSimulationDataSet.md index e3f2d03b2b..8a82c9aac3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Drivetrain.PassSimulationDataSet.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Drivetrain.PassSimulationDataSet.md @@ -1,4 +1,5 @@ -# Class PassSimulationDataSet +# Class PassSimulationDataSet + Namespace: [VM.Operations.Pre.Drivetrain](VM.Operations.Pre.Drivetrain.md) Assembly: VMOpGearTrain.dll @@ -9,7 +10,7 @@ public class PassSimulationDataSet : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [PassSimulationDataSet](VM.Operations.Pre.Drivetrain.PassSimulationDataSet.md) @@ -83,9 +84,9 @@ public PassSimulationDataSet(string documentPath, string jsonPath) #### Parameters -`documentPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`documentPath` string -`jsonPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`jsonPath` string ## Properties @@ -107,7 +108,7 @@ public string JsonPath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Name @@ -119,7 +120,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Drivetrain.RunVehicleSimulation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Drivetrain.RunVehicleSimulation.md index 26293da8fc..3bc49f0bf4 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Drivetrain.RunVehicleSimulation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Drivetrain.RunVehicleSimulation.md @@ -1,4 +1,5 @@ -# Class RunVehicleSimulation +# Class RunVehicleSimulation + Namespace: [VM.Operations.Pre.Drivetrain](VM.Operations.Pre.Drivetrain.md) Assembly: VMOpGearTrain.dll @@ -9,7 +10,7 @@ public class RunVehicleSimulation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [RunVehicleSimulation](VM.Operations.Pre.Drivetrain.RunVehicleSimulation.md) @@ -83,7 +84,7 @@ public RunVehicleSimulation(string path = "") #### Parameters -`path` [string](https://learn.microsoft.com/dotnet/api/system.string) +`path` string ## Properties @@ -97,7 +98,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Path @@ -107,7 +108,7 @@ public string Path { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Drivetrain.RunVehicleSimulator.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Drivetrain.RunVehicleSimulator.md index db21a710bb..f2d42f65b2 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Drivetrain.RunVehicleSimulator.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Drivetrain.RunVehicleSimulator.md @@ -1,4 +1,5 @@ -# Class RunVehicleSimulator +# Class RunVehicleSimulator + Namespace: [VM.Operations.Pre.Drivetrain](VM.Operations.Pre.Drivetrain.md) Assembly: VMOpGearTrain.dll @@ -9,7 +10,7 @@ public class RunVehicleSimulator : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [RunVehicleSimulator](VM.Operations.Pre.Drivetrain.RunVehicleSimulator.md) @@ -107,7 +108,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Drivetrain.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Drivetrain.md index 80a70c776c..1db030cf22 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Drivetrain.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Drivetrain.md @@ -1,4 +1,5 @@ -# Namespace VM.Operations.Pre.Drivetrain +# Namespace VM.Operations.Pre.Drivetrain + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Durability.ExportDFG.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Durability.ExportDFG.md index 0cc6c0931e..666a73f9a9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Durability.ExportDFG.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Durability.ExportDFG.md @@ -1,4 +1,5 @@ -# Class ExportDFG +# Class ExportDFG + Namespace: [VM.Operations.Pre.Durability](VM.Operations.Pre.Durability.md) Assembly: VM.Operations.Pre.Durability.dll @@ -11,10 +12,10 @@ public class ExportDFG : ExportDFG, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ExportDFG ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ExportDFG](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFG.cs) ← [ExportDFG](VM.Operations.Pre.Durability.ExportDFG.md) #### Implements @@ -23,31 +24,32 @@ IOperation #### Inherited Members -ExportDFG.Execute\(\), -ExportDFG.ExportDFGImpl\(\), -ExportDFG.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ExportDFG.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFG.cs), +[ExportDFG.ExportDFGImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFG.cs), +[ExportDFG.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFG.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -148,7 +150,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Durability.ExportDFS.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Durability.ExportDFS.md index 263653482f..8bcbd43607 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Durability.ExportDFS.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Durability.ExportDFS.md @@ -1,4 +1,5 @@ -# Class ExportDFS +# Class ExportDFS + Namespace: [VM.Operations.Pre.Durability](VM.Operations.Pre.Durability.md) Assembly: VM.Operations.Pre.Durability.dll @@ -9,10 +10,10 @@ public class ExportDFS : ExportDFS, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← -ExportDFS ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← +[ExportDFS](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs) ← [ExportDFS](VM.Operations.Pre.Durability.ExportDFS.md) #### Implements @@ -21,31 +22,32 @@ IOperation #### Inherited Members -ExportDFS.Execute\(\), -ExportDFS.ExportDFSImpl\(\), -ExportDFS.Name, -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[ExportDFS.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs), +[ExportDFS.ExportDFSImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs), +[ExportDFS.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/ExportDFS.cs), +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -136,7 +138,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Durability.ShowBodyDurability.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Durability.ShowBodyDurability.md index c7a0cf1579..9f7a7d5dc0 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Durability.ShowBodyDurability.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Durability.ShowBodyDurability.md @@ -1,4 +1,5 @@ -# Class ShowBodyDurability +# Class ShowBodyDurability + Namespace: [VM.Operations.Pre.Durability](VM.Operations.Pre.Durability.md) Assembly: VM.Operations.Pre.Durability.dll @@ -11,9 +12,9 @@ public class ShowBodyDurability : DialogOperation, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -DialogOperation ← +[DialogOperation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs) ← [ShowBodyDurability](VM.Operations.Pre.Durability.ShowBodyDurability.md) #### Derived @@ -26,11 +27,11 @@ IOperation #### Inherited Members -DialogOperation.Execute\(\), -DialogOperation.OnApply\(object, CancelEventArgs\), -DialogOperation.IsConainOpenedDic\(Document\), -DialogOperation.Name, -DialogOperation.OpDialog, +[DialogOperation.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.IsConainOpenedDic\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OpDialog](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -109,7 +110,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -131,11 +132,11 @@ protected override void OnApply(object sender, CancelEventArgs arg) #### Parameters -`sender` [object](https://learn.microsoft.com/dotnet/api/system.object) +`sender` object The sender. -`arg` [CancelEventArgs](https://learn.microsoft.com/dotnet/api/system.componentmodel.canceleventargs) +`arg` CancelEventArgs The instance containing the event data. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Durability.ShowGearDurability.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Durability.ShowGearDurability.md index 952332ebf6..82a92b7e81 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Durability.ShowGearDurability.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Durability.ShowGearDurability.md @@ -1,4 +1,5 @@ -# Class ShowGearDurability +# Class ShowGearDurability + Namespace: [VM.Operations.Pre.Durability](VM.Operations.Pre.Durability.md) Assembly: VM.Operations.Pre.Durability.dll @@ -11,9 +12,9 @@ public class ShowGearDurability : ShowBodyDurability, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -DialogOperation ← +[DialogOperation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs) ← [ShowBodyDurability](VM.Operations.Pre.Durability.ShowBodyDurability.md) ← [ShowGearDurability](VM.Operations.Pre.Durability.ShowGearDurability.md) @@ -28,11 +29,11 @@ IOperation [ShowBodyDurability.UpdateUI\(IUIUpdate, Document\)](VM.Operations.Pre.Durability.ShowBodyDurability.md\#VM\_Operations\_Pre\_Durability\_ShowBodyDurability\_UpdateUI\_VM\_Managed\_UI\_IUIUpdate\_VM\_Managed\_Document\_), [ShowBodyDurability.ShowDialog\(\)](VM.Operations.Pre.Durability.ShowBodyDurability.md\#VM\_Operations\_Pre\_Durability\_ShowBodyDurability\_ShowDialog), [ShowBodyDurability.Name](VM.Operations.Pre.Durability.ShowBodyDurability.md\#VM\_Operations\_Pre\_Durability\_ShowBodyDurability\_Name), -DialogOperation.Execute\(\), -DialogOperation.OnApply\(object, CancelEventArgs\), -DialogOperation.IsConainOpenedDic\(Document\), -DialogOperation.Name, -DialogOperation.OpDialog, +[DialogOperation.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OnApply\(object, CancelEventArgs\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.IsConainOpenedDic\(Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), +[DialogOperation.OpDialog](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/DialogOperation.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Durability.SimulateForBodyDurability.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Durability.SimulateForBodyDurability.md index cc016d095f..cd043d3309 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Durability.SimulateForBodyDurability.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Durability.SimulateForBodyDurability.md @@ -1,4 +1,5 @@ -# Class SimulateForBodyDurability +# Class SimulateForBodyDurability + Namespace: [VM.Operations.Pre.Durability](VM.Operations.Pre.Durability.md) Assembly: VM.Operations.Pre.Durability.dll @@ -11,9 +12,9 @@ public class SimulateForBodyDurability : SimulationRun, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [SimulateForBodyDurability](VM.Operations.Pre.Durability.SimulateForBodyDurability.md) #### Implements @@ -22,28 +23,29 @@ IOperation #### Inherited Members -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -118,7 +120,7 @@ public SimulateForBodyDurability(object[] arParam) #### Parameters -`arParam` [object](https://learn.microsoft.com/dotnet/api/system.object)\[\] +`arParam` object\[\] ### SimulateForBodyDurability\(JournalParameter\) @@ -142,7 +144,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -162,7 +164,7 @@ public override void ReadExtraJournal(XmlElement nodeArg) #### Parameters -`nodeArg` [XmlElement](https://learn.microsoft.com/dotnet/api/system.xml.xmlelement) +`nodeArg` XmlElement ### WriteExtraJournal\(XmlWriter\) @@ -172,5 +174,5 @@ public override void WriteExtraJournal(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Durability.SimulationRun.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Durability.SimulationRun.md index 67d388358c..9ad7b09f6d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Durability.SimulationRun.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Durability.SimulationRun.md @@ -1,4 +1,5 @@ -# Class SimulationRun +# Class SimulationRun + Namespace: [VM.Operations.Pre.Durability](VM.Operations.Pre.Durability.md) Assembly: VM.Operations.Pre.Durability.dll @@ -9,9 +10,9 @@ public class SimulationRun : SimulationRun, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← -SimulationRun ← +[SimulationRun](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs) ← [SimulationRun](VM.Operations.Pre.Durability.SimulationRun.md) #### Implements @@ -20,28 +21,29 @@ IOperation #### Inherited Members -SimulationRun.m\_strSimulationConfiguration, -SimulationRun.m\_strFilePath, -SimulationRun.m\_strUserDefinedScenarioTypeName, -SimulationRun.Execute\(\), -SimulationRun.GetInformation\(XmlWriter\), -SimulationRun.ReadExtraJournal\(XmlElement\), -SimulationRun.WriteExtraJournal\(XmlWriter\), -SimulationRun.UpdateUI\(IUIUpdate, Document\), -SimulationRun.SimulationRunImpl\(bool\), -SimulationRun.PrepareSimulationSetting\(\), -SimulationRun.ShowDialog\(\), -SimulationRun.PrepareForm\(SimulationFormBase\), -SimulationRun.ApplySimulation\(SimulationFormBase\), -SimulationRun.ExecuteImpl\(\), -SimulationRun.ExecuteImplNotPrePareSimulation\(\), -SimulationRun.Name, -SimulationRun.SimulationForm, -SimulationRun.NotPrePareSimulation, -SimulationRun.FormResult, -SimulationRun.SimParam, -SimulationRun.SkipCheckDirectory, -SimulationRun.FilePath, +[SimulationRun.m\_strSimulationConfiguration](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strFilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.m\_strUserDefinedScenarioTypeName](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Execute\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.GetInformation\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ReadExtraJournal\(XmlElement\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteExtraJournal\(XmlWriter\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.UpdateUI\(IUIUpdate, Document\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationRunImpl\(bool\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareSimulationSetting\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ShowDialog\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.PrepareForm\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ApplySimulation\(SimulationFormBase\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImpl\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.ExecuteImplNotPrePareSimulation\(\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.WriteJournalCore\(string\)](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.Name](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimulationForm](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.NotPrePareSimulation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FormResult](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SimParam](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.SkipCheckDirectory](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), +[SimulationRun.FilePath](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VMOpCore/SimulationRun.cs), OperationBase.g\_bRedrawKernel, OperationBase.g\_bVerify, OperationBase.g\_bSkipAddEvent, @@ -118,7 +120,7 @@ public SimulationRun(Document doc, string strSimPar, DurabilityData durabilityDa `doc` Document -`strSimPar` [string](https://learn.microsoft.com/dotnet/api/system.string) +`strSimPar` string `durabilityData` DurabilityData @@ -144,7 +146,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -156,5 +158,5 @@ protected override void SimulationRunImpl(bool bWriteDFG) #### Parameters -`bWriteDFG` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`bWriteDFG` bool diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Durability.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Durability.md index faea8d3f6d..933dd392dc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Durability.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Durability.md @@ -1,4 +1,5 @@ -# Namespace VM.Operations.Pre.Durability +# Namespace VM.Operations.Pre.Durability + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Force.LeafSpringOperationExtensions.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Force.LeafSpringOperationExtensions.md index 840d476493..5b0492f10d 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Force.LeafSpringOperationExtensions.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Force.LeafSpringOperationExtensions.md @@ -1,4 +1,5 @@ -# Class LeafSpringOperationExtensions +# Class LeafSpringOperationExtensions + Namespace: [VM.Operations.Pre.Force](VM.Operations.Pre.Force.md) Assembly: VM.Operations.Pre.Force.dll @@ -9,7 +10,7 @@ public static class LeafSpringOperationExtensions #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [LeafSpringOperationExtensions](VM.Operations.Pre.Force.LeafSpringOperationExtensions.md) #### Extension Methods @@ -28,9 +29,9 @@ public static void CopyBushPropertyValue(PropertyBush target, PropertyBush sourc #### Parameters -`target` PropertyBush +`target` [PropertyBush](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Bush.cs) -`source` PropertyBush +`source` [PropertyBush](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Bush.cs) ### CreateCenterBoltBody\(Document, string, Vector, double, bool\) @@ -42,17 +43,17 @@ public static SolidBody CreateCenterBoltBody(Document document, string name, Vec `document` Document -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string `position` Vector -`mass` [double](https://learn.microsoft.com/dotnet/api/system.double) +`mass` double -`addToDocument` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`addToDocument` bool #### Returns - SolidBody + [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ### CreateClipToLeafVectorForceUserSubroutine\(Document, PropertyVector, string, Clip, BeamGroup, int, Marker, CenterMarker, SolidBody, bool\) @@ -64,27 +65,27 @@ public static UserSubroutine CreateClipToLeafVectorForceUserSubroutine(Document `document` Document -`property` PropertyVector +`property` [PropertyVector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFP/Vector.cs) -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string -`clip` Clip +`clip` [Clip](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre.Force/Models/LeafSpring/Clip.cs) -`leafBeamGroup` BeamGroup +`leafBeamGroup` [BeamGroup](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDBeamGroup/BeamGroup.cs) -`beamGroupBodyIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`beamGroupBodyIndex` int -`upperMarker` Marker +`upperMarker` [Marker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) -`fixedBodyCenterMarker` CenterMarker +`fixedBodyCenterMarker` [CenterMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) -`beamGroupBody` SolidBody +`beamGroupBody` [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) -`addToDocument` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`addToDocument` bool #### Returns - UserSubroutine + [UserSubroutine](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSP/UserSubroutine.cs) ### CreateEyeBody\(Document, string, \(Vector Top, Vector Bottom\), \(double Outer, double Inner\), bool\) @@ -96,17 +97,17 @@ public static SolidBody CreateEyeBody(Document document, string name, (Vector To `document` Document -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string -`position` \(Vector [Top](https://learn.microsoft.com/dotnet/api/system.valuetuple\-vm.vector,vm.vector\-.top), Vector [Bottom](https://learn.microsoft.com/dotnet/api/system.valuetuple\-vm.vector,vm.vector\-.bottom)\) +`position` \(Vector Top, Vector Bottom\) -`radius` \([double](https://learn.microsoft.com/dotnet/api/system.double) [Outer](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.outer), [double](https://learn.microsoft.com/dotnet/api/system.double) [Inner](https://learn.microsoft.com/dotnet/api/system.valuetuple\-system.double,system.double\-.inner)\) +`radius` \(double Outer, double Inner\) -`addToDocument` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`addToDocument` bool #### Returns - SolidBody + [SolidBody](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Body.cs) ### CreateLeafToLeafVectorForceUserSubroutine\(Document, PropertyVector, string, Leaf\[\], IList, int, int, int, int, CenterMarker, CenterMarker, bool\) @@ -118,42 +119,38 @@ public static UserSubroutine CreateLeafToLeafVectorForceUserSubroutine(Document `document` Document -`property` PropertyVector +`property` [PropertyVector](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFP/Vector.cs) -`name` [string](https://learn.microsoft.com/dotnet/api/system.string) +`name` string -`leaves` Leaf\[\] +`leaves` [Leaf](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre.Force/Models/LeafSpring/Leaf.Linker.cs)\[\] -`leafInfos` [IList](https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist\-1) +`leafInfos` IList -`baseLeafIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`baseLeafIndex` int -`baseBodyIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`baseBodyIndex` int -`actionLeafIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`actionLeafIndex` int -`actionBodyIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`actionBodyIndex` int -`baseBodyCenterMarker` CenterMarker +`baseBodyCenterMarker` [CenterMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) -`actionBodyCenterMarker` CenterMarker +`actionBodyCenterMarker` [CenterMarker](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFBase/Marker.cs) -`addToDocument` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`addToDocument` bool #### Returns - UserSubroutine + [UserSubroutine](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSP/UserSubroutine.cs) -### GetConnectionOrientation\(ConnectionType\) +### GetConnectionOrientationForTestSimulation\(\) ```csharp -public static OMatrix GetConnectionOrientation(ConnectionType connectionType) +public static OMatrix GetConnectionOrientationForTestSimulation() ``` -#### Parameters - -`connectionType` ConnectionType - #### Returns OMatrix @@ -166,15 +163,15 @@ public static BuilderMulti GetShackleBodyBuilder(double mainLeafWidth, int direc #### Parameters -`mainLeafWidth` [double](https://learn.microsoft.com/dotnet/api/system.double) +`mainLeafWidth` double -`directionY` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`directionY` int -`eyeHolePosition` \(Vector [Top](https://learn.microsoft.com/dotnet/api/system.valuetuple\-vm.vector,vm.vector\-.top), Vector [Bottom](https://learn.microsoft.com/dotnet/api/system.valuetuple\-vm.vector,vm.vector\-.bottom)\) +`eyeHolePosition` \(Vector Top, Vector Bottom\) -`shackleHolePosition` \(Vector [Top](https://learn.microsoft.com/dotnet/api/system.valuetuple\-vm.vector,vm.vector\-.top), Vector [Bottom](https://learn.microsoft.com/dotnet/api/system.valuetuple\-vm.vector,vm.vector\-.bottom)\) +`shackleHolePosition` \(Vector Top, Vector Bottom\) -`shackle` Shackle +`shackle` [Shackle](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre.Force/Models/LeafSpring/Shackle.cs) #### Returns @@ -188,11 +185,11 @@ public static double GetclipBodyRadius(Clip clip) #### Parameters -`clip` Clip +`clip` [Clip](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre.Force/Models/LeafSpring/Clip.cs) #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### SetBushPropertyAllZero\(PropertyBush\) @@ -202,5 +199,5 @@ public static void SetBushPropertyAllZero(PropertyBush propertyBush) #### Parameters -`propertyBush` PropertyBush +`propertyBush` [PropertyBush](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDFB/Bush.cs) diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Force.LeafSpringSimulation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Force.LeafSpringSimulation.md index 04df88f568..748ad15863 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Force.LeafSpringSimulation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Force.LeafSpringSimulation.md @@ -1,4 +1,5 @@ -# Class LeafSpringSimulation +# Class LeafSpringSimulation + Namespace: [VM.Operations.Pre.Force](VM.Operations.Pre.Force.md) Assembly: VM.Operations.Pre.Force.dll @@ -9,7 +10,7 @@ public class LeafSpringSimulation : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [LeafSpringSimulation](VM.Operations.Pre.Force.LeafSpringSimulation.md) @@ -83,9 +84,9 @@ public LeafSpringSimulation(Func getLeafSpring, bool isForceTest) #### Parameters -`getLeafSpring` [Func](https://learn.microsoft.com/dotnet/api/system.func\-1) +`getLeafSpring` Func<[LeafSpring](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre.Force/Models/LeafSpring/LeafSpring.Linker.cs)\> -`isForceTest` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isForceTest` bool ### LeafSpringSimulation\(LeafSpring, bool\) @@ -95,9 +96,9 @@ public LeafSpringSimulation(LeafSpring leafSpring, bool isForceTest) #### Parameters -`leafSpring` LeafSpring +`leafSpring` [LeafSpring](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre.Force/Models/LeafSpring/LeafSpring.Linker.cs) -`isForceTest` [bool](https://learn.microsoft.com/dotnet/api/system.boolean) +`isForceTest` bool ### LeafSpringSimulation\(JournalParameter\) @@ -119,7 +120,7 @@ public Func GetLeafSpring { get; } #### Property Value - [Func](https://learn.microsoft.com/dotnet/api/system.func\-1) + Func<[LeafSpring](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/Pre/Data/VM.Models.Pre.Force/Models/LeafSpring/LeafSpring.Linker.cs)\> ### IsForceTest @@ -129,7 +130,7 @@ public bool IsForceTest { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -141,7 +142,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### ResultFolderPath @@ -151,7 +152,7 @@ public string ResultFolderPath { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -173,7 +174,7 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter The writer. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Force.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Force.md index 5d731dd110..bee2fa7436 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Force.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.Force.md @@ -1,4 +1,5 @@ -# Namespace VM.Operations.Pre.Force +# Namespace VM.Operations.Pre.Force + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.PropertySetOperation.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.PropertySetOperation.md index e017810eff..e90888b76e 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.PropertySetOperation.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.PropertySetOperation.md @@ -1,4 +1,5 @@ -# Class PropertySetOperation +# Class PropertySetOperation + Namespace: [VM.Operations.Pre](VM.Operations.Pre.md) Assembly: VM.Operations.Pre.dll @@ -10,13 +11,13 @@ public class PropertySetOperation : OperationBase, IPropertySetOperation, IOpera #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [PropertySetOperation](VM.Operations.Pre.PropertySetOperation.md) #### Implements -IPropertySetOperation, +[IPropertySetOperation](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Operations/VM.Operations/Interfaces/IPropertySetOperation.cs), IOperation #### Inherited Members @@ -85,11 +86,11 @@ public PropertySetOperation(string targetName, string propertyName, object value #### Parameters -`targetName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`targetName` string -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string -`value` [object](https://learn.microsoft.com/dotnet/api/system.object) +`value` object ### PropertySetOperation\(JournalParameter\) @@ -111,7 +112,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### PropertyName @@ -121,7 +122,7 @@ public string PropertyName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### TargetName @@ -131,7 +132,7 @@ public string TargetName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Value @@ -141,7 +142,7 @@ public object Value { get; } #### Property Value - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ## Methods @@ -159,5 +160,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.SubEntity.ImportPythonCode.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.SubEntity.ImportPythonCode.md index daa596e7ac..f83134a675 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.SubEntity.ImportPythonCode.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.SubEntity.ImportPythonCode.md @@ -1,4 +1,5 @@ -# Class ImportPythonCode +# Class ImportPythonCode + Namespace: [VM.Operations.Pre.SubEntity](VM.Operations.Pre.SubEntity.md) Assembly: VM.Operations.Pre.SubEntity.dll @@ -11,7 +12,7 @@ public class ImportPythonCode : OperationBase, IOperation #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← OperationBase ← [ImportPythonCode](VM.Operations.Pre.SubEntity.ImportPythonCode.md) @@ -91,7 +92,7 @@ public ImportPythonCode(Document doc, params string[] pathPythonCodes) The to import python code -`pathPythonCodes` [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] +`pathPythonCodes` string\[\] Additional pathes to python codes @@ -109,7 +110,7 @@ public ImportPythonCode(Document doc, IEnumerable pathPythonCodes) The to import python code -`pathPythonCodes` [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable\-1)<[string](https://learn.microsoft.com/dotnet/api/system.string)\> +`pathPythonCodes` IEnumerable Pathes to python codes. @@ -139,7 +140,7 @@ public override string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Pathes @@ -151,7 +152,7 @@ public string[] Pathes { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string)\[\] + string\[\] ### Result @@ -163,7 +164,7 @@ public PythonCode[] Result { get; set; } #### Property Value - PythonCode\[\] + [PythonCode](https://github.com/AnsysVirtualMotion/DAFUL/blob/9110677a5f6a53d7604f8dfd35b4c5fceb59e8e0/DAFUL/ClassicPre/Data/VMDSB/PythonCode.cs)\[\] ## Methods @@ -185,5 +186,5 @@ public override void GetInformation(XmlWriter writer) #### Parameters -`writer` [XmlWriter](https://learn.microsoft.com/dotnet/api/system.xml.xmlwriter) +`writer` XmlWriter diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.SubEntity.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.SubEntity.md index 97bf067f39..2492f4f07b 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.SubEntity.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.SubEntity.md @@ -1,4 +1,5 @@ -# Namespace VM.Operations.Pre.SubEntity +# Namespace VM.Operations.Pre.SubEntity + ### Classes diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.md index defd8d83a7..406d34ed5c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Operations.Pre.md @@ -1,4 +1,5 @@ -# Namespace VM.Operations.Pre +# Namespace VM.Operations.Pre + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Plane.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Plane.md index d2dd679203..36a1003309 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Plane.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Plane.md @@ -1,4 +1,5 @@ -# Enum Plane +# Enum Plane + Namespace: [VM](VM.md) Assembly: VM.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.PropertyChangedExtendedEventArgs.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.PropertyChangedExtendedEventArgs.md index 3aa6dcf2bb..c76babc87c 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.PropertyChangedExtendedEventArgs.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.PropertyChangedExtendedEventArgs.md @@ -1,4 +1,5 @@ -# Class PropertyChangedExtendedEventArgs +# Class PropertyChangedExtendedEventArgs + Namespace: [VM](VM.md) Assembly: VM.dll @@ -9,9 +10,9 @@ public class PropertyChangedExtendedEventArgs : PropertyChangedEventArgs #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← -[EventArgs](https://learn.microsoft.com/dotnet/api/system.eventargs) ← -[PropertyChangedEventArgs](https://learn.microsoft.com/dotnet/api/system.componentmodel.propertychangedeventargs) ← +object ← +EventArgs ← +PropertyChangedEventArgs ← [PropertyChangedExtendedEventArgs](VM.PropertyChangedExtendedEventArgs.md) #### Extension Methods @@ -30,11 +31,11 @@ public PropertyChangedExtendedEventArgs(string propertyName, object oldValue, ob #### Parameters -`propertyName` [string](https://learn.microsoft.com/dotnet/api/system.string) +`propertyName` string -`oldValue` [object](https://learn.microsoft.com/dotnet/api/system.object) +`oldValue` object -`newValue` [object](https://learn.microsoft.com/dotnet/api/system.object) +`newValue` object ## Properties @@ -46,7 +47,7 @@ public virtual object NewValue { get; } #### Property Value - [object](https://learn.microsoft.com/dotnet/api/system.object) + object ### OldValue @@ -56,5 +57,5 @@ public virtual object OldValue { get; } #### Property Value - [object](https://learn.microsoft.com/dotnet/api/system.object) + object diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.PropertyItem.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.PropertyItem.md index 010a01f122..cab0c3aa8a 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.PropertyItem.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.PropertyItem.md @@ -1,4 +1,5 @@ -# Class PropertyItem +# Class PropertyItem + Namespace: [VM](VM.md) Assembly: VM.dll @@ -9,7 +10,7 @@ public class PropertyItem : MemberItem #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [MemberItem](VM.MemberItem\-1.md) ← [PropertyItem](VM.PropertyItem.md) @@ -36,7 +37,7 @@ public PropertyItem(PropertyDescriptor propertyDescriptor) #### Parameters -`propertyDescriptor` [PropertyDescriptor](https://learn.microsoft.com/dotnet/api/system.componentmodel.propertydescriptor) +`propertyDescriptor` PropertyDescriptor ## Properties @@ -48,7 +49,7 @@ public string DisplayName { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### IsBrowsable @@ -58,7 +59,7 @@ public bool IsBrowsable { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### IsReadOnly @@ -68,7 +69,7 @@ public bool IsReadOnly { get; } #### Property Value - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### Name @@ -78,7 +79,7 @@ public string Name { get; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### PropertyDescriptor @@ -88,7 +89,7 @@ public PropertyDescriptor PropertyDescriptor { get; } #### Property Value - [PropertyDescriptor](https://learn.microsoft.com/dotnet/api/system.componentmodel.propertydescriptor) + PropertyDescriptor ### PropertyType @@ -98,7 +99,7 @@ public Type PropertyType { get; } #### Property Value - [Type](https://learn.microsoft.com/dotnet/api/system.type) + Type ### TypeConverter @@ -108,7 +109,7 @@ public TypeConverter TypeConverter { get; } #### Property Value - [TypeConverter](https://learn.microsoft.com/dotnet/api/system.componentmodel.typeconverter) + TypeConverter ## Methods @@ -120,11 +121,11 @@ public bool Is(Type type) #### Parameters -`type` [Type](https://learn.microsoft.com/dotnet/api/system.type) +`type` Type #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### ToString\(\) @@ -134,5 +135,5 @@ public override string ToString() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.ReferenceTypes.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.ReferenceTypes.md index bfb4f8246d..fc24fc7a38 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.ReferenceTypes.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.ReferenceTypes.md @@ -1,4 +1,5 @@ -# Enum ReferenceTypes +# Enum ReferenceTypes + Namespace: [VM](VM.md) Assembly: VM.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.RotationAxes.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.RotationAxes.md index 3b30bf58b3..03538a1bcc 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.RotationAxes.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.RotationAxes.md @@ -1,4 +1,5 @@ -# Enum RotationAxes +# Enum RotationAxes + Namespace: [VM](VM.md) Assembly: VM.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.RotationTypes.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.RotationTypes.md index b44513c6a7..922b8187a8 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.RotationTypes.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.RotationTypes.md @@ -1,4 +1,5 @@ -# Enum RotationTypes +# Enum RotationTypes + Namespace: [VM](VM.md) Assembly: VM.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.SelectAreaTypes.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.SelectAreaTypes.md index 06c7acd7e9..ccfecf3fad 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.SelectAreaTypes.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.SelectAreaTypes.md @@ -1,4 +1,5 @@ -# Enum SelectAreaTypes +# Enum SelectAreaTypes + Namespace: [VM](VM.md) Assembly: VM.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.SortDirection.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.SortDirection.md index 121692c4d8..e32c2f13c5 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.SortDirection.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.SortDirection.md @@ -1,4 +1,5 @@ -# Enum SortDirection +# Enum SortDirection + Namespace: [VM](VM.md) Assembly: VM.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.TMatrix.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.TMatrix.md index 23d16be8df..4da76fe909 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.TMatrix.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.TMatrix.md @@ -1,4 +1,5 @@ -# Struct TMatrix +# Struct TMatrix + Namespace: [VM](VM.md) Assembly: VM.dll @@ -63,7 +64,7 @@ public TMatrix(double[] arr) #### Parameters -`arr` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arr` double\[\] The data of orientation. @@ -79,7 +80,7 @@ public double[] Array { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] ### Identity @@ -107,7 +108,7 @@ public TMatrix InverseTransformationMatrix { get; } #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The inverse transform of matrix operation failed. @@ -201,7 +202,7 @@ public double this[int nRow, int nCol] { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### this\[Coordinate, Coordinate\] @@ -213,7 +214,7 @@ public double this[Coordinate enRow, Coordinate enCol] { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -227,17 +228,17 @@ public void CopyTo(double[] arr, int nStartIndex) #### Parameters -`arr` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arr` double\[\] The array values copied to -`nStartIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nStartIndex` int The start index of array #### Exceptions - [ArgumentOutOfRangeException](https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception) + ArgumentOutOfRangeException The condition : 16 > arr.Length - nStartIndex @@ -251,13 +252,13 @@ public override bool Equals(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The object to compare. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the objects are equal, otherwise false. @@ -291,7 +292,7 @@ public Vector GetDirectionVector(int axis) #### Parameters -`axis` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`axis` int The type of axis. @@ -311,7 +312,7 @@ public override int GetHashCode() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int A 32-bit signed integer hash code. @@ -333,7 +334,7 @@ public void Normalize() #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The normalize operation failed . @@ -351,13 +352,13 @@ public void RotateAxisDeg(Coordinate c, double dAngle) The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -371,11 +372,11 @@ public void RotateAxisDeg(int nCoord, double dAngle) #### Parameters -`nCoord` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nCoord` int The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. @@ -393,13 +394,13 @@ public void RotateAxisDeg(Vector axis, double dAngle) The rotation axis. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -417,13 +418,13 @@ public void RotateAxisRad(Coordinate c, double dAngle) The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -437,11 +438,11 @@ public void RotateAxisRad(int nCoord, double dAngle) #### Parameters -`nCoord` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nCoord` int The rotation coordinate. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. @@ -459,13 +460,13 @@ public void RotateAxisRad(Vector axis, double dAngle) The rotation axis. -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -479,13 +480,13 @@ public void RotateXDeg(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -499,13 +500,13 @@ public void RotateXRad(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -519,13 +520,13 @@ public void RotateYDeg(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -539,13 +540,13 @@ public void RotateYRad(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -559,13 +560,13 @@ public void RotateZDeg(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The degree. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -579,13 +580,13 @@ public void RotateZRad(double dAngle) #### Parameters -`dAngle` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAngle` double The radian. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The rotate operation failed . @@ -613,7 +614,7 @@ public void Set(double[] arr) #### Parameters -`arr` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arr` double\[\] The transform array. @@ -641,7 +642,7 @@ The vector for slave. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The set data of orientation operation failed . @@ -669,7 +670,7 @@ public void SetOrientation(double[] arr) #### Parameters -`arr` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arr` double\[\] The data of orientation. @@ -687,21 +688,21 @@ public void SetOrientationEADeg(RotationAxes ea, double dAlpha, double dBeta, do The type of euler angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of euler angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of euler angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of euler angle. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The set data of orientation operation failed . @@ -719,21 +720,21 @@ public void SetOrientationEARad(RotationAxes ea, double dAlpha, double dBeta, do The type of euler angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of euler angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of euler angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of euler angle. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The set data of orientation operation failed . @@ -751,21 +752,21 @@ public void SetOrientationFixedAngleDeg(RotationAxes ea, double dAlpha, double d The type of fixed angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of fixed angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of fixed angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of fixed angle. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The set data of orientation operation failed . @@ -783,21 +784,21 @@ public void SetOrientationFixedAngleRad(RotationAxes ea, double dAlpha, double d The type of fixed angle. -`dAlpha` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dAlpha` double The alpha of fixed angle. -`dBeta` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dBeta` double The beta of fixed angle. -`dGamma` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dGamma` double The gamma of fixed angle. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The set data of orientation operation failed . @@ -823,7 +824,7 @@ public override string ToString() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Translate\(Vector\) @@ -849,15 +850,15 @@ public void Translate(double dX, double dY, double dZ) #### Parameters -`dX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dX` double The value of X -`dY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dY` double The value of y -`dZ` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dZ` double The value of z @@ -871,7 +872,7 @@ public void TransposeOrientation() #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The transpose operation failed . @@ -897,13 +898,13 @@ The right matrix to compare #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if two matrices are same, otherwise false. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The equality operation failed . @@ -927,13 +928,13 @@ The right matrix to compare #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if two matrices are not same, otherwise false. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The inequality operation failed . @@ -963,7 +964,7 @@ The cross product matrix. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The multiply operation failed . @@ -993,7 +994,7 @@ The Multiplied vector. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The multiply operation failed . diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Unit.ConvertFactor.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Unit.ConvertFactor.md index 1af88c5944..d83f6c1839 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Unit.ConvertFactor.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Unit.ConvertFactor.md @@ -1,4 +1,5 @@ -# Class Unit.ConvertFactor +# Class Unit.ConvertFactor + Namespace: [VM](VM.md) Assembly: VM.dll @@ -11,7 +12,7 @@ public sealed class Unit.ConvertFactor #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Unit.ConvertFactor](VM.Unit.ConvertFactor.md) #### Extension Methods @@ -82,7 +83,7 @@ public double FromUCF { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### ToUCF @@ -94,7 +95,7 @@ public double ToUCF { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### this\[string\] @@ -106,7 +107,7 @@ public double this[string stringDimension] { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -120,17 +121,17 @@ public double CalculateShiftingUnit(string stringType, double value) #### Parameters -`stringType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`stringType` string The unit type -`value` [double](https://learn.microsoft.com/dotnet/api/system.double) +`value` double The value #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double The converted value diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Unit.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Unit.md index cf6da650a8..563cde7a76 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Unit.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Unit.md @@ -1,4 +1,5 @@ -# Class Unit +# Class Unit + Namespace: [VM](VM.md) Assembly: VM.dll @@ -11,7 +12,7 @@ public sealed class Unit #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [Unit](VM.Unit.md) #### Extension Methods @@ -68,11 +69,11 @@ public Unit(SerializationInfo information, StreamingContext context) #### Parameters -`information` [SerializationInfo](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.serializationinfo) +`information` SerializationInfo The info. -`context` [StreamingContext](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.streamingcontext) +`context` StreamingContext The context @@ -88,7 +89,7 @@ public string Angle { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Force @@ -100,7 +101,7 @@ public string Force { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Handle @@ -112,7 +113,7 @@ public IntPtr Handle { get; } #### Property Value - [IntPtr](https://learn.microsoft.com/dotnet/api/system.intptr) + IntPtr ### Length @@ -124,7 +125,7 @@ public string Length { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Mass @@ -136,7 +137,7 @@ public string Mass { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Power @@ -148,7 +149,7 @@ public string Power { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Temperature @@ -160,7 +161,7 @@ public string Temperature { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Time @@ -172,7 +173,7 @@ public string Time { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### Work @@ -184,7 +185,7 @@ public string Work { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ### this\[string\] @@ -196,7 +197,7 @@ public string this[string type] { get; set; } #### Property Value - [string](https://learn.microsoft.com/dotnet/api/system.string) + string ## Methods @@ -214,13 +215,13 @@ public double ConvertTo(Unit referenceUnit, string stringType) The reference unit -`stringType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`stringType` string The type #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double The convert data @@ -238,11 +239,11 @@ public override bool Equals(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### GetFactor\(string\) @@ -254,13 +255,13 @@ public double GetFactor(string type) #### Parameters -`type` [string](https://learn.microsoft.com/dotnet/api/system.string) +`type` string The unit type #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double The factor @@ -272,7 +273,7 @@ public override int GetHashCode() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int ### Initialize\(string\) @@ -284,7 +285,7 @@ public static void Initialize(string stringUnitPath) #### Parameters -`stringUnitPath` [string](https://learn.microsoft.com/dotnet/api/system.string) +`stringUnitPath` string The path of unit. @@ -298,13 +299,13 @@ public bool IsContain(string stringType) #### Parameters -`stringType` [string](https://learn.microsoft.com/dotnet/api/system.string) +`stringType` string The type of unit. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if contains unit type, otherwise false. @@ -330,7 +331,7 @@ The unit to compare #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if two units are equal, otherwise false. @@ -354,7 +355,7 @@ The unit to compare #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if two units are not equal, otherwise false. diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.UnitType.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.UnitType.md index 1ee874f581..1da1f382f3 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.UnitType.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.UnitType.md @@ -1,4 +1,5 @@ -# Enum UnitType +# Enum UnitType + Namespace: [VM](VM.md) Assembly: VM.dll diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Vector.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Vector.md index b617e4ff23..b9b1c72787 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Vector.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.Vector.md @@ -1,4 +1,5 @@ -# Struct Vector +# Struct Vector + Namespace: [VM](VM.md) Assembly: VM.dll @@ -33,15 +34,15 @@ public Vector(double dX, double dY, double dZ) #### Parameters -`dX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dX` double The X. -`dY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dY` double The Y. -`dZ` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dZ` double The Z. @@ -55,7 +56,7 @@ public Vector(double[] arVec) #### Parameters -`arVec` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arVec` double\[\] The arVec. @@ -69,11 +70,11 @@ public Vector(double[] arVec, int nStartIndex) #### Parameters -`arVec` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arVec` double\[\] The array that have values of vector. -`nStartIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nStartIndex` int The start index of array. @@ -85,7 +86,7 @@ public Vector(string vector) #### Parameters -`vector` [string](https://learn.microsoft.com/dotnet/api/system.string) +`vector` string ## Properties @@ -99,11 +100,11 @@ public double Magnitude { get; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The get magnitude operation failed . @@ -117,7 +118,7 @@ public double X { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Y @@ -129,7 +130,7 @@ public double Y { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### Z @@ -141,7 +142,7 @@ public double Z { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### this\[int\] @@ -153,7 +154,7 @@ public double this[int nIndex] { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ### this\[Coordinate\] @@ -165,7 +166,7 @@ public double this[Coordinate enCoord] { get; set; } #### Property Value - [double](https://learn.microsoft.com/dotnet/api/system.double) + double ## Methods @@ -183,7 +184,7 @@ public static void CopyToArray(Vector[] arVec, double[] arTarget) The array of vector -`arTarget` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arTarget` double\[\] The array to store values of the array of vector. @@ -201,11 +202,11 @@ public static void CopyToArray(Vector[] arVec, double[] arTarget, int nIndex) The array of vector -`arTarget` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arTarget` double\[\] The array to store values of the array of vector. -`nIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nIndex` int The start index of array @@ -245,7 +246,7 @@ The vec. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double Result of product @@ -259,13 +260,13 @@ public override bool Equals(object obj) #### Parameters -`obj` [object](https://learn.microsoft.com/dotnet/api/system.object) +`obj` object The object to compare. #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if the objects are equal, otherwise false. @@ -279,7 +280,7 @@ public double[] GetArray() #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] + double\[\] The array. @@ -299,13 +300,13 @@ The vec. #### Returns - [double](https://learn.microsoft.com/dotnet/api/system.double) + double The distance #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The get distance operation failed . @@ -319,7 +320,7 @@ public override int GetHashCode() #### Returns - [int](https://learn.microsoft.com/dotnet/api/system.int32) + int A 32-bit signed integer hash code. @@ -359,7 +360,7 @@ The ortho vector. #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The get ortho vector operation failed . @@ -379,11 +380,11 @@ public static bool IsValidFormat(string vector) #### Parameters -`vector` [string](https://learn.microsoft.com/dotnet/api/system.string) +`vector` string #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool ### MakeUnitVector\(\) @@ -395,7 +396,7 @@ public void MakeUnitVector() #### Exceptions - [InvalidOperationException](https://learn.microsoft.com/dotnet/api/system.invalidoperationexception) + InvalidOperationException The make unit vector operation failed . @@ -423,7 +424,7 @@ public void Set(double[] arVec) #### Parameters -`arVec` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arVec` double\[\] The array of X, Y, Z Components. @@ -437,11 +438,11 @@ public void Set(double[] arVec, int nStartIndex) #### Parameters -`arVec` [double](https://learn.microsoft.com/dotnet/api/system.double)\[\] +`arVec` double\[\] The array of X, Y, Z Components. -`nStartIndex` [int](https://learn.microsoft.com/dotnet/api/system.int32) +`nStartIndex` int The start index of array. @@ -455,15 +456,15 @@ public void Set(double dX, double dY, double dZ) #### Parameters -`dX` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dX` double The X. -`dY` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dY` double The Y. -`dZ` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dZ` double The Z. @@ -477,7 +478,7 @@ public override string ToString() #### Returns - [string](https://learn.microsoft.com/dotnet/api/system.string) + string A string that represents the current object. @@ -521,7 +522,7 @@ public static Vector operator /(Vector vec, double dValue) The vector to divide value -`dValue` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dValue` double The value to divide @@ -551,7 +552,7 @@ The right vector to compare #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if two vectors are same, otherwise false. @@ -575,7 +576,7 @@ The right vector to compare #### Returns - [bool](https://learn.microsoft.com/dotnet/api/system.boolean) + bool true if two vectors are not same, otherwise false. @@ -617,7 +618,7 @@ public static Vector operator *(Vector vec, double dValue) The vector to multiply value -`dValue` [double](https://learn.microsoft.com/dotnet/api/system.double) +`dValue` double The value to multiply diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.XmlReaderExtension.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.XmlReaderExtension.md index abb66067b6..5a314be3c9 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.XmlReaderExtension.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.XmlReaderExtension.md @@ -1,4 +1,5 @@ -# Class XmlReaderExtension +# Class XmlReaderExtension + Namespace: [VM](VM.md) Assembly: VM.dll @@ -11,7 +12,7 @@ public static class XmlReaderExtension #### Inheritance -[object](https://learn.microsoft.com/dotnet/api/system.object) ← +object ← [XmlReaderExtension](VM.XmlReaderExtension.md) #### Extension Methods @@ -32,7 +33,7 @@ public static void ReadEndElementSafely(this XmlReader reader) #### Parameters -`reader` [XmlReader](https://learn.microsoft.com/dotnet/api/system.xml.xmlreader) +`reader` XmlReader The XmlReader stream diff --git a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.md b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.md index ca75e01fc8..9febb6afda 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/lib/VM.md +++ b/2026R1/motion_pre_lib_doc-26-r1/lib/VM.md @@ -1,4 +1,5 @@ -# Namespace VM +# Namespace VM + ### Namespaces diff --git a/2026R1/motion_pre_lib_doc-26-r1/toc.yml b/2026R1/motion_pre_lib_doc-26-r1/toc.yml index 6787e76d88..8bb89a1edd 100644 --- a/2026R1/motion_pre_lib_doc-26-r1/toc.yml +++ b/2026R1/motion_pre_lib_doc-26-r1/toc.yml @@ -1,10 +1,10 @@ - name: Introduction href: index.md -- name: Getting started +- name: Getting Started items: - - name: Getting started with the C# language + - name: Getting Started with the C# language href: getting_started_cs.md - - name: Getting started with the Python language + - name: Getting Started with the Python language href: getting_started_py.md - name: Reference href: lib/VM.md @@ -227,6 +227,8 @@ href: lib/VM.API.Pre.MatchTypeObjAttribute.md - name: MaterialAPI href: lib/VM.API.Pre.MaterialAPI.md + - name: MeaureAPI + href: lib/VM.API.Pre.MeaureAPI.md - name: NotNullObjAttribute href: lib/VM.API.Pre.NotNullObjAttribute.md - name: ObjectControlAPI @@ -657,6 +659,17 @@ href: lib/VM.CAD.Builders.Links.BooleanType.md - name: LinkType href: lib/VM.CAD.Builders.Links.LinkType.md + - name: VM.CAD.Convert + href: lib/VM.CAD.Convert.md + items: + - name: Classes + items: + - name: Translator + href: lib/VM.CAD.Convert.Translator.md + - name: Structs + items: + - name: Translator.LicenseInfo + href: lib/VM.CAD.Convert.Translator.LicenseInfo.md - name: VM.CAD.Kernel href: lib/VM.CAD.Kernel.md items: @@ -1417,8 +1430,6 @@ href: lib/VM.Managed.ITreatValidObject.md - name: ITypedLink href: lib/VM.Managed.ITypedLink-1.md - - name: IUCControl - href: lib/VM.Managed.IUCControl.md - name: IUnEditableSubEnttity href: lib/VM.Managed.IUnEditableSubEnttity.md - name: IUnitChange @@ -1728,6 +1739,8 @@ href: lib/VM.Managed.CAD.Kernel.md - name: KernelExeption href: lib/VM.Managed.CAD.KernelExeption.md + - name: ReDrawForHistoryOp + href: lib/VM.Managed.CAD.ReDrawForHistoryOp.md - name: ReferenceBody href: lib/VM.Managed.CAD.ReferenceBody.md - name: RemoveDuplicatedEventOperation @@ -2139,6 +2152,8 @@ href: lib/VM.Managed.DAFUL.MagneticInterface.Material.md - name: Marker href: lib/VM.Managed.DAFUL.Marker.md + - name: MassCalculationException + href: lib/VM.Managed.DAFUL.MassCalculationException.md - name: MeshFreePropertyForSolidBody href: lib/VM.Managed.DAFUL.MeshFreePropertyForSolidBody.md - name: ModeForMFModal @@ -2193,6 +2208,8 @@ href: lib/VM.Managed.DAFUL.RangeShapeCircle.md - name: ReferenceConnectable href: lib/VM.Managed.DAFUL.ReferenceConnectable.md + - name: ReferenceHasMultiBuilder + href: lib/VM.Managed.DAFUL.ReferenceHasMultiBuilder.md - name: ReferenceMarker href: lib/VM.Managed.DAFUL.ReferenceMarker.md - name: ReferencePartMarker @@ -3990,6 +4007,26 @@ href: lib/VM.Managed.DAFUL.Car.Operation.ExportDFSForShimmyJudder.md - name: ExportDFSForTire href: lib/VM.Managed.DAFUL.Car.Operation.ExportDFSForTire.md + - name: ExportFiles + href: lib/VM.Managed.DAFUL.Car.Operation.ExportFiles.md + - name: ExportFilesForFourPost + href: lib/VM.Managed.DAFUL.Car.Operation.ExportFilesForFourPost.md + - name: ExportFilesForFullCar + href: lib/VM.Managed.DAFUL.Car.Operation.ExportFilesForFullCar.md + - name: ExportFilesForShimmyJudder + href: lib/VM.Managed.DAFUL.Car.Operation.ExportFilesForShimmyJudder.md + - name: ExportFilesForTire + href: lib/VM.Managed.DAFUL.Car.Operation.ExportFilesForTire.md + - name: ExportMotionFiles + href: lib/VM.Managed.DAFUL.Car.Operation.ExportMotionFiles.md + - name: ExportMotionFilesForFourPost + href: lib/VM.Managed.DAFUL.Car.Operation.ExportMotionFilesForFourPost.md + - name: ExportMotionFilesForFullCar + href: lib/VM.Managed.DAFUL.Car.Operation.ExportMotionFilesForFullCar.md + - name: ExportMotionFilesForShimmyJudder + href: lib/VM.Managed.DAFUL.Car.Operation.ExportMotionFilesForShimmyJudder.md + - name: ExportMotionFilesForTire + href: lib/VM.Managed.DAFUL.Car.Operation.ExportMotionFilesForTire.md - name: ExportXML href: lib/VM.Managed.DAFUL.Car.Operation.ExportXML.md - name: ExportXMLForFourPost @@ -4254,6 +4291,8 @@ items: - name: ExecuteProcess href: lib/VM.Managed.DAFUL.CoSim.FMI.Operation.ExecuteProcess.md + - name: ExecuteProcessForCar + href: lib/VM.Managed.DAFUL.CoSim.FMI.Operation.ExecuteProcessForCar.md - name: ExportModel href: lib/VM.Managed.DAFUL.CoSim.FMI.Operation.ExportModel.md - name: VM.Managed.DAFUL.CoSim.Matlab @@ -4272,6 +4311,8 @@ items: - name: ExecuteProcess href: lib/VM.Managed.DAFUL.CoSim.Matlab.Operation.ExecuteProcess.md + - name: ExecuteProcessForCar + href: lib/VM.Managed.DAFUL.CoSim.Matlab.Operation.ExecuteProcessForCar.md - name: ExportModel href: lib/VM.Managed.DAFUL.CoSim.Matlab.Operation.ExportModel.md - name: VM.Managed.DAFUL.CoSim.Operation @@ -4943,6 +4984,8 @@ items: - name: AddDesignPointOperation href: lib/VM.Managed.DAFUL.FE.Operation.AddDesignPointOperation.md + - name: CalculateNewFEMass + href: lib/VM.Managed.DAFUL.FE.Operation.CalculateNewFEMass.md - name: ChangeNodalModalOperation href: lib/VM.Managed.DAFUL.FE.Operation.ChangeNodalModalOperation.md - name: CreateEdgeset @@ -5596,6 +5639,8 @@ href: lib/VM.Managed.DAFUL.GearTrain.RadialInternalClearance.md - name: Rating href: lib/VM.Managed.DAFUL.GearTrain.Rating.md + - name: ReferenceGearSet + href: lib/VM.Managed.DAFUL.GearTrain.ReferenceGearSet.md - name: Request href: lib/VM.Managed.DAFUL.GearTrain.Request.md - name: SBContact @@ -6162,6 +6207,10 @@ href: lib/VM.Managed.DAFUL.GearTrain.Operation.ExportDFG.md - name: ExportDFS href: lib/VM.Managed.DAFUL.GearTrain.Operation.ExportDFS.md + - name: ExportFiles + href: lib/VM.Managed.DAFUL.GearTrain.Operation.ExportFiles.md + - name: ExportMotionFiles + href: lib/VM.Managed.DAFUL.GearTrain.Operation.ExportMotionFiles.md - name: ExportXML href: lib/VM.Managed.DAFUL.GearTrain.Operation.ExportXML.md - name: GetShaftStartPoint @@ -6339,6 +6388,10 @@ href: lib/VM.Managed.DAFUL.Linear.Operation.ExportDFG.md - name: ExportDFS href: lib/VM.Managed.DAFUL.Linear.Operation.ExportDFS.md + - name: ExportFiles + href: lib/VM.Managed.DAFUL.Linear.Operation.ExportFiles.md + - name: ExportMotionFiles + href: lib/VM.Managed.DAFUL.Linear.Operation.ExportMotionFiles.md - name: ExportXML href: lib/VM.Managed.DAFUL.Linear.Operation.ExportXML.md - name: ShowLinearBodyEigenValue @@ -6451,6 +6504,10 @@ href: lib/VM.Managed.DAFUL.MeshFree.Operation.PartExportDFG.md - name: PartExportDFS href: lib/VM.Managed.DAFUL.MeshFree.Operation.PartExportDFS.md + - name: PartExportFiles + href: lib/VM.Managed.DAFUL.MeshFree.Operation.PartExportFiles.md + - name: PartExportMotionFiles + href: lib/VM.Managed.DAFUL.MeshFree.Operation.PartExportMotionFiles.md - name: PartExportXML href: lib/VM.Managed.DAFUL.MeshFree.Operation.PartExportXML.md - name: ShowMeshFreeBodyPropertyDlg @@ -6537,6 +6594,10 @@ href: lib/VM.Managed.DAFUL.Operation.ExportDFG.md - name: ExportDFS href: lib/VM.Managed.DAFUL.Operation.ExportDFS.md + - name: ExportFiles + href: lib/VM.Managed.DAFUL.Operation.ExportFiles.md + - name: ExportMotionFiles + href: lib/VM.Managed.DAFUL.Operation.ExportMotionFiles.md - name: ExportXML href: lib/VM.Managed.DAFUL.Operation.ExportXML.md - name: FlipOperation @@ -7294,6 +7355,8 @@ href: lib/VM.Managed.Operation.CreateCurvesetByColor.md - name: CreateFacesetByColor href: lib/VM.Managed.Operation.CreateFacesetByColor.md + - name: GenerateFEFilm + href: lib/VM.Managed.Operation.GenerateFEFilm.md - name: HighlightProperty href: lib/VM.Managed.Operation.HighlightProperty.md - name: JournalParameter @@ -7449,6 +7512,8 @@ href: lib/VM.Managed.Simulation.Scenario.md - name: Structs items: + - name: Configuration.ExportModuleInformation + href: lib/VM.Managed.Simulation.Configuration.ExportModuleInformation.md - name: Configuration.ResultRecord href: lib/VM.Managed.Simulation.Configuration.ResultRecord.md - name: Enums @@ -7459,6 +7524,8 @@ href: lib/VM.Managed.Simulation.Configuration.Criterion.md - name: Configuration.CriterionSub href: lib/VM.Managed.Simulation.Configuration.CriterionSub.md + - name: Configuration.ExportModuleInformation.ExportFormat + href: lib/VM.Managed.Simulation.Configuration.ExportModuleInformation.ExportFormat.md - name: Configuration.Jacobian href: lib/VM.Managed.Simulation.Configuration.Jacobian.md - name: Configuration.LinearProblem @@ -8052,6 +8119,27 @@ href: lib/VM.Models.OutputReader.IOutputReader.md - name: IVectorDisplayAnimationData href: lib/VM.Models.OutputReader.IVectorDisplayAnimationData.md + - name: VM.Models.Post.RPC_Reader + href: lib/VM.Models.Post.RPC_Reader.md + items: + - name: Classes + items: + - name: RPCData + href: lib/VM.Models.Post.RPC_Reader.RPCData.md + - name: RPCReader + href: lib/VM.Models.Post.RPC_Reader.RPCReader.md + - name: Enums + items: + - name: BYPASS_FILTER + href: lib/VM.Models.Post.RPC_Reader.BYPASS_FILTER.md + - name: DATA_TYPE + href: lib/VM.Models.Post.RPC_Reader.DATA_TYPE.md + - name: RPC_FILE_TYPE + href: lib/VM.Models.Post.RPC_Reader.RPC_FILE_TYPE.md + - name: RPC_FORMAT + href: lib/VM.Models.Post.RPC_Reader.RPC_FORMAT.md + - name: TIME_TYPE + href: lib/VM.Models.Post.RPC_Reader.TIME_TYPE.md - name: VM.Models.Pre href: lib/VM.Models.Pre.md items: